From 78f3c5a7402b315b3a4b29314aa4a020c4c8ec98 Mon Sep 17 00:00:00 2001 From: Felix Andreas Date: Thu, 26 Jun 2025 21:55:27 +0200 Subject: [PATCH 1/3] fix: Don't include \r in comments --- grammar.js | 8 +- src/grammar.json | 13 +- src/parser.c | 151453 ++++++++++++++++++++++---------------------- 3 files changed, 75743 insertions(+), 75731 deletions(-) diff --git a/grammar.js b/grammar.js index 1b51c59..43cbdb5 100644 --- a/grammar.js +++ b/grammar.js @@ -71,7 +71,7 @@ const PREC = { // # // NOTE: If we don't put comments at a negative rank, then `"#"` will treat the `#` as // the start of a comment rather than being part of the string. - COMMENT: { ASSOC: prec, RANK: -1}, + COMMENT: { ASSOC: prec, RANK: -1 }, // {, ( // NOTE: If we understand correctly, brace and parenthesis blocks are given the same @@ -205,8 +205,8 @@ module.exports = grammar({ // Top-level rules. // The zero width `$._start` ensures that `program` starts at `(0, 0)`. program: $ => seq( - $._start, - repeat(choice($._expression, $._semicolon, $._newline)) + $._start, + repeat(choice($._expression, $._semicolon, $._newline)) ), // Function definitions. @@ -680,7 +680,7 @@ module.exports = grammar({ ), // Comments. - comment: $ => token(withPrec(PREC.COMMENT, /#.*/)), + comment: $ => token(withPrec(PREC.COMMENT, seq('#', /[^\r\n]*/))), // Commas. We include these in the AST so we can figure out the // argument call position. This is necessary given how R tolerates diff --git a/src/grammar.json b/src/grammar.json index f7dd7a2..5e76812 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2826,8 +2826,17 @@ "type": "PREC", "value": -1, "content": { - "type": "PATTERN", - "value": "#.*" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "PATTERN", + "value": "[^\\r\\n]*" + } + ] } } }, diff --git a/src/parser.c b/src/parser.c index ed2aea5..5ade002 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1343,17 +1343,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 4, [5] = 5, [6] = 2, - [7] = 5, - [8] = 3, - [9] = 4, - [10] = 4, - [11] = 2, - [12] = 5, - [13] = 3, - [14] = 4, - [15] = 2, - [16] = 5, - [17] = 3, + [7] = 3, + [8] = 4, + [9] = 5, + [10] = 2, + [11] = 3, + [12] = 4, + [13] = 5, + [14] = 2, + [15] = 3, + [16] = 4, + [17] = 5, [18] = 18, [19] = 19, [20] = 20, @@ -1390,7 +1390,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [51] = 51, [52] = 52, [53] = 53, - [54] = 54, + [54] = 43, [55] = 55, [56] = 56, [57] = 57, @@ -1399,7 +1399,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [60] = 60, [61] = 61, [62] = 62, - [63] = 18, + [63] = 63, [64] = 64, [65] = 65, [66] = 66, @@ -1411,380 +1411,380 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [72] = 72, [73] = 73, [74] = 74, - [75] = 19, - [76] = 20, - [77] = 21, - [78] = 22, - [79] = 23, - [80] = 24, - [81] = 25, - [82] = 26, - [83] = 27, - [84] = 28, - [85] = 29, - [86] = 30, - [87] = 31, - [88] = 32, - [89] = 33, - [90] = 34, - [91] = 35, - [92] = 36, - [93] = 37, - [94] = 38, - [95] = 39, - [96] = 40, - [97] = 41, - [98] = 42, - [99] = 43, - [100] = 44, - [101] = 45, - [102] = 46, - [103] = 47, - [104] = 48, - [105] = 49, - [106] = 50, - [107] = 51, - [108] = 52, - [109] = 53, - [110] = 54, - [111] = 55, - [112] = 56, - [113] = 57, - [114] = 58, - [115] = 59, - [116] = 60, - [117] = 61, - [118] = 62, - [119] = 66, - [120] = 64, - [121] = 65, - [122] = 67, - [123] = 68, - [124] = 69, - [125] = 70, - [126] = 71, - [127] = 72, - [128] = 73, - [129] = 74, - [130] = 29, - [131] = 71, - [132] = 72, - [133] = 73, - [134] = 74, - [135] = 19, - [136] = 20, - [137] = 21, - [138] = 22, - [139] = 23, - [140] = 24, - [141] = 25, - [142] = 26, - [143] = 27, - [144] = 28, - [145] = 29, - [146] = 30, - [147] = 31, - [148] = 32, - [149] = 33, - [150] = 34, - [151] = 35, - [152] = 36, - [153] = 37, - [154] = 38, - [155] = 39, - [156] = 40, - [157] = 41, - [158] = 42, - [159] = 43, - [160] = 44, - [161] = 45, - [162] = 46, - [163] = 47, - [164] = 48, - [165] = 49, - [166] = 166, - [167] = 50, - [168] = 51, - [169] = 52, - [170] = 53, - [171] = 66, - [172] = 54, - [173] = 55, - [174] = 56, - [175] = 57, - [176] = 58, - [177] = 59, - [178] = 60, + [75] = 64, + [76] = 74, + [77] = 61, + [78] = 19, + [79] = 72, + [80] = 60, + [81] = 70, + [82] = 69, + [83] = 68, + [84] = 67, + [85] = 66, + [86] = 65, + [87] = 18, + [88] = 63, + [89] = 62, + [90] = 53, + [91] = 52, + [92] = 51, + [93] = 50, + [94] = 49, + [95] = 48, + [96] = 59, + [97] = 58, + [98] = 57, + [99] = 56, + [100] = 71, + [101] = 55, + [102] = 73, + [103] = 20, + [104] = 21, + [105] = 22, + [106] = 23, + [107] = 24, + [108] = 25, + [109] = 47, + [110] = 26, + [111] = 46, + [112] = 27, + [113] = 28, + [114] = 29, + [115] = 30, + [116] = 31, + [117] = 32, + [118] = 33, + [119] = 34, + [120] = 35, + [121] = 36, + [122] = 37, + [123] = 38, + [124] = 39, + [125] = 40, + [126] = 41, + [127] = 45, + [128] = 42, + [129] = 44, + [130] = 22, + [131] = 46, + [132] = 21, + [133] = 133, + [134] = 134, + [135] = 71, + [136] = 29, + [137] = 28, + [138] = 25, + [139] = 27, + [140] = 20, + [141] = 26, + [142] = 23, + [143] = 73, + [144] = 25, + [145] = 26, + [146] = 55, + [147] = 24, + [148] = 56, + [149] = 57, + [150] = 58, + [151] = 72, + [152] = 59, + [153] = 31, + [154] = 64, + [155] = 60, + [156] = 74, + [157] = 19, + [158] = 32, + [159] = 22, + [160] = 133, + [161] = 72, + [162] = 23, + [163] = 24, + [164] = 19, + [165] = 71, + [166] = 33, + [167] = 34, + [168] = 35, + [169] = 36, + [170] = 37, + [171] = 38, + [172] = 39, + [173] = 40, + [174] = 41, + [175] = 42, + [176] = 43, + [177] = 44, + [178] = 45, [179] = 61, - [180] = 62, - [181] = 18, - [182] = 64, - [183] = 65, - [184] = 67, - [185] = 68, - [186] = 69, - [187] = 70, - [188] = 188, - [189] = 189, - [190] = 70, - [191] = 72, - [192] = 73, - [193] = 74, - [194] = 194, - [195] = 19, - [196] = 20, - [197] = 21, - [198] = 22, - [199] = 23, - [200] = 24, - [201] = 25, - [202] = 26, - [203] = 27, - [204] = 28, - [205] = 30, - [206] = 31, - [207] = 32, - [208] = 33, - [209] = 34, - [210] = 35, - [211] = 36, - [212] = 37, - [213] = 38, - [214] = 39, - [215] = 40, - [216] = 41, - [217] = 42, - [218] = 43, - [219] = 188, - [220] = 44, - [221] = 45, - [222] = 46, - [223] = 47, - [224] = 48, - [225] = 49, - [226] = 50, - [227] = 194, - [228] = 51, - [229] = 52, - [230] = 53, - [231] = 54, - [232] = 55, - [233] = 56, - [234] = 57, - [235] = 58, - [236] = 59, - [237] = 60, - [238] = 61, - [239] = 62, - [240] = 18, - [241] = 64, - [242] = 65, - [243] = 66, - [244] = 67, - [245] = 68, - [246] = 69, - [247] = 71, + [180] = 21, + [181] = 27, + [182] = 20, + [183] = 28, + [184] = 29, + [185] = 73, + [186] = 30, + [187] = 74, + [188] = 64, + [189] = 31, + [190] = 55, + [191] = 32, + [192] = 33, + [193] = 34, + [194] = 35, + [195] = 36, + [196] = 46, + [197] = 37, + [198] = 38, + [199] = 199, + [200] = 70, + [201] = 56, + [202] = 47, + [203] = 57, + [204] = 58, + [205] = 39, + [206] = 59, + [207] = 40, + [208] = 41, + [209] = 60, + [210] = 61, + [211] = 42, + [212] = 30, + [213] = 43, + [214] = 44, + [215] = 48, + [216] = 49, + [217] = 45, + [218] = 50, + [219] = 69, + [220] = 68, + [221] = 47, + [222] = 67, + [223] = 51, + [224] = 199, + [225] = 66, + [226] = 52, + [227] = 53, + [228] = 62, + [229] = 48, + [230] = 63, + [231] = 49, + [232] = 65, + [233] = 18, + [234] = 65, + [235] = 18, + [236] = 66, + [237] = 67, + [238] = 68, + [239] = 239, + [240] = 69, + [241] = 70, + [242] = 50, + [243] = 63, + [244] = 62, + [245] = 53, + [246] = 52, + [247] = 51, [248] = 248, [249] = 249, - [250] = 250, - [251] = 194, - [252] = 194, + [250] = 249, + [251] = 248, + [252] = 252, [253] = 248, - [254] = 188, - [255] = 255, + [254] = 249, + [255] = 252, [256] = 249, - [257] = 250, - [258] = 188, - [259] = 255, - [260] = 249, - [261] = 250, - [262] = 255, - [263] = 249, - [264] = 250, - [265] = 255, - [266] = 249, - [267] = 250, - [268] = 255, - [269] = 249, - [270] = 250, - [271] = 255, - [272] = 249, - [273] = 250, - [274] = 255, - [275] = 249, - [276] = 250, - [277] = 255, + [257] = 199, + [258] = 133, + [259] = 259, + [260] = 252, + [261] = 248, + [262] = 249, + [263] = 252, + [264] = 248, + [265] = 249, + [266] = 252, + [267] = 252, + [268] = 248, + [269] = 252, + [270] = 248, + [271] = 249, + [272] = 248, + [273] = 249, + [274] = 248, + [275] = 252, + [276] = 252, + [277] = 199, [278] = 249, - [279] = 250, - [280] = 255, - [281] = 249, - [282] = 250, - [283] = 255, - [284] = 248, - [285] = 248, + [279] = 249, + [280] = 248, + [281] = 259, + [282] = 133, + [283] = 252, + [284] = 259, + [285] = 259, [286] = 286, [287] = 287, - [288] = 286, + [288] = 288, [289] = 289, - [290] = 286, - [291] = 291, - [292] = 292, - [293] = 293, + [290] = 290, + [291] = 290, + [292] = 288, + [293] = 288, [294] = 294, [295] = 295, - [296] = 291, - [297] = 292, - [298] = 293, - [299] = 299, - [300] = 300, - [301] = 294, - [302] = 295, - [303] = 289, - [304] = 287, - [305] = 299, - [306] = 300, - [307] = 299, - [308] = 289, - [309] = 292, - [310] = 291, - [311] = 299, - [312] = 300, - [313] = 293, - [314] = 287, - [315] = 294, - [316] = 316, - [317] = 295, - [318] = 287, - [319] = 300, - [320] = 292, - [321] = 291, - [322] = 316, - [323] = 293, - [324] = 289, - [325] = 294, - [326] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 289, + [300] = 295, + [301] = 298, + [302] = 287, + [303] = 286, + [304] = 294, + [305] = 297, + [306] = 296, + [307] = 307, + [308] = 290, + [309] = 289, + [310] = 296, + [311] = 297, + [312] = 298, + [313] = 295, + [314] = 294, + [315] = 297, + [316] = 286, + [317] = 294, + [318] = 290, + [319] = 289, + [320] = 287, + [321] = 295, + [322] = 296, + [323] = 307, + [324] = 298, + [325] = 287, + [326] = 286, [327] = 327, [328] = 328, [329] = 329, [330] = 330, [331] = 331, - [332] = 331, + [332] = 332, [333] = 333, - [334] = 334, - [335] = 335, + [334] = 327, + [335] = 331, [336] = 336, [337] = 337, [338] = 338, - [339] = 339, + [339] = 331, [340] = 340, [341] = 341, [342] = 342, - [343] = 343, - [344] = 328, - [345] = 329, - [346] = 330, - [347] = 331, + [343] = 331, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 347, [348] = 348, - [349] = 341, - [350] = 342, - [351] = 348, + [349] = 349, + [350] = 307, + [351] = 327, [352] = 352, [353] = 353, - [354] = 354, - [355] = 355, - [356] = 352, - [357] = 357, - [358] = 358, - [359] = 359, - [360] = 353, - [361] = 343, - [362] = 354, - [363] = 355, - [364] = 357, - [365] = 358, - [366] = 359, - [367] = 333, - [368] = 331, - [369] = 331, - [370] = 370, - [371] = 334, - [372] = 370, - [373] = 370, - [374] = 331, - [375] = 331, - [376] = 370, - [377] = 331, - [378] = 370, - [379] = 335, - [380] = 370, - [381] = 381, - [382] = 336, - [383] = 337, - [384] = 370, + [354] = 331, + [355] = 342, + [356] = 331, + [357] = 331, + [358] = 341, + [359] = 331, + [360] = 344, + [361] = 340, + [362] = 327, + [363] = 363, + [364] = 327, + [365] = 347, + [366] = 327, + [367] = 327, + [368] = 337, + [369] = 336, + [370] = 331, + [371] = 353, + [372] = 372, + [373] = 373, + [374] = 307, + [375] = 333, + [376] = 332, + [377] = 377, + [378] = 378, + [379] = 345, + [380] = 363, + [381] = 346, + [382] = 338, + [383] = 330, + [384] = 329, [385] = 327, - [386] = 316, - [387] = 338, - [388] = 370, - [389] = 381, - [390] = 316, - [391] = 370, - [392] = 331, - [393] = 339, - [394] = 370, - [395] = 340, - [396] = 331, - [397] = 397, - [398] = 398, - [399] = 334, - [400] = 337, - [401] = 341, - [402] = 330, - [403] = 328, - [404] = 333, - [405] = 342, - [406] = 334, - [407] = 359, + [386] = 327, + [387] = 328, + [388] = 331, + [389] = 352, + [390] = 378, + [391] = 349, + [392] = 348, + [393] = 377, + [394] = 327, + [395] = 373, + [396] = 372, + [397] = 342, + [398] = 338, + [399] = 346, + [400] = 363, + [401] = 353, + [402] = 372, + [403] = 373, + [404] = 377, + [405] = 345, + [406] = 344, + [407] = 378, [408] = 348, - [409] = 335, - [410] = 329, - [411] = 336, - [412] = 337, - [413] = 339, - [414] = 340, - [415] = 327, - [416] = 338, - [417] = 343, - [418] = 352, - [419] = 381, - [420] = 338, - [421] = 353, - [422] = 348, - [423] = 354, - [424] = 355, - [425] = 339, - [426] = 329, - [427] = 357, - [428] = 335, - [429] = 357, - [430] = 358, - [431] = 359, - [432] = 352, - [433] = 340, - [434] = 336, - [435] = 353, - [436] = 354, - [437] = 355, + [409] = 342, + [410] = 341, + [411] = 347, + [412] = 340, + [413] = 333, + [414] = 332, + [415] = 330, + [416] = 329, + [417] = 338, + [418] = 418, + [419] = 347, + [420] = 352, + [421] = 349, + [422] = 422, + [423] = 340, + [424] = 328, + [425] = 336, + [426] = 341, + [427] = 344, + [428] = 345, + [429] = 346, + [430] = 329, + [431] = 348, + [432] = 349, + [433] = 352, + [434] = 377, + [435] = 435, + [436] = 337, + [437] = 336, [438] = 438, - [439] = 328, - [440] = 343, - [441] = 341, - [442] = 381, - [443] = 330, - [444] = 358, - [445] = 327, - [446] = 446, - [447] = 333, - [448] = 342, + [439] = 363, + [440] = 353, + [441] = 330, + [442] = 332, + [443] = 333, + [444] = 328, + [445] = 372, + [446] = 378, + [447] = 373, + [448] = 337, [449] = 449, [450] = 449, [451] = 449, @@ -1819,1602 +1819,1602 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [480] = 480, [481] = 481, [482] = 482, - [483] = 483, - [484] = 477, - [485] = 480, + [483] = 453, + [484] = 484, + [485] = 485, [486] = 486, [487] = 487, - [488] = 454, + [488] = 488, [489] = 489, - [490] = 490, + [490] = 460, [491] = 491, [492] = 455, [493] = 493, [494] = 494, [495] = 495, - [496] = 496, - [497] = 497, - [498] = 498, - [499] = 499, - [500] = 489, - [501] = 452, - [502] = 502, - [503] = 490, + [496] = 459, + [497] = 456, + [498] = 458, + [499] = 457, + [500] = 457, + [501] = 456, + [502] = 455, + [503] = 454, [504] = 504, [505] = 505, - [506] = 506, - [507] = 491, - [508] = 508, + [506] = 488, + [507] = 494, + [508] = 504, [509] = 509, [510] = 510, - [511] = 494, - [512] = 482, - [513] = 483, - [514] = 486, + [511] = 509, + [512] = 510, + [513] = 513, + [514] = 513, [515] = 515, [516] = 516, - [517] = 487, + [517] = 517, [518] = 518, - [519] = 519, - [520] = 520, - [521] = 521, + [519] = 452, + [520] = 517, + [521] = 518, [522] = 522, [523] = 523, - [524] = 524, - [525] = 456, - [526] = 453, - [527] = 527, - [528] = 457, - [529] = 459, - [530] = 462, - [531] = 464, - [532] = 466, - [533] = 468, - [534] = 475, - [535] = 481, - [536] = 454, - [537] = 455, - [538] = 458, - [539] = 460, - [540] = 461, - [541] = 463, - [542] = 465, - [543] = 467, - [544] = 469, - [545] = 470, - [546] = 471, - [547] = 472, - [548] = 474, - [549] = 476, - [550] = 478, - [551] = 477, - [552] = 480, - [553] = 489, - [554] = 490, - [555] = 491, - [556] = 494, - [557] = 496, - [558] = 497, - [559] = 498, - [560] = 499, + [524] = 452, + [525] = 522, + [526] = 523, + [527] = 488, + [528] = 528, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 528, + [533] = 516, + [534] = 515, + [535] = 495, + [536] = 529, + [537] = 493, + [538] = 491, + [539] = 489, + [540] = 487, + [541] = 461, + [542] = 486, + [543] = 530, + [544] = 531, + [545] = 531, + [546] = 530, + [547] = 505, + [548] = 485, + [549] = 462, + [550] = 484, + [551] = 529, + [552] = 463, + [553] = 453, + [554] = 528, + [555] = 494, + [556] = 482, + [557] = 488, + [558] = 504, + [559] = 523, + [560] = 522, [561] = 452, - [562] = 502, - [563] = 504, - [564] = 505, - [565] = 506, - [566] = 508, + [562] = 481, + [563] = 509, + [564] = 518, + [565] = 517, + [566] = 480, [567] = 510, - [568] = 482, - [569] = 483, - [570] = 486, - [571] = 515, - [572] = 516, - [573] = 487, - [574] = 518, - [575] = 519, - [576] = 520, - [577] = 521, - [578] = 522, - [579] = 523, - [580] = 524, - [581] = 456, - [582] = 453, - [583] = 527, - [584] = 457, - [585] = 459, - [586] = 462, - [587] = 464, - [588] = 466, - [589] = 468, - [590] = 475, - [591] = 481, - [592] = 454, - [593] = 455, - [594] = 496, - [595] = 458, - [596] = 460, - [597] = 461, - [598] = 463, - [599] = 465, - [600] = 467, - [601] = 469, - [602] = 470, - [603] = 471, - [604] = 472, - [605] = 474, - [606] = 476, - [607] = 478, - [608] = 477, - [609] = 480, - [610] = 489, - [611] = 490, - [612] = 491, - [613] = 494, - [614] = 496, - [615] = 497, - [616] = 498, - [617] = 499, - [618] = 452, - [619] = 502, - [620] = 504, - [621] = 505, - [622] = 506, - [623] = 508, - [624] = 510, - [625] = 515, - [626] = 482, - [627] = 483, - [628] = 486, - [629] = 515, - [630] = 516, - [631] = 497, - [632] = 498, - [633] = 499, - [634] = 518, - [635] = 516, - [636] = 487, - [637] = 519, - [638] = 518, - [639] = 502, - [640] = 519, - [641] = 520, - [642] = 521, - [643] = 520, - [644] = 522, - [645] = 504, - [646] = 505, - [647] = 506, - [648] = 523, - [649] = 456, - [650] = 453, - [651] = 527, - [652] = 457, - [653] = 459, - [654] = 462, - [655] = 464, - [656] = 466, - [657] = 468, - [658] = 475, - [659] = 481, - [660] = 521, - [661] = 508, - [662] = 458, - [663] = 460, - [664] = 510, - [665] = 522, - [666] = 454, - [667] = 455, - [668] = 461, - [669] = 482, - [670] = 483, - [671] = 486, - [672] = 515, - [673] = 516, - [674] = 458, - [675] = 460, - [676] = 461, - [677] = 463, - [678] = 487, - [679] = 465, - [680] = 467, - [681] = 518, + [568] = 479, + [569] = 513, + [570] = 513, + [571] = 510, + [572] = 509, + [573] = 464, + [574] = 466, + [575] = 504, + [576] = 467, + [577] = 468, + [578] = 469, + [579] = 494, + [580] = 470, + [581] = 471, + [582] = 472, + [583] = 505, + [584] = 454, + [585] = 455, + [586] = 456, + [587] = 457, + [588] = 478, + [589] = 477, + [590] = 473, + [591] = 591, + [592] = 458, + [593] = 458, + [594] = 594, + [595] = 459, + [596] = 596, + [597] = 460, + [598] = 474, + [599] = 461, + [600] = 600, + [601] = 462, + [602] = 475, + [603] = 463, + [604] = 476, + [605] = 517, + [606] = 591, + [607] = 594, + [608] = 476, + [609] = 464, + [610] = 465, + [611] = 466, + [612] = 467, + [613] = 468, + [614] = 469, + [615] = 470, + [616] = 471, + [617] = 472, + [618] = 473, + [619] = 474, + [620] = 475, + [621] = 476, + [622] = 475, + [623] = 596, + [624] = 600, + [625] = 505, + [626] = 454, + [627] = 455, + [628] = 456, + [629] = 477, + [630] = 478, + [631] = 474, + [632] = 591, + [633] = 594, + [634] = 596, + [635] = 600, + [636] = 457, + [637] = 591, + [638] = 594, + [639] = 596, + [640] = 600, + [641] = 479, + [642] = 473, + [643] = 480, + [644] = 458, + [645] = 481, + [646] = 591, + [647] = 482, + [648] = 594, + [649] = 453, + [650] = 596, + [651] = 484, + [652] = 600, + [653] = 485, + [654] = 472, + [655] = 486, + [656] = 591, + [657] = 487, + [658] = 594, + [659] = 489, + [660] = 596, + [661] = 491, + [662] = 600, + [663] = 493, + [664] = 471, + [665] = 495, + [666] = 459, + [667] = 470, + [668] = 591, + [669] = 594, + [670] = 596, + [671] = 600, + [672] = 461, + [673] = 462, + [674] = 463, + [675] = 591, + [676] = 594, + [677] = 596, + [678] = 600, + [679] = 515, + [680] = 516, + [681] = 464, [682] = 469, - [683] = 470, - [684] = 519, - [685] = 471, - [686] = 472, - [687] = 520, - [688] = 474, - [689] = 476, - [690] = 521, - [691] = 478, - [692] = 522, - [693] = 523, - [694] = 524, - [695] = 477, - [696] = 480, - [697] = 456, - [698] = 453, - [699] = 527, - [700] = 457, - [701] = 459, - [702] = 462, - [703] = 464, - [704] = 466, - [705] = 468, - [706] = 475, - [707] = 481, - [708] = 454, - [709] = 455, - [710] = 489, - [711] = 490, - [712] = 491, - [713] = 494, - [714] = 496, - [715] = 497, - [716] = 498, - [717] = 499, - [718] = 452, - [719] = 502, - [720] = 458, - [721] = 504, - [722] = 460, - [723] = 505, - [724] = 506, - [725] = 461, - [726] = 508, - [727] = 463, - [728] = 510, - [729] = 465, - [730] = 482, - [731] = 483, - [732] = 486, - [733] = 515, - [734] = 516, - [735] = 487, - [736] = 518, - [737] = 519, - [738] = 520, - [739] = 521, + [683] = 468, + [684] = 467, + [685] = 466, + [686] = 464, + [687] = 518, + [688] = 452, + [689] = 522, + [690] = 465, + [691] = 466, + [692] = 467, + [693] = 468, + [694] = 523, + [695] = 463, + [696] = 495, + [697] = 462, + [698] = 469, + [699] = 591, + [700] = 470, + [701] = 471, + [702] = 594, + [703] = 596, + [704] = 477, + [705] = 472, + [706] = 531, + [707] = 530, + [708] = 600, + [709] = 473, + [710] = 474, + [711] = 529, + [712] = 461, + [713] = 478, + [714] = 528, + [715] = 475, + [716] = 460, + [717] = 488, + [718] = 460, + [719] = 523, + [720] = 522, + [721] = 452, + [722] = 528, + [723] = 459, + [724] = 518, + [725] = 517, + [726] = 494, + [727] = 505, + [728] = 504, + [729] = 513, + [730] = 509, + [731] = 510, + [732] = 509, + [733] = 510, + [734] = 513, + [735] = 504, + [736] = 517, + [737] = 518, + [738] = 452, + [739] = 494, [740] = 522, [741] = 523, - [742] = 456, - [743] = 453, - [744] = 527, - [745] = 457, - [746] = 459, - [747] = 462, - [748] = 464, - [749] = 466, - [750] = 468, - [751] = 475, - [752] = 481, - [753] = 467, - [754] = 454, - [755] = 455, - [756] = 458, + [742] = 488, + [743] = 505, + [744] = 454, + [745] = 455, + [746] = 456, + [747] = 457, + [748] = 528, + [749] = 529, + [750] = 530, + [751] = 531, + [752] = 516, + [753] = 458, + [754] = 515, + [755] = 459, + [756] = 591, [757] = 460, - [758] = 461, - [759] = 463, - [760] = 465, - [761] = 467, - [762] = 469, - [763] = 470, - [764] = 471, - [765] = 472, - [766] = 474, - [767] = 476, - [768] = 478, - [769] = 477, - [770] = 480, - [771] = 489, - [772] = 490, - [773] = 491, - [774] = 494, - [775] = 496, - [776] = 497, - [777] = 498, - [778] = 499, - [779] = 452, - [780] = 502, - [781] = 504, - [782] = 505, - [783] = 506, - [784] = 508, - [785] = 510, - [786] = 482, - [787] = 483, - [788] = 486, - [789] = 515, - [790] = 516, - [791] = 469, - [792] = 470, - [793] = 471, - [794] = 487, - [795] = 518, - [796] = 472, - [797] = 519, - [798] = 520, - [799] = 474, - [800] = 521, - [801] = 522, - [802] = 476, - [803] = 478, - [804] = 523, - [805] = 456, - [806] = 453, - [807] = 527, - [808] = 457, - [809] = 459, - [810] = 462, - [811] = 464, - [812] = 466, - [813] = 468, - [814] = 475, - [815] = 481, + [758] = 495, + [759] = 461, + [760] = 493, + [761] = 462, + [762] = 491, + [763] = 463, + [764] = 489, + [765] = 487, + [766] = 486, + [767] = 485, + [768] = 458, + [769] = 464, + [770] = 465, + [771] = 466, + [772] = 467, + [773] = 468, + [774] = 469, + [775] = 470, + [776] = 471, + [777] = 472, + [778] = 473, + [779] = 474, + [780] = 475, + [781] = 476, + [782] = 529, + [783] = 484, + [784] = 453, + [785] = 482, + [786] = 481, + [787] = 480, + [788] = 479, + [789] = 477, + [790] = 478, + [791] = 478, + [792] = 477, + [793] = 476, + [794] = 530, + [795] = 476, + [796] = 475, + [797] = 474, + [798] = 473, + [799] = 472, + [800] = 471, + [801] = 479, + [802] = 470, + [803] = 480, + [804] = 469, + [805] = 481, + [806] = 468, + [807] = 482, + [808] = 467, + [809] = 454, + [810] = 466, + [811] = 484, + [812] = 464, + [813] = 485, + [814] = 531, + [815] = 486, [816] = 463, - [817] = 454, - [818] = 455, - [819] = 458, - [820] = 477, - [821] = 460, - [822] = 480, - [823] = 461, - [824] = 463, - [825] = 465, - [826] = 467, - [827] = 469, - [828] = 470, - [829] = 471, - [830] = 472, - [831] = 474, - [832] = 476, - [833] = 478, - [834] = 477, - [835] = 480, - [836] = 489, - [837] = 490, - [838] = 491, - [839] = 494, - [840] = 496, - [841] = 489, - [842] = 490, - [843] = 497, - [844] = 498, - [845] = 491, - [846] = 494, - [847] = 499, - [848] = 496, - [849] = 497, - [850] = 498, - [851] = 499, - [852] = 452, - [853] = 452, - [854] = 502, - [855] = 502, - [856] = 504, - [857] = 505, - [858] = 506, - [859] = 504, - [860] = 508, - [861] = 505, - [862] = 506, - [863] = 510, - [864] = 524, - [865] = 508, - [866] = 482, - [867] = 483, - [868] = 486, - [869] = 515, - [870] = 516, - [871] = 487, - [872] = 518, - [873] = 519, - [874] = 520, - [875] = 521, - [876] = 522, - [877] = 523, - [878] = 456, - [879] = 453, - [880] = 527, - [881] = 457, - [882] = 459, - [883] = 462, - [884] = 464, - [885] = 466, - [886] = 468, - [887] = 475, - [888] = 481, - [889] = 454, - [890] = 455, - [891] = 458, - [892] = 460, - [893] = 461, - [894] = 463, - [895] = 465, - [896] = 467, - [897] = 469, - [898] = 470, - [899] = 471, - [900] = 472, - [901] = 474, - [902] = 476, - [903] = 478, - [904] = 477, - [905] = 480, - [906] = 489, - [907] = 490, - [908] = 491, - [909] = 494, - [910] = 496, - [911] = 497, - [912] = 498, - [913] = 499, - [914] = 452, - [915] = 502, - [916] = 504, - [917] = 505, - [918] = 506, - [919] = 508, - [920] = 510, - [921] = 482, - [922] = 483, - [923] = 486, - [924] = 515, - [925] = 516, - [926] = 487, - [927] = 518, - [928] = 519, - [929] = 520, - [930] = 521, - [931] = 522, - [932] = 523, - [933] = 456, - [934] = 453, - [935] = 527, - [936] = 457, - [937] = 459, - [938] = 462, - [939] = 464, - [940] = 466, - [941] = 468, - [942] = 475, - [943] = 481, - [944] = 454, - [945] = 455, - [946] = 458, - [947] = 460, - [948] = 461, - [949] = 463, - [950] = 465, - [951] = 467, - [952] = 469, - [953] = 470, - [954] = 471, - [955] = 472, - [956] = 474, - [957] = 476, - [958] = 478, - [959] = 477, - [960] = 480, - [961] = 489, - [962] = 490, - [963] = 491, - [964] = 494, - [965] = 496, - [966] = 497, - [967] = 498, - [968] = 499, - [969] = 452, - [970] = 502, - [971] = 504, - [972] = 505, - [973] = 506, - [974] = 508, - [975] = 510, - [976] = 510, - [977] = 465, - [978] = 479, + [817] = 487, + [818] = 462, + [819] = 489, + [820] = 461, + [821] = 491, + [822] = 460, + [823] = 493, + [824] = 459, + [825] = 495, + [826] = 458, + [827] = 594, + [828] = 457, + [829] = 456, + [830] = 455, + [831] = 454, + [832] = 505, + [833] = 494, + [834] = 504, + [835] = 509, + [836] = 510, + [837] = 513, + [838] = 517, + [839] = 515, + [840] = 516, + [841] = 518, + [842] = 452, + [843] = 522, + [844] = 523, + [845] = 488, + [846] = 528, + [847] = 529, + [848] = 530, + [849] = 531, + [850] = 516, + [851] = 515, + [852] = 457, + [853] = 495, + [854] = 493, + [855] = 491, + [856] = 489, + [857] = 487, + [858] = 486, + [859] = 485, + [860] = 484, + [861] = 453, + [862] = 482, + [863] = 481, + [864] = 456, + [865] = 480, + [866] = 531, + [867] = 530, + [868] = 479, + [869] = 455, + [870] = 478, + [871] = 529, + [872] = 454, + [873] = 505, + [874] = 528, + [875] = 477, + [876] = 596, + [877] = 488, + [878] = 476, + [879] = 523, + [880] = 522, + [881] = 452, + [882] = 479, + [883] = 475, + [884] = 518, + [885] = 517, + [886] = 474, + [887] = 473, + [888] = 472, + [889] = 513, + [890] = 471, + [891] = 510, + [892] = 509, + [893] = 470, + [894] = 469, + [895] = 504, + [896] = 468, + [897] = 467, + [898] = 466, + [899] = 494, + [900] = 464, + [901] = 459, + [902] = 463, + [903] = 505, + [904] = 454, + [905] = 455, + [906] = 456, + [907] = 457, + [908] = 462, + [909] = 461, + [910] = 516, + [911] = 515, + [912] = 460, + [913] = 458, + [914] = 459, + [915] = 459, + [916] = 458, + [917] = 460, + [918] = 457, + [919] = 461, + [920] = 456, + [921] = 462, + [922] = 455, + [923] = 463, + [924] = 454, + [925] = 505, + [926] = 494, + [927] = 504, + [928] = 478, + [929] = 464, + [930] = 466, + [931] = 467, + [932] = 468, + [933] = 469, + [934] = 470, + [935] = 471, + [936] = 472, + [937] = 473, + [938] = 474, + [939] = 475, + [940] = 476, + [941] = 509, + [942] = 510, + [943] = 513, + [944] = 494, + [945] = 517, + [946] = 480, + [947] = 518, + [948] = 477, + [949] = 478, + [950] = 460, + [951] = 495, + [952] = 452, + [953] = 493, + [954] = 522, + [955] = 491, + [956] = 523, + [957] = 489, + [958] = 488, + [959] = 487, + [960] = 479, + [961] = 481, + [962] = 480, + [963] = 486, + [964] = 481, + [965] = 528, + [966] = 482, + [967] = 485, + [968] = 453, + [969] = 529, + [970] = 484, + [971] = 484, + [972] = 485, + [973] = 479, + [974] = 486, + [975] = 453, + [976] = 487, + [977] = 480, + [978] = 489, [979] = 482, - [980] = 493, - [981] = 495, - [982] = 483, - [983] = 486, - [984] = 509, - [985] = 515, - [986] = 516, - [987] = 467, - [988] = 469, - [989] = 487, - [990] = 470, - [991] = 479, - [992] = 493, - [993] = 495, - [994] = 509, - [995] = 518, - [996] = 519, - [997] = 471, - [998] = 479, - [999] = 493, - [1000] = 495, - [1001] = 509, - [1002] = 520, - [1003] = 521, - [1004] = 472, - [1005] = 479, - [1006] = 493, - [1007] = 495, - [1008] = 509, - [1009] = 522, - [1010] = 474, - [1011] = 479, - [1012] = 493, - [1013] = 495, - [1014] = 509, - [1015] = 476, - [1016] = 523, - [1017] = 523, - [1018] = 524, - [1019] = 479, - [1020] = 493, - [1021] = 495, - [1022] = 509, - [1023] = 456, - [1024] = 453, - [1025] = 527, - [1026] = 457, - [1027] = 479, - [1028] = 493, - [1029] = 495, - [1030] = 509, - [1031] = 459, - [1032] = 462, - [1033] = 464, - [1034] = 466, - [1035] = 479, - [1036] = 493, - [1037] = 495, - [1038] = 509, - [1039] = 468, - [1040] = 475, - [1041] = 481, - [1042] = 478, - [1043] = 479, - [1044] = 493, - [1045] = 495, - [1046] = 509, - [1047] = 527, + [980] = 491, + [981] = 530, + [982] = 493, + [983] = 481, + [984] = 495, + [985] = 531, + [986] = 480, + [987] = 481, + [988] = 482, + [989] = 479, + [990] = 453, + [991] = 484, + [992] = 485, + [993] = 486, + [994] = 487, + [995] = 489, + [996] = 491, + [997] = 493, + [998] = 515, + [999] = 516, + [1000] = 461, + [1001] = 477, + [1002] = 516, + [1003] = 515, + [1004] = 1004, + [1005] = 478, + [1006] = 477, + [1007] = 515, + [1008] = 600, + [1009] = 504, + [1010] = 495, + [1011] = 493, + [1012] = 482, + [1013] = 476, + [1014] = 475, + [1015] = 474, + [1016] = 473, + [1017] = 516, + [1018] = 472, + [1019] = 471, + [1020] = 491, + [1021] = 470, + [1022] = 469, + [1023] = 468, + [1024] = 531, + [1025] = 530, + [1026] = 467, + [1027] = 466, + [1028] = 465, + [1029] = 529, + [1030] = 528, + [1031] = 464, + [1032] = 453, + [1033] = 488, + [1034] = 489, + [1035] = 523, + [1036] = 522, + [1037] = 487, + [1038] = 486, + [1039] = 518, + [1040] = 517, + [1041] = 485, + [1042] = 463, + [1043] = 484, + [1044] = 513, + [1045] = 462, + [1046] = 510, + [1047] = 509, [1048] = 1048, [1049] = 1049, [1050] = 1050, [1051] = 1051, [1052] = 1052, [1053] = 1053, - [1054] = 1048, - [1055] = 1055, + [1054] = 1052, + [1055] = 1050, [1056] = 1049, - [1057] = 1053, - [1058] = 1050, - [1059] = 1052, - [1060] = 1055, - [1061] = 1051, - [1062] = 1050, - [1063] = 1052, - [1064] = 1055, - [1065] = 1048, + [1057] = 1057, + [1058] = 1052, + [1059] = 1049, + [1060] = 1052, + [1061] = 1049, + [1062] = 1051, + [1063] = 1048, + [1064] = 1053, + [1065] = 1057, [1066] = 1053, [1067] = 1050, [1068] = 1052, - [1069] = 1055, - [1070] = 1048, - [1071] = 1053, - [1072] = 1050, + [1069] = 1051, + [1070] = 1049, + [1071] = 1052, + [1072] = 1049, [1073] = 1052, - [1074] = 1055, - [1075] = 1048, - [1076] = 1053, - [1077] = 1050, - [1078] = 1052, - [1079] = 1055, - [1080] = 1048, + [1074] = 1049, + [1075] = 1052, + [1076] = 1049, + [1077] = 1052, + [1078] = 1049, + [1079] = 1052, + [1080] = 1049, [1081] = 1053, [1082] = 1050, - [1083] = 1052, - [1084] = 1055, + [1083] = 1048, + [1084] = 1051, [1085] = 1048, - [1086] = 1053, - [1087] = 1050, - [1088] = 1052, - [1089] = 1055, + [1086] = 1057, + [1087] = 1053, + [1088] = 1050, + [1089] = 1057, [1090] = 1048, - [1091] = 1053, - [1092] = 1050, - [1093] = 1052, - [1094] = 1055, - [1095] = 1048, - [1096] = 1053, - [1097] = 1050, - [1098] = 1052, - [1099] = 1055, - [1100] = 1048, - [1101] = 1049, - [1102] = 1051, - [1103] = 1049, + [1091] = 1057, + [1092] = 1057, + [1093] = 1051, + [1094] = 1053, + [1095] = 1050, + [1096] = 1051, + [1097] = 1057, + [1098] = 1048, + [1099] = 1051, + [1100] = 1050, + [1101] = 1053, + [1102] = 1050, + [1103] = 1048, [1104] = 1051, - [1105] = 1049, - [1106] = 1051, - [1107] = 1049, - [1108] = 1051, - [1109] = 1049, + [1105] = 1048, + [1106] = 1057, + [1107] = 1053, + [1108] = 1057, + [1109] = 1048, [1110] = 1051, - [1111] = 1049, - [1112] = 1051, - [1113] = 1049, - [1114] = 1051, - [1115] = 1049, - [1116] = 1051, + [1111] = 1050, + [1112] = 1053, + [1113] = 1057, + [1114] = 1048, + [1115] = 1051, + [1116] = 1050, [1117] = 1053, - [1118] = 194, - [1119] = 188, - [1120] = 194, - [1121] = 194, - [1122] = 188, - [1123] = 188, - [1124] = 188, - [1125] = 194, - [1126] = 188, - [1127] = 194, - [1128] = 194, - [1129] = 188, - [1130] = 248, - [1131] = 248, - [1132] = 248, - [1133] = 248, - [1134] = 248, - [1135] = 248, - [1136] = 316, - [1137] = 316, - [1138] = 316, - [1139] = 4, + [1118] = 199, + [1119] = 199, + [1120] = 133, + [1121] = 133, + [1122] = 199, + [1123] = 133, + [1124] = 199, + [1125] = 199, + [1126] = 133, + [1127] = 199, + [1128] = 133, + [1129] = 133, + [1130] = 259, + [1131] = 259, + [1132] = 259, + [1133] = 259, + [1134] = 259, + [1135] = 259, + [1136] = 307, + [1137] = 307, + [1138] = 307, + [1139] = 5, [1140] = 3, - [1141] = 3, - [1142] = 2, - [1143] = 316, - [1144] = 4, - [1145] = 5, - [1146] = 4, - [1147] = 316, - [1148] = 2, - [1149] = 5, - [1150] = 3, - [1151] = 2, - [1152] = 4, - [1153] = 3, - [1154] = 4, - [1155] = 2, - [1156] = 316, - [1157] = 5, - [1158] = 2, - [1159] = 3, - [1160] = 5, - [1161] = 3, - [1162] = 4, - [1163] = 2, - [1164] = 5, + [1141] = 5, + [1142] = 4, + [1143] = 3, + [1144] = 5, + [1145] = 2, + [1146] = 5, + [1147] = 4, + [1148] = 3, + [1149] = 2, + [1150] = 2, + [1151] = 4, + [1152] = 307, + [1153] = 2, + [1154] = 2, + [1155] = 3, + [1156] = 4, + [1157] = 307, + [1158] = 5, + [1159] = 4, + [1160] = 3, + [1161] = 2, + [1162] = 307, + [1163] = 3, + [1164] = 4, [1165] = 5, - [1166] = 74, - [1167] = 72, + [1166] = 66, + [1167] = 59, [1168] = 70, - [1169] = 55, - [1170] = 56, - [1171] = 57, - [1172] = 73, - [1173] = 58, - [1174] = 48, - [1175] = 74, - [1176] = 59, - [1177] = 60, - [1178] = 19, - [1179] = 61, - [1180] = 62, - [1181] = 18, - [1182] = 20, - [1183] = 64, - [1184] = 65, - [1185] = 37, - [1186] = 66, - [1187] = 21, - [1188] = 54, - [1189] = 22, - [1190] = 67, - [1191] = 23, - [1192] = 49, - [1193] = 24, - [1194] = 68, - [1195] = 25, - [1196] = 50, - [1197] = 69, - [1198] = 38, - [1199] = 70, - [1200] = 39, - [1201] = 71, - [1202] = 55, - [1203] = 56, - [1204] = 57, - [1205] = 51, - [1206] = 52, - [1207] = 40, - [1208] = 58, - [1209] = 53, - [1210] = 41, - [1211] = 42, - [1212] = 59, - [1213] = 72, - [1214] = 73, - [1215] = 70, - [1216] = 19, - [1217] = 20, - [1218] = 21, - [1219] = 26, - [1220] = 22, - [1221] = 66, - [1222] = 23, - [1223] = 27, - [1224] = 24, - [1225] = 54, - [1226] = 25, - [1227] = 28, - [1228] = 26, - [1229] = 67, - [1230] = 27, - [1231] = 29, - [1232] = 28, - [1233] = 60, - [1234] = 29, - [1235] = 30, - [1236] = 30, - [1237] = 68, - [1238] = 31, - [1239] = 31, - [1240] = 32, - [1241] = 43, - [1242] = 33, - [1243] = 32, - [1244] = 71, - [1245] = 34, - [1246] = 35, - [1247] = 69, - [1248] = 33, - [1249] = 36, - [1250] = 37, - [1251] = 38, - [1252] = 39, - [1253] = 40, - [1254] = 53, - [1255] = 42, - [1256] = 43, - [1257] = 44, - [1258] = 45, - [1259] = 46, - [1260] = 47, - [1261] = 48, - [1262] = 49, - [1263] = 50, - [1264] = 61, - [1265] = 55, - [1266] = 72, - [1267] = 73, - [1268] = 74, - [1269] = 34, - [1270] = 19, - [1271] = 35, - [1272] = 51, - [1273] = 20, - [1274] = 52, - [1275] = 21, - [1276] = 56, - [1277] = 22, - [1278] = 57, - [1279] = 23, - [1280] = 62, - [1281] = 24, - [1282] = 58, - [1283] = 25, + [1169] = 69, + [1170] = 68, + [1171] = 67, + [1172] = 65, + [1173] = 18, + [1174] = 63, + [1175] = 62, + [1176] = 53, + [1177] = 46, + [1178] = 47, + [1179] = 27, + [1180] = 52, + [1181] = 51, + [1182] = 50, + [1183] = 49, + [1184] = 29, + [1185] = 48, + [1186] = 48, + [1187] = 49, + [1188] = 47, + [1189] = 50, + [1190] = 46, + [1191] = 45, + [1192] = 44, + [1193] = 51, + [1194] = 43, + [1195] = 42, + [1196] = 52, + [1197] = 53, + [1198] = 62, + [1199] = 41, + [1200] = 63, + [1201] = 40, + [1202] = 31, + [1203] = 18, + [1204] = 65, + [1205] = 32, + [1206] = 66, + [1207] = 67, + [1208] = 68, + [1209] = 28, + [1210] = 69, + [1211] = 70, + [1212] = 30, + [1213] = 33, + [1214] = 34, + [1215] = 35, + [1216] = 36, + [1217] = 37, + [1218] = 39, + [1219] = 38, + [1220] = 37, + [1221] = 36, + [1222] = 38, + [1223] = 39, + [1224] = 40, + [1225] = 41, + [1226] = 42, + [1227] = 43, + [1228] = 44, + [1229] = 26, + [1230] = 19, + [1231] = 25, + [1232] = 35, + [1233] = 24, + [1234] = 23, + [1235] = 22, + [1236] = 21, + [1237] = 20, + [1238] = 73, + [1239] = 55, + [1240] = 34, + [1241] = 33, + [1242] = 32, + [1243] = 56, + [1244] = 57, + [1245] = 58, + [1246] = 59, + [1247] = 60, + [1248] = 61, + [1249] = 31, + [1250] = 30, + [1251] = 29, + [1252] = 28, + [1253] = 27, + [1254] = 26, + [1255] = 25, + [1256] = 24, + [1257] = 23, + [1258] = 64, + [1259] = 74, + [1260] = 22, + [1261] = 72, + [1262] = 71, + [1263] = 21, + [1264] = 20, + [1265] = 73, + [1266] = 55, + [1267] = 56, + [1268] = 57, + [1269] = 58, + [1270] = 59, + [1271] = 60, + [1272] = 61, + [1273] = 64, + [1274] = 74, + [1275] = 19, + [1276] = 72, + [1277] = 71, + [1278] = 70, + [1279] = 69, + [1280] = 68, + [1281] = 67, + [1282] = 66, + [1283] = 65, [1284] = 18, - [1285] = 26, - [1286] = 44, - [1287] = 27, - [1288] = 59, - [1289] = 28, - [1290] = 60, - [1291] = 29, - [1292] = 64, - [1293] = 30, - [1294] = 61, - [1295] = 31, - [1296] = 62, - [1297] = 32, - [1298] = 18, - [1299] = 33, - [1300] = 65, - [1301] = 45, - [1302] = 34, - [1303] = 35, - [1304] = 64, - [1305] = 65, - [1306] = 36, - [1307] = 37, - [1308] = 38, - [1309] = 39, - [1310] = 40, - [1311] = 41, - [1312] = 42, - [1313] = 43, - [1314] = 44, - [1315] = 45, - [1316] = 46, - [1317] = 47, - [1318] = 48, - [1319] = 49, - [1320] = 50, - [1321] = 71, - [1322] = 66, - [1323] = 36, - [1324] = 67, - [1325] = 51, - [1326] = 52, - [1327] = 46, - [1328] = 53, - [1329] = 68, - [1330] = 47, - [1331] = 69, - [1332] = 54, - [1333] = 41, - [1334] = 60, - [1335] = 34, - [1336] = 35, - [1337] = 1337, - [1338] = 36, - [1339] = 37, - [1340] = 38, - [1341] = 54, + [1285] = 63, + [1286] = 62, + [1287] = 53, + [1288] = 52, + [1289] = 51, + [1290] = 50, + [1291] = 49, + [1292] = 48, + [1293] = 47, + [1294] = 46, + [1295] = 45, + [1296] = 44, + [1297] = 43, + [1298] = 42, + [1299] = 41, + [1300] = 40, + [1301] = 39, + [1302] = 38, + [1303] = 37, + [1304] = 36, + [1305] = 35, + [1306] = 34, + [1307] = 33, + [1308] = 32, + [1309] = 31, + [1310] = 30, + [1311] = 29, + [1312] = 28, + [1313] = 27, + [1314] = 26, + [1315] = 25, + [1316] = 24, + [1317] = 23, + [1318] = 22, + [1319] = 21, + [1320] = 20, + [1321] = 73, + [1322] = 55, + [1323] = 19, + [1324] = 61, + [1325] = 74, + [1326] = 58, + [1327] = 64, + [1328] = 45, + [1329] = 57, + [1330] = 56, + [1331] = 71, + [1332] = 60, + [1333] = 72, + [1334] = 69, + [1335] = 64, + [1336] = 38, + [1337] = 56, + [1338] = 69, + [1339] = 68, + [1340] = 67, + [1341] = 55, [1342] = 39, - [1343] = 40, - [1344] = 41, - [1345] = 42, - [1346] = 43, - [1347] = 44, - [1348] = 55, - [1349] = 56, - [1350] = 45, - [1351] = 57, - [1352] = 46, - [1353] = 47, - [1354] = 53, - [1355] = 58, - [1356] = 59, - [1357] = 49, - [1358] = 66, - [1359] = 50, + [1343] = 66, + [1344] = 1344, + [1345] = 65, + [1346] = 73, + [1347] = 20, + [1348] = 21, + [1349] = 22, + [1350] = 18, + [1351] = 23, + [1352] = 24, + [1353] = 63, + [1354] = 25, + [1355] = 26, + [1356] = 1356, + [1357] = 27, + [1358] = 28, + [1359] = 29, [1360] = 1360, - [1361] = 67, - [1362] = 68, - [1363] = 69, - [1364] = 51, - [1365] = 52, - [1366] = 70, - [1367] = 61, - [1368] = 53, - [1369] = 1369, - [1370] = 54, + [1361] = 30, + [1362] = 62, + [1363] = 1363, + [1364] = 40, + [1365] = 1363, + [1366] = 53, + [1367] = 52, + [1368] = 51, + [1369] = 50, + [1370] = 1344, [1371] = 1371, - [1372] = 55, - [1373] = 56, - [1374] = 57, - [1375] = 58, - [1376] = 1376, - [1377] = 59, - [1378] = 60, - [1379] = 71, - [1380] = 61, - [1381] = 72, - [1382] = 62, - [1383] = 18, - [1384] = 73, - [1385] = 74, - [1386] = 19, + [1372] = 38, + [1373] = 49, + [1374] = 48, + [1375] = 1360, + [1376] = 1363, + [1377] = 1360, + [1378] = 1363, + [1379] = 41, + [1380] = 47, + [1381] = 46, + [1382] = 1360, + [1383] = 1363, + [1384] = 1360, + [1385] = 42, + [1386] = 43, [1387] = 1387, - [1388] = 64, - [1389] = 20, - [1390] = 65, - [1391] = 21, - [1392] = 22, - [1393] = 23, - [1394] = 24, - [1395] = 66, - [1396] = 25, - [1397] = 67, - [1398] = 26, - [1399] = 68, - [1400] = 69, - [1401] = 66, - [1402] = 70, + [1388] = 46, + [1389] = 47, + [1390] = 1363, + [1391] = 1360, + [1392] = 31, + [1393] = 32, + [1394] = 33, + [1395] = 48, + [1396] = 44, + [1397] = 45, + [1398] = 1398, + [1399] = 36, + [1400] = 57, + [1401] = 70, + [1402] = 68, [1403] = 67, - [1404] = 68, - [1405] = 69, - [1406] = 70, - [1407] = 71, + [1404] = 66, + [1405] = 65, + [1406] = 18, + [1407] = 63, [1408] = 62, - [1409] = 18, - [1410] = 72, - [1411] = 73, - [1412] = 74, - [1413] = 19, - [1414] = 20, - [1415] = 21, - [1416] = 22, - [1417] = 23, - [1418] = 24, - [1419] = 25, - [1420] = 26, - [1421] = 27, - [1422] = 28, - [1423] = 29, - [1424] = 30, - [1425] = 31, - [1426] = 32, - [1427] = 33, + [1409] = 53, + [1410] = 52, + [1411] = 51, + [1412] = 50, + [1413] = 35, + [1414] = 34, + [1415] = 1415, + [1416] = 1356, + [1417] = 1415, + [1418] = 49, + [1419] = 1363, + [1420] = 45, + [1421] = 1356, + [1422] = 48, + [1423] = 49, + [1424] = 1360, + [1425] = 44, + [1426] = 58, + [1427] = 43, [1428] = 34, - [1429] = 35, - [1430] = 71, - [1431] = 36, - [1432] = 37, - [1433] = 38, - [1434] = 39, - [1435] = 40, - [1436] = 41, - [1437] = 42, - [1438] = 43, - [1439] = 44, - [1440] = 45, - [1441] = 64, - [1442] = 65, - [1443] = 46, - [1444] = 1387, - [1445] = 1369, - [1446] = 47, - [1447] = 1337, - [1448] = 48, - [1449] = 1449, - [1450] = 1376, - [1451] = 49, - [1452] = 50, - [1453] = 1453, - [1454] = 72, - [1455] = 73, - [1456] = 74, - [1457] = 27, - [1458] = 19, - [1459] = 20, - [1460] = 51, - [1461] = 1387, - [1462] = 1369, - [1463] = 52, - [1464] = 1337, - [1465] = 53, - [1466] = 1449, - [1467] = 28, - [1468] = 1376, - [1469] = 29, - [1470] = 1387, - [1471] = 1369, - [1472] = 21, - [1473] = 1337, - [1474] = 30, - [1475] = 1449, - [1476] = 54, - [1477] = 1376, - [1478] = 22, - [1479] = 31, - [1480] = 1480, - [1481] = 1387, - [1482] = 1369, - [1483] = 55, - [1484] = 1337, - [1485] = 56, - [1486] = 32, - [1487] = 1449, - [1488] = 57, - [1489] = 1376, - [1490] = 23, - [1491] = 33, - [1492] = 1387, - [1493] = 1369, - [1494] = 58, - [1495] = 1337, - [1496] = 1449, - [1497] = 24, - [1498] = 1376, - [1499] = 59, - [1500] = 60, - [1501] = 61, - [1502] = 1387, - [1503] = 1369, - [1504] = 62, - [1505] = 1337, - [1506] = 18, - [1507] = 25, - [1508] = 1449, - [1509] = 64, - [1510] = 1376, - [1511] = 65, - [1512] = 26, - [1513] = 1387, - [1514] = 1369, - [1515] = 1337, - [1516] = 1449, - [1517] = 1376, + [1429] = 47, + [1430] = 33, + [1431] = 46, + [1432] = 42, + [1433] = 1360, + [1434] = 41, + [1435] = 1363, + [1436] = 40, + [1437] = 39, + [1438] = 1398, + [1439] = 32, + [1440] = 1360, + [1441] = 1363, + [1442] = 1344, + [1443] = 50, + [1444] = 31, + [1445] = 1387, + [1446] = 71, + [1447] = 72, + [1448] = 19, + [1449] = 74, + [1450] = 1371, + [1451] = 45, + [1452] = 1415, + [1453] = 1360, + [1454] = 51, + [1455] = 36, + [1456] = 52, + [1457] = 53, + [1458] = 1363, + [1459] = 1356, + [1460] = 62, + [1461] = 63, + [1462] = 60, + [1463] = 44, + [1464] = 43, + [1465] = 18, + [1466] = 70, + [1467] = 1371, + [1468] = 65, + [1469] = 1387, + [1470] = 1398, + [1471] = 61, + [1472] = 1356, + [1473] = 1415, + [1474] = 1371, + [1475] = 1387, + [1476] = 1398, + [1477] = 1356, + [1478] = 1398, + [1479] = 66, + [1480] = 67, + [1481] = 68, + [1482] = 1415, + [1483] = 69, + [1484] = 70, + [1485] = 37, + [1486] = 1387, + [1487] = 61, + [1488] = 60, + [1489] = 42, + [1490] = 41, + [1491] = 1371, + [1492] = 1415, + [1493] = 1356, + [1494] = 40, + [1495] = 39, + [1496] = 1371, + [1497] = 59, + [1498] = 38, + [1499] = 1387, + [1500] = 37, + [1501] = 36, + [1502] = 35, + [1503] = 58, + [1504] = 34, + [1505] = 33, + [1506] = 1398, + [1507] = 57, + [1508] = 1398, + [1509] = 32, + [1510] = 30, + [1511] = 31, + [1512] = 56, + [1513] = 1356, + [1514] = 1398, + [1515] = 1415, + [1516] = 29, + [1517] = 64, [1518] = 1371, - [1519] = 27, - [1520] = 1449, + [1519] = 28, + [1520] = 74, [1521] = 1387, - [1522] = 1369, - [1523] = 1337, - [1524] = 1449, - [1525] = 1376, - [1526] = 1387, - [1527] = 1369, - [1528] = 1337, - [1529] = 1449, - [1530] = 1376, - [1531] = 34, - [1532] = 35, - [1533] = 1360, - [1534] = 28, - [1535] = 1480, - [1536] = 29, - [1537] = 1371, - [1538] = 30, - [1539] = 36, - [1540] = 37, - [1541] = 31, - [1542] = 1360, - [1543] = 38, - [1544] = 1480, - [1545] = 39, - [1546] = 32, - [1547] = 40, - [1548] = 1360, - [1549] = 1480, - [1550] = 41, - [1551] = 33, - [1552] = 42, - [1553] = 1360, - [1554] = 43, - [1555] = 1480, - [1556] = 44, - [1557] = 45, - [1558] = 1360, - [1559] = 1480, - [1560] = 46, - [1561] = 47, - [1562] = 48, - [1563] = 1360, - [1564] = 1480, - [1565] = 1360, - [1566] = 1480, - [1567] = 1360, - [1568] = 1480, - [1569] = 49, - [1570] = 1360, - [1571] = 50, - [1572] = 1480, - [1573] = 51, - [1574] = 52, - [1575] = 48, - [1576] = 291, - [1577] = 292, - [1578] = 299, - [1579] = 291, - [1580] = 300, - [1581] = 292, - [1582] = 293, - [1583] = 294, - [1584] = 295, - [1585] = 291, - [1586] = 292, - [1587] = 293, - [1588] = 294, - [1589] = 295, - [1590] = 293, - [1591] = 299, - [1592] = 300, - [1593] = 294, - [1594] = 299, - [1595] = 300, - [1596] = 295, - [1597] = 289, - [1598] = 287, - [1599] = 289, - [1600] = 287, - [1601] = 1601, - [1602] = 289, - [1603] = 287, - [1604] = 295, - [1605] = 293, - [1606] = 292, - [1607] = 291, - [1608] = 299, - [1609] = 299, - [1610] = 300, - [1611] = 289, - [1612] = 300, - [1613] = 316, - [1614] = 1614, - [1615] = 287, - [1616] = 289, - [1617] = 287, - [1618] = 294, - [1619] = 299, - [1620] = 1614, - [1621] = 295, - [1622] = 300, - [1623] = 289, - [1624] = 1614, - [1625] = 291, - [1626] = 287, - [1627] = 291, - [1628] = 292, - [1629] = 293, - [1630] = 292, - [1631] = 294, - [1632] = 293, - [1633] = 294, + [1522] = 37, + [1523] = 1387, + [1524] = 55, + [1525] = 1398, + [1526] = 73, + [1527] = 1356, + [1528] = 71, + [1529] = 72, + [1530] = 27, + [1531] = 1371, + [1532] = 26, + [1533] = 1415, + [1534] = 1415, + [1535] = 20, + [1536] = 21, + [1537] = 30, + [1538] = 19, + [1539] = 29, + [1540] = 19, + [1541] = 28, + [1542] = 72, + [1543] = 27, + [1544] = 74, + [1545] = 64, + [1546] = 1356, + [1547] = 25, + [1548] = 26, + [1549] = 25, + [1550] = 24, + [1551] = 23, + [1552] = 22, + [1553] = 21, + [1554] = 20, + [1555] = 73, + [1556] = 55, + [1557] = 1371, + [1558] = 1398, + [1559] = 1371, + [1560] = 56, + [1561] = 57, + [1562] = 24, + [1563] = 59, + [1564] = 23, + [1565] = 1387, + [1566] = 58, + [1567] = 22, + [1568] = 59, + [1569] = 60, + [1570] = 1415, + [1571] = 71, + [1572] = 1572, + [1573] = 35, + [1574] = 61, + [1575] = 1387, + [1576] = 297, + [1577] = 287, + [1578] = 295, + [1579] = 298, + [1580] = 297, + [1581] = 289, + [1582] = 296, + [1583] = 290, + [1584] = 296, + [1585] = 294, + [1586] = 297, + [1587] = 289, + [1588] = 290, + [1589] = 294, + [1590] = 286, + [1591] = 287, + [1592] = 1592, + [1593] = 286, + [1594] = 295, + [1595] = 287, + [1596] = 298, + [1597] = 298, + [1598] = 286, + [1599] = 290, + [1600] = 289, + [1601] = 296, + [1602] = 295, + [1603] = 294, + [1604] = 296, + [1605] = 290, + [1606] = 287, + [1607] = 298, + [1608] = 286, + [1609] = 1609, + [1610] = 1609, + [1611] = 307, + [1612] = 295, + [1613] = 298, + [1614] = 1609, + [1615] = 297, + [1616] = 294, + [1617] = 296, + [1618] = 289, + [1619] = 294, + [1620] = 286, + [1621] = 287, + [1622] = 295, + [1623] = 297, + [1624] = 297, + [1625] = 296, + [1626] = 289, + [1627] = 290, + [1628] = 289, + [1629] = 290, + [1630] = 298, + [1631] = 287, + [1632] = 294, + [1633] = 286, [1634] = 295, - [1635] = 357, - [1636] = 1636, - [1637] = 333, - [1638] = 339, - [1639] = 340, - [1640] = 333, - [1641] = 339, - [1642] = 340, - [1643] = 343, - [1644] = 328, - [1645] = 343, - [1646] = 329, - [1647] = 328, - [1648] = 329, - [1649] = 330, - [1650] = 330, - [1651] = 340, - [1652] = 1652, - [1653] = 343, - [1654] = 328, - [1655] = 329, - [1656] = 334, - [1657] = 330, - [1658] = 335, - [1659] = 336, - [1660] = 337, - [1661] = 327, - [1662] = 338, - [1663] = 334, - [1664] = 334, - [1665] = 335, - [1666] = 336, - [1667] = 337, - [1668] = 327, - [1669] = 338, - [1670] = 381, - [1671] = 341, - [1672] = 342, - [1673] = 348, - [1674] = 352, - [1675] = 381, - [1676] = 354, - [1677] = 355, - [1678] = 357, - [1679] = 358, - [1680] = 359, - [1681] = 1681, - [1682] = 341, - [1683] = 342, - [1684] = 341, - [1685] = 342, - [1686] = 348, - [1687] = 352, - [1688] = 353, - [1689] = 354, - [1690] = 355, - [1691] = 348, - [1692] = 352, - [1693] = 353, - [1694] = 354, - [1695] = 357, - [1696] = 358, - [1697] = 359, - [1698] = 355, - [1699] = 339, - [1700] = 381, - [1701] = 335, - [1702] = 336, - [1703] = 358, - [1704] = 359, - [1705] = 337, - [1706] = 327, - [1707] = 333, - [1708] = 338, - [1709] = 353, - [1710] = 338, - [1711] = 333, - [1712] = 339, - [1713] = 357, - [1714] = 358, - [1715] = 359, - [1716] = 340, - [1717] = 341, - [1718] = 357, - [1719] = 358, - [1720] = 359, - [1721] = 339, - [1722] = 333, - [1723] = 340, - [1724] = 343, - [1725] = 328, - [1726] = 333, - [1727] = 329, - [1728] = 381, - [1729] = 355, - [1730] = 334, - [1731] = 330, - [1732] = 334, - [1733] = 353, - [1734] = 339, - [1735] = 342, - [1736] = 335, - [1737] = 336, - [1738] = 354, - [1739] = 340, - [1740] = 327, - [1741] = 327, - [1742] = 338, - [1743] = 335, - [1744] = 343, - [1745] = 328, - [1746] = 336, - [1747] = 329, - [1748] = 330, - [1749] = 337, - [1750] = 327, + [1635] = 329, + [1636] = 342, + [1637] = 340, + [1638] = 344, + [1639] = 345, + [1640] = 338, + [1641] = 346, + [1642] = 372, + [1643] = 373, + [1644] = 347, + [1645] = 353, + [1646] = 348, + [1647] = 349, + [1648] = 352, + [1649] = 363, + [1650] = 352, + [1651] = 349, + [1652] = 377, + [1653] = 348, + [1654] = 352, + [1655] = 328, + [1656] = 346, + [1657] = 345, + [1658] = 349, + [1659] = 344, + [1660] = 342, + [1661] = 348, + [1662] = 363, + [1663] = 346, + [1664] = 341, + [1665] = 340, + [1666] = 338, + [1667] = 1667, + [1668] = 345, + [1669] = 344, + [1670] = 347, + [1671] = 342, + [1672] = 341, + [1673] = 378, + [1674] = 353, + [1675] = 341, + [1676] = 340, + [1677] = 372, + [1678] = 330, + [1679] = 373, + [1680] = 377, + [1681] = 378, + [1682] = 363, + [1683] = 337, + [1684] = 353, + [1685] = 372, + [1686] = 373, + [1687] = 1687, + [1688] = 328, + [1689] = 328, + [1690] = 336, + [1691] = 377, + [1692] = 329, + [1693] = 330, + [1694] = 332, + [1695] = 333, + [1696] = 336, + [1697] = 337, + [1698] = 378, + [1699] = 333, + [1700] = 332, + [1701] = 330, + [1702] = 329, + [1703] = 347, + [1704] = 338, + [1705] = 332, + [1706] = 1706, + [1707] = 337, + [1708] = 333, + [1709] = 336, + [1710] = 342, + [1711] = 372, + [1712] = 348, + [1713] = 346, + [1714] = 377, + [1715] = 345, + [1716] = 349, + [1717] = 344, + [1718] = 352, + [1719] = 341, + [1720] = 340, + [1721] = 338, + [1722] = 349, + [1723] = 377, + [1724] = 373, + [1725] = 348, + [1726] = 372, + [1727] = 346, + [1728] = 378, + [1729] = 345, + [1730] = 344, + [1731] = 353, + [1732] = 342, + [1733] = 363, + [1734] = 341, + [1735] = 340, + [1736] = 338, + [1737] = 352, + [1738] = 349, + [1739] = 352, + [1740] = 348, + [1741] = 346, + [1742] = 345, + [1743] = 329, + [1744] = 344, + [1745] = 363, + [1746] = 347, + [1747] = 373, + [1748] = 342, + [1749] = 341, + [1750] = 340, [1751] = 338, - [1752] = 381, - [1753] = 343, - [1754] = 328, - [1755] = 329, - [1756] = 330, - [1757] = 381, - [1758] = 348, - [1759] = 352, - [1760] = 334, - [1761] = 341, - [1762] = 341, - [1763] = 342, - [1764] = 342, - [1765] = 348, - [1766] = 348, - [1767] = 352, - [1768] = 335, - [1769] = 352, - [1770] = 353, - [1771] = 354, - [1772] = 355, - [1773] = 353, - [1774] = 354, - [1775] = 336, - [1776] = 357, - [1777] = 358, - [1778] = 359, - [1779] = 337, - [1780] = 355, - [1781] = 337, + [1752] = 330, + [1753] = 328, + [1754] = 332, + [1755] = 353, + [1756] = 329, + [1757] = 378, + [1758] = 333, + [1759] = 347, + [1760] = 328, + [1761] = 337, + [1762] = 336, + [1763] = 330, + [1764] = 337, + [1765] = 332, + [1766] = 373, + [1767] = 330, + [1768] = 329, + [1769] = 377, + [1770] = 328, + [1771] = 332, + [1772] = 333, + [1773] = 372, + [1774] = 353, + [1775] = 347, + [1776] = 336, + [1777] = 337, + [1778] = 333, + [1779] = 363, + [1780] = 378, + [1781] = 336, [1782] = 1782, [1783] = 1783, [1784] = 1784, [1785] = 1785, - [1786] = 1784, - [1787] = 1785, - [1788] = 1785, - [1789] = 1785, + [1786] = 1785, + [1787] = 1784, + [1788] = 1784, + [1789] = 1784, [1790] = 1785, [1791] = 1784, - [1792] = 1784, - [1793] = 1785, - [1794] = 1784, + [1792] = 1785, + [1793] = 1784, + [1794] = 1785, [1795] = 1785, [1796] = 1784, - [1797] = 1784, + [1797] = 1785, [1798] = 1785, - [1799] = 1785, - [1800] = 1784, - [1801] = 1785, + [1799] = 1784, + [1800] = 1785, + [1801] = 1784, [1802] = 1784, - [1803] = 1784, + [1803] = 1785, [1804] = 1804, [1805] = 1805, [1806] = 1806, [1807] = 1807, - [1808] = 1807, - [1809] = 1807, + [1808] = 1808, + [1809] = 1804, [1810] = 1810, - [1811] = 1811, + [1811] = 1810, [1812] = 1812, - [1813] = 1804, - [1814] = 1804, - [1815] = 1815, + [1813] = 1813, + [1814] = 1814, + [1815] = 1814, [1816] = 1816, - [1817] = 1815, + [1817] = 1805, [1818] = 1818, [1819] = 1819, [1820] = 1820, [1821] = 1821, [1822] = 1822, - [1823] = 1820, + [1823] = 1823, [1824] = 1804, - [1825] = 1805, - [1826] = 1806, - [1827] = 1815, - [1828] = 1828, - [1829] = 1807, - [1830] = 1828, - [1831] = 1816, - [1832] = 1811, - [1833] = 1821, - [1834] = 1804, - [1835] = 1815, - [1836] = 1818, - [1837] = 1818, - [1838] = 1819, - [1839] = 1819, - [1840] = 1819, - [1841] = 1821, - [1842] = 1822, - [1843] = 1805, - [1844] = 1806, - [1845] = 1822, - [1846] = 1807, - [1847] = 1820, - [1848] = 1818, - [1849] = 1819, - [1850] = 1804, - [1851] = 1815, - [1852] = 1805, - [1853] = 1818, - [1854] = 1819, - [1855] = 1806, - [1856] = 1856, - [1857] = 1857, - [1858] = 1805, - [1859] = 1806, - [1860] = 1816, - [1861] = 1807, - [1862] = 1807, - [1863] = 1811, - [1864] = 1828, - [1865] = 1821, - [1866] = 1816, - [1867] = 1806, - [1868] = 1804, - [1869] = 1815, - [1870] = 1811, - [1871] = 1821, - [1872] = 1818, - [1873] = 1819, - [1874] = 1822, - [1875] = 1804, - [1876] = 1820, - [1877] = 1815, - [1878] = 1805, - [1879] = 1806, - [1880] = 1807, - [1881] = 1828, - [1882] = 1822, - [1883] = 1883, - [1884] = 1818, - [1885] = 1819, - [1886] = 1886, - [1887] = 1820, - [1888] = 1821, - [1889] = 1822, - [1890] = 1820, - [1891] = 1828, - [1892] = 1804, - [1893] = 1816, - [1894] = 1815, - [1895] = 1805, - [1896] = 1818, - [1897] = 1819, - [1898] = 1828, - [1899] = 1805, - [1900] = 1820, - [1901] = 1816, - [1902] = 1816, - [1903] = 1805, - [1904] = 1904, - [1905] = 1806, - [1906] = 1806, - [1907] = 1818, - [1908] = 1807, - [1909] = 1821, - [1910] = 1816, - [1911] = 1911, - [1912] = 1807, - [1913] = 1811, + [1825] = 1807, + [1826] = 1826, + [1827] = 1812, + [1828] = 1813, + [1829] = 1814, + [1830] = 1816, + [1831] = 1805, + [1832] = 1826, + [1833] = 1822, + [1834] = 1823, + [1835] = 1821, + [1836] = 1807, + [1837] = 1820, + [1838] = 1804, + [1839] = 1806, + [1840] = 1812, + [1841] = 1813, + [1842] = 1814, + [1843] = 1826, + [1844] = 1823, + [1845] = 1816, + [1846] = 1805, + [1847] = 1813, + [1848] = 1812, + [1849] = 1808, + [1850] = 1814, + [1851] = 1807, + [1852] = 1822, + [1853] = 1823, + [1854] = 1807, + [1855] = 1822, + [1856] = 1807, + [1857] = 1826, + [1858] = 1858, + [1859] = 1805, + [1860] = 1806, + [1861] = 1808, + [1862] = 1816, + [1863] = 1812, + [1864] = 1813, + [1865] = 1814, + [1866] = 1826, + [1867] = 1814, + [1868] = 1816, + [1869] = 1805, + [1870] = 1826, + [1871] = 1813, + [1872] = 1812, + [1873] = 1806, + [1874] = 1808, + [1875] = 1822, + [1876] = 1823, + [1877] = 1821, + [1878] = 1814, + [1879] = 1807, + [1880] = 1806, + [1881] = 1820, + [1882] = 1807, + [1883] = 1808, + [1884] = 1821, + [1885] = 1804, + [1886] = 1812, + [1887] = 1813, + [1888] = 1826, + [1889] = 1889, + [1890] = 1823, + [1891] = 1816, + [1892] = 1805, + [1893] = 1826, + [1894] = 1894, + [1895] = 1822, + [1896] = 1812, + [1897] = 1820, + [1898] = 1822, + [1899] = 1823, + [1900] = 1810, + [1901] = 1807, + [1902] = 1810, + [1903] = 1903, + [1904] = 1810, + [1905] = 1805, + [1906] = 1804, + [1907] = 1810, + [1908] = 1804, + [1909] = 1820, + [1910] = 1821, + [1911] = 1816, + [1912] = 1820, + [1913] = 1814, [1914] = 1821, - [1915] = 1822, - [1916] = 1811, - [1917] = 1805, - [1918] = 1918, - [1919] = 1816, - [1920] = 1811, - [1921] = 1811, - [1922] = 1820, - [1923] = 1806, - [1924] = 1820, - [1925] = 1804, - [1926] = 1815, - [1927] = 1828, - [1928] = 1928, - [1929] = 1929, - [1930] = 1816, - [1931] = 1883, - [1932] = 1821, - [1933] = 1828, - [1934] = 1828, - [1935] = 1929, - [1936] = 1936, - [1937] = 1883, - [1938] = 1818, - [1939] = 1929, - [1940] = 1819, - [1941] = 1883, - [1942] = 1929, - [1943] = 1929, - [1944] = 1883, - [1945] = 1929, - [1946] = 1811, - [1947] = 1883, - [1948] = 1815, - [1949] = 1929, + [1915] = 1826, + [1916] = 1823, + [1917] = 1813, + [1918] = 1812, + [1919] = 1808, + [1920] = 1814, + [1921] = 1813, + [1922] = 1819, + [1923] = 1826, + [1924] = 1894, + [1925] = 1806, + [1926] = 1926, + [1927] = 1816, + [1928] = 1822, + [1929] = 1807, + [1930] = 1805, + [1931] = 1823, + [1932] = 1818, + [1933] = 1810, + [1934] = 1926, + [1935] = 1822, + [1936] = 1822, + [1937] = 1818, + [1938] = 1819, + [1939] = 1816, + [1940] = 1894, + [1941] = 1808, + [1942] = 1820, + [1943] = 1805, + [1944] = 1806, + [1945] = 1810, + [1946] = 1816, + [1947] = 1823, + [1948] = 1804, + [1949] = 1926, [1950] = 1820, - [1951] = 1883, - [1952] = 1821, - [1953] = 1929, - [1954] = 1883, - [1955] = 1828, - [1956] = 1929, - [1957] = 1822, - [1958] = 1883, - [1959] = 1822, - [1960] = 1929, - [1961] = 1883, - [1962] = 1812, - [1963] = 1822, - [1964] = 1918, - [1965] = 1928, - [1966] = 1857, - [1967] = 1812, - [1968] = 1918, - [1969] = 1928, - [1970] = 1857, - [1971] = 1812, - [1972] = 1918, - [1973] = 1928, - [1974] = 1857, - [1975] = 1812, - [1976] = 1918, - [1977] = 1928, - [1978] = 1857, - [1979] = 1812, - [1980] = 1918, - [1981] = 1928, - [1982] = 1857, - [1983] = 1812, - [1984] = 1918, - [1985] = 1928, - [1986] = 1857, - [1987] = 1812, - [1988] = 1918, - [1989] = 1928, - [1990] = 1857, - [1991] = 1812, - [1992] = 1918, - [1993] = 1928, - [1994] = 1857, - [1995] = 1928, - [1996] = 1857, - [1997] = 1812, - [1998] = 1886, - [1999] = 1918, - [2000] = 1810, - [2001] = 1886, - [2002] = 1810, - [2003] = 1886, - [2004] = 1810, - [2005] = 1886, - [2006] = 1810, - [2007] = 1886, + [1951] = 1818, + [1952] = 1813, + [1953] = 1819, + [1954] = 1954, + [1955] = 1806, + [1956] = 1812, + [1957] = 1821, + [1958] = 1808, + [1959] = 1894, + [1960] = 1926, + [1961] = 1821, + [1962] = 1818, + [1963] = 1819, + [1964] = 1894, + [1965] = 1926, + [1966] = 1808, + [1967] = 1818, + [1968] = 1819, + [1969] = 1889, + [1970] = 1894, + [1971] = 1858, + [1972] = 1926, + [1973] = 1818, + [1974] = 1819, + [1975] = 1806, + [1976] = 1894, + [1977] = 1889, + [1978] = 1926, + [1979] = 1858, + [1980] = 1810, + [1981] = 1926, + [1982] = 1818, + [1983] = 1889, + [1984] = 1984, + [1985] = 1858, + [1986] = 1804, + [1987] = 1819, + [1988] = 1894, + [1989] = 1889, + [1990] = 1820, + [1991] = 1858, + [1992] = 1992, + [1993] = 1926, + [1994] = 1818, + [1995] = 1889, + [1996] = 1821, + [1997] = 1858, + [1998] = 1821, + [1999] = 1819, + [2000] = 1894, + [2001] = 1889, + [2002] = 1926, + [2003] = 1858, + [2004] = 1808, + [2005] = 1818, + [2006] = 1819, + [2007] = 1889, [2008] = 1810, - [2009] = 1886, - [2010] = 1810, - [2011] = 1886, - [2012] = 1810, - [2013] = 1886, - [2014] = 1810, - [2015] = 1886, - [2016] = 1810, - [2017] = 1811, + [2009] = 1858, + [2010] = 1820, + [2011] = 1894, + [2012] = 1858, + [2013] = 1889, + [2014] = 1804, + [2015] = 1858, + [2016] = 1806, + [2017] = 1889, [2018] = 2018, [2019] = 2019, - [2020] = 316, + [2020] = 2020, [2021] = 2021, - [2022] = 2018, - [2023] = 2018, - [2024] = 2024, + [2022] = 2019, + [2023] = 2023, + [2024] = 2019, [2025] = 2025, - [2026] = 2026, + [2026] = 307, [2027] = 2027, - [2028] = 2028, - [2029] = 2029, + [2028] = 2027, + [2029] = 2027, [2030] = 2030, - [2031] = 2030, - [2032] = 2027, - [2033] = 2028, + [2031] = 2031, + [2032] = 2032, + [2033] = 2027, [2034] = 2034, - [2035] = 2035, - [2036] = 2036, - [2037] = 2034, + [2035] = 2027, + [2036] = 2027, + [2037] = 2037, [2038] = 2027, - [2039] = 2036, - [2040] = 2036, - [2041] = 2041, - [2042] = 2035, - [2043] = 2043, - [2044] = 2027, - [2045] = 2030, - [2046] = 2027, - [2047] = 2028, - [2048] = 2027, - [2049] = 2027, - [2050] = 2034, + [2039] = 2027, + [2040] = 2040, + [2041] = 2031, + [2042] = 2027, + [2043] = 2040, + [2044] = 2030, + [2045] = 2031, + [2046] = 2046, + [2047] = 2037, + [2048] = 2030, + [2049] = 2049, + [2050] = 2032, [2051] = 2027, - [2052] = 2027, - [2053] = 2035, - [2054] = 2027, + [2052] = 2032, + [2053] = 2040, + [2054] = 2037, [2055] = 2055, - [2056] = 2055, - [2057] = 2057, - [2058] = 2055, - [2059] = 2059, - [2060] = 2059, - [2061] = 2055, - [2062] = 2055, + [2056] = 2056, + [2057] = 2056, + [2058] = 2058, + [2059] = 2058, + [2060] = 2058, + [2061] = 2058, + [2062] = 2056, [2063] = 2055, - [2064] = 2059, - [2065] = 2065, - [2066] = 2059, + [2064] = 2055, + [2065] = 2058, + [2066] = 2058, [2067] = 2055, - [2068] = 2055, - [2069] = 2065, - [2070] = 2059, - [2071] = 2059, - [2072] = 2059, - [2073] = 2055, - [2074] = 2059, - [2075] = 2059, - [2076] = 2065, - [2077] = 2055, - [2078] = 2059, + [2068] = 2068, + [2069] = 2055, + [2070] = 2058, + [2071] = 2055, + [2072] = 2055, + [2073] = 2058, + [2074] = 2055, + [2075] = 2058, + [2076] = 2055, + [2077] = 2058, + [2078] = 2055, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -3702,18 +3702,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 3: if (lookahead == '"') ADVANCE(70); - if (lookahead == '#') ADVANCE(74); + if (lookahead == '#') ADVANCE(75); if (lookahead == '\\') ADVANCE(8); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(75); + lookahead == ' ') ADVANCE(74); if (lookahead != 0) ADVANCE(76); END_STATE(); case 4: - if (lookahead == '#') ADVANCE(71); + if (lookahead == '#') ADVANCE(72); if (lookahead == '\'') ADVANCE(69); if (lookahead == '\\') ADVANCE(8); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(72); + lookahead == ' ') ADVANCE(71); if (lookahead != 0) ADVANCE(73); END_STATE(); case 5: @@ -4007,19 +4007,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 71: ACCEPT_TOKEN(aux_sym__single_quoted_string_content_token1); - if (lookahead == '\n') ADVANCE(73); + if (lookahead == '#') ADVANCE(72); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(71); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(71); + lookahead != '\\') ADVANCE(73); END_STATE(); case 72: ACCEPT_TOKEN(aux_sym__single_quoted_string_content_token1); - if (lookahead == '#') ADVANCE(71); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(72); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(73); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(73); + lookahead != '\\') ADVANCE(72); END_STATE(); case 73: ACCEPT_TOKEN(aux_sym__single_quoted_string_content_token1); @@ -4029,20 +4030,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 74: ACCEPT_TOKEN(aux_sym__double_quoted_string_content_token1); - if (lookahead == '\n') ADVANCE(76); + if (lookahead == '#') ADVANCE(75); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(74); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(74); + lookahead != '#' && + lookahead != '\\') ADVANCE(76); END_STATE(); case 75: ACCEPT_TOKEN(aux_sym__double_quoted_string_content_token1); - if (lookahead == '#') ADVANCE(74); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(75); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(76); if (lookahead != 0 && lookahead != '"' && - lookahead != '#' && - lookahead != '\\') ADVANCE(76); + lookahead != '\\') ADVANCE(75); END_STATE(); case 76: ACCEPT_TOKEN(aux_sym__double_quoted_string_content_token1); @@ -4138,7 +4140,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 94: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(94); + lookahead != '\n' && + lookahead != '\r') ADVANCE(94); END_STATE(); case 95: ACCEPT_TOKEN(sym_comma); @@ -4460,117 +4463,117 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8] = {.lex_state = 0, .external_lex_state = 4}, [9] = {.lex_state = 0, .external_lex_state = 4}, [10] = {.lex_state = 0, .external_lex_state = 4}, - [11] = {.lex_state = 0, .external_lex_state = 3}, - [12] = {.lex_state = 0, .external_lex_state = 3}, - [13] = {.lex_state = 0, .external_lex_state = 3}, + [11] = {.lex_state = 0, .external_lex_state = 4}, + [12] = {.lex_state = 0, .external_lex_state = 4}, + [13] = {.lex_state = 0, .external_lex_state = 4}, [14] = {.lex_state = 0, .external_lex_state = 3}, - [15] = {.lex_state = 0, .external_lex_state = 4}, - [16] = {.lex_state = 0, .external_lex_state = 4}, - [17] = {.lex_state = 0, .external_lex_state = 4}, + [15] = {.lex_state = 0, .external_lex_state = 3}, + [16] = {.lex_state = 0, .external_lex_state = 3}, + [17] = {.lex_state = 0, .external_lex_state = 3}, [18] = {.lex_state = 0, .external_lex_state = 4}, [19] = {.lex_state = 0, .external_lex_state = 3}, - [20] = {.lex_state = 0, .external_lex_state = 3}, - [21] = {.lex_state = 0, .external_lex_state = 3}, - [22] = {.lex_state = 0, .external_lex_state = 3}, - [23] = {.lex_state = 0, .external_lex_state = 3}, - [24] = {.lex_state = 0, .external_lex_state = 3}, - [25] = {.lex_state = 0, .external_lex_state = 3}, - [26] = {.lex_state = 0, .external_lex_state = 3}, - [27] = {.lex_state = 0, .external_lex_state = 3}, - [28] = {.lex_state = 0, .external_lex_state = 3}, - [29] = {.lex_state = 0, .external_lex_state = 3}, - [30] = {.lex_state = 0, .external_lex_state = 3}, - [31] = {.lex_state = 0, .external_lex_state = 3}, - [32] = {.lex_state = 0, .external_lex_state = 3}, - [33] = {.lex_state = 0, .external_lex_state = 3}, - [34] = {.lex_state = 0, .external_lex_state = 3}, - [35] = {.lex_state = 0, .external_lex_state = 3}, - [36] = {.lex_state = 0, .external_lex_state = 3}, - [37] = {.lex_state = 0, .external_lex_state = 3}, - [38] = {.lex_state = 0, .external_lex_state = 3}, - [39] = {.lex_state = 0, .external_lex_state = 3}, - [40] = {.lex_state = 0, .external_lex_state = 3}, - [41] = {.lex_state = 0, .external_lex_state = 3}, - [42] = {.lex_state = 0, .external_lex_state = 3}, - [43] = {.lex_state = 0, .external_lex_state = 3}, - [44] = {.lex_state = 0, .external_lex_state = 3}, - [45] = {.lex_state = 0, .external_lex_state = 3}, - [46] = {.lex_state = 0, .external_lex_state = 3}, - [47] = {.lex_state = 0, .external_lex_state = 3}, - [48] = {.lex_state = 0, .external_lex_state = 3}, - [49] = {.lex_state = 0, .external_lex_state = 3}, - [50] = {.lex_state = 0, .external_lex_state = 3}, - [51] = {.lex_state = 0, .external_lex_state = 3}, - [52] = {.lex_state = 0, .external_lex_state = 3}, - [53] = {.lex_state = 0, .external_lex_state = 3}, + [20] = {.lex_state = 0, .external_lex_state = 4}, + [21] = {.lex_state = 0, .external_lex_state = 4}, + [22] = {.lex_state = 0, .external_lex_state = 4}, + [23] = {.lex_state = 0, .external_lex_state = 4}, + [24] = {.lex_state = 0, .external_lex_state = 4}, + [25] = {.lex_state = 0, .external_lex_state = 4}, + [26] = {.lex_state = 0, .external_lex_state = 4}, + [27] = {.lex_state = 0, .external_lex_state = 4}, + [28] = {.lex_state = 0, .external_lex_state = 4}, + [29] = {.lex_state = 0, .external_lex_state = 4}, + [30] = {.lex_state = 0, .external_lex_state = 4}, + [31] = {.lex_state = 0, .external_lex_state = 4}, + [32] = {.lex_state = 0, .external_lex_state = 4}, + [33] = {.lex_state = 0, .external_lex_state = 4}, + [34] = {.lex_state = 0, .external_lex_state = 4}, + [35] = {.lex_state = 0, .external_lex_state = 4}, + [36] = {.lex_state = 0, .external_lex_state = 4}, + [37] = {.lex_state = 0, .external_lex_state = 4}, + [38] = {.lex_state = 0, .external_lex_state = 4}, + [39] = {.lex_state = 0, .external_lex_state = 4}, + [40] = {.lex_state = 0, .external_lex_state = 4}, + [41] = {.lex_state = 0, .external_lex_state = 4}, + [42] = {.lex_state = 0, .external_lex_state = 4}, + [43] = {.lex_state = 0, .external_lex_state = 4}, + [44] = {.lex_state = 0, .external_lex_state = 4}, + [45] = {.lex_state = 0, .external_lex_state = 4}, + [46] = {.lex_state = 0, .external_lex_state = 4}, + [47] = {.lex_state = 0, .external_lex_state = 4}, + [48] = {.lex_state = 0, .external_lex_state = 4}, + [49] = {.lex_state = 0, .external_lex_state = 4}, + [50] = {.lex_state = 0, .external_lex_state = 4}, + [51] = {.lex_state = 0, .external_lex_state = 4}, + [52] = {.lex_state = 0, .external_lex_state = 4}, + [53] = {.lex_state = 0, .external_lex_state = 4}, [54] = {.lex_state = 0, .external_lex_state = 3}, - [55] = {.lex_state = 0, .external_lex_state = 3}, - [56] = {.lex_state = 0, .external_lex_state = 3}, - [57] = {.lex_state = 0, .external_lex_state = 3}, - [58] = {.lex_state = 0, .external_lex_state = 3}, - [59] = {.lex_state = 0, .external_lex_state = 3}, - [60] = {.lex_state = 0, .external_lex_state = 3}, - [61] = {.lex_state = 0, .external_lex_state = 3}, - [62] = {.lex_state = 0, .external_lex_state = 3}, - [63] = {.lex_state = 0, .external_lex_state = 3}, - [64] = {.lex_state = 0, .external_lex_state = 3}, - [65] = {.lex_state = 0, .external_lex_state = 3}, + [55] = {.lex_state = 0, .external_lex_state = 4}, + [56] = {.lex_state = 0, .external_lex_state = 4}, + [57] = {.lex_state = 0, .external_lex_state = 4}, + [58] = {.lex_state = 0, .external_lex_state = 4}, + [59] = {.lex_state = 0, .external_lex_state = 4}, + [60] = {.lex_state = 0, .external_lex_state = 4}, + [61] = {.lex_state = 0, .external_lex_state = 4}, + [62] = {.lex_state = 0, .external_lex_state = 4}, + [63] = {.lex_state = 0, .external_lex_state = 4}, + [64] = {.lex_state = 0, .external_lex_state = 4}, + [65] = {.lex_state = 0, .external_lex_state = 4}, [66] = {.lex_state = 0, .external_lex_state = 4}, [67] = {.lex_state = 0, .external_lex_state = 4}, [68] = {.lex_state = 0, .external_lex_state = 4}, [69] = {.lex_state = 0, .external_lex_state = 4}, [70] = {.lex_state = 0, .external_lex_state = 4}, - [71] = {.lex_state = 0, .external_lex_state = 4}, - [72] = {.lex_state = 0, .external_lex_state = 4}, + [71] = {.lex_state = 0, .external_lex_state = 3}, + [72] = {.lex_state = 0, .external_lex_state = 3}, [73] = {.lex_state = 0, .external_lex_state = 4}, [74] = {.lex_state = 0, .external_lex_state = 3}, - [75] = {.lex_state = 0, .external_lex_state = 4}, + [75] = {.lex_state = 0, .external_lex_state = 3}, [76] = {.lex_state = 0, .external_lex_state = 4}, - [77] = {.lex_state = 0, .external_lex_state = 4}, + [77] = {.lex_state = 0, .external_lex_state = 3}, [78] = {.lex_state = 0, .external_lex_state = 4}, [79] = {.lex_state = 0, .external_lex_state = 4}, - [80] = {.lex_state = 0, .external_lex_state = 4}, - [81] = {.lex_state = 0, .external_lex_state = 4}, - [82] = {.lex_state = 0, .external_lex_state = 4}, - [83] = {.lex_state = 0, .external_lex_state = 4}, - [84] = {.lex_state = 0, .external_lex_state = 4}, - [85] = {.lex_state = 0, .external_lex_state = 4}, - [86] = {.lex_state = 0, .external_lex_state = 4}, - [87] = {.lex_state = 0, .external_lex_state = 4}, - [88] = {.lex_state = 0, .external_lex_state = 4}, - [89] = {.lex_state = 0, .external_lex_state = 4}, - [90] = {.lex_state = 0, .external_lex_state = 4}, - [91] = {.lex_state = 0, .external_lex_state = 4}, - [92] = {.lex_state = 0, .external_lex_state = 4}, - [93] = {.lex_state = 0, .external_lex_state = 4}, - [94] = {.lex_state = 0, .external_lex_state = 4}, - [95] = {.lex_state = 0, .external_lex_state = 4}, - [96] = {.lex_state = 0, .external_lex_state = 4}, - [97] = {.lex_state = 0, .external_lex_state = 4}, - [98] = {.lex_state = 0, .external_lex_state = 4}, - [99] = {.lex_state = 0, .external_lex_state = 4}, + [80] = {.lex_state = 0, .external_lex_state = 3}, + [81] = {.lex_state = 0, .external_lex_state = 3}, + [82] = {.lex_state = 0, .external_lex_state = 3}, + [83] = {.lex_state = 0, .external_lex_state = 3}, + [84] = {.lex_state = 0, .external_lex_state = 3}, + [85] = {.lex_state = 0, .external_lex_state = 3}, + [86] = {.lex_state = 0, .external_lex_state = 3}, + [87] = {.lex_state = 0, .external_lex_state = 3}, + [88] = {.lex_state = 0, .external_lex_state = 3}, + [89] = {.lex_state = 0, .external_lex_state = 3}, + [90] = {.lex_state = 0, .external_lex_state = 3}, + [91] = {.lex_state = 0, .external_lex_state = 3}, + [92] = {.lex_state = 0, .external_lex_state = 3}, + [93] = {.lex_state = 0, .external_lex_state = 3}, + [94] = {.lex_state = 0, .external_lex_state = 3}, + [95] = {.lex_state = 0, .external_lex_state = 3}, + [96] = {.lex_state = 0, .external_lex_state = 3}, + [97] = {.lex_state = 0, .external_lex_state = 3}, + [98] = {.lex_state = 0, .external_lex_state = 3}, + [99] = {.lex_state = 0, .external_lex_state = 3}, [100] = {.lex_state = 0, .external_lex_state = 4}, - [101] = {.lex_state = 0, .external_lex_state = 4}, - [102] = {.lex_state = 0, .external_lex_state = 4}, - [103] = {.lex_state = 0, .external_lex_state = 4}, - [104] = {.lex_state = 0, .external_lex_state = 4}, - [105] = {.lex_state = 0, .external_lex_state = 4}, - [106] = {.lex_state = 0, .external_lex_state = 4}, - [107] = {.lex_state = 0, .external_lex_state = 4}, - [108] = {.lex_state = 0, .external_lex_state = 4}, - [109] = {.lex_state = 0, .external_lex_state = 4}, - [110] = {.lex_state = 0, .external_lex_state = 4}, - [111] = {.lex_state = 0, .external_lex_state = 4}, - [112] = {.lex_state = 0, .external_lex_state = 4}, - [113] = {.lex_state = 0, .external_lex_state = 4}, - [114] = {.lex_state = 0, .external_lex_state = 4}, - [115] = {.lex_state = 0, .external_lex_state = 4}, - [116] = {.lex_state = 0, .external_lex_state = 4}, - [117] = {.lex_state = 0, .external_lex_state = 4}, - [118] = {.lex_state = 0, .external_lex_state = 4}, + [101] = {.lex_state = 0, .external_lex_state = 3}, + [102] = {.lex_state = 0, .external_lex_state = 3}, + [103] = {.lex_state = 0, .external_lex_state = 3}, + [104] = {.lex_state = 0, .external_lex_state = 3}, + [105] = {.lex_state = 0, .external_lex_state = 3}, + [106] = {.lex_state = 0, .external_lex_state = 3}, + [107] = {.lex_state = 0, .external_lex_state = 3}, + [108] = {.lex_state = 0, .external_lex_state = 3}, + [109] = {.lex_state = 0, .external_lex_state = 3}, + [110] = {.lex_state = 0, .external_lex_state = 3}, + [111] = {.lex_state = 0, .external_lex_state = 3}, + [112] = {.lex_state = 0, .external_lex_state = 3}, + [113] = {.lex_state = 0, .external_lex_state = 3}, + [114] = {.lex_state = 0, .external_lex_state = 3}, + [115] = {.lex_state = 0, .external_lex_state = 3}, + [116] = {.lex_state = 0, .external_lex_state = 3}, + [117] = {.lex_state = 0, .external_lex_state = 3}, + [118] = {.lex_state = 0, .external_lex_state = 3}, [119] = {.lex_state = 0, .external_lex_state = 3}, - [120] = {.lex_state = 0, .external_lex_state = 4}, - [121] = {.lex_state = 0, .external_lex_state = 4}, + [120] = {.lex_state = 0, .external_lex_state = 3}, + [121] = {.lex_state = 0, .external_lex_state = 3}, [122] = {.lex_state = 0, .external_lex_state = 3}, [123] = {.lex_state = 0, .external_lex_state = 3}, [124] = {.lex_state = 0, .external_lex_state = 3}, @@ -4578,281 +4581,281 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [126] = {.lex_state = 0, .external_lex_state = 3}, [127] = {.lex_state = 0, .external_lex_state = 3}, [128] = {.lex_state = 0, .external_lex_state = 3}, - [129] = {.lex_state = 0, .external_lex_state = 4}, + [129] = {.lex_state = 0, .external_lex_state = 3}, [130] = {.lex_state = 0, .external_lex_state = 5}, [131] = {.lex_state = 0, .external_lex_state = 6}, [132] = {.lex_state = 0, .external_lex_state = 6}, - [133] = {.lex_state = 0, .external_lex_state = 6}, - [134] = {.lex_state = 0, .external_lex_state = 6}, - [135] = {.lex_state = 0, .external_lex_state = 6}, - [136] = {.lex_state = 0, .external_lex_state = 6}, - [137] = {.lex_state = 0, .external_lex_state = 6}, + [133] = {.lex_state = 0, .external_lex_state = 4}, + [134] = {.lex_state = 0, .external_lex_state = 5}, + [135] = {.lex_state = 0, .external_lex_state = 5}, + [136] = {.lex_state = 0, .external_lex_state = 5}, + [137] = {.lex_state = 0, .external_lex_state = 5}, [138] = {.lex_state = 0, .external_lex_state = 6}, - [139] = {.lex_state = 0, .external_lex_state = 6}, + [139] = {.lex_state = 0, .external_lex_state = 5}, [140] = {.lex_state = 0, .external_lex_state = 6}, - [141] = {.lex_state = 0, .external_lex_state = 6}, + [141] = {.lex_state = 0, .external_lex_state = 5}, [142] = {.lex_state = 0, .external_lex_state = 6}, [143] = {.lex_state = 0, .external_lex_state = 6}, - [144] = {.lex_state = 0, .external_lex_state = 6}, + [144] = {.lex_state = 0, .external_lex_state = 5}, [145] = {.lex_state = 0, .external_lex_state = 6}, [146] = {.lex_state = 0, .external_lex_state = 6}, - [147] = {.lex_state = 0, .external_lex_state = 6}, + [147] = {.lex_state = 0, .external_lex_state = 5}, [148] = {.lex_state = 0, .external_lex_state = 6}, [149] = {.lex_state = 0, .external_lex_state = 6}, [150] = {.lex_state = 0, .external_lex_state = 6}, - [151] = {.lex_state = 0, .external_lex_state = 6}, + [151] = {.lex_state = 0, .external_lex_state = 5}, [152] = {.lex_state = 0, .external_lex_state = 6}, - [153] = {.lex_state = 0, .external_lex_state = 6}, + [153] = {.lex_state = 0, .external_lex_state = 5}, [154] = {.lex_state = 0, .external_lex_state = 6}, [155] = {.lex_state = 0, .external_lex_state = 6}, [156] = {.lex_state = 0, .external_lex_state = 6}, [157] = {.lex_state = 0, .external_lex_state = 6}, - [158] = {.lex_state = 0, .external_lex_state = 6}, + [158] = {.lex_state = 0, .external_lex_state = 5}, [159] = {.lex_state = 0, .external_lex_state = 6}, - [160] = {.lex_state = 0, .external_lex_state = 6}, + [160] = {.lex_state = 0, .external_lex_state = 3}, [161] = {.lex_state = 0, .external_lex_state = 6}, - [162] = {.lex_state = 0, .external_lex_state = 6}, + [162] = {.lex_state = 0, .external_lex_state = 5}, [163] = {.lex_state = 0, .external_lex_state = 6}, - [164] = {.lex_state = 0, .external_lex_state = 6}, + [164] = {.lex_state = 0, .external_lex_state = 5}, [165] = {.lex_state = 0, .external_lex_state = 6}, [166] = {.lex_state = 0, .external_lex_state = 5}, - [167] = {.lex_state = 0, .external_lex_state = 6}, - [168] = {.lex_state = 0, .external_lex_state = 6}, - [169] = {.lex_state = 0, .external_lex_state = 6}, - [170] = {.lex_state = 0, .external_lex_state = 6}, + [167] = {.lex_state = 0, .external_lex_state = 5}, + [168] = {.lex_state = 0, .external_lex_state = 5}, + [169] = {.lex_state = 0, .external_lex_state = 5}, + [170] = {.lex_state = 0, .external_lex_state = 5}, [171] = {.lex_state = 0, .external_lex_state = 5}, - [172] = {.lex_state = 0, .external_lex_state = 6}, - [173] = {.lex_state = 0, .external_lex_state = 6}, - [174] = {.lex_state = 0, .external_lex_state = 6}, - [175] = {.lex_state = 0, .external_lex_state = 6}, - [176] = {.lex_state = 0, .external_lex_state = 6}, - [177] = {.lex_state = 0, .external_lex_state = 6}, - [178] = {.lex_state = 0, .external_lex_state = 6}, + [172] = {.lex_state = 0, .external_lex_state = 5}, + [173] = {.lex_state = 0, .external_lex_state = 5}, + [174] = {.lex_state = 0, .external_lex_state = 5}, + [175] = {.lex_state = 0, .external_lex_state = 5}, + [176] = {.lex_state = 0, .external_lex_state = 5}, + [177] = {.lex_state = 0, .external_lex_state = 5}, + [178] = {.lex_state = 0, .external_lex_state = 5}, [179] = {.lex_state = 0, .external_lex_state = 6}, - [180] = {.lex_state = 0, .external_lex_state = 6}, + [180] = {.lex_state = 0, .external_lex_state = 5}, [181] = {.lex_state = 0, .external_lex_state = 6}, - [182] = {.lex_state = 0, .external_lex_state = 6}, + [182] = {.lex_state = 0, .external_lex_state = 5}, [183] = {.lex_state = 0, .external_lex_state = 6}, - [184] = {.lex_state = 0, .external_lex_state = 5}, + [184] = {.lex_state = 0, .external_lex_state = 6}, [185] = {.lex_state = 0, .external_lex_state = 5}, - [186] = {.lex_state = 0, .external_lex_state = 5}, + [186] = {.lex_state = 0, .external_lex_state = 6}, [187] = {.lex_state = 0, .external_lex_state = 5}, - [188] = {.lex_state = 0, .external_lex_state = 3}, + [188] = {.lex_state = 0, .external_lex_state = 5}, [189] = {.lex_state = 0, .external_lex_state = 6}, - [190] = {.lex_state = 0, .external_lex_state = 6}, - [191] = {.lex_state = 0, .external_lex_state = 5}, - [192] = {.lex_state = 0, .external_lex_state = 5}, - [193] = {.lex_state = 0, .external_lex_state = 5}, - [194] = {.lex_state = 0, .external_lex_state = 3}, - [195] = {.lex_state = 0, .external_lex_state = 5}, + [190] = {.lex_state = 0, .external_lex_state = 5}, + [191] = {.lex_state = 0, .external_lex_state = 6}, + [192] = {.lex_state = 0, .external_lex_state = 6}, + [193] = {.lex_state = 0, .external_lex_state = 6}, + [194] = {.lex_state = 0, .external_lex_state = 6}, + [195] = {.lex_state = 0, .external_lex_state = 6}, [196] = {.lex_state = 0, .external_lex_state = 5}, - [197] = {.lex_state = 0, .external_lex_state = 5}, - [198] = {.lex_state = 0, .external_lex_state = 5}, - [199] = {.lex_state = 0, .external_lex_state = 5}, - [200] = {.lex_state = 0, .external_lex_state = 5}, + [197] = {.lex_state = 0, .external_lex_state = 6}, + [198] = {.lex_state = 0, .external_lex_state = 6}, + [199] = {.lex_state = 0, .external_lex_state = 4}, + [200] = {.lex_state = 0, .external_lex_state = 6}, [201] = {.lex_state = 0, .external_lex_state = 5}, [202] = {.lex_state = 0, .external_lex_state = 5}, [203] = {.lex_state = 0, .external_lex_state = 5}, [204] = {.lex_state = 0, .external_lex_state = 5}, - [205] = {.lex_state = 0, .external_lex_state = 5}, + [205] = {.lex_state = 0, .external_lex_state = 6}, [206] = {.lex_state = 0, .external_lex_state = 5}, - [207] = {.lex_state = 0, .external_lex_state = 5}, - [208] = {.lex_state = 0, .external_lex_state = 5}, + [207] = {.lex_state = 0, .external_lex_state = 6}, + [208] = {.lex_state = 0, .external_lex_state = 6}, [209] = {.lex_state = 0, .external_lex_state = 5}, [210] = {.lex_state = 0, .external_lex_state = 5}, - [211] = {.lex_state = 0, .external_lex_state = 5}, + [211] = {.lex_state = 0, .external_lex_state = 6}, [212] = {.lex_state = 0, .external_lex_state = 5}, - [213] = {.lex_state = 0, .external_lex_state = 5}, - [214] = {.lex_state = 0, .external_lex_state = 5}, + [213] = {.lex_state = 0, .external_lex_state = 6}, + [214] = {.lex_state = 0, .external_lex_state = 6}, [215] = {.lex_state = 0, .external_lex_state = 5}, [216] = {.lex_state = 0, .external_lex_state = 5}, - [217] = {.lex_state = 0, .external_lex_state = 5}, + [217] = {.lex_state = 0, .external_lex_state = 6}, [218] = {.lex_state = 0, .external_lex_state = 5}, - [219] = {.lex_state = 0, .external_lex_state = 4}, - [220] = {.lex_state = 0, .external_lex_state = 5}, - [221] = {.lex_state = 0, .external_lex_state = 5}, - [222] = {.lex_state = 0, .external_lex_state = 5}, + [219] = {.lex_state = 0, .external_lex_state = 6}, + [220] = {.lex_state = 0, .external_lex_state = 6}, + [221] = {.lex_state = 0, .external_lex_state = 6}, + [222] = {.lex_state = 0, .external_lex_state = 6}, [223] = {.lex_state = 0, .external_lex_state = 5}, - [224] = {.lex_state = 0, .external_lex_state = 5}, - [225] = {.lex_state = 0, .external_lex_state = 5}, + [224] = {.lex_state = 0, .external_lex_state = 3}, + [225] = {.lex_state = 0, .external_lex_state = 6}, [226] = {.lex_state = 0, .external_lex_state = 5}, - [227] = {.lex_state = 0, .external_lex_state = 4}, + [227] = {.lex_state = 0, .external_lex_state = 5}, [228] = {.lex_state = 0, .external_lex_state = 5}, - [229] = {.lex_state = 0, .external_lex_state = 5}, + [229] = {.lex_state = 0, .external_lex_state = 6}, [230] = {.lex_state = 0, .external_lex_state = 5}, - [231] = {.lex_state = 0, .external_lex_state = 5}, - [232] = {.lex_state = 0, .external_lex_state = 5}, + [231] = {.lex_state = 0, .external_lex_state = 6}, + [232] = {.lex_state = 0, .external_lex_state = 6}, [233] = {.lex_state = 0, .external_lex_state = 5}, [234] = {.lex_state = 0, .external_lex_state = 5}, - [235] = {.lex_state = 0, .external_lex_state = 5}, + [235] = {.lex_state = 0, .external_lex_state = 6}, [236] = {.lex_state = 0, .external_lex_state = 5}, [237] = {.lex_state = 0, .external_lex_state = 5}, [238] = {.lex_state = 0, .external_lex_state = 5}, - [239] = {.lex_state = 0, .external_lex_state = 5}, + [239] = {.lex_state = 0, .external_lex_state = 6}, [240] = {.lex_state = 0, .external_lex_state = 5}, [241] = {.lex_state = 0, .external_lex_state = 5}, - [242] = {.lex_state = 0, .external_lex_state = 5}, + [242] = {.lex_state = 0, .external_lex_state = 6}, [243] = {.lex_state = 0, .external_lex_state = 6}, [244] = {.lex_state = 0, .external_lex_state = 6}, [245] = {.lex_state = 0, .external_lex_state = 6}, [246] = {.lex_state = 0, .external_lex_state = 6}, - [247] = {.lex_state = 0, .external_lex_state = 5}, - [248] = {.lex_state = 0, .external_lex_state = 4}, - [249] = {.lex_state = 0, .external_lex_state = 7}, + [247] = {.lex_state = 0, .external_lex_state = 6}, + [248] = {.lex_state = 0, .external_lex_state = 7}, + [249] = {.lex_state = 0, .external_lex_state = 8}, [250] = {.lex_state = 0, .external_lex_state = 8}, - [251] = {.lex_state = 0, .external_lex_state = 6}, - [252] = {.lex_state = 0, .external_lex_state = 5}, - [253] = {.lex_state = 0, .external_lex_state = 3}, - [254] = {.lex_state = 0, .external_lex_state = 5}, + [251] = {.lex_state = 0, .external_lex_state = 7}, + [252] = {.lex_state = 0, .external_lex_state = 9}, + [253] = {.lex_state = 0, .external_lex_state = 7}, + [254] = {.lex_state = 0, .external_lex_state = 8}, [255] = {.lex_state = 0, .external_lex_state = 9}, - [256] = {.lex_state = 0, .external_lex_state = 7}, - [257] = {.lex_state = 0, .external_lex_state = 8}, - [258] = {.lex_state = 0, .external_lex_state = 6}, - [259] = {.lex_state = 0, .external_lex_state = 9}, - [260] = {.lex_state = 0, .external_lex_state = 7}, - [261] = {.lex_state = 0, .external_lex_state = 8}, - [262] = {.lex_state = 0, .external_lex_state = 9}, - [263] = {.lex_state = 0, .external_lex_state = 7}, - [264] = {.lex_state = 0, .external_lex_state = 8}, - [265] = {.lex_state = 0, .external_lex_state = 9}, - [266] = {.lex_state = 0, .external_lex_state = 7}, - [267] = {.lex_state = 0, .external_lex_state = 8}, - [268] = {.lex_state = 0, .external_lex_state = 9}, - [269] = {.lex_state = 0, .external_lex_state = 7}, - [270] = {.lex_state = 0, .external_lex_state = 8}, - [271] = {.lex_state = 0, .external_lex_state = 9}, + [256] = {.lex_state = 0, .external_lex_state = 8}, + [257] = {.lex_state = 0, .external_lex_state = 5}, + [258] = {.lex_state = 0, .external_lex_state = 5}, + [259] = {.lex_state = 0, .external_lex_state = 3}, + [260] = {.lex_state = 0, .external_lex_state = 9}, + [261] = {.lex_state = 0, .external_lex_state = 7}, + [262] = {.lex_state = 0, .external_lex_state = 8}, + [263] = {.lex_state = 0, .external_lex_state = 9}, + [264] = {.lex_state = 0, .external_lex_state = 7}, + [265] = {.lex_state = 0, .external_lex_state = 8}, + [266] = {.lex_state = 0, .external_lex_state = 9}, + [267] = {.lex_state = 0, .external_lex_state = 9}, + [268] = {.lex_state = 0, .external_lex_state = 7}, + [269] = {.lex_state = 0, .external_lex_state = 9}, + [270] = {.lex_state = 0, .external_lex_state = 7}, + [271] = {.lex_state = 0, .external_lex_state = 8}, [272] = {.lex_state = 0, .external_lex_state = 7}, [273] = {.lex_state = 0, .external_lex_state = 8}, - [274] = {.lex_state = 0, .external_lex_state = 9}, - [275] = {.lex_state = 0, .external_lex_state = 7}, - [276] = {.lex_state = 0, .external_lex_state = 8}, - [277] = {.lex_state = 0, .external_lex_state = 9}, - [278] = {.lex_state = 0, .external_lex_state = 7}, + [274] = {.lex_state = 0, .external_lex_state = 7}, + [275] = {.lex_state = 0, .external_lex_state = 9}, + [276] = {.lex_state = 0, .external_lex_state = 9}, + [277] = {.lex_state = 0, .external_lex_state = 6}, + [278] = {.lex_state = 0, .external_lex_state = 8}, [279] = {.lex_state = 0, .external_lex_state = 8}, - [280] = {.lex_state = 0, .external_lex_state = 9}, - [281] = {.lex_state = 0, .external_lex_state = 7}, - [282] = {.lex_state = 0, .external_lex_state = 8}, + [280] = {.lex_state = 0, .external_lex_state = 7}, + [281] = {.lex_state = 0, .external_lex_state = 4}, + [282] = {.lex_state = 0, .external_lex_state = 6}, [283] = {.lex_state = 0, .external_lex_state = 9}, - [284] = {.lex_state = 0, .external_lex_state = 5}, - [285] = {.lex_state = 0, .external_lex_state = 6}, - [286] = {.lex_state = 0, .external_lex_state = 7}, - [287] = {.lex_state = 0, .external_lex_state = 3}, - [288] = {.lex_state = 0, .external_lex_state = 8}, + [284] = {.lex_state = 0, .external_lex_state = 6}, + [285] = {.lex_state = 0, .external_lex_state = 5}, + [286] = {.lex_state = 0, .external_lex_state = 4}, + [287] = {.lex_state = 0, .external_lex_state = 4}, + [288] = {.lex_state = 0, .external_lex_state = 7}, [289] = {.lex_state = 0, .external_lex_state = 3}, - [290] = {.lex_state = 0, .external_lex_state = 9}, - [291] = {.lex_state = 0, .external_lex_state = 4}, - [292] = {.lex_state = 0, .external_lex_state = 4}, - [293] = {.lex_state = 0, .external_lex_state = 4}, + [290] = {.lex_state = 0, .external_lex_state = 4}, + [291] = {.lex_state = 0, .external_lex_state = 3}, + [292] = {.lex_state = 0, .external_lex_state = 9}, + [293] = {.lex_state = 0, .external_lex_state = 8}, [294] = {.lex_state = 0, .external_lex_state = 4}, [295] = {.lex_state = 0, .external_lex_state = 4}, - [296] = {.lex_state = 0, .external_lex_state = 3}, - [297] = {.lex_state = 0, .external_lex_state = 3}, - [298] = {.lex_state = 0, .external_lex_state = 3}, + [296] = {.lex_state = 0, .external_lex_state = 4}, + [297] = {.lex_state = 0, .external_lex_state = 4}, + [298] = {.lex_state = 0, .external_lex_state = 4}, [299] = {.lex_state = 0, .external_lex_state = 4}, - [300] = {.lex_state = 0, .external_lex_state = 4}, + [300] = {.lex_state = 0, .external_lex_state = 3}, [301] = {.lex_state = 0, .external_lex_state = 3}, [302] = {.lex_state = 0, .external_lex_state = 3}, - [303] = {.lex_state = 0, .external_lex_state = 4}, - [304] = {.lex_state = 0, .external_lex_state = 4}, + [303] = {.lex_state = 0, .external_lex_state = 3}, + [304] = {.lex_state = 0, .external_lex_state = 3}, [305] = {.lex_state = 0, .external_lex_state = 3}, [306] = {.lex_state = 0, .external_lex_state = 3}, - [307] = {.lex_state = 0, .external_lex_state = 5}, - [308] = {.lex_state = 0, .external_lex_state = 5}, + [307] = {.lex_state = 0, .external_lex_state = 4}, + [308] = {.lex_state = 0, .external_lex_state = 6}, [309] = {.lex_state = 0, .external_lex_state = 6}, - [310] = {.lex_state = 0, .external_lex_state = 5}, + [310] = {.lex_state = 0, .external_lex_state = 6}, [311] = {.lex_state = 0, .external_lex_state = 6}, - [312] = {.lex_state = 0, .external_lex_state = 6}, - [313] = {.lex_state = 0, .external_lex_state = 6}, - [314] = {.lex_state = 0, .external_lex_state = 5}, - [315] = {.lex_state = 0, .external_lex_state = 6}, - [316] = {.lex_state = 0, .external_lex_state = 3}, - [317] = {.lex_state = 0, .external_lex_state = 6}, - [318] = {.lex_state = 0, .external_lex_state = 6}, + [312] = {.lex_state = 0, .external_lex_state = 5}, + [313] = {.lex_state = 0, .external_lex_state = 5}, + [314] = {.lex_state = 0, .external_lex_state = 6}, + [315] = {.lex_state = 0, .external_lex_state = 5}, + [316] = {.lex_state = 0, .external_lex_state = 6}, + [317] = {.lex_state = 0, .external_lex_state = 5}, + [318] = {.lex_state = 0, .external_lex_state = 5}, [319] = {.lex_state = 0, .external_lex_state = 5}, - [320] = {.lex_state = 0, .external_lex_state = 5}, + [320] = {.lex_state = 0, .external_lex_state = 6}, [321] = {.lex_state = 0, .external_lex_state = 6}, - [322] = {.lex_state = 0, .external_lex_state = 4}, - [323] = {.lex_state = 0, .external_lex_state = 5}, + [322] = {.lex_state = 0, .external_lex_state = 5}, + [323] = {.lex_state = 0, .external_lex_state = 3}, [324] = {.lex_state = 0, .external_lex_state = 6}, [325] = {.lex_state = 0, .external_lex_state = 5}, [326] = {.lex_state = 0, .external_lex_state = 5}, - [327] = {.lex_state = 0, .external_lex_state = 4}, + [327] = {.lex_state = 0, .external_lex_state = 10}, [328] = {.lex_state = 0, .external_lex_state = 4}, [329] = {.lex_state = 0, .external_lex_state = 4}, [330] = {.lex_state = 0, .external_lex_state = 4}, [331] = {.lex_state = 0, .external_lex_state = 10}, - [332] = {.lex_state = 0, .external_lex_state = 10}, + [332] = {.lex_state = 0, .external_lex_state = 4}, [333] = {.lex_state = 0, .external_lex_state = 4}, - [334] = {.lex_state = 0, .external_lex_state = 4}, - [335] = {.lex_state = 0, .external_lex_state = 4}, + [334] = {.lex_state = 0, .external_lex_state = 10}, + [335] = {.lex_state = 0, .external_lex_state = 10}, [336] = {.lex_state = 0, .external_lex_state = 4}, [337] = {.lex_state = 0, .external_lex_state = 4}, [338] = {.lex_state = 0, .external_lex_state = 4}, - [339] = {.lex_state = 0, .external_lex_state = 3}, - [340] = {.lex_state = 0, .external_lex_state = 3}, - [341] = {.lex_state = 0, .external_lex_state = 3}, - [342] = {.lex_state = 0, .external_lex_state = 3}, - [343] = {.lex_state = 0, .external_lex_state = 3}, - [344] = {.lex_state = 0, .external_lex_state = 3}, - [345] = {.lex_state = 0, .external_lex_state = 3}, - [346] = {.lex_state = 0, .external_lex_state = 3}, - [347] = {.lex_state = 0, .external_lex_state = 10}, - [348] = {.lex_state = 0, .external_lex_state = 3}, + [339] = {.lex_state = 0, .external_lex_state = 10}, + [340] = {.lex_state = 0, .external_lex_state = 4}, + [341] = {.lex_state = 0, .external_lex_state = 4}, + [342] = {.lex_state = 0, .external_lex_state = 4}, + [343] = {.lex_state = 0, .external_lex_state = 10}, + [344] = {.lex_state = 0, .external_lex_state = 4}, + [345] = {.lex_state = 0, .external_lex_state = 4}, + [346] = {.lex_state = 0, .external_lex_state = 4}, + [347] = {.lex_state = 0, .external_lex_state = 4}, + [348] = {.lex_state = 0, .external_lex_state = 4}, [349] = {.lex_state = 0, .external_lex_state = 4}, - [350] = {.lex_state = 0, .external_lex_state = 4}, - [351] = {.lex_state = 0, .external_lex_state = 4}, + [350] = {.lex_state = 0, .external_lex_state = 6}, + [351] = {.lex_state = 0, .external_lex_state = 10}, [352] = {.lex_state = 0, .external_lex_state = 4}, [353] = {.lex_state = 0, .external_lex_state = 4}, - [354] = {.lex_state = 0, .external_lex_state = 4}, - [355] = {.lex_state = 0, .external_lex_state = 4}, - [356] = {.lex_state = 0, .external_lex_state = 3}, - [357] = {.lex_state = 0, .external_lex_state = 4}, - [358] = {.lex_state = 0, .external_lex_state = 4}, - [359] = {.lex_state = 0, .external_lex_state = 4}, + [354] = {.lex_state = 0, .external_lex_state = 10}, + [355] = {.lex_state = 0, .external_lex_state = 3}, + [356] = {.lex_state = 0, .external_lex_state = 10}, + [357] = {.lex_state = 0, .external_lex_state = 10}, + [358] = {.lex_state = 0, .external_lex_state = 3}, + [359] = {.lex_state = 0, .external_lex_state = 10}, [360] = {.lex_state = 0, .external_lex_state = 3}, - [361] = {.lex_state = 0, .external_lex_state = 4}, - [362] = {.lex_state = 0, .external_lex_state = 3}, + [361] = {.lex_state = 0, .external_lex_state = 3}, + [362] = {.lex_state = 0, .external_lex_state = 10}, [363] = {.lex_state = 0, .external_lex_state = 3}, - [364] = {.lex_state = 0, .external_lex_state = 3}, + [364] = {.lex_state = 0, .external_lex_state = 10}, [365] = {.lex_state = 0, .external_lex_state = 3}, - [366] = {.lex_state = 0, .external_lex_state = 3}, - [367] = {.lex_state = 0, .external_lex_state = 3}, - [368] = {.lex_state = 0, .external_lex_state = 10}, - [369] = {.lex_state = 0, .external_lex_state = 10}, + [366] = {.lex_state = 0, .external_lex_state = 10}, + [367] = {.lex_state = 0, .external_lex_state = 10}, + [368] = {.lex_state = 0, .external_lex_state = 3}, + [369] = {.lex_state = 0, .external_lex_state = 3}, [370] = {.lex_state = 0, .external_lex_state = 10}, [371] = {.lex_state = 0, .external_lex_state = 3}, - [372] = {.lex_state = 0, .external_lex_state = 10}, - [373] = {.lex_state = 0, .external_lex_state = 10}, - [374] = {.lex_state = 0, .external_lex_state = 10}, - [375] = {.lex_state = 0, .external_lex_state = 10}, - [376] = {.lex_state = 0, .external_lex_state = 10}, - [377] = {.lex_state = 0, .external_lex_state = 10}, - [378] = {.lex_state = 0, .external_lex_state = 10}, + [372] = {.lex_state = 0, .external_lex_state = 3}, + [373] = {.lex_state = 0, .external_lex_state = 3}, + [374] = {.lex_state = 0, .external_lex_state = 5}, + [375] = {.lex_state = 0, .external_lex_state = 3}, + [376] = {.lex_state = 0, .external_lex_state = 3}, + [377] = {.lex_state = 0, .external_lex_state = 3}, + [378] = {.lex_state = 0, .external_lex_state = 3}, [379] = {.lex_state = 0, .external_lex_state = 3}, - [380] = {.lex_state = 0, .external_lex_state = 10}, - [381] = {.lex_state = 0, .external_lex_state = 4}, + [380] = {.lex_state = 0, .external_lex_state = 4}, + [381] = {.lex_state = 0, .external_lex_state = 3}, [382] = {.lex_state = 0, .external_lex_state = 3}, [383] = {.lex_state = 0, .external_lex_state = 3}, - [384] = {.lex_state = 0, .external_lex_state = 10}, - [385] = {.lex_state = 0, .external_lex_state = 3}, - [386] = {.lex_state = 0, .external_lex_state = 6}, + [384] = {.lex_state = 0, .external_lex_state = 3}, + [385] = {.lex_state = 0, .external_lex_state = 10}, + [386] = {.lex_state = 0, .external_lex_state = 10}, [387] = {.lex_state = 0, .external_lex_state = 3}, [388] = {.lex_state = 0, .external_lex_state = 10}, [389] = {.lex_state = 0, .external_lex_state = 3}, - [390] = {.lex_state = 0, .external_lex_state = 5}, - [391] = {.lex_state = 0, .external_lex_state = 10}, - [392] = {.lex_state = 0, .external_lex_state = 10}, + [390] = {.lex_state = 0, .external_lex_state = 4}, + [391] = {.lex_state = 0, .external_lex_state = 3}, + [392] = {.lex_state = 0, .external_lex_state = 3}, [393] = {.lex_state = 0, .external_lex_state = 4}, [394] = {.lex_state = 0, .external_lex_state = 10}, [395] = {.lex_state = 0, .external_lex_state = 4}, - [396] = {.lex_state = 0, .external_lex_state = 10}, - [397] = {.lex_state = 0, .external_lex_state = 10}, - [398] = {.lex_state = 0, .external_lex_state = 11}, - [399] = {.lex_state = 0, .external_lex_state = 6}, + [396] = {.lex_state = 0, .external_lex_state = 4}, + [397] = {.lex_state = 0, .external_lex_state = 6}, + [398] = {.lex_state = 0, .external_lex_state = 5}, + [399] = {.lex_state = 0, .external_lex_state = 5}, [400] = {.lex_state = 0, .external_lex_state = 6}, [401] = {.lex_state = 0, .external_lex_state = 6}, [402] = {.lex_state = 0, .external_lex_state = 6}, - [403] = {.lex_state = 0, .external_lex_state = 5}, + [403] = {.lex_state = 0, .external_lex_state = 6}, [404] = {.lex_state = 0, .external_lex_state = 6}, [405] = {.lex_state = 0, .external_lex_state = 5}, [406] = {.lex_state = 0, .external_lex_state = 5}, @@ -4861,46 +4864,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [409] = {.lex_state = 0, .external_lex_state = 5}, [410] = {.lex_state = 0, .external_lex_state = 5}, [411] = {.lex_state = 0, .external_lex_state = 5}, - [412] = {.lex_state = 0, .external_lex_state = 5}, + [412] = {.lex_state = 0, .external_lex_state = 6}, [413] = {.lex_state = 0, .external_lex_state = 6}, [414] = {.lex_state = 0, .external_lex_state = 6}, - [415] = {.lex_state = 0, .external_lex_state = 5}, - [416] = {.lex_state = 0, .external_lex_state = 5}, + [415] = {.lex_state = 0, .external_lex_state = 6}, + [416] = {.lex_state = 0, .external_lex_state = 6}, [417] = {.lex_state = 0, .external_lex_state = 6}, - [418] = {.lex_state = 0, .external_lex_state = 5}, + [418] = {.lex_state = 0, .external_lex_state = 11}, [419] = {.lex_state = 0, .external_lex_state = 6}, - [420] = {.lex_state = 0, .external_lex_state = 6}, + [420] = {.lex_state = 0, .external_lex_state = 5}, [421] = {.lex_state = 0, .external_lex_state = 5}, - [422] = {.lex_state = 0, .external_lex_state = 6}, + [422] = {.lex_state = 0, .external_lex_state = 11}, [423] = {.lex_state = 0, .external_lex_state = 5}, [424] = {.lex_state = 0, .external_lex_state = 5}, [425] = {.lex_state = 0, .external_lex_state = 5}, [426] = {.lex_state = 0, .external_lex_state = 6}, [427] = {.lex_state = 0, .external_lex_state = 6}, [428] = {.lex_state = 0, .external_lex_state = 6}, - [429] = {.lex_state = 0, .external_lex_state = 5}, + [429] = {.lex_state = 0, .external_lex_state = 6}, [430] = {.lex_state = 0, .external_lex_state = 5}, - [431] = {.lex_state = 0, .external_lex_state = 5}, + [431] = {.lex_state = 0, .external_lex_state = 6}, [432] = {.lex_state = 0, .external_lex_state = 6}, - [433] = {.lex_state = 0, .external_lex_state = 5}, - [434] = {.lex_state = 0, .external_lex_state = 6}, - [435] = {.lex_state = 0, .external_lex_state = 6}, + [433] = {.lex_state = 0, .external_lex_state = 6}, + [434] = {.lex_state = 0, .external_lex_state = 5}, + [435] = {.lex_state = 0, .external_lex_state = 11}, [436] = {.lex_state = 0, .external_lex_state = 6}, [437] = {.lex_state = 0, .external_lex_state = 6}, - [438] = {.lex_state = 0, .external_lex_state = 11}, - [439] = {.lex_state = 0, .external_lex_state = 6}, + [438] = {.lex_state = 0, .external_lex_state = 10}, + [439] = {.lex_state = 0, .external_lex_state = 5}, [440] = {.lex_state = 0, .external_lex_state = 5}, [441] = {.lex_state = 0, .external_lex_state = 5}, [442] = {.lex_state = 0, .external_lex_state = 5}, [443] = {.lex_state = 0, .external_lex_state = 5}, [444] = {.lex_state = 0, .external_lex_state = 6}, - [445] = {.lex_state = 0, .external_lex_state = 6}, - [446] = {.lex_state = 0, .external_lex_state = 11}, + [445] = {.lex_state = 0, .external_lex_state = 5}, + [446] = {.lex_state = 0, .external_lex_state = 5}, [447] = {.lex_state = 0, .external_lex_state = 5}, - [448] = {.lex_state = 0, .external_lex_state = 6}, - [449] = {.lex_state = 0, .external_lex_state = 9}, - [450] = {.lex_state = 0, .external_lex_state = 7}, - [451] = {.lex_state = 0, .external_lex_state = 8}, + [448] = {.lex_state = 0, .external_lex_state = 5}, + [449] = {.lex_state = 0, .external_lex_state = 7}, + [450] = {.lex_state = 0, .external_lex_state = 8}, + [451] = {.lex_state = 0, .external_lex_state = 9}, [452] = {.lex_state = 0, .external_lex_state = 12}, [453] = {.lex_state = 0, .external_lex_state = 12}, [454] = {.lex_state = 0, .external_lex_state = 12}, @@ -4922,7 +4925,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [470] = {.lex_state = 0, .external_lex_state = 12}, [471] = {.lex_state = 0, .external_lex_state = 12}, [472] = {.lex_state = 0, .external_lex_state = 12}, - [473] = {.lex_state = 0, .external_lex_state = 9}, + [473] = {.lex_state = 0, .external_lex_state = 12}, [474] = {.lex_state = 0, .external_lex_state = 12}, [475] = {.lex_state = 0, .external_lex_state = 12}, [476] = {.lex_state = 0, .external_lex_state = 12}, @@ -5453,7 +5456,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1001] = {.lex_state = 0, .external_lex_state = 12}, [1002] = {.lex_state = 0, .external_lex_state = 12}, [1003] = {.lex_state = 0, .external_lex_state = 12}, - [1004] = {.lex_state = 0, .external_lex_state = 12}, + [1004] = {.lex_state = 0, .external_lex_state = 9}, [1005] = {.lex_state = 0, .external_lex_state = 12}, [1006] = {.lex_state = 0, .external_lex_state = 12}, [1007] = {.lex_state = 0, .external_lex_state = 12}, @@ -5569,16 +5572,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1117] = {.lex_state = 0, .external_lex_state = 13}, [1118] = {.lex_state = 1, .external_lex_state = 14}, [1119] = {.lex_state = 1, .external_lex_state = 15}, - [1120] = {.lex_state = 1, .external_lex_state = 16}, - [1121] = {.lex_state = 1, .external_lex_state = 15}, - [1122] = {.lex_state = 1, .external_lex_state = 14}, - [1123] = {.lex_state = 1, .external_lex_state = 16}, + [1120] = {.lex_state = 1, .external_lex_state = 15}, + [1121] = {.lex_state = 1, .external_lex_state = 16}, + [1122] = {.lex_state = 1, .external_lex_state = 16}, + [1123] = {.lex_state = 1, .external_lex_state = 14}, [1124] = {.lex_state = 1, .external_lex_state = 17}, - [1125] = {.lex_state = 1, .external_lex_state = 17}, + [1125] = {.lex_state = 1, .external_lex_state = 18}, [1126] = {.lex_state = 1, .external_lex_state = 18}, - [1127] = {.lex_state = 1, .external_lex_state = 18}, + [1127] = {.lex_state = 1, .external_lex_state = 19}, [1128] = {.lex_state = 1, .external_lex_state = 19}, - [1129] = {.lex_state = 1, .external_lex_state = 19}, + [1129] = {.lex_state = 1, .external_lex_state = 17}, [1130] = {.lex_state = 1, .external_lex_state = 20}, [1131] = {.lex_state = 1, .external_lex_state = 21}, [1132] = {.lex_state = 1, .external_lex_state = 22}, @@ -5589,115 +5592,115 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1137] = {.lex_state = 1, .external_lex_state = 14}, [1138] = {.lex_state = 1, .external_lex_state = 16}, [1139] = {.lex_state = 0, .external_lex_state = 26}, - [1140] = {.lex_state = 0, .external_lex_state = 27}, - [1141] = {.lex_state = 0, .external_lex_state = 26}, - [1142] = {.lex_state = 0, .external_lex_state = 28}, - [1143] = {.lex_state = 1, .external_lex_state = 18}, + [1140] = {.lex_state = 0, .external_lex_state = 26}, + [1141] = {.lex_state = 0, .external_lex_state = 27}, + [1142] = {.lex_state = 0, .external_lex_state = 27}, + [1143] = {.lex_state = 0, .external_lex_state = 27}, [1144] = {.lex_state = 0, .external_lex_state = 26}, - [1145] = {.lex_state = 0, .external_lex_state = 28}, - [1146] = {.lex_state = 0, .external_lex_state = 27}, - [1147] = {.lex_state = 1, .external_lex_state = 19}, + [1145] = {.lex_state = 0, .external_lex_state = 27}, + [1146] = {.lex_state = 0, .external_lex_state = 28}, + [1147] = {.lex_state = 0, .external_lex_state = 28}, [1148] = {.lex_state = 0, .external_lex_state = 28}, [1149] = {.lex_state = 0, .external_lex_state = 28}, - [1150] = {.lex_state = 0, .external_lex_state = 28}, + [1150] = {.lex_state = 0, .external_lex_state = 26}, [1151] = {.lex_state = 0, .external_lex_state = 26}, - [1152] = {.lex_state = 0, .external_lex_state = 28}, - [1153] = {.lex_state = 0, .external_lex_state = 28}, + [1152] = {.lex_state = 1, .external_lex_state = 17}, + [1153] = {.lex_state = 0, .external_lex_state = 26}, [1154] = {.lex_state = 0, .external_lex_state = 28}, - [1155] = {.lex_state = 0, .external_lex_state = 27}, - [1156] = {.lex_state = 1, .external_lex_state = 17}, - [1157] = {.lex_state = 0, .external_lex_state = 26}, - [1158] = {.lex_state = 0, .external_lex_state = 27}, + [1155] = {.lex_state = 0, .external_lex_state = 28}, + [1156] = {.lex_state = 0, .external_lex_state = 28}, + [1157] = {.lex_state = 1, .external_lex_state = 18}, + [1158] = {.lex_state = 0, .external_lex_state = 28}, [1159] = {.lex_state = 0, .external_lex_state = 26}, - [1160] = {.lex_state = 0, .external_lex_state = 27}, + [1160] = {.lex_state = 0, .external_lex_state = 26}, [1161] = {.lex_state = 0, .external_lex_state = 27}, - [1162] = {.lex_state = 0, .external_lex_state = 27}, - [1163] = {.lex_state = 0, .external_lex_state = 26}, + [1162] = {.lex_state = 1, .external_lex_state = 19}, + [1163] = {.lex_state = 0, .external_lex_state = 27}, [1164] = {.lex_state = 0, .external_lex_state = 27}, - [1165] = {.lex_state = 0, .external_lex_state = 26}, + [1165] = {.lex_state = 0, .external_lex_state = 27}, [1166] = {.lex_state = 0, .external_lex_state = 27}, [1167] = {.lex_state = 0, .external_lex_state = 28}, [1168] = {.lex_state = 0, .external_lex_state = 27}, - [1169] = {.lex_state = 0, .external_lex_state = 26}, - [1170] = {.lex_state = 0, .external_lex_state = 26}, - [1171] = {.lex_state = 0, .external_lex_state = 26}, - [1172] = {.lex_state = 0, .external_lex_state = 28}, - [1173] = {.lex_state = 0, .external_lex_state = 26}, - [1174] = {.lex_state = 0, .external_lex_state = 28}, - [1175] = {.lex_state = 0, .external_lex_state = 28}, - [1176] = {.lex_state = 0, .external_lex_state = 26}, + [1169] = {.lex_state = 0, .external_lex_state = 27}, + [1170] = {.lex_state = 0, .external_lex_state = 27}, + [1171] = {.lex_state = 0, .external_lex_state = 27}, + [1172] = {.lex_state = 0, .external_lex_state = 27}, + [1173] = {.lex_state = 0, .external_lex_state = 27}, + [1174] = {.lex_state = 0, .external_lex_state = 27}, + [1175] = {.lex_state = 0, .external_lex_state = 27}, + [1176] = {.lex_state = 0, .external_lex_state = 27}, [1177] = {.lex_state = 0, .external_lex_state = 26}, - [1178] = {.lex_state = 0, .external_lex_state = 28}, + [1178] = {.lex_state = 0, .external_lex_state = 26}, [1179] = {.lex_state = 0, .external_lex_state = 26}, - [1180] = {.lex_state = 0, .external_lex_state = 26}, - [1181] = {.lex_state = 0, .external_lex_state = 26}, - [1182] = {.lex_state = 0, .external_lex_state = 28}, - [1183] = {.lex_state = 0, .external_lex_state = 26}, + [1180] = {.lex_state = 0, .external_lex_state = 27}, + [1181] = {.lex_state = 0, .external_lex_state = 27}, + [1182] = {.lex_state = 0, .external_lex_state = 27}, + [1183] = {.lex_state = 0, .external_lex_state = 27}, [1184] = {.lex_state = 0, .external_lex_state = 26}, - [1185] = {.lex_state = 0, .external_lex_state = 28}, + [1185] = {.lex_state = 0, .external_lex_state = 27}, [1186] = {.lex_state = 0, .external_lex_state = 26}, - [1187] = {.lex_state = 0, .external_lex_state = 28}, + [1187] = {.lex_state = 0, .external_lex_state = 26}, [1188] = {.lex_state = 0, .external_lex_state = 27}, - [1189] = {.lex_state = 0, .external_lex_state = 28}, - [1190] = {.lex_state = 0, .external_lex_state = 26}, - [1191] = {.lex_state = 0, .external_lex_state = 28}, - [1192] = {.lex_state = 0, .external_lex_state = 28}, - [1193] = {.lex_state = 0, .external_lex_state = 28}, - [1194] = {.lex_state = 0, .external_lex_state = 26}, - [1195] = {.lex_state = 0, .external_lex_state = 28}, - [1196] = {.lex_state = 0, .external_lex_state = 28}, + [1189] = {.lex_state = 0, .external_lex_state = 26}, + [1190] = {.lex_state = 0, .external_lex_state = 27}, + [1191] = {.lex_state = 0, .external_lex_state = 27}, + [1192] = {.lex_state = 0, .external_lex_state = 27}, + [1193] = {.lex_state = 0, .external_lex_state = 26}, + [1194] = {.lex_state = 0, .external_lex_state = 27}, + [1195] = {.lex_state = 0, .external_lex_state = 27}, + [1196] = {.lex_state = 0, .external_lex_state = 26}, [1197] = {.lex_state = 0, .external_lex_state = 26}, - [1198] = {.lex_state = 0, .external_lex_state = 28}, - [1199] = {.lex_state = 0, .external_lex_state = 26}, - [1200] = {.lex_state = 0, .external_lex_state = 28}, + [1198] = {.lex_state = 0, .external_lex_state = 26}, + [1199] = {.lex_state = 0, .external_lex_state = 27}, + [1200] = {.lex_state = 0, .external_lex_state = 26}, [1201] = {.lex_state = 0, .external_lex_state = 27}, - [1202] = {.lex_state = 0, .external_lex_state = 27}, - [1203] = {.lex_state = 0, .external_lex_state = 27}, - [1204] = {.lex_state = 0, .external_lex_state = 27}, - [1205] = {.lex_state = 0, .external_lex_state = 28}, - [1206] = {.lex_state = 0, .external_lex_state = 28}, - [1207] = {.lex_state = 0, .external_lex_state = 28}, - [1208] = {.lex_state = 0, .external_lex_state = 27}, - [1209] = {.lex_state = 0, .external_lex_state = 28}, - [1210] = {.lex_state = 0, .external_lex_state = 28}, - [1211] = {.lex_state = 0, .external_lex_state = 28}, - [1212] = {.lex_state = 0, .external_lex_state = 27}, - [1213] = {.lex_state = 0, .external_lex_state = 27}, - [1214] = {.lex_state = 0, .external_lex_state = 27}, - [1215] = {.lex_state = 0, .external_lex_state = 28}, - [1216] = {.lex_state = 0, .external_lex_state = 27}, - [1217] = {.lex_state = 0, .external_lex_state = 27}, + [1202] = {.lex_state = 0, .external_lex_state = 26}, + [1203] = {.lex_state = 0, .external_lex_state = 26}, + [1204] = {.lex_state = 0, .external_lex_state = 26}, + [1205] = {.lex_state = 0, .external_lex_state = 26}, + [1206] = {.lex_state = 0, .external_lex_state = 26}, + [1207] = {.lex_state = 0, .external_lex_state = 26}, + [1208] = {.lex_state = 0, .external_lex_state = 26}, + [1209] = {.lex_state = 0, .external_lex_state = 26}, + [1210] = {.lex_state = 0, .external_lex_state = 26}, + [1211] = {.lex_state = 0, .external_lex_state = 26}, + [1212] = {.lex_state = 0, .external_lex_state = 26}, + [1213] = {.lex_state = 0, .external_lex_state = 26}, + [1214] = {.lex_state = 0, .external_lex_state = 26}, + [1215] = {.lex_state = 0, .external_lex_state = 26}, + [1216] = {.lex_state = 0, .external_lex_state = 26}, + [1217] = {.lex_state = 0, .external_lex_state = 26}, [1218] = {.lex_state = 0, .external_lex_state = 27}, - [1219] = {.lex_state = 0, .external_lex_state = 28}, + [1219] = {.lex_state = 0, .external_lex_state = 27}, [1220] = {.lex_state = 0, .external_lex_state = 27}, - [1221] = {.lex_state = 0, .external_lex_state = 28}, - [1222] = {.lex_state = 0, .external_lex_state = 27}, - [1223] = {.lex_state = 0, .external_lex_state = 28}, - [1224] = {.lex_state = 0, .external_lex_state = 27}, - [1225] = {.lex_state = 0, .external_lex_state = 28}, - [1226] = {.lex_state = 0, .external_lex_state = 27}, - [1227] = {.lex_state = 0, .external_lex_state = 28}, - [1228] = {.lex_state = 0, .external_lex_state = 27}, - [1229] = {.lex_state = 0, .external_lex_state = 28}, - [1230] = {.lex_state = 0, .external_lex_state = 27}, - [1231] = {.lex_state = 0, .external_lex_state = 28}, + [1221] = {.lex_state = 0, .external_lex_state = 27}, + [1222] = {.lex_state = 0, .external_lex_state = 26}, + [1223] = {.lex_state = 0, .external_lex_state = 26}, + [1224] = {.lex_state = 0, .external_lex_state = 26}, + [1225] = {.lex_state = 0, .external_lex_state = 26}, + [1226] = {.lex_state = 0, .external_lex_state = 26}, + [1227] = {.lex_state = 0, .external_lex_state = 26}, + [1228] = {.lex_state = 0, .external_lex_state = 26}, + [1229] = {.lex_state = 0, .external_lex_state = 26}, + [1230] = {.lex_state = 0, .external_lex_state = 26}, + [1231] = {.lex_state = 0, .external_lex_state = 26}, [1232] = {.lex_state = 0, .external_lex_state = 27}, - [1233] = {.lex_state = 0, .external_lex_state = 27}, - [1234] = {.lex_state = 0, .external_lex_state = 27}, - [1235] = {.lex_state = 0, .external_lex_state = 28}, - [1236] = {.lex_state = 0, .external_lex_state = 27}, - [1237] = {.lex_state = 0, .external_lex_state = 28}, - [1238] = {.lex_state = 0, .external_lex_state = 27}, - [1239] = {.lex_state = 0, .external_lex_state = 28}, + [1233] = {.lex_state = 0, .external_lex_state = 26}, + [1234] = {.lex_state = 0, .external_lex_state = 26}, + [1235] = {.lex_state = 0, .external_lex_state = 26}, + [1236] = {.lex_state = 0, .external_lex_state = 26}, + [1237] = {.lex_state = 0, .external_lex_state = 26}, + [1238] = {.lex_state = 0, .external_lex_state = 26}, + [1239] = {.lex_state = 0, .external_lex_state = 26}, [1240] = {.lex_state = 0, .external_lex_state = 27}, - [1241] = {.lex_state = 0, .external_lex_state = 28}, + [1241] = {.lex_state = 0, .external_lex_state = 27}, [1242] = {.lex_state = 0, .external_lex_state = 27}, - [1243] = {.lex_state = 0, .external_lex_state = 28}, + [1243] = {.lex_state = 0, .external_lex_state = 26}, [1244] = {.lex_state = 0, .external_lex_state = 26}, - [1245] = {.lex_state = 0, .external_lex_state = 27}, - [1246] = {.lex_state = 0, .external_lex_state = 27}, - [1247] = {.lex_state = 0, .external_lex_state = 28}, - [1248] = {.lex_state = 0, .external_lex_state = 28}, + [1245] = {.lex_state = 0, .external_lex_state = 26}, + [1246] = {.lex_state = 0, .external_lex_state = 26}, + [1247] = {.lex_state = 0, .external_lex_state = 26}, + [1248] = {.lex_state = 0, .external_lex_state = 26}, [1249] = {.lex_state = 0, .external_lex_state = 27}, [1250] = {.lex_state = 0, .external_lex_state = 27}, [1251] = {.lex_state = 0, .external_lex_state = 27}, @@ -5707,180 +5710,180 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1255] = {.lex_state = 0, .external_lex_state = 27}, [1256] = {.lex_state = 0, .external_lex_state = 27}, [1257] = {.lex_state = 0, .external_lex_state = 27}, - [1258] = {.lex_state = 0, .external_lex_state = 27}, - [1259] = {.lex_state = 0, .external_lex_state = 27}, + [1258] = {.lex_state = 0, .external_lex_state = 26}, + [1259] = {.lex_state = 0, .external_lex_state = 26}, [1260] = {.lex_state = 0, .external_lex_state = 27}, - [1261] = {.lex_state = 0, .external_lex_state = 27}, - [1262] = {.lex_state = 0, .external_lex_state = 27}, + [1261] = {.lex_state = 0, .external_lex_state = 26}, + [1262] = {.lex_state = 0, .external_lex_state = 26}, [1263] = {.lex_state = 0, .external_lex_state = 27}, [1264] = {.lex_state = 0, .external_lex_state = 27}, - [1265] = {.lex_state = 0, .external_lex_state = 28}, - [1266] = {.lex_state = 0, .external_lex_state = 26}, - [1267] = {.lex_state = 0, .external_lex_state = 26}, - [1268] = {.lex_state = 0, .external_lex_state = 26}, - [1269] = {.lex_state = 0, .external_lex_state = 28}, - [1270] = {.lex_state = 0, .external_lex_state = 26}, - [1271] = {.lex_state = 0, .external_lex_state = 28}, + [1265] = {.lex_state = 0, .external_lex_state = 27}, + [1266] = {.lex_state = 0, .external_lex_state = 27}, + [1267] = {.lex_state = 0, .external_lex_state = 27}, + [1268] = {.lex_state = 0, .external_lex_state = 27}, + [1269] = {.lex_state = 0, .external_lex_state = 27}, + [1270] = {.lex_state = 0, .external_lex_state = 27}, + [1271] = {.lex_state = 0, .external_lex_state = 27}, [1272] = {.lex_state = 0, .external_lex_state = 27}, - [1273] = {.lex_state = 0, .external_lex_state = 26}, + [1273] = {.lex_state = 0, .external_lex_state = 27}, [1274] = {.lex_state = 0, .external_lex_state = 27}, - [1275] = {.lex_state = 0, .external_lex_state = 26}, - [1276] = {.lex_state = 0, .external_lex_state = 28}, - [1277] = {.lex_state = 0, .external_lex_state = 26}, + [1275] = {.lex_state = 0, .external_lex_state = 27}, + [1276] = {.lex_state = 0, .external_lex_state = 27}, + [1277] = {.lex_state = 0, .external_lex_state = 27}, [1278] = {.lex_state = 0, .external_lex_state = 28}, - [1279] = {.lex_state = 0, .external_lex_state = 26}, - [1280] = {.lex_state = 0, .external_lex_state = 27}, - [1281] = {.lex_state = 0, .external_lex_state = 26}, + [1279] = {.lex_state = 0, .external_lex_state = 28}, + [1280] = {.lex_state = 0, .external_lex_state = 28}, + [1281] = {.lex_state = 0, .external_lex_state = 28}, [1282] = {.lex_state = 0, .external_lex_state = 28}, - [1283] = {.lex_state = 0, .external_lex_state = 26}, - [1284] = {.lex_state = 0, .external_lex_state = 27}, - [1285] = {.lex_state = 0, .external_lex_state = 26}, + [1283] = {.lex_state = 0, .external_lex_state = 28}, + [1284] = {.lex_state = 0, .external_lex_state = 28}, + [1285] = {.lex_state = 0, .external_lex_state = 28}, [1286] = {.lex_state = 0, .external_lex_state = 28}, - [1287] = {.lex_state = 0, .external_lex_state = 26}, + [1287] = {.lex_state = 0, .external_lex_state = 28}, [1288] = {.lex_state = 0, .external_lex_state = 28}, - [1289] = {.lex_state = 0, .external_lex_state = 26}, + [1289] = {.lex_state = 0, .external_lex_state = 28}, [1290] = {.lex_state = 0, .external_lex_state = 28}, - [1291] = {.lex_state = 0, .external_lex_state = 26}, - [1292] = {.lex_state = 0, .external_lex_state = 27}, - [1293] = {.lex_state = 0, .external_lex_state = 26}, + [1291] = {.lex_state = 0, .external_lex_state = 28}, + [1292] = {.lex_state = 0, .external_lex_state = 28}, + [1293] = {.lex_state = 0, .external_lex_state = 28}, [1294] = {.lex_state = 0, .external_lex_state = 28}, - [1295] = {.lex_state = 0, .external_lex_state = 26}, + [1295] = {.lex_state = 0, .external_lex_state = 28}, [1296] = {.lex_state = 0, .external_lex_state = 28}, - [1297] = {.lex_state = 0, .external_lex_state = 26}, + [1297] = {.lex_state = 0, .external_lex_state = 28}, [1298] = {.lex_state = 0, .external_lex_state = 28}, - [1299] = {.lex_state = 0, .external_lex_state = 26}, - [1300] = {.lex_state = 0, .external_lex_state = 27}, + [1299] = {.lex_state = 0, .external_lex_state = 28}, + [1300] = {.lex_state = 0, .external_lex_state = 28}, [1301] = {.lex_state = 0, .external_lex_state = 28}, - [1302] = {.lex_state = 0, .external_lex_state = 26}, - [1303] = {.lex_state = 0, .external_lex_state = 26}, + [1302] = {.lex_state = 0, .external_lex_state = 28}, + [1303] = {.lex_state = 0, .external_lex_state = 28}, [1304] = {.lex_state = 0, .external_lex_state = 28}, [1305] = {.lex_state = 0, .external_lex_state = 28}, - [1306] = {.lex_state = 0, .external_lex_state = 26}, - [1307] = {.lex_state = 0, .external_lex_state = 26}, - [1308] = {.lex_state = 0, .external_lex_state = 26}, - [1309] = {.lex_state = 0, .external_lex_state = 26}, - [1310] = {.lex_state = 0, .external_lex_state = 26}, - [1311] = {.lex_state = 0, .external_lex_state = 26}, - [1312] = {.lex_state = 0, .external_lex_state = 26}, - [1313] = {.lex_state = 0, .external_lex_state = 26}, - [1314] = {.lex_state = 0, .external_lex_state = 26}, - [1315] = {.lex_state = 0, .external_lex_state = 26}, - [1316] = {.lex_state = 0, .external_lex_state = 26}, - [1317] = {.lex_state = 0, .external_lex_state = 26}, - [1318] = {.lex_state = 0, .external_lex_state = 26}, - [1319] = {.lex_state = 0, .external_lex_state = 26}, - [1320] = {.lex_state = 0, .external_lex_state = 26}, + [1306] = {.lex_state = 0, .external_lex_state = 28}, + [1307] = {.lex_state = 0, .external_lex_state = 28}, + [1308] = {.lex_state = 0, .external_lex_state = 28}, + [1309] = {.lex_state = 0, .external_lex_state = 28}, + [1310] = {.lex_state = 0, .external_lex_state = 28}, + [1311] = {.lex_state = 0, .external_lex_state = 28}, + [1312] = {.lex_state = 0, .external_lex_state = 28}, + [1313] = {.lex_state = 0, .external_lex_state = 28}, + [1314] = {.lex_state = 0, .external_lex_state = 28}, + [1315] = {.lex_state = 0, .external_lex_state = 28}, + [1316] = {.lex_state = 0, .external_lex_state = 28}, + [1317] = {.lex_state = 0, .external_lex_state = 28}, + [1318] = {.lex_state = 0, .external_lex_state = 28}, + [1319] = {.lex_state = 0, .external_lex_state = 28}, + [1320] = {.lex_state = 0, .external_lex_state = 28}, [1321] = {.lex_state = 0, .external_lex_state = 28}, - [1322] = {.lex_state = 0, .external_lex_state = 27}, + [1322] = {.lex_state = 0, .external_lex_state = 28}, [1323] = {.lex_state = 0, .external_lex_state = 28}, - [1324] = {.lex_state = 0, .external_lex_state = 27}, - [1325] = {.lex_state = 0, .external_lex_state = 26}, - [1326] = {.lex_state = 0, .external_lex_state = 26}, + [1324] = {.lex_state = 0, .external_lex_state = 28}, + [1325] = {.lex_state = 0, .external_lex_state = 28}, + [1326] = {.lex_state = 0, .external_lex_state = 28}, [1327] = {.lex_state = 0, .external_lex_state = 28}, [1328] = {.lex_state = 0, .external_lex_state = 26}, - [1329] = {.lex_state = 0, .external_lex_state = 27}, + [1329] = {.lex_state = 0, .external_lex_state = 28}, [1330] = {.lex_state = 0, .external_lex_state = 28}, - [1331] = {.lex_state = 0, .external_lex_state = 27}, - [1332] = {.lex_state = 0, .external_lex_state = 26}, - [1333] = {.lex_state = 0, .external_lex_state = 27}, + [1331] = {.lex_state = 0, .external_lex_state = 28}, + [1332] = {.lex_state = 0, .external_lex_state = 28}, + [1333] = {.lex_state = 0, .external_lex_state = 28}, [1334] = {.lex_state = 0, .external_lex_state = 29}, [1335] = {.lex_state = 0, .external_lex_state = 30}, [1336] = {.lex_state = 0, .external_lex_state = 30}, - [1337] = {.lex_state = 0, .external_lex_state = 29}, - [1338] = {.lex_state = 0, .external_lex_state = 30}, - [1339] = {.lex_state = 0, .external_lex_state = 30}, - [1340] = {.lex_state = 0, .external_lex_state = 30}, - [1341] = {.lex_state = 0, .external_lex_state = 29}, + [1337] = {.lex_state = 0, .external_lex_state = 31}, + [1338] = {.lex_state = 0, .external_lex_state = 31}, + [1339] = {.lex_state = 0, .external_lex_state = 31}, + [1340] = {.lex_state = 0, .external_lex_state = 31}, + [1341] = {.lex_state = 0, .external_lex_state = 31}, [1342] = {.lex_state = 0, .external_lex_state = 30}, - [1343] = {.lex_state = 0, .external_lex_state = 30}, - [1344] = {.lex_state = 0, .external_lex_state = 30}, - [1345] = {.lex_state = 0, .external_lex_state = 30}, - [1346] = {.lex_state = 0, .external_lex_state = 30}, - [1347] = {.lex_state = 0, .external_lex_state = 30}, - [1348] = {.lex_state = 0, .external_lex_state = 29}, - [1349] = {.lex_state = 0, .external_lex_state = 29}, - [1350] = {.lex_state = 0, .external_lex_state = 30}, - [1351] = {.lex_state = 0, .external_lex_state = 29}, - [1352] = {.lex_state = 0, .external_lex_state = 30}, - [1353] = {.lex_state = 0, .external_lex_state = 30}, - [1354] = {.lex_state = 0, .external_lex_state = 29}, - [1355] = {.lex_state = 0, .external_lex_state = 29}, - [1356] = {.lex_state = 0, .external_lex_state = 29}, - [1357] = {.lex_state = 0, .external_lex_state = 30}, - [1358] = {.lex_state = 0, .external_lex_state = 29}, - [1359] = {.lex_state = 0, .external_lex_state = 30}, - [1360] = {.lex_state = 0, .external_lex_state = 29}, - [1361] = {.lex_state = 0, .external_lex_state = 29}, - [1362] = {.lex_state = 0, .external_lex_state = 29}, - [1363] = {.lex_state = 0, .external_lex_state = 29}, + [1343] = {.lex_state = 0, .external_lex_state = 31}, + [1344] = {.lex_state = 0, .external_lex_state = 29}, + [1345] = {.lex_state = 0, .external_lex_state = 31}, + [1346] = {.lex_state = 0, .external_lex_state = 31}, + [1347] = {.lex_state = 0, .external_lex_state = 31}, + [1348] = {.lex_state = 0, .external_lex_state = 31}, + [1349] = {.lex_state = 0, .external_lex_state = 31}, + [1350] = {.lex_state = 0, .external_lex_state = 31}, + [1351] = {.lex_state = 0, .external_lex_state = 31}, + [1352] = {.lex_state = 0, .external_lex_state = 31}, + [1353] = {.lex_state = 0, .external_lex_state = 31}, + [1354] = {.lex_state = 0, .external_lex_state = 31}, + [1355] = {.lex_state = 0, .external_lex_state = 31}, + [1356] = {.lex_state = 0, .external_lex_state = 31}, + [1357] = {.lex_state = 0, .external_lex_state = 31}, + [1358] = {.lex_state = 0, .external_lex_state = 31}, + [1359] = {.lex_state = 0, .external_lex_state = 31}, + [1360] = {.lex_state = 0, .external_lex_state = 31}, + [1361] = {.lex_state = 0, .external_lex_state = 31}, + [1362] = {.lex_state = 0, .external_lex_state = 31}, + [1363] = {.lex_state = 0, .external_lex_state = 31}, [1364] = {.lex_state = 0, .external_lex_state = 30}, - [1365] = {.lex_state = 0, .external_lex_state = 30}, - [1366] = {.lex_state = 0, .external_lex_state = 29}, - [1367] = {.lex_state = 0, .external_lex_state = 29}, - [1368] = {.lex_state = 0, .external_lex_state = 30}, - [1369] = {.lex_state = 0, .external_lex_state = 29}, + [1365] = {.lex_state = 0, .external_lex_state = 31}, + [1366] = {.lex_state = 0, .external_lex_state = 31}, + [1367] = {.lex_state = 0, .external_lex_state = 31}, + [1368] = {.lex_state = 0, .external_lex_state = 31}, + [1369] = {.lex_state = 0, .external_lex_state = 31}, [1370] = {.lex_state = 0, .external_lex_state = 30}, - [1371] = {.lex_state = 0, .external_lex_state = 29}, - [1372] = {.lex_state = 0, .external_lex_state = 30}, - [1373] = {.lex_state = 0, .external_lex_state = 30}, - [1374] = {.lex_state = 0, .external_lex_state = 30}, - [1375] = {.lex_state = 0, .external_lex_state = 30}, - [1376] = {.lex_state = 0, .external_lex_state = 29}, - [1377] = {.lex_state = 0, .external_lex_state = 30}, - [1378] = {.lex_state = 0, .external_lex_state = 30}, - [1379] = {.lex_state = 0, .external_lex_state = 29}, - [1380] = {.lex_state = 0, .external_lex_state = 30}, - [1381] = {.lex_state = 0, .external_lex_state = 29}, - [1382] = {.lex_state = 0, .external_lex_state = 30}, - [1383] = {.lex_state = 0, .external_lex_state = 30}, - [1384] = {.lex_state = 0, .external_lex_state = 29}, - [1385] = {.lex_state = 0, .external_lex_state = 29}, - [1386] = {.lex_state = 0, .external_lex_state = 29}, - [1387] = {.lex_state = 0, .external_lex_state = 29}, + [1371] = {.lex_state = 0, .external_lex_state = 31}, + [1372] = {.lex_state = 0, .external_lex_state = 31}, + [1373] = {.lex_state = 0, .external_lex_state = 31}, + [1374] = {.lex_state = 0, .external_lex_state = 31}, + [1375] = {.lex_state = 0, .external_lex_state = 31}, + [1376] = {.lex_state = 0, .external_lex_state = 31}, + [1377] = {.lex_state = 0, .external_lex_state = 31}, + [1378] = {.lex_state = 0, .external_lex_state = 31}, + [1379] = {.lex_state = 0, .external_lex_state = 30}, + [1380] = {.lex_state = 0, .external_lex_state = 31}, + [1381] = {.lex_state = 0, .external_lex_state = 31}, + [1382] = {.lex_state = 0, .external_lex_state = 31}, + [1383] = {.lex_state = 0, .external_lex_state = 31}, + [1384] = {.lex_state = 0, .external_lex_state = 31}, + [1385] = {.lex_state = 0, .external_lex_state = 30}, + [1386] = {.lex_state = 0, .external_lex_state = 30}, + [1387] = {.lex_state = 0, .external_lex_state = 31}, [1388] = {.lex_state = 0, .external_lex_state = 30}, - [1389] = {.lex_state = 0, .external_lex_state = 29}, - [1390] = {.lex_state = 0, .external_lex_state = 30}, - [1391] = {.lex_state = 0, .external_lex_state = 29}, - [1392] = {.lex_state = 0, .external_lex_state = 29}, - [1393] = {.lex_state = 0, .external_lex_state = 29}, - [1394] = {.lex_state = 0, .external_lex_state = 29}, - [1395] = {.lex_state = 0, .external_lex_state = 31}, - [1396] = {.lex_state = 0, .external_lex_state = 29}, - [1397] = {.lex_state = 0, .external_lex_state = 31}, - [1398] = {.lex_state = 0, .external_lex_state = 29}, - [1399] = {.lex_state = 0, .external_lex_state = 31}, + [1389] = {.lex_state = 0, .external_lex_state = 30}, + [1390] = {.lex_state = 0, .external_lex_state = 31}, + [1391] = {.lex_state = 0, .external_lex_state = 31}, + [1392] = {.lex_state = 0, .external_lex_state = 31}, + [1393] = {.lex_state = 0, .external_lex_state = 31}, + [1394] = {.lex_state = 0, .external_lex_state = 31}, + [1395] = {.lex_state = 0, .external_lex_state = 29}, + [1396] = {.lex_state = 0, .external_lex_state = 30}, + [1397] = {.lex_state = 0, .external_lex_state = 30}, + [1398] = {.lex_state = 0, .external_lex_state = 31}, + [1399] = {.lex_state = 0, .external_lex_state = 30}, [1400] = {.lex_state = 0, .external_lex_state = 31}, - [1401] = {.lex_state = 0, .external_lex_state = 30}, - [1402] = {.lex_state = 0, .external_lex_state = 31}, - [1403] = {.lex_state = 0, .external_lex_state = 30}, - [1404] = {.lex_state = 0, .external_lex_state = 30}, - [1405] = {.lex_state = 0, .external_lex_state = 30}, - [1406] = {.lex_state = 0, .external_lex_state = 30}, - [1407] = {.lex_state = 0, .external_lex_state = 31}, + [1401] = {.lex_state = 0, .external_lex_state = 29}, + [1402] = {.lex_state = 0, .external_lex_state = 29}, + [1403] = {.lex_state = 0, .external_lex_state = 29}, + [1404] = {.lex_state = 0, .external_lex_state = 29}, + [1405] = {.lex_state = 0, .external_lex_state = 29}, + [1406] = {.lex_state = 0, .external_lex_state = 29}, + [1407] = {.lex_state = 0, .external_lex_state = 29}, [1408] = {.lex_state = 0, .external_lex_state = 29}, [1409] = {.lex_state = 0, .external_lex_state = 29}, - [1410] = {.lex_state = 0, .external_lex_state = 31}, - [1411] = {.lex_state = 0, .external_lex_state = 31}, - [1412] = {.lex_state = 0, .external_lex_state = 31}, - [1413] = {.lex_state = 0, .external_lex_state = 31}, - [1414] = {.lex_state = 0, .external_lex_state = 31}, + [1410] = {.lex_state = 0, .external_lex_state = 29}, + [1411] = {.lex_state = 0, .external_lex_state = 29}, + [1412] = {.lex_state = 0, .external_lex_state = 29}, + [1413] = {.lex_state = 0, .external_lex_state = 30}, + [1414] = {.lex_state = 0, .external_lex_state = 30}, [1415] = {.lex_state = 0, .external_lex_state = 31}, [1416] = {.lex_state = 0, .external_lex_state = 31}, [1417] = {.lex_state = 0, .external_lex_state = 31}, - [1418] = {.lex_state = 0, .external_lex_state = 31}, + [1418] = {.lex_state = 0, .external_lex_state = 29}, [1419] = {.lex_state = 0, .external_lex_state = 31}, [1420] = {.lex_state = 0, .external_lex_state = 31}, [1421] = {.lex_state = 0, .external_lex_state = 31}, - [1422] = {.lex_state = 0, .external_lex_state = 31}, - [1423] = {.lex_state = 0, .external_lex_state = 31}, + [1422] = {.lex_state = 0, .external_lex_state = 30}, + [1423] = {.lex_state = 0, .external_lex_state = 30}, [1424] = {.lex_state = 0, .external_lex_state = 31}, [1425] = {.lex_state = 0, .external_lex_state = 31}, [1426] = {.lex_state = 0, .external_lex_state = 31}, [1427] = {.lex_state = 0, .external_lex_state = 31}, [1428] = {.lex_state = 0, .external_lex_state = 31}, - [1429] = {.lex_state = 0, .external_lex_state = 31}, + [1429] = {.lex_state = 0, .external_lex_state = 29}, [1430] = {.lex_state = 0, .external_lex_state = 30}, - [1431] = {.lex_state = 0, .external_lex_state = 31}, + [1431] = {.lex_state = 0, .external_lex_state = 29}, [1432] = {.lex_state = 0, .external_lex_state = 31}, [1433] = {.lex_state = 0, .external_lex_state = 31}, [1434] = {.lex_state = 0, .external_lex_state = 31}, @@ -5888,349 +5891,349 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1436] = {.lex_state = 0, .external_lex_state = 31}, [1437] = {.lex_state = 0, .external_lex_state = 31}, [1438] = {.lex_state = 0, .external_lex_state = 31}, - [1439] = {.lex_state = 0, .external_lex_state = 31}, + [1439] = {.lex_state = 0, .external_lex_state = 30}, [1440] = {.lex_state = 0, .external_lex_state = 31}, - [1441] = {.lex_state = 0, .external_lex_state = 29}, - [1442] = {.lex_state = 0, .external_lex_state = 29}, - [1443] = {.lex_state = 0, .external_lex_state = 31}, - [1444] = {.lex_state = 0, .external_lex_state = 29}, - [1445] = {.lex_state = 0, .external_lex_state = 29}, - [1446] = {.lex_state = 0, .external_lex_state = 31}, - [1447] = {.lex_state = 0, .external_lex_state = 29}, - [1448] = {.lex_state = 0, .external_lex_state = 31}, - [1449] = {.lex_state = 0, .external_lex_state = 29}, - [1450] = {.lex_state = 0, .external_lex_state = 29}, - [1451] = {.lex_state = 0, .external_lex_state = 31}, + [1441] = {.lex_state = 0, .external_lex_state = 31}, + [1442] = {.lex_state = 0, .external_lex_state = 31}, + [1443] = {.lex_state = 0, .external_lex_state = 30}, + [1444] = {.lex_state = 0, .external_lex_state = 30}, + [1445] = {.lex_state = 0, .external_lex_state = 31}, + [1446] = {.lex_state = 0, .external_lex_state = 30}, + [1447] = {.lex_state = 0, .external_lex_state = 30}, + [1448] = {.lex_state = 0, .external_lex_state = 30}, + [1449] = {.lex_state = 0, .external_lex_state = 30}, + [1450] = {.lex_state = 0, .external_lex_state = 31}, + [1451] = {.lex_state = 0, .external_lex_state = 29}, [1452] = {.lex_state = 0, .external_lex_state = 31}, - [1453] = {.lex_state = 0, .external_lex_state = 29}, + [1453] = {.lex_state = 0, .external_lex_state = 31}, [1454] = {.lex_state = 0, .external_lex_state = 30}, - [1455] = {.lex_state = 0, .external_lex_state = 30}, + [1455] = {.lex_state = 0, .external_lex_state = 31}, [1456] = {.lex_state = 0, .external_lex_state = 30}, - [1457] = {.lex_state = 0, .external_lex_state = 29}, - [1458] = {.lex_state = 0, .external_lex_state = 30}, - [1459] = {.lex_state = 0, .external_lex_state = 30}, - [1460] = {.lex_state = 0, .external_lex_state = 31}, - [1461] = {.lex_state = 0, .external_lex_state = 29}, - [1462] = {.lex_state = 0, .external_lex_state = 29}, - [1463] = {.lex_state = 0, .external_lex_state = 31}, + [1457] = {.lex_state = 0, .external_lex_state = 30}, + [1458] = {.lex_state = 0, .external_lex_state = 31}, + [1459] = {.lex_state = 0, .external_lex_state = 31}, + [1460] = {.lex_state = 0, .external_lex_state = 30}, + [1461] = {.lex_state = 0, .external_lex_state = 30}, + [1462] = {.lex_state = 0, .external_lex_state = 31}, + [1463] = {.lex_state = 0, .external_lex_state = 29}, [1464] = {.lex_state = 0, .external_lex_state = 29}, - [1465] = {.lex_state = 0, .external_lex_state = 31}, - [1466] = {.lex_state = 0, .external_lex_state = 29}, - [1467] = {.lex_state = 0, .external_lex_state = 29}, - [1468] = {.lex_state = 0, .external_lex_state = 29}, - [1469] = {.lex_state = 0, .external_lex_state = 29}, - [1470] = {.lex_state = 0, .external_lex_state = 29}, - [1471] = {.lex_state = 0, .external_lex_state = 29}, - [1472] = {.lex_state = 0, .external_lex_state = 30}, - [1473] = {.lex_state = 0, .external_lex_state = 29}, - [1474] = {.lex_state = 0, .external_lex_state = 29}, - [1475] = {.lex_state = 0, .external_lex_state = 29}, + [1465] = {.lex_state = 0, .external_lex_state = 30}, + [1466] = {.lex_state = 0, .external_lex_state = 31}, + [1467] = {.lex_state = 0, .external_lex_state = 31}, + [1468] = {.lex_state = 0, .external_lex_state = 30}, + [1469] = {.lex_state = 0, .external_lex_state = 31}, + [1470] = {.lex_state = 0, .external_lex_state = 31}, + [1471] = {.lex_state = 0, .external_lex_state = 31}, + [1472] = {.lex_state = 0, .external_lex_state = 31}, + [1473] = {.lex_state = 0, .external_lex_state = 31}, + [1474] = {.lex_state = 0, .external_lex_state = 31}, + [1475] = {.lex_state = 0, .external_lex_state = 31}, [1476] = {.lex_state = 0, .external_lex_state = 31}, - [1477] = {.lex_state = 0, .external_lex_state = 29}, - [1478] = {.lex_state = 0, .external_lex_state = 30}, - [1479] = {.lex_state = 0, .external_lex_state = 29}, - [1480] = {.lex_state = 0, .external_lex_state = 29}, - [1481] = {.lex_state = 0, .external_lex_state = 29}, - [1482] = {.lex_state = 0, .external_lex_state = 29}, - [1483] = {.lex_state = 0, .external_lex_state = 31}, - [1484] = {.lex_state = 0, .external_lex_state = 29}, + [1477] = {.lex_state = 0, .external_lex_state = 31}, + [1478] = {.lex_state = 0, .external_lex_state = 31}, + [1479] = {.lex_state = 0, .external_lex_state = 30}, + [1480] = {.lex_state = 0, .external_lex_state = 30}, + [1481] = {.lex_state = 0, .external_lex_state = 30}, + [1482] = {.lex_state = 0, .external_lex_state = 31}, + [1483] = {.lex_state = 0, .external_lex_state = 30}, + [1484] = {.lex_state = 0, .external_lex_state = 30}, [1485] = {.lex_state = 0, .external_lex_state = 31}, - [1486] = {.lex_state = 0, .external_lex_state = 29}, - [1487] = {.lex_state = 0, .external_lex_state = 29}, - [1488] = {.lex_state = 0, .external_lex_state = 31}, + [1486] = {.lex_state = 0, .external_lex_state = 31}, + [1487] = {.lex_state = 0, .external_lex_state = 30}, + [1488] = {.lex_state = 0, .external_lex_state = 30}, [1489] = {.lex_state = 0, .external_lex_state = 29}, - [1490] = {.lex_state = 0, .external_lex_state = 30}, - [1491] = {.lex_state = 0, .external_lex_state = 29}, - [1492] = {.lex_state = 0, .external_lex_state = 29}, - [1493] = {.lex_state = 0, .external_lex_state = 29}, - [1494] = {.lex_state = 0, .external_lex_state = 31}, + [1490] = {.lex_state = 0, .external_lex_state = 29}, + [1491] = {.lex_state = 0, .external_lex_state = 31}, + [1492] = {.lex_state = 0, .external_lex_state = 31}, + [1493] = {.lex_state = 0, .external_lex_state = 31}, + [1494] = {.lex_state = 0, .external_lex_state = 29}, [1495] = {.lex_state = 0, .external_lex_state = 29}, - [1496] = {.lex_state = 0, .external_lex_state = 29}, + [1496] = {.lex_state = 0, .external_lex_state = 31}, [1497] = {.lex_state = 0, .external_lex_state = 30}, [1498] = {.lex_state = 0, .external_lex_state = 29}, [1499] = {.lex_state = 0, .external_lex_state = 31}, - [1500] = {.lex_state = 0, .external_lex_state = 31}, - [1501] = {.lex_state = 0, .external_lex_state = 31}, + [1500] = {.lex_state = 0, .external_lex_state = 29}, + [1501] = {.lex_state = 0, .external_lex_state = 29}, [1502] = {.lex_state = 0, .external_lex_state = 29}, - [1503] = {.lex_state = 0, .external_lex_state = 29}, - [1504] = {.lex_state = 0, .external_lex_state = 31}, + [1503] = {.lex_state = 0, .external_lex_state = 30}, + [1504] = {.lex_state = 0, .external_lex_state = 29}, [1505] = {.lex_state = 0, .external_lex_state = 29}, [1506] = {.lex_state = 0, .external_lex_state = 31}, [1507] = {.lex_state = 0, .external_lex_state = 30}, - [1508] = {.lex_state = 0, .external_lex_state = 29}, - [1509] = {.lex_state = 0, .external_lex_state = 31}, - [1510] = {.lex_state = 0, .external_lex_state = 29}, - [1511] = {.lex_state = 0, .external_lex_state = 31}, + [1508] = {.lex_state = 0, .external_lex_state = 31}, + [1509] = {.lex_state = 0, .external_lex_state = 29}, + [1510] = {.lex_state = 0, .external_lex_state = 30}, + [1511] = {.lex_state = 0, .external_lex_state = 29}, [1512] = {.lex_state = 0, .external_lex_state = 30}, - [1513] = {.lex_state = 0, .external_lex_state = 29}, - [1514] = {.lex_state = 0, .external_lex_state = 29}, - [1515] = {.lex_state = 0, .external_lex_state = 29}, - [1516] = {.lex_state = 0, .external_lex_state = 29}, - [1517] = {.lex_state = 0, .external_lex_state = 29}, - [1518] = {.lex_state = 0, .external_lex_state = 30}, + [1513] = {.lex_state = 0, .external_lex_state = 31}, + [1514] = {.lex_state = 0, .external_lex_state = 31}, + [1515] = {.lex_state = 0, .external_lex_state = 31}, + [1516] = {.lex_state = 0, .external_lex_state = 30}, + [1517] = {.lex_state = 0, .external_lex_state = 31}, + [1518] = {.lex_state = 0, .external_lex_state = 31}, [1519] = {.lex_state = 0, .external_lex_state = 30}, - [1520] = {.lex_state = 0, .external_lex_state = 29}, - [1521] = {.lex_state = 0, .external_lex_state = 29}, - [1522] = {.lex_state = 0, .external_lex_state = 29}, - [1523] = {.lex_state = 0, .external_lex_state = 29}, - [1524] = {.lex_state = 0, .external_lex_state = 29}, - [1525] = {.lex_state = 0, .external_lex_state = 29}, - [1526] = {.lex_state = 0, .external_lex_state = 29}, - [1527] = {.lex_state = 0, .external_lex_state = 29}, + [1520] = {.lex_state = 0, .external_lex_state = 31}, + [1521] = {.lex_state = 0, .external_lex_state = 31}, + [1522] = {.lex_state = 0, .external_lex_state = 30}, + [1523] = {.lex_state = 0, .external_lex_state = 31}, + [1524] = {.lex_state = 0, .external_lex_state = 30}, + [1525] = {.lex_state = 0, .external_lex_state = 31}, + [1526] = {.lex_state = 0, .external_lex_state = 30}, + [1527] = {.lex_state = 0, .external_lex_state = 31}, [1528] = {.lex_state = 0, .external_lex_state = 29}, [1529] = {.lex_state = 0, .external_lex_state = 29}, - [1530] = {.lex_state = 0, .external_lex_state = 29}, - [1531] = {.lex_state = 0, .external_lex_state = 29}, - [1532] = {.lex_state = 0, .external_lex_state = 29}, - [1533] = {.lex_state = 0, .external_lex_state = 29}, - [1534] = {.lex_state = 0, .external_lex_state = 30}, - [1535] = {.lex_state = 0, .external_lex_state = 29}, + [1530] = {.lex_state = 0, .external_lex_state = 30}, + [1531] = {.lex_state = 0, .external_lex_state = 31}, + [1532] = {.lex_state = 0, .external_lex_state = 30}, + [1533] = {.lex_state = 0, .external_lex_state = 31}, + [1534] = {.lex_state = 0, .external_lex_state = 31}, + [1535] = {.lex_state = 0, .external_lex_state = 30}, [1536] = {.lex_state = 0, .external_lex_state = 30}, - [1537] = {.lex_state = 0, .external_lex_state = 31}, - [1538] = {.lex_state = 0, .external_lex_state = 30}, + [1537] = {.lex_state = 0, .external_lex_state = 29}, + [1538] = {.lex_state = 0, .external_lex_state = 31}, [1539] = {.lex_state = 0, .external_lex_state = 29}, [1540] = {.lex_state = 0, .external_lex_state = 29}, - [1541] = {.lex_state = 0, .external_lex_state = 30}, - [1542] = {.lex_state = 0, .external_lex_state = 29}, + [1541] = {.lex_state = 0, .external_lex_state = 29}, + [1542] = {.lex_state = 0, .external_lex_state = 31}, [1543] = {.lex_state = 0, .external_lex_state = 29}, [1544] = {.lex_state = 0, .external_lex_state = 29}, [1545] = {.lex_state = 0, .external_lex_state = 29}, - [1546] = {.lex_state = 0, .external_lex_state = 30}, - [1547] = {.lex_state = 0, .external_lex_state = 29}, + [1546] = {.lex_state = 0, .external_lex_state = 31}, + [1547] = {.lex_state = 0, .external_lex_state = 30}, [1548] = {.lex_state = 0, .external_lex_state = 29}, [1549] = {.lex_state = 0, .external_lex_state = 29}, [1550] = {.lex_state = 0, .external_lex_state = 29}, - [1551] = {.lex_state = 0, .external_lex_state = 30}, + [1551] = {.lex_state = 0, .external_lex_state = 29}, [1552] = {.lex_state = 0, .external_lex_state = 29}, [1553] = {.lex_state = 0, .external_lex_state = 29}, [1554] = {.lex_state = 0, .external_lex_state = 29}, [1555] = {.lex_state = 0, .external_lex_state = 29}, [1556] = {.lex_state = 0, .external_lex_state = 29}, - [1557] = {.lex_state = 0, .external_lex_state = 29}, - [1558] = {.lex_state = 0, .external_lex_state = 29}, - [1559] = {.lex_state = 0, .external_lex_state = 29}, + [1557] = {.lex_state = 0, .external_lex_state = 31}, + [1558] = {.lex_state = 0, .external_lex_state = 31}, + [1559] = {.lex_state = 0, .external_lex_state = 31}, [1560] = {.lex_state = 0, .external_lex_state = 29}, [1561] = {.lex_state = 0, .external_lex_state = 29}, - [1562] = {.lex_state = 0, .external_lex_state = 29}, - [1563] = {.lex_state = 0, .external_lex_state = 29}, - [1564] = {.lex_state = 0, .external_lex_state = 29}, - [1565] = {.lex_state = 0, .external_lex_state = 29}, + [1562] = {.lex_state = 0, .external_lex_state = 30}, + [1563] = {.lex_state = 0, .external_lex_state = 31}, + [1564] = {.lex_state = 0, .external_lex_state = 30}, + [1565] = {.lex_state = 0, .external_lex_state = 31}, [1566] = {.lex_state = 0, .external_lex_state = 29}, - [1567] = {.lex_state = 0, .external_lex_state = 29}, + [1567] = {.lex_state = 0, .external_lex_state = 30}, [1568] = {.lex_state = 0, .external_lex_state = 29}, [1569] = {.lex_state = 0, .external_lex_state = 29}, - [1570] = {.lex_state = 0, .external_lex_state = 29}, - [1571] = {.lex_state = 0, .external_lex_state = 29}, - [1572] = {.lex_state = 0, .external_lex_state = 29}, - [1573] = {.lex_state = 0, .external_lex_state = 29}, + [1570] = {.lex_state = 0, .external_lex_state = 31}, + [1571] = {.lex_state = 0, .external_lex_state = 31}, + [1572] = {.lex_state = 0, .external_lex_state = 31}, + [1573] = {.lex_state = 0, .external_lex_state = 31}, [1574] = {.lex_state = 0, .external_lex_state = 29}, - [1575] = {.lex_state = 0, .external_lex_state = 30}, + [1575] = {.lex_state = 0, .external_lex_state = 31}, [1576] = {.lex_state = 0, .external_lex_state = 27}, [1577] = {.lex_state = 0, .external_lex_state = 27}, [1578] = {.lex_state = 0, .external_lex_state = 27}, - [1579] = {.lex_state = 0, .external_lex_state = 28}, - [1580] = {.lex_state = 0, .external_lex_state = 27}, - [1581] = {.lex_state = 0, .external_lex_state = 28}, - [1582] = {.lex_state = 2, .external_lex_state = 28}, - [1583] = {.lex_state = 0, .external_lex_state = 28}, - [1584] = {.lex_state = 0, .external_lex_state = 28}, + [1579] = {.lex_state = 0, .external_lex_state = 27}, + [1580] = {.lex_state = 0, .external_lex_state = 28}, + [1581] = {.lex_state = 2, .external_lex_state = 26}, + [1582] = {.lex_state = 0, .external_lex_state = 28}, + [1583] = {.lex_state = 0, .external_lex_state = 26}, + [1584] = {.lex_state = 0, .external_lex_state = 26}, [1585] = {.lex_state = 0, .external_lex_state = 26}, [1586] = {.lex_state = 0, .external_lex_state = 26}, - [1587] = {.lex_state = 2, .external_lex_state = 26}, - [1588] = {.lex_state = 0, .external_lex_state = 26}, - [1589] = {.lex_state = 0, .external_lex_state = 26}, - [1590] = {.lex_state = 2, .external_lex_state = 27}, + [1587] = {.lex_state = 2, .external_lex_state = 28}, + [1588] = {.lex_state = 0, .external_lex_state = 28}, + [1589] = {.lex_state = 0, .external_lex_state = 28}, + [1590] = {.lex_state = 0, .external_lex_state = 28}, [1591] = {.lex_state = 0, .external_lex_state = 28}, - [1592] = {.lex_state = 0, .external_lex_state = 28}, - [1593] = {.lex_state = 0, .external_lex_state = 27}, - [1594] = {.lex_state = 0, .external_lex_state = 26}, + [1592] = {.lex_state = 0, .external_lex_state = 10}, + [1593] = {.lex_state = 0, .external_lex_state = 26}, + [1594] = {.lex_state = 0, .external_lex_state = 28}, [1595] = {.lex_state = 0, .external_lex_state = 26}, - [1596] = {.lex_state = 0, .external_lex_state = 27}, + [1596] = {.lex_state = 0, .external_lex_state = 28}, [1597] = {.lex_state = 0, .external_lex_state = 26}, - [1598] = {.lex_state = 0, .external_lex_state = 26}, - [1599] = {.lex_state = 0, .external_lex_state = 28}, - [1600] = {.lex_state = 0, .external_lex_state = 28}, - [1601] = {.lex_state = 0, .external_lex_state = 10}, - [1602] = {.lex_state = 0, .external_lex_state = 27}, + [1598] = {.lex_state = 0, .external_lex_state = 27}, + [1599] = {.lex_state = 0, .external_lex_state = 27}, + [1600] = {.lex_state = 2, .external_lex_state = 27}, + [1601] = {.lex_state = 0, .external_lex_state = 27}, + [1602] = {.lex_state = 0, .external_lex_state = 26}, [1603] = {.lex_state = 0, .external_lex_state = 27}, - [1604] = {.lex_state = 0, .external_lex_state = 30}, - [1605] = {.lex_state = 2, .external_lex_state = 30}, + [1604] = {.lex_state = 0, .external_lex_state = 29}, + [1605] = {.lex_state = 0, .external_lex_state = 30}, [1606] = {.lex_state = 0, .external_lex_state = 29}, - [1607] = {.lex_state = 0, .external_lex_state = 30}, - [1608] = {.lex_state = 0, .external_lex_state = 31}, - [1609] = {.lex_state = 0, .external_lex_state = 30}, + [1607] = {.lex_state = 0, .external_lex_state = 31}, + [1608] = {.lex_state = 0, .external_lex_state = 29}, + [1609] = {.lex_state = 0, .external_lex_state = 29}, [1610] = {.lex_state = 0, .external_lex_state = 30}, - [1611] = {.lex_state = 0, .external_lex_state = 30}, - [1612] = {.lex_state = 0, .external_lex_state = 31}, - [1613] = {.lex_state = 0, .external_lex_state = 12}, + [1611] = {.lex_state = 0, .external_lex_state = 12}, + [1612] = {.lex_state = 0, .external_lex_state = 29}, + [1613] = {.lex_state = 0, .external_lex_state = 29}, [1614] = {.lex_state = 0, .external_lex_state = 31}, [1615] = {.lex_state = 0, .external_lex_state = 30}, [1616] = {.lex_state = 0, .external_lex_state = 31}, - [1617] = {.lex_state = 0, .external_lex_state = 31}, - [1618] = {.lex_state = 0, .external_lex_state = 29}, - [1619] = {.lex_state = 0, .external_lex_state = 29}, + [1617] = {.lex_state = 0, .external_lex_state = 30}, + [1618] = {.lex_state = 2, .external_lex_state = 30}, + [1619] = {.lex_state = 0, .external_lex_state = 30}, [1620] = {.lex_state = 0, .external_lex_state = 30}, - [1621] = {.lex_state = 0, .external_lex_state = 29}, - [1622] = {.lex_state = 0, .external_lex_state = 29}, + [1621] = {.lex_state = 0, .external_lex_state = 30}, + [1622] = {.lex_state = 0, .external_lex_state = 31}, [1623] = {.lex_state = 0, .external_lex_state = 29}, - [1624] = {.lex_state = 0, .external_lex_state = 29}, - [1625] = {.lex_state = 0, .external_lex_state = 29}, - [1626] = {.lex_state = 0, .external_lex_state = 29}, + [1624] = {.lex_state = 0, .external_lex_state = 31}, + [1625] = {.lex_state = 0, .external_lex_state = 31}, + [1626] = {.lex_state = 2, .external_lex_state = 31}, [1627] = {.lex_state = 0, .external_lex_state = 31}, - [1628] = {.lex_state = 0, .external_lex_state = 30}, - [1629] = {.lex_state = 2, .external_lex_state = 29}, - [1630] = {.lex_state = 0, .external_lex_state = 31}, - [1631] = {.lex_state = 0, .external_lex_state = 30}, - [1632] = {.lex_state = 2, .external_lex_state = 31}, + [1628] = {.lex_state = 2, .external_lex_state = 29}, + [1629] = {.lex_state = 0, .external_lex_state = 29}, + [1630] = {.lex_state = 0, .external_lex_state = 30}, + [1631] = {.lex_state = 0, .external_lex_state = 31}, + [1632] = {.lex_state = 0, .external_lex_state = 29}, [1633] = {.lex_state = 0, .external_lex_state = 31}, - [1634] = {.lex_state = 0, .external_lex_state = 31}, - [1635] = {.lex_state = 0, .external_lex_state = 27}, - [1636] = {.lex_state = 0, .external_lex_state = 12}, - [1637] = {.lex_state = 0, .external_lex_state = 26}, - [1638] = {.lex_state = 0, .external_lex_state = 28}, + [1634] = {.lex_state = 0, .external_lex_state = 30}, + [1635] = {.lex_state = 0, .external_lex_state = 26}, + [1636] = {.lex_state = 0, .external_lex_state = 26}, + [1637] = {.lex_state = 0, .external_lex_state = 27}, + [1638] = {.lex_state = 0, .external_lex_state = 27}, [1639] = {.lex_state = 0, .external_lex_state = 27}, - [1640] = {.lex_state = 0, .external_lex_state = 28}, - [1641] = {.lex_state = 0, .external_lex_state = 26}, + [1640] = {.lex_state = 0, .external_lex_state = 27}, + [1641] = {.lex_state = 0, .external_lex_state = 27}, [1642] = {.lex_state = 0, .external_lex_state = 26}, - [1643] = {.lex_state = 0, .external_lex_state = 28}, - [1644] = {.lex_state = 0, .external_lex_state = 28}, - [1645] = {.lex_state = 0, .external_lex_state = 27}, - [1646] = {.lex_state = 0, .external_lex_state = 28}, + [1643] = {.lex_state = 0, .external_lex_state = 26}, + [1644] = {.lex_state = 0, .external_lex_state = 26}, + [1645] = {.lex_state = 0, .external_lex_state = 26}, + [1646] = {.lex_state = 0, .external_lex_state = 27}, [1647] = {.lex_state = 0, .external_lex_state = 27}, [1648] = {.lex_state = 0, .external_lex_state = 27}, - [1649] = {.lex_state = 0, .external_lex_state = 27}, + [1649] = {.lex_state = 0, .external_lex_state = 26}, [1650] = {.lex_state = 0, .external_lex_state = 28}, [1651] = {.lex_state = 0, .external_lex_state = 28}, - [1652] = {.lex_state = 0, .external_lex_state = 12}, - [1653] = {.lex_state = 0, .external_lex_state = 26}, + [1652] = {.lex_state = 0, .external_lex_state = 26}, + [1653] = {.lex_state = 0, .external_lex_state = 28}, [1654] = {.lex_state = 0, .external_lex_state = 26}, [1655] = {.lex_state = 0, .external_lex_state = 26}, - [1656] = {.lex_state = 0, .external_lex_state = 26}, - [1657] = {.lex_state = 0, .external_lex_state = 26}, + [1656] = {.lex_state = 0, .external_lex_state = 28}, + [1657] = {.lex_state = 0, .external_lex_state = 28}, [1658] = {.lex_state = 0, .external_lex_state = 26}, - [1659] = {.lex_state = 0, .external_lex_state = 26}, - [1660] = {.lex_state = 0, .external_lex_state = 26}, + [1659] = {.lex_state = 0, .external_lex_state = 28}, + [1660] = {.lex_state = 0, .external_lex_state = 28}, [1661] = {.lex_state = 0, .external_lex_state = 26}, - [1662] = {.lex_state = 0, .external_lex_state = 26}, - [1663] = {.lex_state = 0, .external_lex_state = 27}, + [1662] = {.lex_state = 0, .external_lex_state = 28}, + [1663] = {.lex_state = 0, .external_lex_state = 26}, [1664] = {.lex_state = 0, .external_lex_state = 28}, [1665] = {.lex_state = 0, .external_lex_state = 28}, [1666] = {.lex_state = 0, .external_lex_state = 28}, - [1667] = {.lex_state = 0, .external_lex_state = 28}, - [1668] = {.lex_state = 0, .external_lex_state = 28}, - [1669] = {.lex_state = 0, .external_lex_state = 28}, - [1670] = {.lex_state = 0, .external_lex_state = 26}, - [1671] = {.lex_state = 0, .external_lex_state = 26}, - [1672] = {.lex_state = 0, .external_lex_state = 26}, + [1667] = {.lex_state = 0, .external_lex_state = 12}, + [1668] = {.lex_state = 0, .external_lex_state = 26}, + [1669] = {.lex_state = 0, .external_lex_state = 26}, + [1670] = {.lex_state = 0, .external_lex_state = 27}, + [1671] = {.lex_state = 0, .external_lex_state = 27}, + [1672] = {.lex_state = 0, .external_lex_state = 27}, [1673] = {.lex_state = 0, .external_lex_state = 26}, - [1674] = {.lex_state = 0, .external_lex_state = 26}, - [1675] = {.lex_state = 0, .external_lex_state = 27}, + [1674] = {.lex_state = 0, .external_lex_state = 28}, + [1675] = {.lex_state = 0, .external_lex_state = 26}, [1676] = {.lex_state = 0, .external_lex_state = 26}, - [1677] = {.lex_state = 0, .external_lex_state = 26}, + [1677] = {.lex_state = 0, .external_lex_state = 28}, [1678] = {.lex_state = 0, .external_lex_state = 26}, - [1679] = {.lex_state = 0, .external_lex_state = 26}, - [1680] = {.lex_state = 0, .external_lex_state = 26}, - [1681] = {.lex_state = 0, .external_lex_state = 12}, + [1679] = {.lex_state = 0, .external_lex_state = 28}, + [1680] = {.lex_state = 0, .external_lex_state = 28}, + [1681] = {.lex_state = 0, .external_lex_state = 28}, [1682] = {.lex_state = 0, .external_lex_state = 27}, - [1683] = {.lex_state = 0, .external_lex_state = 27}, - [1684] = {.lex_state = 0, .external_lex_state = 28}, - [1685] = {.lex_state = 0, .external_lex_state = 28}, - [1686] = {.lex_state = 0, .external_lex_state = 28}, - [1687] = {.lex_state = 0, .external_lex_state = 28}, + [1683] = {.lex_state = 0, .external_lex_state = 26}, + [1684] = {.lex_state = 0, .external_lex_state = 27}, + [1685] = {.lex_state = 0, .external_lex_state = 27}, + [1686] = {.lex_state = 0, .external_lex_state = 27}, + [1687] = {.lex_state = 0, .external_lex_state = 12}, [1688] = {.lex_state = 0, .external_lex_state = 28}, - [1689] = {.lex_state = 0, .external_lex_state = 28}, - [1690] = {.lex_state = 0, .external_lex_state = 28}, + [1689] = {.lex_state = 0, .external_lex_state = 27}, + [1690] = {.lex_state = 0, .external_lex_state = 27}, [1691] = {.lex_state = 0, .external_lex_state = 27}, - [1692] = {.lex_state = 0, .external_lex_state = 27}, - [1693] = {.lex_state = 0, .external_lex_state = 27}, - [1694] = {.lex_state = 0, .external_lex_state = 27}, + [1692] = {.lex_state = 0, .external_lex_state = 28}, + [1693] = {.lex_state = 0, .external_lex_state = 28}, + [1694] = {.lex_state = 0, .external_lex_state = 28}, [1695] = {.lex_state = 0, .external_lex_state = 28}, [1696] = {.lex_state = 0, .external_lex_state = 28}, [1697] = {.lex_state = 0, .external_lex_state = 28}, [1698] = {.lex_state = 0, .external_lex_state = 27}, [1699] = {.lex_state = 0, .external_lex_state = 27}, - [1700] = {.lex_state = 0, .external_lex_state = 28}, + [1700] = {.lex_state = 0, .external_lex_state = 27}, [1701] = {.lex_state = 0, .external_lex_state = 27}, [1702] = {.lex_state = 0, .external_lex_state = 27}, - [1703] = {.lex_state = 0, .external_lex_state = 27}, - [1704] = {.lex_state = 0, .external_lex_state = 27}, - [1705] = {.lex_state = 0, .external_lex_state = 27}, - [1706] = {.lex_state = 0, .external_lex_state = 27}, + [1703] = {.lex_state = 0, .external_lex_state = 28}, + [1704] = {.lex_state = 0, .external_lex_state = 26}, + [1705] = {.lex_state = 0, .external_lex_state = 26}, + [1706] = {.lex_state = 0, .external_lex_state = 12}, [1707] = {.lex_state = 0, .external_lex_state = 27}, - [1708] = {.lex_state = 0, .external_lex_state = 27}, + [1708] = {.lex_state = 0, .external_lex_state = 26}, [1709] = {.lex_state = 0, .external_lex_state = 26}, [1710] = {.lex_state = 0, .external_lex_state = 30}, - [1711] = {.lex_state = 0, .external_lex_state = 31}, - [1712] = {.lex_state = 0, .external_lex_state = 29}, - [1713] = {.lex_state = 0, .external_lex_state = 31}, + [1711] = {.lex_state = 0, .external_lex_state = 30}, + [1712] = {.lex_state = 0, .external_lex_state = 30}, + [1713] = {.lex_state = 0, .external_lex_state = 30}, [1714] = {.lex_state = 0, .external_lex_state = 31}, - [1715] = {.lex_state = 0, .external_lex_state = 31}, - [1716] = {.lex_state = 0, .external_lex_state = 29}, + [1715] = {.lex_state = 0, .external_lex_state = 30}, + [1716] = {.lex_state = 0, .external_lex_state = 30}, [1717] = {.lex_state = 0, .external_lex_state = 30}, - [1718] = {.lex_state = 0, .external_lex_state = 30}, + [1718] = {.lex_state = 0, .external_lex_state = 31}, [1719] = {.lex_state = 0, .external_lex_state = 30}, [1720] = {.lex_state = 0, .external_lex_state = 30}, - [1721] = {.lex_state = 0, .external_lex_state = 31}, - [1722] = {.lex_state = 0, .external_lex_state = 30}, - [1723] = {.lex_state = 0, .external_lex_state = 31}, - [1724] = {.lex_state = 0, .external_lex_state = 30}, - [1725] = {.lex_state = 0, .external_lex_state = 30}, - [1726] = {.lex_state = 0, .external_lex_state = 29}, - [1727] = {.lex_state = 0, .external_lex_state = 30}, + [1721] = {.lex_state = 0, .external_lex_state = 30}, + [1722] = {.lex_state = 0, .external_lex_state = 31}, + [1723] = {.lex_state = 0, .external_lex_state = 29}, + [1724] = {.lex_state = 0, .external_lex_state = 31}, + [1725] = {.lex_state = 0, .external_lex_state = 31}, + [1726] = {.lex_state = 0, .external_lex_state = 31}, + [1727] = {.lex_state = 0, .external_lex_state = 31}, [1728] = {.lex_state = 0, .external_lex_state = 29}, - [1729] = {.lex_state = 0, .external_lex_state = 30}, - [1730] = {.lex_state = 0, .external_lex_state = 29}, - [1731] = {.lex_state = 0, .external_lex_state = 30}, + [1729] = {.lex_state = 0, .external_lex_state = 31}, + [1730] = {.lex_state = 0, .external_lex_state = 31}, + [1731] = {.lex_state = 0, .external_lex_state = 31}, [1732] = {.lex_state = 0, .external_lex_state = 31}, - [1733] = {.lex_state = 0, .external_lex_state = 30}, - [1734] = {.lex_state = 0, .external_lex_state = 30}, - [1735] = {.lex_state = 0, .external_lex_state = 30}, + [1733] = {.lex_state = 0, .external_lex_state = 31}, + [1734] = {.lex_state = 0, .external_lex_state = 31}, + [1735] = {.lex_state = 0, .external_lex_state = 31}, [1736] = {.lex_state = 0, .external_lex_state = 31}, - [1737] = {.lex_state = 0, .external_lex_state = 31}, - [1738] = {.lex_state = 0, .external_lex_state = 30}, + [1737] = {.lex_state = 0, .external_lex_state = 29}, + [1738] = {.lex_state = 0, .external_lex_state = 29}, [1739] = {.lex_state = 0, .external_lex_state = 30}, - [1740] = {.lex_state = 0, .external_lex_state = 30}, - [1741] = {.lex_state = 0, .external_lex_state = 31}, - [1742] = {.lex_state = 0, .external_lex_state = 31}, + [1740] = {.lex_state = 0, .external_lex_state = 29}, + [1741] = {.lex_state = 0, .external_lex_state = 29}, + [1742] = {.lex_state = 0, .external_lex_state = 29}, [1743] = {.lex_state = 0, .external_lex_state = 29}, - [1744] = {.lex_state = 0, .external_lex_state = 31}, - [1745] = {.lex_state = 0, .external_lex_state = 31}, - [1746] = {.lex_state = 0, .external_lex_state = 29}, - [1747] = {.lex_state = 0, .external_lex_state = 31}, - [1748] = {.lex_state = 0, .external_lex_state = 31}, + [1744] = {.lex_state = 0, .external_lex_state = 29}, + [1745] = {.lex_state = 0, .external_lex_state = 30}, + [1746] = {.lex_state = 0, .external_lex_state = 30}, + [1747] = {.lex_state = 0, .external_lex_state = 29}, + [1748] = {.lex_state = 0, .external_lex_state = 29}, [1749] = {.lex_state = 0, .external_lex_state = 29}, [1750] = {.lex_state = 0, .external_lex_state = 29}, [1751] = {.lex_state = 0, .external_lex_state = 29}, - [1752] = {.lex_state = 0, .external_lex_state = 30}, - [1753] = {.lex_state = 0, .external_lex_state = 29}, + [1752] = {.lex_state = 0, .external_lex_state = 29}, + [1753] = {.lex_state = 0, .external_lex_state = 31}, [1754] = {.lex_state = 0, .external_lex_state = 29}, - [1755] = {.lex_state = 0, .external_lex_state = 29}, - [1756] = {.lex_state = 0, .external_lex_state = 29}, + [1755] = {.lex_state = 0, .external_lex_state = 30}, + [1756] = {.lex_state = 0, .external_lex_state = 31}, [1757] = {.lex_state = 0, .external_lex_state = 31}, - [1758] = {.lex_state = 0, .external_lex_state = 30}, - [1759] = {.lex_state = 0, .external_lex_state = 30}, - [1760] = {.lex_state = 0, .external_lex_state = 30}, - [1761] = {.lex_state = 0, .external_lex_state = 31}, - [1762] = {.lex_state = 0, .external_lex_state = 29}, + [1758] = {.lex_state = 0, .external_lex_state = 29}, + [1759] = {.lex_state = 0, .external_lex_state = 31}, + [1760] = {.lex_state = 0, .external_lex_state = 29}, + [1761] = {.lex_state = 0, .external_lex_state = 29}, + [1762] = {.lex_state = 0, .external_lex_state = 30}, [1763] = {.lex_state = 0, .external_lex_state = 31}, - [1764] = {.lex_state = 0, .external_lex_state = 29}, - [1765] = {.lex_state = 0, .external_lex_state = 31}, - [1766] = {.lex_state = 0, .external_lex_state = 29}, - [1767] = {.lex_state = 0, .external_lex_state = 31}, + [1764] = {.lex_state = 0, .external_lex_state = 30}, + [1765] = {.lex_state = 0, .external_lex_state = 30}, + [1766] = {.lex_state = 0, .external_lex_state = 30}, + [1767] = {.lex_state = 0, .external_lex_state = 30}, [1768] = {.lex_state = 0, .external_lex_state = 30}, - [1769] = {.lex_state = 0, .external_lex_state = 29}, - [1770] = {.lex_state = 0, .external_lex_state = 29}, - [1771] = {.lex_state = 0, .external_lex_state = 29}, - [1772] = {.lex_state = 0, .external_lex_state = 29}, - [1773] = {.lex_state = 0, .external_lex_state = 31}, - [1774] = {.lex_state = 0, .external_lex_state = 31}, - [1775] = {.lex_state = 0, .external_lex_state = 30}, - [1776] = {.lex_state = 0, .external_lex_state = 29}, - [1777] = {.lex_state = 0, .external_lex_state = 29}, - [1778] = {.lex_state = 0, .external_lex_state = 29}, - [1779] = {.lex_state = 0, .external_lex_state = 30}, - [1780] = {.lex_state = 0, .external_lex_state = 31}, - [1781] = {.lex_state = 0, .external_lex_state = 31}, + [1769] = {.lex_state = 0, .external_lex_state = 30}, + [1770] = {.lex_state = 0, .external_lex_state = 30}, + [1771] = {.lex_state = 0, .external_lex_state = 31}, + [1772] = {.lex_state = 0, .external_lex_state = 31}, + [1773] = {.lex_state = 0, .external_lex_state = 29}, + [1774] = {.lex_state = 0, .external_lex_state = 29}, + [1775] = {.lex_state = 0, .external_lex_state = 29}, + [1776] = {.lex_state = 0, .external_lex_state = 31}, + [1777] = {.lex_state = 0, .external_lex_state = 31}, + [1778] = {.lex_state = 0, .external_lex_state = 30}, + [1779] = {.lex_state = 0, .external_lex_state = 29}, + [1780] = {.lex_state = 0, .external_lex_state = 30}, + [1781] = {.lex_state = 0, .external_lex_state = 29}, [1782] = {.lex_state = 1, .external_lex_state = 32}, [1783] = {.lex_state = 1}, [1784] = {.lex_state = 0, .external_lex_state = 33}, @@ -6253,279 +6256,279 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1801] = {.lex_state = 0, .external_lex_state = 33}, [1802] = {.lex_state = 0, .external_lex_state = 33}, [1803] = {.lex_state = 0, .external_lex_state = 33}, - [1804] = {.lex_state = 4}, - [1805] = {.lex_state = 0, .external_lex_state = 32}, - [1806] = {.lex_state = 0, .external_lex_state = 32}, + [1804] = {.lex_state = 0, .external_lex_state = 34}, + [1805] = {.lex_state = 3}, + [1806] = {.lex_state = 0, .external_lex_state = 34}, [1807] = {.lex_state = 0, .external_lex_state = 32}, - [1808] = {.lex_state = 0, .external_lex_state = 32}, - [1809] = {.lex_state = 0, .external_lex_state = 32}, - [1810] = {.lex_state = 0, .external_lex_state = 33}, + [1808] = {.lex_state = 0, .external_lex_state = 35}, + [1809] = {.lex_state = 0, .external_lex_state = 34}, + [1810] = {.lex_state = 0, .external_lex_state = 34}, [1811] = {.lex_state = 0, .external_lex_state = 34}, - [1812] = {.lex_state = 0, .external_lex_state = 33}, - [1813] = {.lex_state = 4}, - [1814] = {.lex_state = 4}, - [1815] = {.lex_state = 3}, - [1816] = {.lex_state = 0, .external_lex_state = 34}, + [1812] = {.lex_state = 4}, + [1813] = {.lex_state = 3}, + [1814] = {.lex_state = 0, .external_lex_state = 33}, + [1815] = {.lex_state = 0, .external_lex_state = 33}, + [1816] = {.lex_state = 4}, [1817] = {.lex_state = 3}, - [1818] = {.lex_state = 4}, - [1819] = {.lex_state = 3}, - [1820] = {.lex_state = 0, .external_lex_state = 34}, + [1818] = {.lex_state = 1}, + [1819] = {.lex_state = 0, .external_lex_state = 33}, + [1820] = {.lex_state = 0, .external_lex_state = 35}, [1821] = {.lex_state = 0, .external_lex_state = 35}, - [1822] = {.lex_state = 0, .external_lex_state = 35}, - [1823] = {.lex_state = 0, .external_lex_state = 34}, - [1824] = {.lex_state = 4}, + [1822] = {.lex_state = 0, .external_lex_state = 32}, + [1823] = {.lex_state = 0, .external_lex_state = 32}, + [1824] = {.lex_state = 0, .external_lex_state = 34}, [1825] = {.lex_state = 0, .external_lex_state = 32}, - [1826] = {.lex_state = 0, .external_lex_state = 32}, - [1827] = {.lex_state = 3}, - [1828] = {.lex_state = 0, .external_lex_state = 35}, - [1829] = {.lex_state = 0, .external_lex_state = 32}, - [1830] = {.lex_state = 0, .external_lex_state = 35}, - [1831] = {.lex_state = 0, .external_lex_state = 34}, - [1832] = {.lex_state = 0, .external_lex_state = 34}, - [1833] = {.lex_state = 0, .external_lex_state = 35}, - [1834] = {.lex_state = 4}, - [1835] = {.lex_state = 3}, - [1836] = {.lex_state = 4}, - [1837] = {.lex_state = 4}, - [1838] = {.lex_state = 3}, - [1839] = {.lex_state = 3}, - [1840] = {.lex_state = 3}, - [1841] = {.lex_state = 0, .external_lex_state = 35}, - [1842] = {.lex_state = 0, .external_lex_state = 35}, - [1843] = {.lex_state = 0, .external_lex_state = 32}, + [1826] = {.lex_state = 0, .external_lex_state = 33}, + [1827] = {.lex_state = 4}, + [1828] = {.lex_state = 3}, + [1829] = {.lex_state = 0, .external_lex_state = 33}, + [1830] = {.lex_state = 4}, + [1831] = {.lex_state = 3}, + [1832] = {.lex_state = 0, .external_lex_state = 33}, + [1833] = {.lex_state = 0, .external_lex_state = 32}, + [1834] = {.lex_state = 0, .external_lex_state = 32}, + [1835] = {.lex_state = 0, .external_lex_state = 35}, + [1836] = {.lex_state = 0, .external_lex_state = 32}, + [1837] = {.lex_state = 0, .external_lex_state = 35}, + [1838] = {.lex_state = 0, .external_lex_state = 34}, + [1839] = {.lex_state = 0, .external_lex_state = 34}, + [1840] = {.lex_state = 4}, + [1841] = {.lex_state = 3}, + [1842] = {.lex_state = 0, .external_lex_state = 33}, + [1843] = {.lex_state = 0, .external_lex_state = 33}, [1844] = {.lex_state = 0, .external_lex_state = 32}, - [1845] = {.lex_state = 0, .external_lex_state = 35}, - [1846] = {.lex_state = 0, .external_lex_state = 32}, - [1847] = {.lex_state = 0, .external_lex_state = 34}, + [1845] = {.lex_state = 4}, + [1846] = {.lex_state = 3}, + [1847] = {.lex_state = 3}, [1848] = {.lex_state = 4}, - [1849] = {.lex_state = 3}, - [1850] = {.lex_state = 4}, - [1851] = {.lex_state = 3}, + [1849] = {.lex_state = 0, .external_lex_state = 35}, + [1850] = {.lex_state = 0, .external_lex_state = 33}, + [1851] = {.lex_state = 0, .external_lex_state = 32}, [1852] = {.lex_state = 0, .external_lex_state = 32}, - [1853] = {.lex_state = 4}, - [1854] = {.lex_state = 3}, + [1853] = {.lex_state = 0, .external_lex_state = 32}, + [1854] = {.lex_state = 0, .external_lex_state = 32}, [1855] = {.lex_state = 0, .external_lex_state = 32}, [1856] = {.lex_state = 0, .external_lex_state = 32}, - [1857] = {.lex_state = 1}, - [1858] = {.lex_state = 0, .external_lex_state = 32}, - [1859] = {.lex_state = 0, .external_lex_state = 32}, + [1857] = {.lex_state = 0, .external_lex_state = 33}, + [1858] = {.lex_state = 0, .external_lex_state = 33}, + [1859] = {.lex_state = 3}, [1860] = {.lex_state = 0, .external_lex_state = 34}, - [1861] = {.lex_state = 0, .external_lex_state = 32}, - [1862] = {.lex_state = 0, .external_lex_state = 32}, - [1863] = {.lex_state = 0, .external_lex_state = 34}, - [1864] = {.lex_state = 0, .external_lex_state = 35}, - [1865] = {.lex_state = 0, .external_lex_state = 35}, - [1866] = {.lex_state = 0, .external_lex_state = 34}, - [1867] = {.lex_state = 0, .external_lex_state = 32}, + [1861] = {.lex_state = 0, .external_lex_state = 35}, + [1862] = {.lex_state = 4}, + [1863] = {.lex_state = 4}, + [1864] = {.lex_state = 3}, + [1865] = {.lex_state = 0, .external_lex_state = 33}, + [1866] = {.lex_state = 0, .external_lex_state = 33}, + [1867] = {.lex_state = 0, .external_lex_state = 33}, [1868] = {.lex_state = 4}, [1869] = {.lex_state = 3}, - [1870] = {.lex_state = 0, .external_lex_state = 34}, - [1871] = {.lex_state = 0, .external_lex_state = 35}, + [1870] = {.lex_state = 0, .external_lex_state = 33}, + [1871] = {.lex_state = 3}, [1872] = {.lex_state = 4}, - [1873] = {.lex_state = 3}, + [1873] = {.lex_state = 0, .external_lex_state = 34}, [1874] = {.lex_state = 0, .external_lex_state = 35}, - [1875] = {.lex_state = 4}, - [1876] = {.lex_state = 0, .external_lex_state = 34}, - [1877] = {.lex_state = 3}, - [1878] = {.lex_state = 0, .external_lex_state = 32}, + [1875] = {.lex_state = 0, .external_lex_state = 32}, + [1876] = {.lex_state = 0, .external_lex_state = 32}, + [1877] = {.lex_state = 0, .external_lex_state = 35}, + [1878] = {.lex_state = 0, .external_lex_state = 33}, [1879] = {.lex_state = 0, .external_lex_state = 32}, - [1880] = {.lex_state = 0, .external_lex_state = 32}, + [1880] = {.lex_state = 0, .external_lex_state = 34}, [1881] = {.lex_state = 0, .external_lex_state = 35}, - [1882] = {.lex_state = 0, .external_lex_state = 35}, - [1883] = {.lex_state = 0, .external_lex_state = 33}, - [1884] = {.lex_state = 4}, - [1885] = {.lex_state = 3}, - [1886] = {.lex_state = 0, .external_lex_state = 33}, - [1887] = {.lex_state = 0, .external_lex_state = 34}, - [1888] = {.lex_state = 0, .external_lex_state = 35}, - [1889] = {.lex_state = 0, .external_lex_state = 35}, - [1890] = {.lex_state = 0, .external_lex_state = 34}, - [1891] = {.lex_state = 0, .external_lex_state = 35}, - [1892] = {.lex_state = 4}, - [1893] = {.lex_state = 0, .external_lex_state = 34}, - [1894] = {.lex_state = 3}, + [1882] = {.lex_state = 0, .external_lex_state = 32}, + [1883] = {.lex_state = 0, .external_lex_state = 35}, + [1884] = {.lex_state = 0, .external_lex_state = 35}, + [1885] = {.lex_state = 0, .external_lex_state = 34}, + [1886] = {.lex_state = 4}, + [1887] = {.lex_state = 3}, + [1888] = {.lex_state = 0, .external_lex_state = 33}, + [1889] = {.lex_state = 0, .external_lex_state = 33}, + [1890] = {.lex_state = 0, .external_lex_state = 32}, + [1891] = {.lex_state = 4}, + [1892] = {.lex_state = 3}, + [1893] = {.lex_state = 0, .external_lex_state = 33}, + [1894] = {.lex_state = 0, .external_lex_state = 33}, [1895] = {.lex_state = 0, .external_lex_state = 32}, [1896] = {.lex_state = 4}, - [1897] = {.lex_state = 3}, - [1898] = {.lex_state = 0, .external_lex_state = 35}, + [1897] = {.lex_state = 0, .external_lex_state = 35}, + [1898] = {.lex_state = 0, .external_lex_state = 32}, [1899] = {.lex_state = 0, .external_lex_state = 32}, [1900] = {.lex_state = 0, .external_lex_state = 34}, - [1901] = {.lex_state = 0, .external_lex_state = 34}, + [1901] = {.lex_state = 0, .external_lex_state = 32}, [1902] = {.lex_state = 0, .external_lex_state = 34}, [1903] = {.lex_state = 0, .external_lex_state = 32}, - [1904] = {.lex_state = 4}, - [1905] = {.lex_state = 0, .external_lex_state = 32}, - [1906] = {.lex_state = 0, .external_lex_state = 32}, - [1907] = {.lex_state = 4}, - [1908] = {.lex_state = 0, .external_lex_state = 32}, + [1904] = {.lex_state = 0, .external_lex_state = 34}, + [1905] = {.lex_state = 3}, + [1906] = {.lex_state = 0, .external_lex_state = 34}, + [1907] = {.lex_state = 0, .external_lex_state = 34}, + [1908] = {.lex_state = 0, .external_lex_state = 34}, [1909] = {.lex_state = 0, .external_lex_state = 35}, - [1910] = {.lex_state = 0, .external_lex_state = 34}, - [1911] = {.lex_state = 0, .external_lex_state = 32}, - [1912] = {.lex_state = 0, .external_lex_state = 32}, - [1913] = {.lex_state = 0, .external_lex_state = 34}, + [1910] = {.lex_state = 0, .external_lex_state = 35}, + [1911] = {.lex_state = 4}, + [1912] = {.lex_state = 0, .external_lex_state = 35}, + [1913] = {.lex_state = 0, .external_lex_state = 33}, [1914] = {.lex_state = 0, .external_lex_state = 35}, - [1915] = {.lex_state = 0, .external_lex_state = 35}, - [1916] = {.lex_state = 0, .external_lex_state = 34}, - [1917] = {.lex_state = 0, .external_lex_state = 32}, - [1918] = {.lex_state = 0, .external_lex_state = 33}, - [1919] = {.lex_state = 0, .external_lex_state = 34}, - [1920] = {.lex_state = 0, .external_lex_state = 34}, - [1921] = {.lex_state = 0, .external_lex_state = 34}, - [1922] = {.lex_state = 0, .external_lex_state = 34}, - [1923] = {.lex_state = 0, .external_lex_state = 32}, - [1924] = {.lex_state = 0, .external_lex_state = 34}, - [1925] = {.lex_state = 4}, - [1926] = {.lex_state = 3}, - [1927] = {.lex_state = 0, .external_lex_state = 35}, - [1928] = {.lex_state = 1}, - [1929] = {.lex_state = 0, .external_lex_state = 33}, - [1930] = {.lex_state = 0, .external_lex_state = 34}, - [1931] = {.lex_state = 0, .external_lex_state = 33}, - [1932] = {.lex_state = 0, .external_lex_state = 35}, - [1933] = {.lex_state = 0, .external_lex_state = 35}, - [1934] = {.lex_state = 0, .external_lex_state = 35}, - [1935] = {.lex_state = 0, .external_lex_state = 33}, - [1936] = {.lex_state = 3}, - [1937] = {.lex_state = 0, .external_lex_state = 33}, - [1938] = {.lex_state = 4}, - [1939] = {.lex_state = 0, .external_lex_state = 33}, - [1940] = {.lex_state = 3}, - [1941] = {.lex_state = 0, .external_lex_state = 33}, - [1942] = {.lex_state = 0, .external_lex_state = 33}, - [1943] = {.lex_state = 0, .external_lex_state = 33}, - [1944] = {.lex_state = 0, .external_lex_state = 33}, - [1945] = {.lex_state = 0, .external_lex_state = 33}, - [1946] = {.lex_state = 0, .external_lex_state = 34}, - [1947] = {.lex_state = 0, .external_lex_state = 33}, - [1948] = {.lex_state = 3}, - [1949] = {.lex_state = 0, .external_lex_state = 33}, - [1950] = {.lex_state = 0, .external_lex_state = 34}, - [1951] = {.lex_state = 0, .external_lex_state = 33}, - [1952] = {.lex_state = 0, .external_lex_state = 35}, + [1915] = {.lex_state = 0, .external_lex_state = 33}, + [1916] = {.lex_state = 0, .external_lex_state = 32}, + [1917] = {.lex_state = 3}, + [1918] = {.lex_state = 4}, + [1919] = {.lex_state = 0, .external_lex_state = 35}, + [1920] = {.lex_state = 0, .external_lex_state = 33}, + [1921] = {.lex_state = 3}, + [1922] = {.lex_state = 0, .external_lex_state = 33}, + [1923] = {.lex_state = 0, .external_lex_state = 33}, + [1924] = {.lex_state = 0, .external_lex_state = 33}, + [1925] = {.lex_state = 0, .external_lex_state = 34}, + [1926] = {.lex_state = 1}, + [1927] = {.lex_state = 4}, + [1928] = {.lex_state = 0, .external_lex_state = 32}, + [1929] = {.lex_state = 0, .external_lex_state = 32}, + [1930] = {.lex_state = 3}, + [1931] = {.lex_state = 0, .external_lex_state = 32}, + [1932] = {.lex_state = 1}, + [1933] = {.lex_state = 0, .external_lex_state = 34}, + [1934] = {.lex_state = 1}, + [1935] = {.lex_state = 0, .external_lex_state = 32}, + [1936] = {.lex_state = 0, .external_lex_state = 32}, + [1937] = {.lex_state = 1}, + [1938] = {.lex_state = 0, .external_lex_state = 33}, + [1939] = {.lex_state = 4}, + [1940] = {.lex_state = 0, .external_lex_state = 33}, + [1941] = {.lex_state = 0, .external_lex_state = 35}, + [1942] = {.lex_state = 0, .external_lex_state = 35}, + [1943] = {.lex_state = 3}, + [1944] = {.lex_state = 0, .external_lex_state = 34}, + [1945] = {.lex_state = 0, .external_lex_state = 34}, + [1946] = {.lex_state = 4}, + [1947] = {.lex_state = 0, .external_lex_state = 32}, + [1948] = {.lex_state = 0, .external_lex_state = 34}, + [1949] = {.lex_state = 1}, + [1950] = {.lex_state = 0, .external_lex_state = 35}, + [1951] = {.lex_state = 1}, + [1952] = {.lex_state = 3}, [1953] = {.lex_state = 0, .external_lex_state = 33}, - [1954] = {.lex_state = 0, .external_lex_state = 33}, - [1955] = {.lex_state = 0, .external_lex_state = 35}, - [1956] = {.lex_state = 0, .external_lex_state = 33}, + [1954] = {.lex_state = 0, .external_lex_state = 32}, + [1955] = {.lex_state = 0, .external_lex_state = 34}, + [1956] = {.lex_state = 4}, [1957] = {.lex_state = 0, .external_lex_state = 35}, - [1958] = {.lex_state = 0, .external_lex_state = 33}, - [1959] = {.lex_state = 0, .external_lex_state = 35}, - [1960] = {.lex_state = 0, .external_lex_state = 33}, - [1961] = {.lex_state = 0, .external_lex_state = 33}, - [1962] = {.lex_state = 0, .external_lex_state = 33}, - [1963] = {.lex_state = 0, .external_lex_state = 35}, + [1958] = {.lex_state = 0, .external_lex_state = 35}, + [1959] = {.lex_state = 0, .external_lex_state = 33}, + [1960] = {.lex_state = 1}, + [1961] = {.lex_state = 0, .external_lex_state = 35}, + [1962] = {.lex_state = 1}, + [1963] = {.lex_state = 0, .external_lex_state = 33}, [1964] = {.lex_state = 0, .external_lex_state = 33}, [1965] = {.lex_state = 1}, - [1966] = {.lex_state = 1}, - [1967] = {.lex_state = 0, .external_lex_state = 33}, + [1966] = {.lex_state = 0, .external_lex_state = 35}, + [1967] = {.lex_state = 1}, [1968] = {.lex_state = 0, .external_lex_state = 33}, - [1969] = {.lex_state = 1}, - [1970] = {.lex_state = 1}, + [1969] = {.lex_state = 0, .external_lex_state = 33}, + [1970] = {.lex_state = 0, .external_lex_state = 33}, [1971] = {.lex_state = 0, .external_lex_state = 33}, - [1972] = {.lex_state = 0, .external_lex_state = 33}, + [1972] = {.lex_state = 1}, [1973] = {.lex_state = 1}, - [1974] = {.lex_state = 1}, - [1975] = {.lex_state = 0, .external_lex_state = 33}, + [1974] = {.lex_state = 0, .external_lex_state = 33}, + [1975] = {.lex_state = 0, .external_lex_state = 34}, [1976] = {.lex_state = 0, .external_lex_state = 33}, - [1977] = {.lex_state = 1}, + [1977] = {.lex_state = 0, .external_lex_state = 33}, [1978] = {.lex_state = 1}, [1979] = {.lex_state = 0, .external_lex_state = 33}, - [1980] = {.lex_state = 0, .external_lex_state = 33}, + [1980] = {.lex_state = 0, .external_lex_state = 34}, [1981] = {.lex_state = 1}, [1982] = {.lex_state = 1}, [1983] = {.lex_state = 0, .external_lex_state = 33}, - [1984] = {.lex_state = 0, .external_lex_state = 33}, - [1985] = {.lex_state = 1}, - [1986] = {.lex_state = 1}, + [1984] = {.lex_state = 4}, + [1985] = {.lex_state = 0, .external_lex_state = 33}, + [1986] = {.lex_state = 0, .external_lex_state = 34}, [1987] = {.lex_state = 0, .external_lex_state = 33}, [1988] = {.lex_state = 0, .external_lex_state = 33}, - [1989] = {.lex_state = 1}, - [1990] = {.lex_state = 1}, + [1989] = {.lex_state = 0, .external_lex_state = 33}, + [1990] = {.lex_state = 0, .external_lex_state = 35}, [1991] = {.lex_state = 0, .external_lex_state = 33}, - [1992] = {.lex_state = 0, .external_lex_state = 33}, + [1992] = {.lex_state = 3}, [1993] = {.lex_state = 1}, [1994] = {.lex_state = 1}, - [1995] = {.lex_state = 1}, - [1996] = {.lex_state = 1}, + [1995] = {.lex_state = 0, .external_lex_state = 33}, + [1996] = {.lex_state = 0, .external_lex_state = 35}, [1997] = {.lex_state = 0, .external_lex_state = 33}, - [1998] = {.lex_state = 0, .external_lex_state = 33}, + [1998] = {.lex_state = 0, .external_lex_state = 35}, [1999] = {.lex_state = 0, .external_lex_state = 33}, [2000] = {.lex_state = 0, .external_lex_state = 33}, [2001] = {.lex_state = 0, .external_lex_state = 33}, - [2002] = {.lex_state = 0, .external_lex_state = 33}, + [2002] = {.lex_state = 1}, [2003] = {.lex_state = 0, .external_lex_state = 33}, - [2004] = {.lex_state = 0, .external_lex_state = 33}, - [2005] = {.lex_state = 0, .external_lex_state = 33}, + [2004] = {.lex_state = 0, .external_lex_state = 35}, + [2005] = {.lex_state = 1}, [2006] = {.lex_state = 0, .external_lex_state = 33}, [2007] = {.lex_state = 0, .external_lex_state = 33}, - [2008] = {.lex_state = 0, .external_lex_state = 33}, + [2008] = {.lex_state = 0, .external_lex_state = 34}, [2009] = {.lex_state = 0, .external_lex_state = 33}, - [2010] = {.lex_state = 0, .external_lex_state = 33}, + [2010] = {.lex_state = 0, .external_lex_state = 35}, [2011] = {.lex_state = 0, .external_lex_state = 33}, [2012] = {.lex_state = 0, .external_lex_state = 33}, [2013] = {.lex_state = 0, .external_lex_state = 33}, - [2014] = {.lex_state = 0, .external_lex_state = 33}, + [2014] = {.lex_state = 0, .external_lex_state = 34}, [2015] = {.lex_state = 0, .external_lex_state = 33}, - [2016] = {.lex_state = 0, .external_lex_state = 33}, - [2017] = {.lex_state = 0, .external_lex_state = 34}, - [2018] = {.lex_state = 0, .external_lex_state = 34}, + [2016] = {.lex_state = 0, .external_lex_state = 34}, + [2017] = {.lex_state = 0, .external_lex_state = 33}, + [2018] = {.lex_state = 0, .external_lex_state = 32}, [2019] = {.lex_state = 0, .external_lex_state = 32}, - [2020] = {.lex_state = 0, .external_lex_state = 33}, - [2021] = {.lex_state = 0, .external_lex_state = 32}, - [2022] = {.lex_state = 0, .external_lex_state = 32}, - [2023] = {.lex_state = 0, .external_lex_state = 35}, - [2024] = {.lex_state = 0, .external_lex_state = 32}, - [2025] = {.lex_state = 4}, - [2026] = {.lex_state = 3}, + [2020] = {.lex_state = 0, .external_lex_state = 32}, + [2021] = {.lex_state = 4}, + [2022] = {.lex_state = 0, .external_lex_state = 35}, + [2023] = {.lex_state = 3}, + [2024] = {.lex_state = 0, .external_lex_state = 34}, + [2025] = {.lex_state = 0, .external_lex_state = 32}, + [2026] = {.lex_state = 0, .external_lex_state = 33}, [2027] = {.lex_state = 0}, - [2028] = {.lex_state = 0, .external_lex_state = 32}, - [2029] = {.lex_state = 0, .external_lex_state = 32}, - [2030] = {.lex_state = 0, .external_lex_state = 32}, - [2031] = {.lex_state = 0, .external_lex_state = 35}, - [2032] = {.lex_state = 0}, - [2033] = {.lex_state = 0, .external_lex_state = 35}, + [2028] = {.lex_state = 0}, + [2029] = {.lex_state = 0}, + [2030] = {.lex_state = 0, .external_lex_state = 34}, + [2031] = {.lex_state = 0, .external_lex_state = 34}, + [2032] = {.lex_state = 0, .external_lex_state = 32}, + [2033] = {.lex_state = 0}, [2034] = {.lex_state = 0, .external_lex_state = 32}, - [2035] = {.lex_state = 0, .external_lex_state = 35}, - [2036] = {.lex_state = 0, .external_lex_state = 35}, - [2037] = {.lex_state = 0, .external_lex_state = 34}, + [2035] = {.lex_state = 0}, + [2036] = {.lex_state = 0}, + [2037] = {.lex_state = 0, .external_lex_state = 32}, [2038] = {.lex_state = 0}, - [2039] = {.lex_state = 0, .external_lex_state = 34}, + [2039] = {.lex_state = 0}, [2040] = {.lex_state = 0, .external_lex_state = 32}, [2041] = {.lex_state = 0, .external_lex_state = 32}, - [2042] = {.lex_state = 0, .external_lex_state = 32}, - [2043] = {.lex_state = 0, .external_lex_state = 32}, - [2044] = {.lex_state = 0}, - [2045] = {.lex_state = 0, .external_lex_state = 34}, - [2046] = {.lex_state = 0}, + [2042] = {.lex_state = 0}, + [2043] = {.lex_state = 0, .external_lex_state = 35}, + [2044] = {.lex_state = 0, .external_lex_state = 35}, + [2045] = {.lex_state = 0, .external_lex_state = 35}, + [2046] = {.lex_state = 0, .external_lex_state = 32}, [2047] = {.lex_state = 0, .external_lex_state = 34}, - [2048] = {.lex_state = 0}, - [2049] = {.lex_state = 0}, + [2048] = {.lex_state = 0, .external_lex_state = 32}, + [2049] = {.lex_state = 0, .external_lex_state = 32}, [2050] = {.lex_state = 0, .external_lex_state = 35}, [2051] = {.lex_state = 0}, - [2052] = {.lex_state = 0}, + [2052] = {.lex_state = 0, .external_lex_state = 34}, [2053] = {.lex_state = 0, .external_lex_state = 34}, - [2054] = {.lex_state = 0}, + [2054] = {.lex_state = 0, .external_lex_state = 35}, [2055] = {.lex_state = 2}, - [2056] = {.lex_state = 2}, + [2056] = {.lex_state = 0}, [2057] = {.lex_state = 0}, [2058] = {.lex_state = 2}, [2059] = {.lex_state = 2}, [2060] = {.lex_state = 2}, [2061] = {.lex_state = 2}, - [2062] = {.lex_state = 2}, + [2062] = {.lex_state = 0}, [2063] = {.lex_state = 2}, [2064] = {.lex_state = 2}, - [2065] = {.lex_state = 0}, + [2065] = {.lex_state = 2}, [2066] = {.lex_state = 2}, [2067] = {.lex_state = 2}, - [2068] = {.lex_state = 2}, - [2069] = {.lex_state = 0}, + [2068] = {.lex_state = 0}, + [2069] = {.lex_state = 2}, [2070] = {.lex_state = 2}, [2071] = {.lex_state = 2}, [2072] = {.lex_state = 2}, [2073] = {.lex_state = 2}, [2074] = {.lex_state = 2}, [2075] = {.lex_state = 2}, - [2076] = {.lex_state = 0}, + [2076] = {.lex_state = 2}, [2077] = {.lex_state = 2}, [2078] = {.lex_state = 2}, }; @@ -6612,30 +6615,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(2057), + [sym_program] = STATE(2068), [sym_comment] = ACTIONS(3), [sym__start] = ACTIONS(5), }, [2] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__else] = STATE(507), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(7), - [sym_identifier] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(7), - [anon_sym_function] = ACTIONS(9), + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__else] = STATE(551), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(9), + [anon_sym_function] = ACTIONS(7), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(9), - [anon_sym_for] = ACTIONS(9), - [anon_sym_while] = ACTIONS(9), - [anon_sym_repeat] = ACTIONS(9), - [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_if] = ACTIONS(7), + [anon_sym_for] = ACTIONS(7), + [anon_sym_while] = ACTIONS(7), + [anon_sym_repeat] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(9), + [anon_sym_BANG] = ACTIONS(7), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -6662,55 +6664,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(7), - [sym__number_literal] = ACTIONS(9), - [anon_sym_SQUOTE] = ACTIONS(7), - [anon_sym_DQUOTE] = ACTIONS(7), - [sym_dots] = ACTIONS(9), - [sym_dot_dot_i] = ACTIONS(7), - [sym_return] = ACTIONS(9), - [sym_next] = ACTIONS(9), - [sym_break] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_null] = ACTIONS(9), - [sym_inf] = ACTIONS(9), - [sym_nan] = ACTIONS(9), - [anon_sym_NA] = ACTIONS(9), - [anon_sym_NA_integer_] = ACTIONS(9), - [anon_sym_NA_real_] = ACTIONS(9), - [anon_sym_NA_complex_] = ACTIONS(9), - [anon_sym_NA_character_] = ACTIONS(9), + [sym__hex_literal] = ACTIONS(9), + [sym__number_literal] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(9), + [sym_dots] = ACTIONS(7), + [sym_dot_dot_i] = ACTIONS(9), + [sym_return] = ACTIONS(7), + [sym_next] = ACTIONS(7), + [sym_break] = ACTIONS(7), + [sym_true] = ACTIONS(7), + [sym_false] = ACTIONS(7), + [sym_null] = ACTIONS(7), + [sym_inf] = ACTIONS(7), + [sym_nan] = ACTIONS(7), + [anon_sym_NA] = ACTIONS(7), + [anon_sym_NA_integer_] = ACTIONS(7), + [anon_sym_NA_real_] = ACTIONS(7), + [anon_sym_NA_complex_] = ACTIONS(7), + [anon_sym_NA_character_] = ACTIONS(7), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(7), - [sym__semicolon] = ACTIONS(7), - [sym__raw_string_literal] = ACTIONS(7), + [sym__newline] = ACTIONS(9), + [sym__semicolon] = ACTIONS(9), + [sym__raw_string_literal] = ACTIONS(9), [sym__external_else] = ACTIONS(49), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(7), + [sym__external_open_brace] = ACTIONS(9), + [sym__external_close_brace] = ACTIONS(9), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, [3] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__else] = STATE(633), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(57), - [sym_identifier] = ACTIONS(59), - [anon_sym_BSLASH] = ACTIONS(57), - [anon_sym_function] = ACTIONS(59), + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__else] = STATE(560), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(57), + [anon_sym_BSLASH] = ACTIONS(59), + [anon_sym_function] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(59), - [anon_sym_repeat] = ACTIONS(59), - [anon_sym_QMARK] = ACTIONS(57), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(57), + [anon_sym_while] = ACTIONS(57), + [anon_sym_repeat] = ACTIONS(57), + [anon_sym_QMARK] = ACTIONS(59), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(59), + [anon_sym_BANG] = ACTIONS(57), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -6737,55 +6739,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(57), - [sym__number_literal] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(57), - [anon_sym_DQUOTE] = ACTIONS(57), - [sym_dots] = ACTIONS(59), - [sym_dot_dot_i] = ACTIONS(57), - [sym_return] = ACTIONS(59), - [sym_next] = ACTIONS(59), - [sym_break] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_null] = ACTIONS(59), - [sym_inf] = ACTIONS(59), - [sym_nan] = ACTIONS(59), - [anon_sym_NA] = ACTIONS(59), - [anon_sym_NA_integer_] = ACTIONS(59), - [anon_sym_NA_real_] = ACTIONS(59), - [anon_sym_NA_complex_] = ACTIONS(59), - [anon_sym_NA_character_] = ACTIONS(59), + [sym__hex_literal] = ACTIONS(59), + [sym__number_literal] = ACTIONS(57), + [anon_sym_SQUOTE] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(59), + [sym_dots] = ACTIONS(57), + [sym_dot_dot_i] = ACTIONS(59), + [sym_return] = ACTIONS(57), + [sym_next] = ACTIONS(57), + [sym_break] = ACTIONS(57), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_null] = ACTIONS(57), + [sym_inf] = ACTIONS(57), + [sym_nan] = ACTIONS(57), + [anon_sym_NA] = ACTIONS(57), + [anon_sym_NA_integer_] = ACTIONS(57), + [anon_sym_NA_real_] = ACTIONS(57), + [anon_sym_NA_complex_] = ACTIONS(57), + [anon_sym_NA_character_] = ACTIONS(57), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(57), - [sym__semicolon] = ACTIONS(57), - [sym__raw_string_literal] = ACTIONS(57), + [sym__newline] = ACTIONS(59), + [sym__semicolon] = ACTIONS(59), + [sym__raw_string_literal] = ACTIONS(59), [sym__external_else] = ACTIONS(61), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(57), + [sym__external_open_brace] = ACTIONS(59), + [sym__external_close_brace] = ACTIONS(59), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, [4] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__else] = STATE(647), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(63), - [sym_identifier] = ACTIONS(65), - [anon_sym_BSLASH] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__else] = STATE(561), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(63), + [anon_sym_BSLASH] = ACTIONS(65), + [anon_sym_function] = ACTIONS(63), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(65), - [anon_sym_for] = ACTIONS(65), - [anon_sym_while] = ACTIONS(65), - [anon_sym_repeat] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(63), + [anon_sym_if] = ACTIONS(63), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(63), + [anon_sym_repeat] = ACTIONS(63), + [anon_sym_QMARK] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(63), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -6812,55 +6814,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(63), - [sym__number_literal] = ACTIONS(65), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(63), - [sym_dots] = ACTIONS(65), - [sym_dot_dot_i] = ACTIONS(63), - [sym_return] = ACTIONS(65), - [sym_next] = ACTIONS(65), - [sym_break] = ACTIONS(65), - [sym_true] = ACTIONS(65), - [sym_false] = ACTIONS(65), - [sym_null] = ACTIONS(65), - [sym_inf] = ACTIONS(65), - [sym_nan] = ACTIONS(65), - [anon_sym_NA] = ACTIONS(65), - [anon_sym_NA_integer_] = ACTIONS(65), - [anon_sym_NA_real_] = ACTIONS(65), - [anon_sym_NA_complex_] = ACTIONS(65), - [anon_sym_NA_character_] = ACTIONS(65), + [sym__hex_literal] = ACTIONS(65), + [sym__number_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_dots] = ACTIONS(63), + [sym_dot_dot_i] = ACTIONS(65), + [sym_return] = ACTIONS(63), + [sym_next] = ACTIONS(63), + [sym_break] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_null] = ACTIONS(63), + [sym_inf] = ACTIONS(63), + [sym_nan] = ACTIONS(63), + [anon_sym_NA] = ACTIONS(63), + [anon_sym_NA_integer_] = ACTIONS(63), + [anon_sym_NA_real_] = ACTIONS(63), + [anon_sym_NA_complex_] = ACTIONS(63), + [anon_sym_NA_character_] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym__semicolon] = ACTIONS(63), - [sym__raw_string_literal] = ACTIONS(63), + [sym__newline] = ACTIONS(65), + [sym__semicolon] = ACTIONS(65), + [sym__raw_string_literal] = ACTIONS(65), [sym__external_else] = ACTIONS(67), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(63), + [sym__external_open_brace] = ACTIONS(65), + [sym__external_close_brace] = ACTIONS(65), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, [5] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__else] = STATE(632), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(69), - [sym_identifier] = ACTIONS(71), - [anon_sym_BSLASH] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__else] = STATE(572), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [anon_sym_function] = ACTIONS(69), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(71), - [anon_sym_for] = ACTIONS(71), - [anon_sym_while] = ACTIONS(71), - [anon_sym_repeat] = ACTIONS(71), - [anon_sym_QMARK] = ACTIONS(69), + [anon_sym_if] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_repeat] = ACTIONS(69), + [anon_sym_QMARK] = ACTIONS(71), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -6887,54 +6889,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(69), - [sym__number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(69), - [sym_dots] = ACTIONS(71), - [sym_dot_dot_i] = ACTIONS(69), - [sym_return] = ACTIONS(71), - [sym_next] = ACTIONS(71), - [sym_break] = ACTIONS(71), - [sym_true] = ACTIONS(71), - [sym_false] = ACTIONS(71), - [sym_null] = ACTIONS(71), - [sym_inf] = ACTIONS(71), - [sym_nan] = ACTIONS(71), - [anon_sym_NA] = ACTIONS(71), - [anon_sym_NA_integer_] = ACTIONS(71), - [anon_sym_NA_real_] = ACTIONS(71), - [anon_sym_NA_complex_] = ACTIONS(71), - [anon_sym_NA_character_] = ACTIONS(71), + [sym__hex_literal] = ACTIONS(71), + [sym__number_literal] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_dots] = ACTIONS(69), + [sym_dot_dot_i] = ACTIONS(71), + [sym_return] = ACTIONS(69), + [sym_next] = ACTIONS(69), + [sym_break] = ACTIONS(69), + [sym_true] = ACTIONS(69), + [sym_false] = ACTIONS(69), + [sym_null] = ACTIONS(69), + [sym_inf] = ACTIONS(69), + [sym_nan] = ACTIONS(69), + [anon_sym_NA] = ACTIONS(69), + [anon_sym_NA_integer_] = ACTIONS(69), + [anon_sym_NA_real_] = ACTIONS(69), + [anon_sym_NA_complex_] = ACTIONS(69), + [anon_sym_NA_character_] = ACTIONS(69), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(69), - [sym__semicolon] = ACTIONS(69), - [sym__raw_string_literal] = ACTIONS(69), + [sym__newline] = ACTIONS(71), + [sym__semicolon] = ACTIONS(71), + [sym__raw_string_literal] = ACTIONS(71), [sym__external_else] = ACTIONS(73), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(69), + [sym__external_open_brace] = ACTIONS(71), + [sym__external_close_brace] = ACTIONS(71), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, [6] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__else] = STATE(491), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(7), - [anon_sym_function] = ACTIONS(9), + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__else] = STATE(782), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(9), + [sym_identifier] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(9), + [anon_sym_function] = ACTIONS(7), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(9), - [anon_sym_for] = ACTIONS(9), - [anon_sym_while] = ACTIONS(9), - [anon_sym_repeat] = ACTIONS(9), - [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_if] = ACTIONS(7), + [anon_sym_for] = ACTIONS(7), + [anon_sym_while] = ACTIONS(7), + [anon_sym_repeat] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(9), + [anon_sym_BANG] = ACTIONS(7), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -6961,55 +6965,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(7), - [sym__number_literal] = ACTIONS(9), - [anon_sym_SQUOTE] = ACTIONS(7), - [anon_sym_DQUOTE] = ACTIONS(7), - [sym_dots] = ACTIONS(9), - [sym_dot_dot_i] = ACTIONS(7), - [sym_return] = ACTIONS(9), - [sym_next] = ACTIONS(9), - [sym_break] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_null] = ACTIONS(9), - [sym_inf] = ACTIONS(9), - [sym_nan] = ACTIONS(9), - [anon_sym_NA] = ACTIONS(9), - [anon_sym_NA_integer_] = ACTIONS(9), - [anon_sym_NA_real_] = ACTIONS(9), - [anon_sym_NA_complex_] = ACTIONS(9), - [anon_sym_NA_character_] = ACTIONS(9), + [sym__hex_literal] = ACTIONS(9), + [sym__number_literal] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(9), + [sym_dots] = ACTIONS(7), + [sym_dot_dot_i] = ACTIONS(9), + [sym_return] = ACTIONS(7), + [sym_next] = ACTIONS(7), + [sym_break] = ACTIONS(7), + [sym_true] = ACTIONS(7), + [sym_false] = ACTIONS(7), + [sym_null] = ACTIONS(7), + [sym_inf] = ACTIONS(7), + [sym_nan] = ACTIONS(7), + [anon_sym_NA] = ACTIONS(7), + [anon_sym_NA_integer_] = ACTIONS(7), + [anon_sym_NA_real_] = ACTIONS(7), + [anon_sym_NA_complex_] = ACTIONS(7), + [anon_sym_NA_character_] = ACTIONS(7), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(7), - [sym__semicolon] = ACTIONS(7), - [sym__raw_string_literal] = ACTIONS(7), + [sym__newline] = ACTIONS(9), + [sym__semicolon] = ACTIONS(9), + [sym__raw_string_literal] = ACTIONS(9), [sym__external_else] = ACTIONS(113), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(7), - [sym__external_close_brace] = ACTIONS(7), + [sym__external_open_brace] = ACTIONS(9), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, [7] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__else] = STATE(498), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(71), - [anon_sym_BSLASH] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__else] = STATE(689), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(59), + [sym_identifier] = ACTIONS(57), + [anon_sym_BSLASH] = ACTIONS(59), + [anon_sym_function] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(71), - [anon_sym_for] = ACTIONS(71), - [anon_sym_while] = ACTIONS(71), - [anon_sym_repeat] = ACTIONS(71), - [anon_sym_QMARK] = ACTIONS(69), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(57), + [anon_sym_while] = ACTIONS(57), + [anon_sym_repeat] = ACTIONS(57), + [anon_sym_QMARK] = ACTIONS(59), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(57), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -7036,55 +7040,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(69), - [sym__number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(69), - [sym_dots] = ACTIONS(71), - [sym_dot_dot_i] = ACTIONS(69), - [sym_return] = ACTIONS(71), - [sym_next] = ACTIONS(71), - [sym_break] = ACTIONS(71), - [sym_true] = ACTIONS(71), - [sym_false] = ACTIONS(71), - [sym_null] = ACTIONS(71), - [sym_inf] = ACTIONS(71), - [sym_nan] = ACTIONS(71), - [anon_sym_NA] = ACTIONS(71), - [anon_sym_NA_integer_] = ACTIONS(71), - [anon_sym_NA_real_] = ACTIONS(71), - [anon_sym_NA_complex_] = ACTIONS(71), - [anon_sym_NA_character_] = ACTIONS(71), + [sym__hex_literal] = ACTIONS(59), + [sym__number_literal] = ACTIONS(57), + [anon_sym_SQUOTE] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(59), + [sym_dots] = ACTIONS(57), + [sym_dot_dot_i] = ACTIONS(59), + [sym_return] = ACTIONS(57), + [sym_next] = ACTIONS(57), + [sym_break] = ACTIONS(57), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_null] = ACTIONS(57), + [sym_inf] = ACTIONS(57), + [sym_nan] = ACTIONS(57), + [anon_sym_NA] = ACTIONS(57), + [anon_sym_NA_integer_] = ACTIONS(57), + [anon_sym_NA_real_] = ACTIONS(57), + [anon_sym_NA_complex_] = ACTIONS(57), + [anon_sym_NA_character_] = ACTIONS(57), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(69), - [sym__semicolon] = ACTIONS(69), - [sym__raw_string_literal] = ACTIONS(69), + [sym__newline] = ACTIONS(59), + [sym__semicolon] = ACTIONS(59), + [sym__raw_string_literal] = ACTIONS(59), [sym__external_else] = ACTIONS(121), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(69), - [sym__external_close_brace] = ACTIONS(69), + [sym__external_open_brace] = ACTIONS(59), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, [8] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__else] = STATE(499), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(59), - [anon_sym_BSLASH] = ACTIONS(57), - [anon_sym_function] = ACTIONS(59), + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__else] = STATE(688), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(65), + [sym_identifier] = ACTIONS(63), + [anon_sym_BSLASH] = ACTIONS(65), + [anon_sym_function] = ACTIONS(63), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(59), - [anon_sym_repeat] = ACTIONS(59), - [anon_sym_QMARK] = ACTIONS(57), + [anon_sym_if] = ACTIONS(63), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(63), + [anon_sym_repeat] = ACTIONS(63), + [anon_sym_QMARK] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(59), + [anon_sym_BANG] = ACTIONS(63), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -7111,55 +7115,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(57), - [sym__number_literal] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(57), - [anon_sym_DQUOTE] = ACTIONS(57), - [sym_dots] = ACTIONS(59), - [sym_dot_dot_i] = ACTIONS(57), - [sym_return] = ACTIONS(59), - [sym_next] = ACTIONS(59), - [sym_break] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_null] = ACTIONS(59), - [sym_inf] = ACTIONS(59), - [sym_nan] = ACTIONS(59), - [anon_sym_NA] = ACTIONS(59), - [anon_sym_NA_integer_] = ACTIONS(59), - [anon_sym_NA_real_] = ACTIONS(59), - [anon_sym_NA_complex_] = ACTIONS(59), - [anon_sym_NA_character_] = ACTIONS(59), + [sym__hex_literal] = ACTIONS(65), + [sym__number_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_dots] = ACTIONS(63), + [sym_dot_dot_i] = ACTIONS(65), + [sym_return] = ACTIONS(63), + [sym_next] = ACTIONS(63), + [sym_break] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_null] = ACTIONS(63), + [sym_inf] = ACTIONS(63), + [sym_nan] = ACTIONS(63), + [anon_sym_NA] = ACTIONS(63), + [anon_sym_NA_integer_] = ACTIONS(63), + [anon_sym_NA_real_] = ACTIONS(63), + [anon_sym_NA_complex_] = ACTIONS(63), + [anon_sym_NA_character_] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(57), - [sym__semicolon] = ACTIONS(57), - [sym__raw_string_literal] = ACTIONS(57), + [sym__newline] = ACTIONS(65), + [sym__semicolon] = ACTIONS(65), + [sym__raw_string_literal] = ACTIONS(65), [sym__external_else] = ACTIONS(123), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(57), - [sym__external_close_brace] = ACTIONS(57), + [sym__external_open_brace] = ACTIONS(65), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, [9] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__else] = STATE(506), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(65), - [anon_sym_BSLASH] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__else] = STATE(563), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(71), + [sym_identifier] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [anon_sym_function] = ACTIONS(69), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(65), - [anon_sym_for] = ACTIONS(65), - [anon_sym_while] = ACTIONS(65), - [anon_sym_repeat] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(63), + [anon_sym_if] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_repeat] = ACTIONS(69), + [anon_sym_QMARK] = ACTIONS(71), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -7186,55 +7190,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(63), - [sym__number_literal] = ACTIONS(65), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(63), - [sym_dots] = ACTIONS(65), - [sym_dot_dot_i] = ACTIONS(63), - [sym_return] = ACTIONS(65), - [sym_next] = ACTIONS(65), - [sym_break] = ACTIONS(65), - [sym_true] = ACTIONS(65), - [sym_false] = ACTIONS(65), - [sym_null] = ACTIONS(65), - [sym_inf] = ACTIONS(65), - [sym_nan] = ACTIONS(65), - [anon_sym_NA] = ACTIONS(65), - [anon_sym_NA_integer_] = ACTIONS(65), - [anon_sym_NA_real_] = ACTIONS(65), - [anon_sym_NA_complex_] = ACTIONS(65), - [anon_sym_NA_character_] = ACTIONS(65), + [sym__hex_literal] = ACTIONS(71), + [sym__number_literal] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_dots] = ACTIONS(69), + [sym_dot_dot_i] = ACTIONS(71), + [sym_return] = ACTIONS(69), + [sym_next] = ACTIONS(69), + [sym_break] = ACTIONS(69), + [sym_true] = ACTIONS(69), + [sym_false] = ACTIONS(69), + [sym_null] = ACTIONS(69), + [sym_inf] = ACTIONS(69), + [sym_nan] = ACTIONS(69), + [anon_sym_NA] = ACTIONS(69), + [anon_sym_NA_integer_] = ACTIONS(69), + [anon_sym_NA_real_] = ACTIONS(69), + [anon_sym_NA_complex_] = ACTIONS(69), + [anon_sym_NA_character_] = ACTIONS(69), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym__semicolon] = ACTIONS(63), - [sym__raw_string_literal] = ACTIONS(63), + [sym__newline] = ACTIONS(71), + [sym__semicolon] = ACTIONS(71), + [sym__raw_string_literal] = ACTIONS(71), [sym__external_else] = ACTIONS(125), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(63), - [sym__external_close_brace] = ACTIONS(63), + [sym__external_open_brace] = ACTIONS(71), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, [10] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__else] = STATE(858), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(65), - [anon_sym_BSLASH] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__else] = STATE(1029), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(9), + [sym_identifier] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(9), + [anon_sym_function] = ACTIONS(7), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(65), - [anon_sym_for] = ACTIONS(65), - [anon_sym_while] = ACTIONS(65), - [anon_sym_repeat] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(63), + [anon_sym_if] = ACTIONS(7), + [anon_sym_for] = ACTIONS(7), + [anon_sym_while] = ACTIONS(7), + [anon_sym_repeat] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(7), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -7261,430 +7265,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(63), - [sym__number_literal] = ACTIONS(65), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(63), - [sym_dots] = ACTIONS(65), - [sym_dot_dot_i] = ACTIONS(63), - [sym_return] = ACTIONS(65), - [sym_next] = ACTIONS(65), - [sym_break] = ACTIONS(65), - [sym_true] = ACTIONS(65), - [sym_false] = ACTIONS(65), - [sym_null] = ACTIONS(65), - [sym_inf] = ACTIONS(65), - [sym_nan] = ACTIONS(65), - [anon_sym_NA] = ACTIONS(65), - [anon_sym_NA_integer_] = ACTIONS(65), - [anon_sym_NA_real_] = ACTIONS(65), - [anon_sym_NA_complex_] = ACTIONS(65), - [anon_sym_NA_character_] = ACTIONS(65), + [sym__hex_literal] = ACTIONS(9), + [sym__number_literal] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(9), + [sym_dots] = ACTIONS(7), + [sym_dot_dot_i] = ACTIONS(9), + [sym_return] = ACTIONS(7), + [sym_next] = ACTIONS(7), + [sym_break] = ACTIONS(7), + [sym_true] = ACTIONS(7), + [sym_false] = ACTIONS(7), + [sym_null] = ACTIONS(7), + [sym_inf] = ACTIONS(7), + [sym_nan] = ACTIONS(7), + [anon_sym_NA] = ACTIONS(7), + [anon_sym_NA_integer_] = ACTIONS(7), + [anon_sym_NA_real_] = ACTIONS(7), + [anon_sym_NA_complex_] = ACTIONS(7), + [anon_sym_NA_character_] = ACTIONS(7), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym__semicolon] = ACTIONS(63), - [sym__raw_string_literal] = ACTIONS(63), + [sym__newline] = ACTIONS(9), + [sym__semicolon] = ACTIONS(9), + [sym__raw_string_literal] = ACTIONS(9), [sym__external_else] = ACTIONS(127), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(63), - [sym__external_close_brace] = ACTIONS(63), + [sym__external_open_brace] = ACTIONS(9), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, [11] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__else] = STATE(712), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(7), - [sym_identifier] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(7), - [anon_sym_function] = ACTIONS(9), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(9), - [anon_sym_for] = ACTIONS(9), - [anon_sym_while] = ACTIONS(9), - [anon_sym_repeat] = ACTIONS(9), - [anon_sym_QMARK] = ACTIONS(7), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(9), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(7), - [sym__number_literal] = ACTIONS(9), - [anon_sym_SQUOTE] = ACTIONS(7), - [anon_sym_DQUOTE] = ACTIONS(7), - [sym_dots] = ACTIONS(9), - [sym_dot_dot_i] = ACTIONS(7), - [sym_return] = ACTIONS(9), - [sym_next] = ACTIONS(9), - [sym_break] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_null] = ACTIONS(9), - [sym_inf] = ACTIONS(9), - [sym_nan] = ACTIONS(9), - [anon_sym_NA] = ACTIONS(9), - [anon_sym_NA_integer_] = ACTIONS(9), - [anon_sym_NA_real_] = ACTIONS(9), - [anon_sym_NA_complex_] = ACTIONS(9), - [anon_sym_NA_character_] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(7), - [sym__semicolon] = ACTIONS(7), - [sym__raw_string_literal] = ACTIONS(7), - [sym__external_else] = ACTIONS(129), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(7), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), - }, - [12] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__else] = STATE(716), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(69), - [sym_identifier] = ACTIONS(71), - [anon_sym_BSLASH] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(71), - [anon_sym_for] = ACTIONS(71), - [anon_sym_while] = ACTIONS(71), - [anon_sym_repeat] = ACTIONS(71), - [anon_sym_QMARK] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(69), - [sym__number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(69), - [sym_dots] = ACTIONS(71), - [sym_dot_dot_i] = ACTIONS(69), - [sym_return] = ACTIONS(71), - [sym_next] = ACTIONS(71), - [sym_break] = ACTIONS(71), - [sym_true] = ACTIONS(71), - [sym_false] = ACTIONS(71), - [sym_null] = ACTIONS(71), - [sym_inf] = ACTIONS(71), - [sym_nan] = ACTIONS(71), - [anon_sym_NA] = ACTIONS(71), - [anon_sym_NA_integer_] = ACTIONS(71), - [anon_sym_NA_real_] = ACTIONS(71), - [anon_sym_NA_complex_] = ACTIONS(71), - [anon_sym_NA_character_] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(69), - [sym__semicolon] = ACTIONS(69), - [sym__raw_string_literal] = ACTIONS(69), - [sym__external_else] = ACTIONS(131), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(69), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), - }, - [13] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__else] = STATE(717), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(57), - [sym_identifier] = ACTIONS(59), - [anon_sym_BSLASH] = ACTIONS(57), - [anon_sym_function] = ACTIONS(59), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(59), - [anon_sym_repeat] = ACTIONS(59), - [anon_sym_QMARK] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(57), - [sym__number_literal] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(57), - [anon_sym_DQUOTE] = ACTIONS(57), - [sym_dots] = ACTIONS(59), - [sym_dot_dot_i] = ACTIONS(57), - [sym_return] = ACTIONS(59), - [sym_next] = ACTIONS(59), - [sym_break] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_null] = ACTIONS(59), - [sym_inf] = ACTIONS(59), - [sym_nan] = ACTIONS(59), - [anon_sym_NA] = ACTIONS(59), - [anon_sym_NA_integer_] = ACTIONS(59), - [anon_sym_NA_real_] = ACTIONS(59), - [anon_sym_NA_complex_] = ACTIONS(59), - [anon_sym_NA_character_] = ACTIONS(59), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(57), - [sym__semicolon] = ACTIONS(57), - [sym__raw_string_literal] = ACTIONS(57), - [sym__external_else] = ACTIONS(133), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(57), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), - }, - [14] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__else] = STATE(724), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(63), - [sym_identifier] = ACTIONS(65), - [anon_sym_BSLASH] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(65), - [anon_sym_for] = ACTIONS(65), - [anon_sym_while] = ACTIONS(65), - [anon_sym_repeat] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(63), - [sym__number_literal] = ACTIONS(65), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(63), - [sym_dots] = ACTIONS(65), - [sym_dot_dot_i] = ACTIONS(63), - [sym_return] = ACTIONS(65), - [sym_next] = ACTIONS(65), - [sym_break] = ACTIONS(65), - [sym_true] = ACTIONS(65), - [sym_false] = ACTIONS(65), - [sym_null] = ACTIONS(65), - [sym_inf] = ACTIONS(65), - [sym_nan] = ACTIONS(65), - [anon_sym_NA] = ACTIONS(65), - [anon_sym_NA_integer_] = ACTIONS(65), - [anon_sym_NA_real_] = ACTIONS(65), - [anon_sym_NA_complex_] = ACTIONS(65), - [anon_sym_NA_character_] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym__semicolon] = ACTIONS(63), - [sym__raw_string_literal] = ACTIONS(63), - [sym__external_else] = ACTIONS(135), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(63), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), - }, - [15] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__else] = STATE(845), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(7), - [anon_sym_function] = ACTIONS(9), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(9), - [anon_sym_for] = ACTIONS(9), - [anon_sym_while] = ACTIONS(9), - [anon_sym_repeat] = ACTIONS(9), - [anon_sym_QMARK] = ACTIONS(7), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(9), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(7), - [sym__number_literal] = ACTIONS(9), - [anon_sym_SQUOTE] = ACTIONS(7), - [anon_sym_DQUOTE] = ACTIONS(7), - [sym_dots] = ACTIONS(9), - [sym_dot_dot_i] = ACTIONS(7), - [sym_return] = ACTIONS(9), - [sym_next] = ACTIONS(9), - [sym_break] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_null] = ACTIONS(9), - [sym_inf] = ACTIONS(9), - [sym_nan] = ACTIONS(9), - [anon_sym_NA] = ACTIONS(9), - [anon_sym_NA_integer_] = ACTIONS(9), - [anon_sym_NA_real_] = ACTIONS(9), - [anon_sym_NA_complex_] = ACTIONS(9), - [anon_sym_NA_character_] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(7), - [sym__semicolon] = ACTIONS(7), - [sym__raw_string_literal] = ACTIONS(7), - [sym__external_else] = ACTIONS(137), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(7), - [sym__external_close_brace] = ACTIONS(7), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [16] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__else] = STATE(850), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(71), - [anon_sym_BSLASH] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__else] = STATE(1036), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(59), + [sym_identifier] = ACTIONS(57), + [anon_sym_BSLASH] = ACTIONS(59), + [anon_sym_function] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(71), - [anon_sym_for] = ACTIONS(71), - [anon_sym_while] = ACTIONS(71), - [anon_sym_repeat] = ACTIONS(71), - [anon_sym_QMARK] = ACTIONS(69), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(57), + [anon_sym_while] = ACTIONS(57), + [anon_sym_repeat] = ACTIONS(57), + [anon_sym_QMARK] = ACTIONS(59), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(57), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -7711,55 +7340,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(69), - [sym__number_literal] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(69), - [sym_dots] = ACTIONS(71), - [sym_dot_dot_i] = ACTIONS(69), - [sym_return] = ACTIONS(71), - [sym_next] = ACTIONS(71), - [sym_break] = ACTIONS(71), - [sym_true] = ACTIONS(71), - [sym_false] = ACTIONS(71), - [sym_null] = ACTIONS(71), - [sym_inf] = ACTIONS(71), - [sym_nan] = ACTIONS(71), - [anon_sym_NA] = ACTIONS(71), - [anon_sym_NA_integer_] = ACTIONS(71), - [anon_sym_NA_real_] = ACTIONS(71), - [anon_sym_NA_complex_] = ACTIONS(71), - [anon_sym_NA_character_] = ACTIONS(71), + [sym__hex_literal] = ACTIONS(59), + [sym__number_literal] = ACTIONS(57), + [anon_sym_SQUOTE] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(59), + [sym_dots] = ACTIONS(57), + [sym_dot_dot_i] = ACTIONS(59), + [sym_return] = ACTIONS(57), + [sym_next] = ACTIONS(57), + [sym_break] = ACTIONS(57), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_null] = ACTIONS(57), + [sym_inf] = ACTIONS(57), + [sym_nan] = ACTIONS(57), + [anon_sym_NA] = ACTIONS(57), + [anon_sym_NA_integer_] = ACTIONS(57), + [anon_sym_NA_real_] = ACTIONS(57), + [anon_sym_NA_complex_] = ACTIONS(57), + [anon_sym_NA_character_] = ACTIONS(57), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(69), - [sym__semicolon] = ACTIONS(69), - [sym__raw_string_literal] = ACTIONS(69), - [sym__external_else] = ACTIONS(139), + [sym__newline] = ACTIONS(59), + [sym__semicolon] = ACTIONS(59), + [sym__raw_string_literal] = ACTIONS(59), + [sym__external_else] = ACTIONS(129), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(69), - [sym__external_close_brace] = ACTIONS(69), + [sym__external_open_brace] = ACTIONS(59), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, - [17] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__else] = STATE(851), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(59), - [anon_sym_BSLASH] = ACTIONS(57), - [anon_sym_function] = ACTIONS(59), + [12] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__else] = STATE(452), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(65), + [sym_identifier] = ACTIONS(63), + [anon_sym_BSLASH] = ACTIONS(65), + [anon_sym_function] = ACTIONS(63), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(59), - [anon_sym_repeat] = ACTIONS(59), - [anon_sym_QMARK] = ACTIONS(57), + [anon_sym_if] = ACTIONS(63), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(63), + [anon_sym_repeat] = ACTIONS(63), + [anon_sym_QMARK] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(59), + [anon_sym_BANG] = ACTIONS(63), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -7786,54 +7415,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(57), - [sym__number_literal] = ACTIONS(59), - [anon_sym_SQUOTE] = ACTIONS(57), - [anon_sym_DQUOTE] = ACTIONS(57), - [sym_dots] = ACTIONS(59), - [sym_dot_dot_i] = ACTIONS(57), - [sym_return] = ACTIONS(59), - [sym_next] = ACTIONS(59), - [sym_break] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_null] = ACTIONS(59), - [sym_inf] = ACTIONS(59), - [sym_nan] = ACTIONS(59), - [anon_sym_NA] = ACTIONS(59), - [anon_sym_NA_integer_] = ACTIONS(59), - [anon_sym_NA_real_] = ACTIONS(59), - [anon_sym_NA_complex_] = ACTIONS(59), - [anon_sym_NA_character_] = ACTIONS(59), + [sym__hex_literal] = ACTIONS(65), + [sym__number_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_dots] = ACTIONS(63), + [sym_dot_dot_i] = ACTIONS(65), + [sym_return] = ACTIONS(63), + [sym_next] = ACTIONS(63), + [sym_break] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_null] = ACTIONS(63), + [sym_inf] = ACTIONS(63), + [sym_nan] = ACTIONS(63), + [anon_sym_NA] = ACTIONS(63), + [anon_sym_NA_integer_] = ACTIONS(63), + [anon_sym_NA_real_] = ACTIONS(63), + [anon_sym_NA_complex_] = ACTIONS(63), + [anon_sym_NA_character_] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(57), - [sym__semicolon] = ACTIONS(57), - [sym__raw_string_literal] = ACTIONS(57), - [sym__external_else] = ACTIONS(141), + [sym__newline] = ACTIONS(65), + [sym__semicolon] = ACTIONS(65), + [sym__raw_string_literal] = ACTIONS(65), + [sym__external_else] = ACTIONS(131), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(57), - [sym__external_close_brace] = ACTIONS(57), + [sym__external_open_brace] = ACTIONS(65), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, - [18] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(143), - [anon_sym_BSLASH] = ACTIONS(145), - [anon_sym_function] = ACTIONS(143), + [13] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__else] = STATE(1047), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(71), + [sym_identifier] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [anon_sym_function] = ACTIONS(69), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(143), - [anon_sym_for] = ACTIONS(143), - [anon_sym_while] = ACTIONS(143), - [anon_sym_repeat] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_if] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_repeat] = ACTIONS(69), + [anon_sym_QMARK] = ACTIONS(71), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -7860,66 +7490,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(145), - [sym__number_literal] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_dots] = ACTIONS(143), - [sym_dot_dot_i] = ACTIONS(145), - [sym_return] = ACTIONS(143), - [sym_next] = ACTIONS(143), - [sym_break] = ACTIONS(143), - [sym_true] = ACTIONS(143), - [sym_false] = ACTIONS(143), - [sym_null] = ACTIONS(143), - [sym_inf] = ACTIONS(143), - [sym_nan] = ACTIONS(143), - [anon_sym_NA] = ACTIONS(143), - [anon_sym_NA_integer_] = ACTIONS(143), - [anon_sym_NA_real_] = ACTIONS(143), - [anon_sym_NA_complex_] = ACTIONS(143), - [anon_sym_NA_character_] = ACTIONS(143), + [sym__hex_literal] = ACTIONS(71), + [sym__number_literal] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_dots] = ACTIONS(69), + [sym_dot_dot_i] = ACTIONS(71), + [sym_return] = ACTIONS(69), + [sym_next] = ACTIONS(69), + [sym_break] = ACTIONS(69), + [sym_true] = ACTIONS(69), + [sym_false] = ACTIONS(69), + [sym_null] = ACTIONS(69), + [sym_inf] = ACTIONS(69), + [sym_nan] = ACTIONS(69), + [anon_sym_NA] = ACTIONS(69), + [anon_sym_NA_integer_] = ACTIONS(69), + [anon_sym_NA_real_] = ACTIONS(69), + [anon_sym_NA_complex_] = ACTIONS(69), + [anon_sym_NA_character_] = ACTIONS(69), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(145), - [sym__semicolon] = ACTIONS(145), - [sym__raw_string_literal] = ACTIONS(145), - [sym__external_else] = ACTIONS(145), + [sym__newline] = ACTIONS(71), + [sym__semicolon] = ACTIONS(71), + [sym__raw_string_literal] = ACTIONS(71), + [sym__external_else] = ACTIONS(133), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(145), - [sym__external_close_brace] = ACTIONS(145), + [sym__external_open_brace] = ACTIONS(71), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, - [19] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(147), - [sym_identifier] = ACTIONS(149), - [anon_sym_BSLASH] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_if] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_QMARK] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), + [14] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__else] = STATE(969), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(9), + [anon_sym_function] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(7), + [anon_sym_for] = ACTIONS(7), + [anon_sym_while] = ACTIONS(7), + [anon_sym_repeat] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(9), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(7), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(147), - [anon_sym_LT_LT_DASH] = ACTIONS(147), - [anon_sym_COLON_EQ] = ACTIONS(147), - [anon_sym_DASH_GT] = ACTIONS(149), - [anon_sym_DASH_GT_GT] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_AMP] = ACTIONS(149), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_AMP_AMP] = ACTIONS(147), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), [anon_sym_LT] = ACTIONS(33), [anon_sym_LT_EQ] = ACTIONS(35), [anon_sym_GT] = ACTIONS(33), @@ -7935,133 +7564,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(147), - [sym__number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym_dots] = ACTIONS(149), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(149), - [sym_next] = ACTIONS(149), - [sym_break] = ACTIONS(149), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_null] = ACTIONS(149), - [sym_inf] = ACTIONS(149), - [sym_nan] = ACTIONS(149), - [anon_sym_NA] = ACTIONS(149), - [anon_sym_NA_integer_] = ACTIONS(149), - [anon_sym_NA_real_] = ACTIONS(149), - [anon_sym_NA_complex_] = ACTIONS(149), - [anon_sym_NA_character_] = ACTIONS(149), + [sym__hex_literal] = ACTIONS(9), + [sym__number_literal] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_DQUOTE] = ACTIONS(9), + [sym_dots] = ACTIONS(7), + [sym_dot_dot_i] = ACTIONS(9), + [sym_return] = ACTIONS(7), + [sym_next] = ACTIONS(7), + [sym_break] = ACTIONS(7), + [sym_true] = ACTIONS(7), + [sym_false] = ACTIONS(7), + [sym_null] = ACTIONS(7), + [sym_inf] = ACTIONS(7), + [sym_nan] = ACTIONS(7), + [anon_sym_NA] = ACTIONS(7), + [anon_sym_NA_integer_] = ACTIONS(7), + [anon_sym_NA_real_] = ACTIONS(7), + [anon_sym_NA_complex_] = ACTIONS(7), + [anon_sym_NA_character_] = ACTIONS(7), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(147), - [sym__semicolon] = ACTIONS(147), - [sym__raw_string_literal] = ACTIONS(147), - [sym__external_else] = ACTIONS(147), + [sym__newline] = ACTIONS(9), + [sym__semicolon] = ACTIONS(9), + [sym__raw_string_literal] = ACTIONS(9), + [sym__external_else] = ACTIONS(135), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(147), + [sym__external_open_brace] = ACTIONS(9), + [sym__external_close_brace] = ACTIONS(9), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [20] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(147), - [sym_identifier] = ACTIONS(149), - [anon_sym_BSLASH] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_if] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_QMARK] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_LT_DASH] = ACTIONS(147), - [anon_sym_LT_LT_DASH] = ACTIONS(147), - [anon_sym_COLON_EQ] = ACTIONS(147), - [anon_sym_DASH_GT] = ACTIONS(149), - [anon_sym_DASH_GT_GT] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_AMP] = ACTIONS(149), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(147), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(147), + [15] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__else] = STATE(954), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(57), + [anon_sym_BSLASH] = ACTIONS(59), + [anon_sym_function] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(57), + [anon_sym_while] = ACTIONS(57), + [anon_sym_repeat] = ACTIONS(57), + [anon_sym_QMARK] = ACTIONS(59), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(57), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), [anon_sym_STAR_STAR] = ACTIONS(41), [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(147), - [anon_sym_PIPE_GT] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(149), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(147), - [sym__number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym_dots] = ACTIONS(149), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(149), - [sym_next] = ACTIONS(149), - [sym_break] = ACTIONS(149), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_null] = ACTIONS(149), - [sym_inf] = ACTIONS(149), - [sym_nan] = ACTIONS(149), - [anon_sym_NA] = ACTIONS(149), - [anon_sym_NA_integer_] = ACTIONS(149), - [anon_sym_NA_real_] = ACTIONS(149), - [anon_sym_NA_complex_] = ACTIONS(149), - [anon_sym_NA_character_] = ACTIONS(149), + [sym__hex_literal] = ACTIONS(59), + [sym__number_literal] = ACTIONS(57), + [anon_sym_SQUOTE] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(59), + [sym_dots] = ACTIONS(57), + [sym_dot_dot_i] = ACTIONS(59), + [sym_return] = ACTIONS(57), + [sym_next] = ACTIONS(57), + [sym_break] = ACTIONS(57), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_null] = ACTIONS(57), + [sym_inf] = ACTIONS(57), + [sym_nan] = ACTIONS(57), + [anon_sym_NA] = ACTIONS(57), + [anon_sym_NA_integer_] = ACTIONS(57), + [anon_sym_NA_real_] = ACTIONS(57), + [anon_sym_NA_complex_] = ACTIONS(57), + [anon_sym_NA_character_] = ACTIONS(57), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(147), - [sym__semicolon] = ACTIONS(147), - [sym__raw_string_literal] = ACTIONS(147), - [sym__external_else] = ACTIONS(147), + [sym__newline] = ACTIONS(59), + [sym__semicolon] = ACTIONS(59), + [sym__raw_string_literal] = ACTIONS(59), + [sym__external_else] = ACTIONS(137), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(147), + [sym__external_open_brace] = ACTIONS(59), + [sym__external_close_brace] = ACTIONS(59), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [21] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), + [16] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__else] = STATE(952), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(63), + [anon_sym_BSLASH] = ACTIONS(65), + [anon_sym_function] = ACTIONS(63), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_if] = ACTIONS(63), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(63), + [anon_sym_repeat] = ACTIONS(63), + [anon_sym_QMARK] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(63), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), [anon_sym_DASH_GT] = ACTIONS(21), [anon_sym_DASH_GT_GT] = ACTIONS(23), [anon_sym_PIPE] = ACTIONS(25), @@ -8083,54 +7714,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), + [sym__hex_literal] = ACTIONS(65), + [sym__number_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_dots] = ACTIONS(63), + [sym_dot_dot_i] = ACTIONS(65), + [sym_return] = ACTIONS(63), + [sym_next] = ACTIONS(63), + [sym_break] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_null] = ACTIONS(63), + [sym_inf] = ACTIONS(63), + [sym_nan] = ACTIONS(63), + [anon_sym_NA] = ACTIONS(63), + [anon_sym_NA_integer_] = ACTIONS(63), + [anon_sym_NA_real_] = ACTIONS(63), + [anon_sym_NA_complex_] = ACTIONS(63), + [anon_sym_NA_character_] = ACTIONS(63), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), + [sym__newline] = ACTIONS(65), + [sym__semicolon] = ACTIONS(65), + [sym__raw_string_literal] = ACTIONS(65), + [sym__external_else] = ACTIONS(139), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_brace] = ACTIONS(65), + [sym__external_close_brace] = ACTIONS(65), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [22] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), + [17] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__else] = STATE(941), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(69), + [anon_sym_BSLASH] = ACTIONS(71), + [anon_sym_function] = ACTIONS(69), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_if] = ACTIONS(69), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(69), + [anon_sym_repeat] = ACTIONS(69), + [anon_sym_QMARK] = ACTIONS(71), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -8157,61 +7789,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), + [sym__hex_literal] = ACTIONS(71), + [sym__number_literal] = ACTIONS(69), + [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_dots] = ACTIONS(69), + [sym_dot_dot_i] = ACTIONS(71), + [sym_return] = ACTIONS(69), + [sym_next] = ACTIONS(69), + [sym_break] = ACTIONS(69), + [sym_true] = ACTIONS(69), + [sym_false] = ACTIONS(69), + [sym_null] = ACTIONS(69), + [sym_inf] = ACTIONS(69), + [sym_nan] = ACTIONS(69), + [anon_sym_NA] = ACTIONS(69), + [anon_sym_NA_integer_] = ACTIONS(69), + [anon_sym_NA_real_] = ACTIONS(69), + [anon_sym_NA_complex_] = ACTIONS(69), + [anon_sym_NA_character_] = ACTIONS(69), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), + [sym__newline] = ACTIONS(71), + [sym__semicolon] = ACTIONS(71), + [sym__raw_string_literal] = ACTIONS(71), + [sym__external_else] = ACTIONS(141), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_brace] = ACTIONS(71), + [sym__external_close_brace] = ACTIONS(71), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [23] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), + [18] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(143), + [sym_identifier] = ACTIONS(145), + [anon_sym_BSLASH] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(145), + [anon_sym_for] = ACTIONS(145), + [anon_sym_while] = ACTIONS(145), + [anon_sym_repeat] = ACTIONS(145), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(143), + [sym__number_literal] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(143), + [sym_dots] = ACTIONS(145), + [sym_dot_dot_i] = ACTIONS(143), + [sym_return] = ACTIONS(145), + [sym_next] = ACTIONS(145), + [sym_break] = ACTIONS(145), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_inf] = ACTIONS(145), + [sym_nan] = ACTIONS(145), + [anon_sym_NA] = ACTIONS(145), + [anon_sym_NA_integer_] = ACTIONS(145), + [anon_sym_NA_real_] = ACTIONS(145), + [anon_sym_NA_complex_] = ACTIONS(145), + [anon_sym_NA_character_] = ACTIONS(145), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(143), + [sym__semicolon] = ACTIONS(143), + [sym__raw_string_literal] = ACTIONS(143), + [sym__external_else] = ACTIONS(143), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(143), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [19] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(149), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_TILDE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(147), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_LT_DASH] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_COLON_EQ] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(147), + [anon_sym_DASH_GT_GT] = ACTIONS(149), [anon_sym_PIPE] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(27), [anon_sym_PIPE_PIPE] = ACTIONS(29), @@ -8231,6 +7937,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(149), + [sym__number_literal] = ACTIONS(147), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_dots] = ACTIONS(147), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(147), + [sym_next] = ACTIONS(147), + [sym_break] = ACTIONS(147), + [sym_true] = ACTIONS(147), + [sym_false] = ACTIONS(147), + [sym_null] = ACTIONS(147), + [sym_inf] = ACTIONS(147), + [sym_nan] = ACTIONS(147), + [anon_sym_NA] = ACTIONS(147), + [anon_sym_NA_integer_] = ACTIONS(147), + [anon_sym_NA_real_] = ACTIONS(147), + [anon_sym_NA_complex_] = ACTIONS(147), + [anon_sym_NA_character_] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(149), + [sym__semicolon] = ACTIONS(149), + [sym__raw_string_literal] = ACTIONS(149), + [sym__external_else] = ACTIONS(149), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(149), + [sym__external_close_brace] = ACTIONS(149), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [20] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8255,18 +8036,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [24] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [21] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), @@ -8296,15 +8077,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8329,56 +8110,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [25] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [22] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(153), [anon_sym_for] = ACTIONS(153), [anon_sym_while] = ACTIONS(153), [anon_sym_repeat] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8403,18 +8184,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [26] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [23] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), @@ -8425,34 +8206,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(153), [anon_sym_repeat] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), [anon_sym_DASH_GT] = ACTIONS(153), [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8477,18 +8258,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [27] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [24] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), @@ -8501,32 +8282,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), [anon_sym_DASH_GT] = ACTIONS(153), [anon_sym_DASH_GT_GT] = ACTIONS(151), [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(91), [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8551,18 +8332,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [28] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [25] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), @@ -8575,8 +8356,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), @@ -8586,21 +8367,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(153), [anon_sym_PIPE_PIPE] = ACTIONS(151), [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8625,18 +8406,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [29] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [26] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), @@ -8649,8 +8430,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), @@ -8666,15 +8447,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8699,18 +8480,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [30] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [27] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), @@ -8742,13 +8523,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8773,18 +8554,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [31] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [28] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), @@ -8816,13 +8597,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), [anon_sym_COLON] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8847,18 +8628,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [32] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [29] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), @@ -8890,13 +8671,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8921,18 +8702,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [33] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [30] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), @@ -8964,13 +8745,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), [anon_sym_COLON] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8995,56 +8776,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [34] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [31] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(155), [sym_identifier] = ACTIONS(157), [anon_sym_BSLASH] = ACTIONS(155), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(157), [anon_sym_for] = ACTIONS(157), [anon_sym_while] = ACTIONS(157), [anon_sym_repeat] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(155), [sym__number_literal] = ACTIONS(157), [anon_sym_SQUOTE] = ACTIONS(155), @@ -9069,56 +8850,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(155), [sym__raw_string_literal] = ACTIONS(155), [sym__external_else] = ACTIONS(155), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(155), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [35] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [32] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(159), [sym_identifier] = ACTIONS(161), [anon_sym_BSLASH] = ACTIONS(159), [anon_sym_function] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(161), [anon_sym_for] = ACTIONS(161), [anon_sym_while] = ACTIONS(161), [anon_sym_repeat] = ACTIONS(161), [anon_sym_QMARK] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(159), [sym__number_literal] = ACTIONS(161), [anon_sym_SQUOTE] = ACTIONS(159), @@ -9143,56 +8924,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(159), [sym__raw_string_literal] = ACTIONS(159), [sym__external_else] = ACTIONS(159), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(159), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [36] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [33] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9217,56 +8998,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [37] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [34] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9291,18 +9072,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [38] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [35] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), @@ -9315,32 +9096,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9365,18 +9146,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [39] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [36] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), @@ -9406,15 +9187,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(163), [anon_sym_EQ_EQ] = ACTIONS(163), [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9439,56 +9220,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [40] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [37] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9513,18 +9294,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [41] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [38] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), @@ -9535,34 +9316,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9587,18 +9368,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [42] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [39] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), @@ -9611,32 +9392,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(91), [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9661,18 +9442,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [43] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [40] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), @@ -9685,8 +9466,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), @@ -9696,21 +9477,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9735,18 +9516,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [44] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [41] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), @@ -9759,8 +9540,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), @@ -9776,15 +9557,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(163), [anon_sym_EQ_EQ] = ACTIONS(163), [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9809,18 +9590,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [45] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [42] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), @@ -9852,13 +9633,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9883,18 +9664,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [46] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [43] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), @@ -9926,13 +9707,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), [aux_sym_binary_operator_token1] = ACTIONS(163), [anon_sym_PIPE_GT] = ACTIONS(163), [anon_sym_COLON] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9957,18 +9738,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [47] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [44] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), @@ -10000,13 +9781,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), [aux_sym_binary_operator_token1] = ACTIONS(163), [anon_sym_PIPE_GT] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -10031,18 +9812,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [48] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [45] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), @@ -10074,13 +9855,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), [aux_sym_binary_operator_token1] = ACTIONS(163), [anon_sym_PIPE_GT] = ACTIONS(163), [anon_sym_COLON] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -10105,56 +9886,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [49] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [46] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(167), [sym_identifier] = ACTIONS(169), [anon_sym_BSLASH] = ACTIONS(167), [anon_sym_function] = ACTIONS(169), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(169), [anon_sym_for] = ACTIONS(169), [anon_sym_while] = ACTIONS(169), [anon_sym_repeat] = ACTIONS(169), [anon_sym_QMARK] = ACTIONS(167), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(167), [sym__number_literal] = ACTIONS(169), [anon_sym_SQUOTE] = ACTIONS(167), @@ -10179,56 +9960,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(167), [sym__raw_string_literal] = ACTIONS(167), [sym__external_else] = ACTIONS(167), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(167), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [50] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [47] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(171), [sym_identifier] = ACTIONS(173), [anon_sym_BSLASH] = ACTIONS(171), [anon_sym_function] = ACTIONS(173), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(173), [anon_sym_for] = ACTIONS(173), [anon_sym_while] = ACTIONS(173), [anon_sym_repeat] = ACTIONS(173), [anon_sym_QMARK] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(171), [sym__number_literal] = ACTIONS(173), [anon_sym_SQUOTE] = ACTIONS(171), @@ -10253,56 +10034,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(171), [sym__raw_string_literal] = ACTIONS(171), [sym__external_else] = ACTIONS(171), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(171), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [51] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [48] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(175), [sym_identifier] = ACTIONS(177), [anon_sym_BSLASH] = ACTIONS(175), [anon_sym_function] = ACTIONS(177), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(177), [anon_sym_for] = ACTIONS(177), [anon_sym_while] = ACTIONS(177), [anon_sym_repeat] = ACTIONS(177), [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(175), [sym__number_literal] = ACTIONS(177), [anon_sym_SQUOTE] = ACTIONS(175), @@ -10327,56 +10108,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(175), [sym__raw_string_literal] = ACTIONS(175), [sym__external_else] = ACTIONS(175), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(175), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [52] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [49] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(179), [sym_identifier] = ACTIONS(181), [anon_sym_BSLASH] = ACTIONS(179), [anon_sym_function] = ACTIONS(181), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(181), [anon_sym_for] = ACTIONS(181), [anon_sym_while] = ACTIONS(181), [anon_sym_repeat] = ACTIONS(181), [anon_sym_QMARK] = ACTIONS(179), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(181), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(179), [sym__number_literal] = ACTIONS(181), [anon_sym_SQUOTE] = ACTIONS(179), @@ -10401,56 +10182,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(179), [sym__raw_string_literal] = ACTIONS(179), [sym__external_else] = ACTIONS(179), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(179), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [53] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [50] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(183), [sym_identifier] = ACTIONS(185), [anon_sym_BSLASH] = ACTIONS(183), [anon_sym_function] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(185), [anon_sym_for] = ACTIONS(185), [anon_sym_while] = ACTIONS(185), [anon_sym_repeat] = ACTIONS(185), [anon_sym_QMARK] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(183), [sym__number_literal] = ACTIONS(185), [anon_sym_SQUOTE] = ACTIONS(183), @@ -10475,130 +10256,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(183), [sym__raw_string_literal] = ACTIONS(183), [sym__external_else] = ACTIONS(183), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(183), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [54] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [51] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(187), [sym_identifier] = ACTIONS(189), [anon_sym_BSLASH] = ACTIONS(187), [anon_sym_function] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(189), [anon_sym_for] = ACTIONS(189), [anon_sym_while] = ACTIONS(189), [anon_sym_repeat] = ACTIONS(189), [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(187), - [sym__number_literal] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(187), - [sym_dots] = ACTIONS(189), - [sym_dot_dot_i] = ACTIONS(187), - [sym_return] = ACTIONS(189), - [sym_next] = ACTIONS(189), - [sym_break] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_inf] = ACTIONS(189), - [sym_nan] = ACTIONS(189), - [anon_sym_NA] = ACTIONS(189), - [anon_sym_NA_integer_] = ACTIONS(189), - [anon_sym_NA_real_] = ACTIONS(189), - [anon_sym_NA_complex_] = ACTIONS(189), - [anon_sym_NA_character_] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(187), - [sym__semicolon] = ACTIONS(187), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(187), + [sym__number_literal] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym_dots] = ACTIONS(189), + [sym_dot_dot_i] = ACTIONS(187), + [sym_return] = ACTIONS(189), + [sym_next] = ACTIONS(189), + [sym_break] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_inf] = ACTIONS(189), + [sym_nan] = ACTIONS(189), + [anon_sym_NA] = ACTIONS(189), + [anon_sym_NA_integer_] = ACTIONS(189), + [anon_sym_NA_real_] = ACTIONS(189), + [anon_sym_NA_complex_] = ACTIONS(189), + [anon_sym_NA_character_] = ACTIONS(189), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(187), + [sym__semicolon] = ACTIONS(187), [sym__raw_string_literal] = ACTIONS(187), [sym__external_else] = ACTIONS(187), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(187), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [55] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [52] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(191), [sym_identifier] = ACTIONS(193), [anon_sym_BSLASH] = ACTIONS(191), [anon_sym_function] = ACTIONS(193), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(193), [anon_sym_for] = ACTIONS(193), [anon_sym_while] = ACTIONS(193), [anon_sym_repeat] = ACTIONS(193), [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(193), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(191), [sym__number_literal] = ACTIONS(193), [anon_sym_SQUOTE] = ACTIONS(191), @@ -10623,56 +10404,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(191), [sym__raw_string_literal] = ACTIONS(191), [sym__external_else] = ACTIONS(191), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(191), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [56] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [53] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(195), [sym_identifier] = ACTIONS(197), [anon_sym_BSLASH] = ACTIONS(195), [anon_sym_function] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(197), [anon_sym_for] = ACTIONS(197), [anon_sym_while] = ACTIONS(197), [anon_sym_repeat] = ACTIONS(197), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(195), [sym__number_literal] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(195), @@ -10697,56 +10478,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(195), [sym__raw_string_literal] = ACTIONS(195), [sym__external_else] = ACTIONS(195), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(195), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [54] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(163), + [anon_sym_PIPE_GT] = ACTIONS(163), + [anon_sym_COLON] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(163), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [57] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [55] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [56] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(199), [sym_identifier] = ACTIONS(201), [anon_sym_BSLASH] = ACTIONS(199), [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(201), [anon_sym_if] = ACTIONS(201), [anon_sym_for] = ACTIONS(201), [anon_sym_while] = ACTIONS(201), [anon_sym_repeat] = ACTIONS(201), [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(199), [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(199), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LT_DASH] = ACTIONS(199), + [anon_sym_LT_LT_DASH] = ACTIONS(199), + [anon_sym_COLON_EQ] = ACTIONS(199), + [anon_sym_DASH_GT] = ACTIONS(201), + [anon_sym_DASH_GT_GT] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(201), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_PIPE_PIPE] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_LT_EQ] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(201), + [anon_sym_GT_EQ] = ACTIONS(199), + [anon_sym_EQ_EQ] = ACTIONS(199), + [anon_sym_BANG_EQ] = ACTIONS(199), + [anon_sym_STAR] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(199), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(199), + [anon_sym_PIPE_GT] = ACTIONS(199), + [anon_sym_COLON] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(199), [sym__number_literal] = ACTIONS(201), [anon_sym_SQUOTE] = ACTIONS(199), @@ -10771,130 +10700,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(199), [sym__raw_string_literal] = ACTIONS(199), [sym__external_else] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [58] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(203), - [sym_identifier] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(205), - [anon_sym_for] = ACTIONS(205), - [anon_sym_while] = ACTIONS(205), - [anon_sym_repeat] = ACTIONS(205), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(203), - [sym__number_literal] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE] = ACTIONS(203), - [sym_dots] = ACTIONS(205), - [sym_dot_dot_i] = ACTIONS(203), - [sym_return] = ACTIONS(205), - [sym_next] = ACTIONS(205), - [sym_break] = ACTIONS(205), - [sym_true] = ACTIONS(205), - [sym_false] = ACTIONS(205), - [sym_null] = ACTIONS(205), - [sym_inf] = ACTIONS(205), - [sym_nan] = ACTIONS(205), - [anon_sym_NA] = ACTIONS(205), - [anon_sym_NA_integer_] = ACTIONS(205), - [anon_sym_NA_real_] = ACTIONS(205), - [anon_sym_NA_complex_] = ACTIONS(205), - [anon_sym_NA_character_] = ACTIONS(205), + [57] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(199), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(201), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(199), + [anon_sym_LT_LT_DASH] = ACTIONS(199), + [anon_sym_COLON_EQ] = ACTIONS(199), + [anon_sym_DASH_GT] = ACTIONS(201), + [anon_sym_DASH_GT_GT] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(201), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_PIPE_PIPE] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(199), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(203), - [sym__semicolon] = ACTIONS(203), - [sym__raw_string_literal] = ACTIONS(203), - [sym__external_else] = ACTIONS(203), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(203), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_else] = ACTIONS(199), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [59] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(207), - [sym_identifier] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(207), - [anon_sym_function] = ACTIONS(209), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(209), - [anon_sym_for] = ACTIONS(209), - [anon_sym_while] = ACTIONS(209), - [anon_sym_repeat] = ACTIONS(209), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [58] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(199), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(201), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(199), + [anon_sym_LT_LT_DASH] = ACTIONS(199), + [anon_sym_COLON_EQ] = ACTIONS(199), + [anon_sym_DASH_GT] = ACTIONS(201), + [anon_sym_DASH_GT_GT] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(199), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_else] = ACTIONS(199), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [59] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(199), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(199), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_else] = ACTIONS(199), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [60] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(203), + [sym_identifier] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(203), + [anon_sym_function] = ACTIONS(205), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(205), + [anon_sym_for] = ACTIONS(205), + [anon_sym_while] = ACTIONS(205), + [anon_sym_repeat] = ACTIONS(205), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(203), + [sym__number_literal] = ACTIONS(205), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE] = ACTIONS(203), + [sym_dots] = ACTIONS(205), + [sym_dot_dot_i] = ACTIONS(203), + [sym_return] = ACTIONS(205), + [sym_next] = ACTIONS(205), + [sym_break] = ACTIONS(205), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [sym_null] = ACTIONS(205), + [sym_inf] = ACTIONS(205), + [sym_nan] = ACTIONS(205), + [anon_sym_NA] = ACTIONS(205), + [anon_sym_NA_integer_] = ACTIONS(205), + [anon_sym_NA_real_] = ACTIONS(205), + [anon_sym_NA_complex_] = ACTIONS(205), + [anon_sym_NA_character_] = ACTIONS(205), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(203), + [sym__semicolon] = ACTIONS(203), + [sym__raw_string_literal] = ACTIONS(203), + [sym__external_else] = ACTIONS(203), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(203), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [61] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(207), + [sym_identifier] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(207), + [anon_sym_function] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(209), + [anon_sym_for] = ACTIONS(209), + [anon_sym_while] = ACTIONS(209), + [anon_sym_repeat] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(207), [sym__number_literal] = ACTIONS(209), [anon_sym_SQUOTE] = ACTIONS(207), @@ -10919,56 +11070,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(207), [sym__raw_string_literal] = ACTIONS(207), [sym__external_else] = ACTIONS(207), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(207), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [60] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [62] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(211), [sym_identifier] = ACTIONS(213), [anon_sym_BSLASH] = ACTIONS(211), [anon_sym_function] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(213), [anon_sym_for] = ACTIONS(213), [anon_sym_while] = ACTIONS(213), [anon_sym_repeat] = ACTIONS(213), [anon_sym_QMARK] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(211), [sym__number_literal] = ACTIONS(213), [anon_sym_SQUOTE] = ACTIONS(211), @@ -10993,56 +11144,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(211), [sym__raw_string_literal] = ACTIONS(211), [sym__external_else] = ACTIONS(211), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(211), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [61] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [63] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(215), [sym_identifier] = ACTIONS(217), [anon_sym_BSLASH] = ACTIONS(215), [anon_sym_function] = ACTIONS(217), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(217), [anon_sym_for] = ACTIONS(217), [anon_sym_while] = ACTIONS(217), [anon_sym_repeat] = ACTIONS(217), [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(217), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(215), [sym__number_literal] = ACTIONS(217), [anon_sym_SQUOTE] = ACTIONS(215), @@ -11067,56 +11218,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(215), [sym__raw_string_literal] = ACTIONS(215), [sym__external_else] = ACTIONS(215), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(215), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [62] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [64] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(149), + [sym_identifier] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(149), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_TILDE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_LT_DASH] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_COLON_EQ] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(147), + [anon_sym_DASH_GT_GT] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_PIPE_PIPE] = ACTIONS(149), + [anon_sym_AMP_AMP] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(149), + [anon_sym_PIPE_GT] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(149), + [sym__number_literal] = ACTIONS(147), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_dots] = ACTIONS(147), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(147), + [sym_next] = ACTIONS(147), + [sym_break] = ACTIONS(147), + [sym_true] = ACTIONS(147), + [sym_false] = ACTIONS(147), + [sym_null] = ACTIONS(147), + [sym_inf] = ACTIONS(147), + [sym_nan] = ACTIONS(147), + [anon_sym_NA] = ACTIONS(147), + [anon_sym_NA_integer_] = ACTIONS(147), + [anon_sym_NA_real_] = ACTIONS(147), + [anon_sym_NA_complex_] = ACTIONS(147), + [anon_sym_NA_character_] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(149), + [sym__semicolon] = ACTIONS(149), + [sym__raw_string_literal] = ACTIONS(149), + [sym__external_else] = ACTIONS(149), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(149), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [65] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(219), [sym_identifier] = ACTIONS(221), [anon_sym_BSLASH] = ACTIONS(219), [anon_sym_function] = ACTIONS(221), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(221), [anon_sym_for] = ACTIONS(221), [anon_sym_while] = ACTIONS(221), [anon_sym_repeat] = ACTIONS(221), [anon_sym_QMARK] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(221), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(219), [sym__number_literal] = ACTIONS(221), [anon_sym_SQUOTE] = ACTIONS(219), @@ -11141,130 +11366,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(219), [sym__raw_string_literal] = ACTIONS(219), [sym__external_else] = ACTIONS(219), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(219), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), - }, - [63] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(145), - [sym_identifier] = ACTIONS(143), - [anon_sym_BSLASH] = ACTIONS(145), - [anon_sym_function] = ACTIONS(143), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(143), - [anon_sym_for] = ACTIONS(143), - [anon_sym_while] = ACTIONS(143), - [anon_sym_repeat] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(145), - [sym__number_literal] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_dots] = ACTIONS(143), - [sym_dot_dot_i] = ACTIONS(145), - [sym_return] = ACTIONS(143), - [sym_next] = ACTIONS(143), - [sym_break] = ACTIONS(143), - [sym_true] = ACTIONS(143), - [sym_false] = ACTIONS(143), - [sym_null] = ACTIONS(143), - [sym_inf] = ACTIONS(143), - [sym_nan] = ACTIONS(143), - [anon_sym_NA] = ACTIONS(143), - [anon_sym_NA_integer_] = ACTIONS(143), - [anon_sym_NA_real_] = ACTIONS(143), - [anon_sym_NA_complex_] = ACTIONS(143), - [anon_sym_NA_character_] = ACTIONS(143), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(145), - [sym__semicolon] = ACTIONS(145), - [sym__raw_string_literal] = ACTIONS(145), - [sym__external_else] = ACTIONS(145), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(145), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [64] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [66] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(223), [sym_identifier] = ACTIONS(225), [anon_sym_BSLASH] = ACTIONS(223), [anon_sym_function] = ACTIONS(225), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(225), [anon_sym_for] = ACTIONS(225), [anon_sym_while] = ACTIONS(225), [anon_sym_repeat] = ACTIONS(225), [anon_sym_QMARK] = ACTIONS(223), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(223), [sym__number_literal] = ACTIONS(225), [anon_sym_SQUOTE] = ACTIONS(223), @@ -11289,56 +11440,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(223), [sym__raw_string_literal] = ACTIONS(223), [sym__external_else] = ACTIONS(223), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(223), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [65] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), + [67] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), [ts_builtin_sym_end] = ACTIONS(227), [sym_identifier] = ACTIONS(229), [anon_sym_BSLASH] = ACTIONS(227), [anon_sym_function] = ACTIONS(229), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(229), [anon_sym_for] = ACTIONS(229), [anon_sym_while] = ACTIONS(229), [anon_sym_repeat] = ACTIONS(229), [anon_sym_QMARK] = ACTIONS(227), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(227), [sym__number_literal] = ACTIONS(229), [anon_sym_SQUOTE] = ACTIONS(227), @@ -11363,29 +11514,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(227), [sym__raw_string_literal] = ACTIONS(227), [sym__external_else] = ACTIONS(227), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(227), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [66] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(231), - [anon_sym_BSLASH] = ACTIONS(233), - [anon_sym_function] = ACTIONS(231), + [68] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(231), + [sym_identifier] = ACTIONS(233), + [anon_sym_BSLASH] = ACTIONS(231), + [anon_sym_function] = ACTIONS(233), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(231), - [anon_sym_for] = ACTIONS(231), - [anon_sym_while] = ACTIONS(231), - [anon_sym_repeat] = ACTIONS(231), - [anon_sym_QMARK] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_for] = ACTIONS(233), + [anon_sym_while] = ACTIONS(233), + [anon_sym_repeat] = ACTIONS(233), + [anon_sym_QMARK] = ACTIONS(231), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(233), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -11412,54 +11564,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(233), - [sym__number_literal] = ACTIONS(231), - [anon_sym_SQUOTE] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym_dots] = ACTIONS(231), - [sym_dot_dot_i] = ACTIONS(233), - [sym_return] = ACTIONS(231), - [sym_next] = ACTIONS(231), - [sym_break] = ACTIONS(231), - [sym_true] = ACTIONS(231), - [sym_false] = ACTIONS(231), - [sym_null] = ACTIONS(231), - [sym_inf] = ACTIONS(231), - [sym_nan] = ACTIONS(231), - [anon_sym_NA] = ACTIONS(231), - [anon_sym_NA_integer_] = ACTIONS(231), - [anon_sym_NA_real_] = ACTIONS(231), - [anon_sym_NA_complex_] = ACTIONS(231), - [anon_sym_NA_character_] = ACTIONS(231), + [sym__hex_literal] = ACTIONS(231), + [sym__number_literal] = ACTIONS(233), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_dots] = ACTIONS(233), + [sym_dot_dot_i] = ACTIONS(231), + [sym_return] = ACTIONS(233), + [sym_next] = ACTIONS(233), + [sym_break] = ACTIONS(233), + [sym_true] = ACTIONS(233), + [sym_false] = ACTIONS(233), + [sym_null] = ACTIONS(233), + [sym_inf] = ACTIONS(233), + [sym_nan] = ACTIONS(233), + [anon_sym_NA] = ACTIONS(233), + [anon_sym_NA_integer_] = ACTIONS(233), + [anon_sym_NA_real_] = ACTIONS(233), + [anon_sym_NA_complex_] = ACTIONS(233), + [anon_sym_NA_character_] = ACTIONS(233), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(233), - [sym__semicolon] = ACTIONS(233), - [sym__raw_string_literal] = ACTIONS(233), - [sym__external_else] = ACTIONS(233), + [sym__newline] = ACTIONS(231), + [sym__semicolon] = ACTIONS(231), + [sym__raw_string_literal] = ACTIONS(231), + [sym__external_else] = ACTIONS(231), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(233), - [sym__external_close_brace] = ACTIONS(233), + [sym__external_open_brace] = ACTIONS(231), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, - [67] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(235), - [anon_sym_BSLASH] = ACTIONS(237), - [anon_sym_function] = ACTIONS(235), + [69] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(235), + [sym_identifier] = ACTIONS(237), + [anon_sym_BSLASH] = ACTIONS(235), + [anon_sym_function] = ACTIONS(237), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(235), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(235), - [anon_sym_repeat] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_if] = ACTIONS(237), + [anon_sym_for] = ACTIONS(237), + [anon_sym_while] = ACTIONS(237), + [anon_sym_repeat] = ACTIONS(237), + [anon_sym_QMARK] = ACTIONS(235), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -11486,276 +11638,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(237), - [sym__number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_dots] = ACTIONS(235), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(235), - [sym_next] = ACTIONS(235), - [sym_break] = ACTIONS(235), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_null] = ACTIONS(235), - [sym_inf] = ACTIONS(235), - [sym_nan] = ACTIONS(235), - [anon_sym_NA] = ACTIONS(235), - [anon_sym_NA_integer_] = ACTIONS(235), - [anon_sym_NA_real_] = ACTIONS(235), - [anon_sym_NA_complex_] = ACTIONS(235), - [anon_sym_NA_character_] = ACTIONS(235), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - [sym__semicolon] = ACTIONS(237), - [sym__raw_string_literal] = ACTIONS(237), - [sym__external_else] = ACTIONS(237), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(237), - [sym__external_close_brace] = ACTIONS(237), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [68] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(235), - [anon_sym_BSLASH] = ACTIONS(237), - [anon_sym_function] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_if] = ACTIONS(235), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(235), - [anon_sym_repeat] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_LT_LT_DASH] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(237), - [anon_sym_DASH_GT] = ACTIONS(235), - [anon_sym_DASH_GT_GT] = ACTIONS(237), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(237), - [sym__number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_dots] = ACTIONS(235), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(235), - [sym_next] = ACTIONS(235), - [sym_break] = ACTIONS(235), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_null] = ACTIONS(235), - [sym_inf] = ACTIONS(235), - [sym_nan] = ACTIONS(235), - [anon_sym_NA] = ACTIONS(235), - [anon_sym_NA_integer_] = ACTIONS(235), - [anon_sym_NA_real_] = ACTIONS(235), - [anon_sym_NA_complex_] = ACTIONS(235), - [anon_sym_NA_character_] = ACTIONS(235), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - [sym__semicolon] = ACTIONS(237), - [sym__raw_string_literal] = ACTIONS(237), - [sym__external_else] = ACTIONS(237), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(237), - [sym__external_close_brace] = ACTIONS(237), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [69] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(235), - [anon_sym_BSLASH] = ACTIONS(237), - [anon_sym_function] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_if] = ACTIONS(235), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(235), - [anon_sym_repeat] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_LT_LT_DASH] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(237), - [anon_sym_DASH_GT] = ACTIONS(235), - [anon_sym_DASH_GT_GT] = ACTIONS(237), - [anon_sym_PIPE] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(235), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(237), - [sym__number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_dots] = ACTIONS(235), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(235), - [sym_next] = ACTIONS(235), - [sym_break] = ACTIONS(235), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_null] = ACTIONS(235), - [sym_inf] = ACTIONS(235), - [sym_nan] = ACTIONS(235), - [anon_sym_NA] = ACTIONS(235), - [anon_sym_NA_integer_] = ACTIONS(235), - [anon_sym_NA_real_] = ACTIONS(235), - [anon_sym_NA_complex_] = ACTIONS(235), - [anon_sym_NA_character_] = ACTIONS(235), + [sym__hex_literal] = ACTIONS(235), + [sym__number_literal] = ACTIONS(237), + [anon_sym_SQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym_dots] = ACTIONS(237), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(237), + [sym_next] = ACTIONS(237), + [sym_break] = ACTIONS(237), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [sym_null] = ACTIONS(237), + [sym_inf] = ACTIONS(237), + [sym_nan] = ACTIONS(237), + [anon_sym_NA] = ACTIONS(237), + [anon_sym_NA_integer_] = ACTIONS(237), + [anon_sym_NA_real_] = ACTIONS(237), + [anon_sym_NA_complex_] = ACTIONS(237), + [anon_sym_NA_character_] = ACTIONS(237), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - [sym__semicolon] = ACTIONS(237), - [sym__raw_string_literal] = ACTIONS(237), - [sym__external_else] = ACTIONS(237), + [sym__newline] = ACTIONS(235), + [sym__semicolon] = ACTIONS(235), + [sym__raw_string_literal] = ACTIONS(235), + [sym__external_else] = ACTIONS(235), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(237), - [sym__external_close_brace] = ACTIONS(237), + [sym__external_open_brace] = ACTIONS(235), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, [70] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(235), - [anon_sym_BSLASH] = ACTIONS(237), - [anon_sym_function] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_if] = ACTIONS(235), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(235), - [anon_sym_repeat] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_LT_LT_DASH] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(237), - [anon_sym_DASH_GT] = ACTIONS(235), - [anon_sym_DASH_GT_GT] = ACTIONS(237), - [anon_sym_PIPE] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(235), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_LT] = ACTIONS(235), - [anon_sym_LT_EQ] = ACTIONS(237), - [anon_sym_GT] = ACTIONS(235), - [anon_sym_GT_EQ] = ACTIONS(237), - [anon_sym_EQ_EQ] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_SLASH] = ACTIONS(237), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(237), - [anon_sym_PIPE_GT] = ACTIONS(237), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(237), - [sym__number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_dots] = ACTIONS(235), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(235), - [sym_next] = ACTIONS(235), - [sym_break] = ACTIONS(235), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_null] = ACTIONS(235), - [sym_inf] = ACTIONS(235), - [sym_nan] = ACTIONS(235), - [anon_sym_NA] = ACTIONS(235), - [anon_sym_NA_integer_] = ACTIONS(235), - [anon_sym_NA_real_] = ACTIONS(235), - [anon_sym_NA_complex_] = ACTIONS(235), - [anon_sym_NA_character_] = ACTIONS(235), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - [sym__semicolon] = ACTIONS(237), - [sym__raw_string_literal] = ACTIONS(237), - [sym__external_else] = ACTIONS(237), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(237), - [sym__external_close_brace] = ACTIONS(237), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [71] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(239), - [anon_sym_BSLASH] = ACTIONS(241), - [anon_sym_function] = ACTIONS(239), + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(239), + [sym_identifier] = ACTIONS(241), + [anon_sym_BSLASH] = ACTIONS(239), + [anon_sym_function] = ACTIONS(241), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(239), - [anon_sym_for] = ACTIONS(239), - [anon_sym_while] = ACTIONS(239), - [anon_sym_repeat] = ACTIONS(239), - [anon_sym_QMARK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(241), + [anon_sym_for] = ACTIONS(241), + [anon_sym_while] = ACTIONS(241), + [anon_sym_repeat] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(239), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(239), + [anon_sym_BANG] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -11782,80 +11712,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(241), - [sym__number_literal] = ACTIONS(239), - [anon_sym_SQUOTE] = ACTIONS(241), - [anon_sym_DQUOTE] = ACTIONS(241), - [sym_dots] = ACTIONS(239), - [sym_dot_dot_i] = ACTIONS(241), - [sym_return] = ACTIONS(239), - [sym_next] = ACTIONS(239), - [sym_break] = ACTIONS(239), - [sym_true] = ACTIONS(239), - [sym_false] = ACTIONS(239), - [sym_null] = ACTIONS(239), - [sym_inf] = ACTIONS(239), - [sym_nan] = ACTIONS(239), - [anon_sym_NA] = ACTIONS(239), - [anon_sym_NA_integer_] = ACTIONS(239), - [anon_sym_NA_real_] = ACTIONS(239), - [anon_sym_NA_complex_] = ACTIONS(239), - [anon_sym_NA_character_] = ACTIONS(239), + [sym__hex_literal] = ACTIONS(239), + [sym__number_literal] = ACTIONS(241), + [anon_sym_SQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym_dots] = ACTIONS(241), + [sym_dot_dot_i] = ACTIONS(239), + [sym_return] = ACTIONS(241), + [sym_next] = ACTIONS(241), + [sym_break] = ACTIONS(241), + [sym_true] = ACTIONS(241), + [sym_false] = ACTIONS(241), + [sym_null] = ACTIONS(241), + [sym_inf] = ACTIONS(241), + [sym_nan] = ACTIONS(241), + [anon_sym_NA] = ACTIONS(241), + [anon_sym_NA_integer_] = ACTIONS(241), + [anon_sym_NA_real_] = ACTIONS(241), + [anon_sym_NA_complex_] = ACTIONS(241), + [anon_sym_NA_character_] = ACTIONS(241), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(241), - [sym__semicolon] = ACTIONS(241), - [sym__raw_string_literal] = ACTIONS(241), - [sym__external_else] = ACTIONS(241), + [sym__newline] = ACTIONS(239), + [sym__semicolon] = ACTIONS(239), + [sym__raw_string_literal] = ACTIONS(239), + [sym__external_else] = ACTIONS(239), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(241), - [sym__external_close_brace] = ACTIONS(241), + [sym__external_open_brace] = ACTIONS(239), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, - [72] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), + [71] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(243), [anon_sym_BSLASH] = ACTIONS(245), [anon_sym_function] = ACTIONS(243), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(243), [anon_sym_for] = ACTIONS(243), [anon_sym_while] = ACTIONS(243), [anon_sym_repeat] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(245), [sym__number_literal] = ACTIONS(243), [anon_sym_SQUOTE] = ACTIONS(245), @@ -11880,30 +11809,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(245), [sym__raw_string_literal] = ACTIONS(245), [sym__external_else] = ACTIONS(245), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(245), [sym__external_close_brace] = ACTIONS(245), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [72] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(149), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(149), + [sym__number_literal] = ACTIONS(147), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_dots] = ACTIONS(147), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(147), + [sym_next] = ACTIONS(147), + [sym_break] = ACTIONS(147), + [sym_true] = ACTIONS(147), + [sym_false] = ACTIONS(147), + [sym_null] = ACTIONS(147), + [sym_inf] = ACTIONS(147), + [sym_nan] = ACTIONS(147), + [anon_sym_NA] = ACTIONS(147), + [anon_sym_NA_integer_] = ACTIONS(147), + [anon_sym_NA_real_] = ACTIONS(147), + [anon_sym_NA_complex_] = ACTIONS(147), + [anon_sym_NA_character_] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(149), + [sym__semicolon] = ACTIONS(149), + [sym__raw_string_literal] = ACTIONS(149), + [sym__external_else] = ACTIONS(149), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(149), + [sym__external_close_brace] = ACTIONS(149), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, [73] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(149), - [anon_sym_BSLASH] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(153), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -11930,66 +11934,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(147), - [sym__number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym_dots] = ACTIONS(149), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(149), - [sym_next] = ACTIONS(149), - [sym_break] = ACTIONS(149), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_null] = ACTIONS(149), - [sym_inf] = ACTIONS(149), - [sym_nan] = ACTIONS(149), - [anon_sym_NA] = ACTIONS(149), - [anon_sym_NA_integer_] = ACTIONS(149), - [anon_sym_NA_real_] = ACTIONS(149), - [anon_sym_NA_complex_] = ACTIONS(149), - [anon_sym_NA_character_] = ACTIONS(149), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(147), - [sym__semicolon] = ACTIONS(147), - [sym__raw_string_literal] = ACTIONS(147), - [sym__external_else] = ACTIONS(147), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(147), - [sym__external_close_brace] = ACTIONS(147), + [sym__external_open_brace] = ACTIONS(151), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, [74] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(147), - [sym_identifier] = ACTIONS(149), - [anon_sym_BSLASH] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_if] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_QMARK] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(149), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_TILDE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(147), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(147), - [anon_sym_LT_LT_DASH] = ACTIONS(147), - [anon_sym_COLON_EQ] = ACTIONS(147), - [anon_sym_DASH_GT] = ACTIONS(149), - [anon_sym_DASH_GT_GT] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT_DASH] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_COLON_EQ] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(147), + [anon_sym_DASH_GT_GT] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_PIPE_PIPE] = ACTIONS(149), + [anon_sym_AMP_AMP] = ACTIONS(149), [anon_sym_LT] = ACTIONS(33), [anon_sym_LT_EQ] = ACTIONS(35), [anon_sym_GT] = ACTIONS(33), @@ -12005,64 +12007,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(147), - [sym__number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym_dots] = ACTIONS(149), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(149), - [sym_next] = ACTIONS(149), - [sym_break] = ACTIONS(149), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_null] = ACTIONS(149), - [sym_inf] = ACTIONS(149), - [sym_nan] = ACTIONS(149), - [anon_sym_NA] = ACTIONS(149), - [anon_sym_NA_integer_] = ACTIONS(149), - [anon_sym_NA_real_] = ACTIONS(149), - [anon_sym_NA_complex_] = ACTIONS(149), - [anon_sym_NA_character_] = ACTIONS(149), + [sym__hex_literal] = ACTIONS(149), + [sym__number_literal] = ACTIONS(147), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_dots] = ACTIONS(147), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(147), + [sym_next] = ACTIONS(147), + [sym_break] = ACTIONS(147), + [sym_true] = ACTIONS(147), + [sym_false] = ACTIONS(147), + [sym_null] = ACTIONS(147), + [sym_inf] = ACTIONS(147), + [sym_nan] = ACTIONS(147), + [anon_sym_NA] = ACTIONS(147), + [anon_sym_NA_integer_] = ACTIONS(147), + [anon_sym_NA_real_] = ACTIONS(147), + [anon_sym_NA_complex_] = ACTIONS(147), + [anon_sym_NA_character_] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(147), - [sym__semicolon] = ACTIONS(147), - [sym__raw_string_literal] = ACTIONS(147), - [sym__external_else] = ACTIONS(147), + [sym__newline] = ACTIONS(149), + [sym__semicolon] = ACTIONS(149), + [sym__raw_string_literal] = ACTIONS(149), + [sym__external_else] = ACTIONS(149), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(147), + [sym__external_open_brace] = ACTIONS(149), + [sym__external_close_brace] = ACTIONS(149), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, [75] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(149), - [anon_sym_BSLASH] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_if] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_QMARK] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(149), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_TILDE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_LT_DASH] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_COLON_EQ] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(147), + [anon_sym_DASH_GT_GT] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_PIPE_PIPE] = ACTIONS(149), + [anon_sym_AMP_AMP] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(149), + [anon_sym_PIPE_GT] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(149), + [sym__number_literal] = ACTIONS(147), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_dots] = ACTIONS(147), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(147), + [sym_next] = ACTIONS(147), + [sym_break] = ACTIONS(147), + [sym_true] = ACTIONS(147), + [sym_false] = ACTIONS(147), + [sym_null] = ACTIONS(147), + [sym_inf] = ACTIONS(147), + [sym_nan] = ACTIONS(147), + [anon_sym_NA] = ACTIONS(147), + [anon_sym_NA_integer_] = ACTIONS(147), + [anon_sym_NA_real_] = ACTIONS(147), + [anon_sym_NA_complex_] = ACTIONS(147), + [anon_sym_NA_character_] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(149), + [sym__semicolon] = ACTIONS(149), + [sym__raw_string_literal] = ACTIONS(149), + [sym__external_else] = ACTIONS(149), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(149), + [sym__external_close_brace] = ACTIONS(149), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [76] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(149), + [sym_identifier] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(149), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_TILDE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(147), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(147), - [anon_sym_LT_LT_DASH] = ACTIONS(147), - [anon_sym_COLON_EQ] = ACTIONS(147), - [anon_sym_DASH_GT] = ACTIONS(149), - [anon_sym_DASH_GT_GT] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_AMP] = ACTIONS(149), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_AMP_AMP] = ACTIONS(147), + [anon_sym_LT_DASH] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_COLON_EQ] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(147), + [anon_sym_DASH_GT_GT] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_PIPE_PIPE] = ACTIONS(149), + [anon_sym_AMP_AMP] = ACTIONS(149), [anon_sym_LT] = ACTIONS(97), [anon_sym_LT_EQ] = ACTIONS(99), [anon_sym_GT] = ACTIONS(97), @@ -12078,135 +12156,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(147), - [sym__number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym_dots] = ACTIONS(149), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(149), - [sym_next] = ACTIONS(149), - [sym_break] = ACTIONS(149), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_null] = ACTIONS(149), - [sym_inf] = ACTIONS(149), - [sym_nan] = ACTIONS(149), - [anon_sym_NA] = ACTIONS(149), - [anon_sym_NA_integer_] = ACTIONS(149), - [anon_sym_NA_real_] = ACTIONS(149), - [anon_sym_NA_complex_] = ACTIONS(149), - [anon_sym_NA_character_] = ACTIONS(149), + [sym__hex_literal] = ACTIONS(149), + [sym__number_literal] = ACTIONS(147), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_dots] = ACTIONS(147), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(147), + [sym_next] = ACTIONS(147), + [sym_break] = ACTIONS(147), + [sym_true] = ACTIONS(147), + [sym_false] = ACTIONS(147), + [sym_null] = ACTIONS(147), + [sym_inf] = ACTIONS(147), + [sym_nan] = ACTIONS(147), + [anon_sym_NA] = ACTIONS(147), + [anon_sym_NA_integer_] = ACTIONS(147), + [anon_sym_NA_real_] = ACTIONS(147), + [anon_sym_NA_complex_] = ACTIONS(147), + [anon_sym_NA_character_] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(147), - [sym__semicolon] = ACTIONS(147), - [sym__raw_string_literal] = ACTIONS(147), - [sym__external_else] = ACTIONS(147), + [sym__newline] = ACTIONS(149), + [sym__semicolon] = ACTIONS(149), + [sym__raw_string_literal] = ACTIONS(149), + [sym__external_else] = ACTIONS(149), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(147), - [sym__external_close_brace] = ACTIONS(147), + [sym__external_open_brace] = ACTIONS(149), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, - [76] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(149), - [anon_sym_BSLASH] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_if] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_QMARK] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_LT_DASH] = ACTIONS(147), - [anon_sym_LT_LT_DASH] = ACTIONS(147), - [anon_sym_COLON_EQ] = ACTIONS(147), - [anon_sym_DASH_GT] = ACTIONS(149), - [anon_sym_DASH_GT_GT] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_AMP] = ACTIONS(149), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(147), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(147), - [anon_sym_PIPE_GT] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(147), - [sym__number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym_dots] = ACTIONS(149), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(149), - [sym_next] = ACTIONS(149), - [sym_break] = ACTIONS(149), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_null] = ACTIONS(149), - [sym_inf] = ACTIONS(149), - [sym_nan] = ACTIONS(149), - [anon_sym_NA] = ACTIONS(149), - [anon_sym_NA_integer_] = ACTIONS(149), - [anon_sym_NA_real_] = ACTIONS(149), - [anon_sym_NA_complex_] = ACTIONS(149), - [anon_sym_NA_character_] = ACTIONS(149), + [77] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(207), + [anon_sym_function] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(209), + [anon_sym_for] = ACTIONS(209), + [anon_sym_while] = ACTIONS(209), + [anon_sym_repeat] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(207), + [sym__number_literal] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(207), + [sym_dots] = ACTIONS(209), + [sym_dot_dot_i] = ACTIONS(207), + [sym_return] = ACTIONS(209), + [sym_next] = ACTIONS(209), + [sym_break] = ACTIONS(209), + [sym_true] = ACTIONS(209), + [sym_false] = ACTIONS(209), + [sym_null] = ACTIONS(209), + [sym_inf] = ACTIONS(209), + [sym_nan] = ACTIONS(209), + [anon_sym_NA] = ACTIONS(209), + [anon_sym_NA_integer_] = ACTIONS(209), + [anon_sym_NA_real_] = ACTIONS(209), + [anon_sym_NA_complex_] = ACTIONS(209), + [anon_sym_NA_character_] = ACTIONS(209), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(147), - [sym__semicolon] = ACTIONS(147), - [sym__raw_string_literal] = ACTIONS(147), - [sym__external_else] = ACTIONS(147), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(147), - [sym__external_close_brace] = ACTIONS(147), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__newline] = ACTIONS(207), + [sym__semicolon] = ACTIONS(207), + [sym__raw_string_literal] = ACTIONS(207), + [sym__external_else] = ACTIONS(207), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(207), + [sym__external_close_brace] = ACTIONS(207), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [77] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(153), + [78] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(149), + [sym_identifier] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(149), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_TILDE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(147), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_LT_DASH] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_COLON_EQ] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(147), + [anon_sym_DASH_GT_GT] = ACTIONS(149), [anon_sym_PIPE] = ACTIONS(89), [anon_sym_AMP] = ACTIONS(91), [anon_sym_PIPE_PIPE] = ACTIONS(93), @@ -12226,54 +12304,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), + [sym__hex_literal] = ACTIONS(149), + [sym__number_literal] = ACTIONS(147), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_dots] = ACTIONS(147), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(147), + [sym_next] = ACTIONS(147), + [sym_break] = ACTIONS(147), + [sym_true] = ACTIONS(147), + [sym_false] = ACTIONS(147), + [sym_null] = ACTIONS(147), + [sym_inf] = ACTIONS(147), + [sym_nan] = ACTIONS(147), + [anon_sym_NA] = ACTIONS(147), + [anon_sym_NA_integer_] = ACTIONS(147), + [anon_sym_NA_real_] = ACTIONS(147), + [anon_sym_NA_complex_] = ACTIONS(147), + [anon_sym_NA_character_] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), + [sym__newline] = ACTIONS(149), + [sym__semicolon] = ACTIONS(149), + [sym__raw_string_literal] = ACTIONS(149), + [sym__external_else] = ACTIONS(149), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_brace] = ACTIONS(149), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, - [78] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), + [79] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(149), + [sym_identifier] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(149), + [anon_sym_function] = ACTIONS(147), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(149), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(147), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -12300,2670 +12378,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), + [sym__hex_literal] = ACTIONS(149), + [sym__number_literal] = ACTIONS(147), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_dots] = ACTIONS(147), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(147), + [sym_next] = ACTIONS(147), + [sym_break] = ACTIONS(147), + [sym_true] = ACTIONS(147), + [sym_false] = ACTIONS(147), + [sym_null] = ACTIONS(147), + [sym_inf] = ACTIONS(147), + [sym_nan] = ACTIONS(147), + [anon_sym_NA] = ACTIONS(147), + [anon_sym_NA_integer_] = ACTIONS(147), + [anon_sym_NA_real_] = ACTIONS(147), + [anon_sym_NA_complex_] = ACTIONS(147), + [anon_sym_NA_character_] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), + [sym__newline] = ACTIONS(149), + [sym__semicolon] = ACTIONS(149), + [sym__raw_string_literal] = ACTIONS(149), + [sym__external_else] = ACTIONS(149), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_brace] = ACTIONS(149), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, - [79] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [80] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ] = ACTIONS(151), - [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [81] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [82] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [83] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [84] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [85] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ] = ACTIONS(151), - [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [86] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ] = ACTIONS(151), - [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [87] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ] = ACTIONS(151), - [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(151), - [anon_sym_PIPE_GT] = ACTIONS(151), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [88] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ] = ACTIONS(151), - [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(151), - [anon_sym_PIPE_GT] = ACTIONS(151), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [89] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ] = ACTIONS(151), - [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(151), - [anon_sym_PIPE_GT] = ACTIONS(151), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [90] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(157), - [anon_sym_BSLASH] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(157), - [anon_sym_for] = ACTIONS(157), - [anon_sym_while] = ACTIONS(157), - [anon_sym_repeat] = ACTIONS(157), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(155), - [sym__number_literal] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(155), - [sym_dots] = ACTIONS(157), - [sym_dot_dot_i] = ACTIONS(155), - [sym_return] = ACTIONS(157), - [sym_next] = ACTIONS(157), - [sym_break] = ACTIONS(157), - [sym_true] = ACTIONS(157), - [sym_false] = ACTIONS(157), - [sym_null] = ACTIONS(157), - [sym_inf] = ACTIONS(157), - [sym_nan] = ACTIONS(157), - [anon_sym_NA] = ACTIONS(157), - [anon_sym_NA_integer_] = ACTIONS(157), - [anon_sym_NA_real_] = ACTIONS(157), - [anon_sym_NA_complex_] = ACTIONS(157), - [anon_sym_NA_character_] = ACTIONS(157), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(155), - [sym__semicolon] = ACTIONS(155), - [sym__raw_string_literal] = ACTIONS(155), - [sym__external_else] = ACTIONS(155), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(155), - [sym__external_close_brace] = ACTIONS(155), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [91] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(161), - [anon_sym_BSLASH] = ACTIONS(159), - [anon_sym_function] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(161), - [anon_sym_for] = ACTIONS(161), - [anon_sym_while] = ACTIONS(161), - [anon_sym_repeat] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(159), - [sym__number_literal] = ACTIONS(161), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(159), - [sym_dots] = ACTIONS(161), - [sym_dot_dot_i] = ACTIONS(159), - [sym_return] = ACTIONS(161), - [sym_next] = ACTIONS(161), - [sym_break] = ACTIONS(161), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_inf] = ACTIONS(161), - [sym_nan] = ACTIONS(161), - [anon_sym_NA] = ACTIONS(161), - [anon_sym_NA_integer_] = ACTIONS(161), - [anon_sym_NA_real_] = ACTIONS(161), - [anon_sym_NA_complex_] = ACTIONS(161), - [anon_sym_NA_character_] = ACTIONS(161), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(159), - [sym__semicolon] = ACTIONS(159), - [sym__raw_string_literal] = ACTIONS(159), - [sym__external_else] = ACTIONS(159), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(159), - [sym__external_close_brace] = ACTIONS(159), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [92] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(163), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [93] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(163), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [94] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(163), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [95] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(163), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [96] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(163), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [97] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(163), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [98] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(163), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [99] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(163), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [100] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(163), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [101] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(163), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [102] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(163), - [anon_sym_PIPE_GT] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(163), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [103] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(163), - [anon_sym_PIPE_GT] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(163), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [104] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(163), - [anon_sym_PIPE_GT] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(163), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [105] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(167), - [anon_sym_function] = ACTIONS(169), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(169), - [anon_sym_for] = ACTIONS(169), - [anon_sym_while] = ACTIONS(169), - [anon_sym_repeat] = ACTIONS(169), - [anon_sym_QMARK] = ACTIONS(167), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(167), - [sym__number_literal] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(167), - [sym_dots] = ACTIONS(169), - [sym_dot_dot_i] = ACTIONS(167), - [sym_return] = ACTIONS(169), - [sym_next] = ACTIONS(169), - [sym_break] = ACTIONS(169), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [sym_null] = ACTIONS(169), - [sym_inf] = ACTIONS(169), - [sym_nan] = ACTIONS(169), - [anon_sym_NA] = ACTIONS(169), - [anon_sym_NA_integer_] = ACTIONS(169), - [anon_sym_NA_real_] = ACTIONS(169), - [anon_sym_NA_complex_] = ACTIONS(169), - [anon_sym_NA_character_] = ACTIONS(169), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(167), - [sym__semicolon] = ACTIONS(167), - [sym__raw_string_literal] = ACTIONS(167), - [sym__external_else] = ACTIONS(167), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(167), - [sym__external_close_brace] = ACTIONS(167), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [106] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(173), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_function] = ACTIONS(173), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(173), - [anon_sym_for] = ACTIONS(173), - [anon_sym_while] = ACTIONS(173), - [anon_sym_repeat] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(171), - [sym__number_literal] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym_dots] = ACTIONS(173), - [sym_dot_dot_i] = ACTIONS(171), - [sym_return] = ACTIONS(173), - [sym_next] = ACTIONS(173), - [sym_break] = ACTIONS(173), - [sym_true] = ACTIONS(173), - [sym_false] = ACTIONS(173), - [sym_null] = ACTIONS(173), - [sym_inf] = ACTIONS(173), - [sym_nan] = ACTIONS(173), - [anon_sym_NA] = ACTIONS(173), - [anon_sym_NA_integer_] = ACTIONS(173), - [anon_sym_NA_real_] = ACTIONS(173), - [anon_sym_NA_complex_] = ACTIONS(173), - [anon_sym_NA_character_] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(171), - [sym__semicolon] = ACTIONS(171), - [sym__raw_string_literal] = ACTIONS(171), - [sym__external_else] = ACTIONS(171), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(171), - [sym__external_close_brace] = ACTIONS(171), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [107] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(177), - [anon_sym_BSLASH] = ACTIONS(175), - [anon_sym_function] = ACTIONS(177), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(177), - [anon_sym_for] = ACTIONS(177), - [anon_sym_while] = ACTIONS(177), - [anon_sym_repeat] = ACTIONS(177), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(175), - [sym__number_literal] = ACTIONS(177), - [anon_sym_SQUOTE] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(175), - [sym_dots] = ACTIONS(177), - [sym_dot_dot_i] = ACTIONS(175), - [sym_return] = ACTIONS(177), - [sym_next] = ACTIONS(177), - [sym_break] = ACTIONS(177), - [sym_true] = ACTIONS(177), - [sym_false] = ACTIONS(177), - [sym_null] = ACTIONS(177), - [sym_inf] = ACTIONS(177), - [sym_nan] = ACTIONS(177), - [anon_sym_NA] = ACTIONS(177), - [anon_sym_NA_integer_] = ACTIONS(177), - [anon_sym_NA_real_] = ACTIONS(177), - [anon_sym_NA_complex_] = ACTIONS(177), - [anon_sym_NA_character_] = ACTIONS(177), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(175), - [sym__semicolon] = ACTIONS(175), - [sym__raw_string_literal] = ACTIONS(175), - [sym__external_else] = ACTIONS(175), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(175), - [sym__external_close_brace] = ACTIONS(175), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [108] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(181), - [anon_sym_BSLASH] = ACTIONS(179), - [anon_sym_function] = ACTIONS(181), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(181), - [anon_sym_for] = ACTIONS(181), - [anon_sym_while] = ACTIONS(181), - [anon_sym_repeat] = ACTIONS(181), - [anon_sym_QMARK] = ACTIONS(179), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(181), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(179), - [sym__number_literal] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(179), - [sym_dots] = ACTIONS(181), - [sym_dot_dot_i] = ACTIONS(179), - [sym_return] = ACTIONS(181), - [sym_next] = ACTIONS(181), - [sym_break] = ACTIONS(181), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_inf] = ACTIONS(181), - [sym_nan] = ACTIONS(181), - [anon_sym_NA] = ACTIONS(181), - [anon_sym_NA_integer_] = ACTIONS(181), - [anon_sym_NA_real_] = ACTIONS(181), - [anon_sym_NA_complex_] = ACTIONS(181), - [anon_sym_NA_character_] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(179), - [sym__semicolon] = ACTIONS(179), - [sym__raw_string_literal] = ACTIONS(179), - [sym__external_else] = ACTIONS(179), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(179), - [sym__external_close_brace] = ACTIONS(179), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [109] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(185), - [anon_sym_BSLASH] = ACTIONS(183), - [anon_sym_function] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(185), - [anon_sym_for] = ACTIONS(185), - [anon_sym_while] = ACTIONS(185), - [anon_sym_repeat] = ACTIONS(185), - [anon_sym_QMARK] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(183), - [sym__number_literal] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_DQUOTE] = ACTIONS(183), - [sym_dots] = ACTIONS(185), - [sym_dot_dot_i] = ACTIONS(183), - [sym_return] = ACTIONS(185), - [sym_next] = ACTIONS(185), - [sym_break] = ACTIONS(185), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_inf] = ACTIONS(185), - [sym_nan] = ACTIONS(185), - [anon_sym_NA] = ACTIONS(185), - [anon_sym_NA_integer_] = ACTIONS(185), - [anon_sym_NA_real_] = ACTIONS(185), - [anon_sym_NA_complex_] = ACTIONS(185), - [anon_sym_NA_character_] = ACTIONS(185), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(183), - [sym__semicolon] = ACTIONS(183), - [sym__raw_string_literal] = ACTIONS(183), - [sym__external_else] = ACTIONS(183), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(183), - [sym__external_close_brace] = ACTIONS(183), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [110] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(189), - [anon_sym_BSLASH] = ACTIONS(187), - [anon_sym_function] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(189), - [anon_sym_for] = ACTIONS(189), - [anon_sym_while] = ACTIONS(189), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(187), - [sym__number_literal] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(187), - [sym_dots] = ACTIONS(189), - [sym_dot_dot_i] = ACTIONS(187), - [sym_return] = ACTIONS(189), - [sym_next] = ACTIONS(189), - [sym_break] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_inf] = ACTIONS(189), - [sym_nan] = ACTIONS(189), - [anon_sym_NA] = ACTIONS(189), - [anon_sym_NA_integer_] = ACTIONS(189), - [anon_sym_NA_real_] = ACTIONS(189), - [anon_sym_NA_complex_] = ACTIONS(189), - [anon_sym_NA_character_] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(187), - [sym__semicolon] = ACTIONS(187), - [sym__raw_string_literal] = ACTIONS(187), - [sym__external_else] = ACTIONS(187), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(187), - [sym__external_close_brace] = ACTIONS(187), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [111] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(193), - [anon_sym_BSLASH] = ACTIONS(191), - [anon_sym_function] = ACTIONS(193), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(193), - [anon_sym_for] = ACTIONS(193), - [anon_sym_while] = ACTIONS(193), - [anon_sym_repeat] = ACTIONS(193), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(193), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(191), - [sym__number_literal] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(191), - [sym_dots] = ACTIONS(193), - [sym_dot_dot_i] = ACTIONS(191), - [sym_return] = ACTIONS(193), - [sym_next] = ACTIONS(193), - [sym_break] = ACTIONS(193), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_inf] = ACTIONS(193), - [sym_nan] = ACTIONS(193), - [anon_sym_NA] = ACTIONS(193), - [anon_sym_NA_integer_] = ACTIONS(193), - [anon_sym_NA_real_] = ACTIONS(193), - [anon_sym_NA_complex_] = ACTIONS(193), - [anon_sym_NA_character_] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(191), - [sym__semicolon] = ACTIONS(191), - [sym__raw_string_literal] = ACTIONS(191), - [sym__external_else] = ACTIONS(191), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(191), - [sym__external_close_brace] = ACTIONS(191), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [112] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(197), - [anon_sym_BSLASH] = ACTIONS(195), - [anon_sym_function] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(197), - [anon_sym_for] = ACTIONS(197), - [anon_sym_while] = ACTIONS(197), - [anon_sym_repeat] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(195), - [sym__number_literal] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(195), - [sym_dots] = ACTIONS(197), - [sym_dot_dot_i] = ACTIONS(195), - [sym_return] = ACTIONS(197), - [sym_next] = ACTIONS(197), - [sym_break] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_inf] = ACTIONS(197), - [sym_nan] = ACTIONS(197), - [anon_sym_NA] = ACTIONS(197), - [anon_sym_NA_integer_] = ACTIONS(197), - [anon_sym_NA_real_] = ACTIONS(197), - [anon_sym_NA_complex_] = ACTIONS(197), - [anon_sym_NA_character_] = ACTIONS(197), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(195), - [sym__semicolon] = ACTIONS(195), - [sym__raw_string_literal] = ACTIONS(195), - [sym__external_else] = ACTIONS(195), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(195), - [sym__external_close_brace] = ACTIONS(195), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [113] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(199), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_else] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_close_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [114] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), + [80] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(205), [anon_sym_BSLASH] = ACTIONS(203), [anon_sym_function] = ACTIONS(205), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(205), [anon_sym_for] = ACTIONS(205), [anon_sym_while] = ACTIONS(205), [anon_sym_repeat] = ACTIONS(205), [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(203), [sym__number_literal] = ACTIONS(205), [anon_sym_SQUOTE] = ACTIONS(203), @@ -14984,208 +12471,578 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NA_complex_] = ACTIONS(205), [anon_sym_NA_character_] = ACTIONS(205), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(203), - [sym__semicolon] = ACTIONS(203), - [sym__raw_string_literal] = ACTIONS(203), - [sym__external_else] = ACTIONS(203), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(203), - [sym__external_close_brace] = ACTIONS(203), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__newline] = ACTIONS(203), + [sym__semicolon] = ACTIONS(203), + [sym__raw_string_literal] = ACTIONS(203), + [sym__external_else] = ACTIONS(203), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(203), + [sym__external_close_brace] = ACTIONS(203), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [81] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(241), + [anon_sym_BSLASH] = ACTIONS(239), + [anon_sym_function] = ACTIONS(241), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(241), + [anon_sym_for] = ACTIONS(241), + [anon_sym_while] = ACTIONS(241), + [anon_sym_repeat] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(239), + [sym__number_literal] = ACTIONS(241), + [anon_sym_SQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym_dots] = ACTIONS(241), + [sym_dot_dot_i] = ACTIONS(239), + [sym_return] = ACTIONS(241), + [sym_next] = ACTIONS(241), + [sym_break] = ACTIONS(241), + [sym_true] = ACTIONS(241), + [sym_false] = ACTIONS(241), + [sym_null] = ACTIONS(241), + [sym_inf] = ACTIONS(241), + [sym_nan] = ACTIONS(241), + [anon_sym_NA] = ACTIONS(241), + [anon_sym_NA_integer_] = ACTIONS(241), + [anon_sym_NA_real_] = ACTIONS(241), + [anon_sym_NA_complex_] = ACTIONS(241), + [anon_sym_NA_character_] = ACTIONS(241), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(239), + [sym__semicolon] = ACTIONS(239), + [sym__raw_string_literal] = ACTIONS(239), + [sym__external_else] = ACTIONS(239), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(239), + [sym__external_close_brace] = ACTIONS(239), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [82] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(237), + [anon_sym_BSLASH] = ACTIONS(235), + [anon_sym_function] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(237), + [anon_sym_for] = ACTIONS(237), + [anon_sym_while] = ACTIONS(237), + [anon_sym_repeat] = ACTIONS(237), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(235), + [sym__number_literal] = ACTIONS(237), + [anon_sym_SQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym_dots] = ACTIONS(237), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(237), + [sym_next] = ACTIONS(237), + [sym_break] = ACTIONS(237), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [sym_null] = ACTIONS(237), + [sym_inf] = ACTIONS(237), + [sym_nan] = ACTIONS(237), + [anon_sym_NA] = ACTIONS(237), + [anon_sym_NA_integer_] = ACTIONS(237), + [anon_sym_NA_real_] = ACTIONS(237), + [anon_sym_NA_complex_] = ACTIONS(237), + [anon_sym_NA_character_] = ACTIONS(237), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(235), + [sym__semicolon] = ACTIONS(235), + [sym__raw_string_literal] = ACTIONS(235), + [sym__external_else] = ACTIONS(235), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(235), + [sym__external_close_brace] = ACTIONS(235), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [83] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(233), + [anon_sym_BSLASH] = ACTIONS(231), + [anon_sym_function] = ACTIONS(233), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(233), + [anon_sym_for] = ACTIONS(233), + [anon_sym_while] = ACTIONS(233), + [anon_sym_repeat] = ACTIONS(233), + [anon_sym_QMARK] = ACTIONS(231), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(233), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(231), + [sym__number_literal] = ACTIONS(233), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_dots] = ACTIONS(233), + [sym_dot_dot_i] = ACTIONS(231), + [sym_return] = ACTIONS(233), + [sym_next] = ACTIONS(233), + [sym_break] = ACTIONS(233), + [sym_true] = ACTIONS(233), + [sym_false] = ACTIONS(233), + [sym_null] = ACTIONS(233), + [sym_inf] = ACTIONS(233), + [sym_nan] = ACTIONS(233), + [anon_sym_NA] = ACTIONS(233), + [anon_sym_NA_integer_] = ACTIONS(233), + [anon_sym_NA_real_] = ACTIONS(233), + [anon_sym_NA_complex_] = ACTIONS(233), + [anon_sym_NA_character_] = ACTIONS(233), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(231), + [sym__semicolon] = ACTIONS(231), + [sym__raw_string_literal] = ACTIONS(231), + [sym__external_else] = ACTIONS(231), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(231), + [sym__external_close_brace] = ACTIONS(231), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [84] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(229), + [anon_sym_BSLASH] = ACTIONS(227), + [anon_sym_function] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(229), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_repeat] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(227), + [sym__number_literal] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [sym_dots] = ACTIONS(229), + [sym_dot_dot_i] = ACTIONS(227), + [sym_return] = ACTIONS(229), + [sym_next] = ACTIONS(229), + [sym_break] = ACTIONS(229), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [sym_null] = ACTIONS(229), + [sym_inf] = ACTIONS(229), + [sym_nan] = ACTIONS(229), + [anon_sym_NA] = ACTIONS(229), + [anon_sym_NA_integer_] = ACTIONS(229), + [anon_sym_NA_real_] = ACTIONS(229), + [anon_sym_NA_complex_] = ACTIONS(229), + [anon_sym_NA_character_] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + [sym__semicolon] = ACTIONS(227), + [sym__raw_string_literal] = ACTIONS(227), + [sym__external_else] = ACTIONS(227), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(227), + [sym__external_close_brace] = ACTIONS(227), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [85] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(223), + [anon_sym_function] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(225), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_repeat] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(223), + [sym__number_literal] = ACTIONS(225), + [anon_sym_SQUOTE] = ACTIONS(223), + [anon_sym_DQUOTE] = ACTIONS(223), + [sym_dots] = ACTIONS(225), + [sym_dot_dot_i] = ACTIONS(223), + [sym_return] = ACTIONS(225), + [sym_next] = ACTIONS(225), + [sym_break] = ACTIONS(225), + [sym_true] = ACTIONS(225), + [sym_false] = ACTIONS(225), + [sym_null] = ACTIONS(225), + [sym_inf] = ACTIONS(225), + [sym_nan] = ACTIONS(225), + [anon_sym_NA] = ACTIONS(225), + [anon_sym_NA_integer_] = ACTIONS(225), + [anon_sym_NA_real_] = ACTIONS(225), + [anon_sym_NA_complex_] = ACTIONS(225), + [anon_sym_NA_character_] = ACTIONS(225), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(223), + [sym__semicolon] = ACTIONS(223), + [sym__raw_string_literal] = ACTIONS(223), + [sym__external_else] = ACTIONS(223), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(223), + [sym__external_close_brace] = ACTIONS(223), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [115] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(207), - [anon_sym_function] = ACTIONS(209), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(209), - [anon_sym_for] = ACTIONS(209), - [anon_sym_while] = ACTIONS(209), - [anon_sym_repeat] = ACTIONS(209), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(207), - [sym__number_literal] = ACTIONS(209), - [anon_sym_SQUOTE] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(207), - [sym_dots] = ACTIONS(209), - [sym_dot_dot_i] = ACTIONS(207), - [sym_return] = ACTIONS(209), - [sym_next] = ACTIONS(209), - [sym_break] = ACTIONS(209), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_null] = ACTIONS(209), - [sym_inf] = ACTIONS(209), - [sym_nan] = ACTIONS(209), - [anon_sym_NA] = ACTIONS(209), - [anon_sym_NA_integer_] = ACTIONS(209), - [anon_sym_NA_real_] = ACTIONS(209), - [anon_sym_NA_complex_] = ACTIONS(209), - [anon_sym_NA_character_] = ACTIONS(209), + [86] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(221), + [anon_sym_BSLASH] = ACTIONS(219), + [anon_sym_function] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(221), + [anon_sym_for] = ACTIONS(221), + [anon_sym_while] = ACTIONS(221), + [anon_sym_repeat] = ACTIONS(221), + [anon_sym_QMARK] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(219), + [sym__number_literal] = ACTIONS(221), + [anon_sym_SQUOTE] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(219), + [sym_dots] = ACTIONS(221), + [sym_dot_dot_i] = ACTIONS(219), + [sym_return] = ACTIONS(221), + [sym_next] = ACTIONS(221), + [sym_break] = ACTIONS(221), + [sym_true] = ACTIONS(221), + [sym_false] = ACTIONS(221), + [sym_null] = ACTIONS(221), + [sym_inf] = ACTIONS(221), + [sym_nan] = ACTIONS(221), + [anon_sym_NA] = ACTIONS(221), + [anon_sym_NA_integer_] = ACTIONS(221), + [anon_sym_NA_real_] = ACTIONS(221), + [anon_sym_NA_complex_] = ACTIONS(221), + [anon_sym_NA_character_] = ACTIONS(221), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(207), - [sym__semicolon] = ACTIONS(207), - [sym__raw_string_literal] = ACTIONS(207), - [sym__external_else] = ACTIONS(207), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(207), - [sym__external_close_brace] = ACTIONS(207), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__newline] = ACTIONS(219), + [sym__semicolon] = ACTIONS(219), + [sym__raw_string_literal] = ACTIONS(219), + [sym__external_else] = ACTIONS(219), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(219), + [sym__external_close_brace] = ACTIONS(219), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [116] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(211), - [anon_sym_function] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(213), - [anon_sym_for] = ACTIONS(213), - [anon_sym_while] = ACTIONS(213), - [anon_sym_repeat] = ACTIONS(213), - [anon_sym_QMARK] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(211), - [sym__number_literal] = ACTIONS(213), - [anon_sym_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [sym_dots] = ACTIONS(213), - [sym_dot_dot_i] = ACTIONS(211), - [sym_return] = ACTIONS(213), - [sym_next] = ACTIONS(213), - [sym_break] = ACTIONS(213), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [sym_null] = ACTIONS(213), - [sym_inf] = ACTIONS(213), - [sym_nan] = ACTIONS(213), - [anon_sym_NA] = ACTIONS(213), - [anon_sym_NA_integer_] = ACTIONS(213), - [anon_sym_NA_real_] = ACTIONS(213), - [anon_sym_NA_complex_] = ACTIONS(213), - [anon_sym_NA_character_] = ACTIONS(213), + [87] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(145), + [anon_sym_BSLASH] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(145), + [anon_sym_for] = ACTIONS(145), + [anon_sym_while] = ACTIONS(145), + [anon_sym_repeat] = ACTIONS(145), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(143), + [sym__number_literal] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(143), + [sym_dots] = ACTIONS(145), + [sym_dot_dot_i] = ACTIONS(143), + [sym_return] = ACTIONS(145), + [sym_next] = ACTIONS(145), + [sym_break] = ACTIONS(145), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_inf] = ACTIONS(145), + [sym_nan] = ACTIONS(145), + [anon_sym_NA] = ACTIONS(145), + [anon_sym_NA_integer_] = ACTIONS(145), + [anon_sym_NA_real_] = ACTIONS(145), + [anon_sym_NA_complex_] = ACTIONS(145), + [anon_sym_NA_character_] = ACTIONS(145), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(211), - [sym__semicolon] = ACTIONS(211), - [sym__raw_string_literal] = ACTIONS(211), - [sym__external_else] = ACTIONS(211), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(211), - [sym__external_close_brace] = ACTIONS(211), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__newline] = ACTIONS(143), + [sym__semicolon] = ACTIONS(143), + [sym__raw_string_literal] = ACTIONS(143), + [sym__external_else] = ACTIONS(143), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(143), + [sym__external_close_brace] = ACTIONS(143), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [117] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), + [88] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(217), [anon_sym_BSLASH] = ACTIONS(215), [anon_sym_function] = ACTIONS(217), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(217), [anon_sym_for] = ACTIONS(217), [anon_sym_while] = ACTIONS(217), [anon_sym_repeat] = ACTIONS(217), [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(217), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(215), [sym__number_literal] = ACTIONS(217), [anon_sym_SQUOTE] = ACTIONS(215), @@ -15210,105 +13067,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(215), [sym__raw_string_literal] = ACTIONS(215), [sym__external_else] = ACTIONS(215), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(215), [sym__external_close_brace] = ACTIONS(215), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [118] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_function] = ACTIONS(221), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(221), - [anon_sym_for] = ACTIONS(221), - [anon_sym_while] = ACTIONS(221), - [anon_sym_repeat] = ACTIONS(221), - [anon_sym_QMARK] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(219), - [sym__number_literal] = ACTIONS(221), - [anon_sym_SQUOTE] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(219), - [sym_dots] = ACTIONS(221), - [sym_dot_dot_i] = ACTIONS(219), - [sym_return] = ACTIONS(221), - [sym_next] = ACTIONS(221), - [sym_break] = ACTIONS(221), - [sym_true] = ACTIONS(221), - [sym_false] = ACTIONS(221), - [sym_null] = ACTIONS(221), - [sym_inf] = ACTIONS(221), - [sym_nan] = ACTIONS(221), - [anon_sym_NA] = ACTIONS(221), - [anon_sym_NA_integer_] = ACTIONS(221), - [anon_sym_NA_real_] = ACTIONS(221), - [anon_sym_NA_complex_] = ACTIONS(221), - [anon_sym_NA_character_] = ACTIONS(221), + [89] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(211), + [anon_sym_function] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(213), + [anon_sym_for] = ACTIONS(213), + [anon_sym_while] = ACTIONS(213), + [anon_sym_repeat] = ACTIONS(213), + [anon_sym_QMARK] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(211), + [sym__number_literal] = ACTIONS(213), + [anon_sym_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [sym_dots] = ACTIONS(213), + [sym_dot_dot_i] = ACTIONS(211), + [sym_return] = ACTIONS(213), + [sym_next] = ACTIONS(213), + [sym_break] = ACTIONS(213), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [sym_null] = ACTIONS(213), + [sym_inf] = ACTIONS(213), + [sym_nan] = ACTIONS(213), + [anon_sym_NA] = ACTIONS(213), + [anon_sym_NA_integer_] = ACTIONS(213), + [anon_sym_NA_real_] = ACTIONS(213), + [anon_sym_NA_complex_] = ACTIONS(213), + [anon_sym_NA_character_] = ACTIONS(213), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(211), + [sym__semicolon] = ACTIONS(211), + [sym__raw_string_literal] = ACTIONS(211), + [sym__external_else] = ACTIONS(211), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(211), + [sym__external_close_brace] = ACTIONS(211), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [90] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(197), + [anon_sym_BSLASH] = ACTIONS(195), + [anon_sym_function] = ACTIONS(197), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(197), + [anon_sym_for] = ACTIONS(197), + [anon_sym_while] = ACTIONS(197), + [anon_sym_repeat] = ACTIONS(197), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(195), + [sym__number_literal] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [sym_dots] = ACTIONS(197), + [sym_dot_dot_i] = ACTIONS(195), + [sym_return] = ACTIONS(197), + [sym_next] = ACTIONS(197), + [sym_break] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_inf] = ACTIONS(197), + [sym_nan] = ACTIONS(197), + [anon_sym_NA] = ACTIONS(197), + [anon_sym_NA_integer_] = ACTIONS(197), + [anon_sym_NA_real_] = ACTIONS(197), + [anon_sym_NA_complex_] = ACTIONS(197), + [anon_sym_NA_character_] = ACTIONS(197), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(219), - [sym__semicolon] = ACTIONS(219), - [sym__raw_string_literal] = ACTIONS(219), - [sym__external_else] = ACTIONS(219), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(219), - [sym__external_close_brace] = ACTIONS(219), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__newline] = ACTIONS(195), + [sym__semicolon] = ACTIONS(195), + [sym__raw_string_literal] = ACTIONS(195), + [sym__external_else] = ACTIONS(195), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(195), + [sym__external_close_brace] = ACTIONS(195), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [119] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(233), - [sym_identifier] = ACTIONS(231), - [anon_sym_BSLASH] = ACTIONS(233), - [anon_sym_function] = ACTIONS(231), + [91] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(193), + [anon_sym_BSLASH] = ACTIONS(191), + [anon_sym_function] = ACTIONS(193), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(231), - [anon_sym_for] = ACTIONS(231), - [anon_sym_while] = ACTIONS(231), - [anon_sym_repeat] = ACTIONS(231), - [anon_sym_QMARK] = ACTIONS(233), + [anon_sym_if] = ACTIONS(193), + [anon_sym_for] = ACTIONS(193), + [anon_sym_while] = ACTIONS(193), + [anon_sym_repeat] = ACTIONS(193), + [anon_sym_QMARK] = ACTIONS(191), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(193), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -15335,202 +13265,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(233), - [sym__number_literal] = ACTIONS(231), - [anon_sym_SQUOTE] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym_dots] = ACTIONS(231), - [sym_dot_dot_i] = ACTIONS(233), - [sym_return] = ACTIONS(231), - [sym_next] = ACTIONS(231), - [sym_break] = ACTIONS(231), - [sym_true] = ACTIONS(231), - [sym_false] = ACTIONS(231), - [sym_null] = ACTIONS(231), - [sym_inf] = ACTIONS(231), - [sym_nan] = ACTIONS(231), - [anon_sym_NA] = ACTIONS(231), - [anon_sym_NA_integer_] = ACTIONS(231), - [anon_sym_NA_real_] = ACTIONS(231), - [anon_sym_NA_complex_] = ACTIONS(231), - [anon_sym_NA_character_] = ACTIONS(231), + [sym__hex_literal] = ACTIONS(191), + [sym__number_literal] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(191), + [sym_dots] = ACTIONS(193), + [sym_dot_dot_i] = ACTIONS(191), + [sym_return] = ACTIONS(193), + [sym_next] = ACTIONS(193), + [sym_break] = ACTIONS(193), + [sym_true] = ACTIONS(193), + [sym_false] = ACTIONS(193), + [sym_null] = ACTIONS(193), + [sym_inf] = ACTIONS(193), + [sym_nan] = ACTIONS(193), + [anon_sym_NA] = ACTIONS(193), + [anon_sym_NA_integer_] = ACTIONS(193), + [anon_sym_NA_real_] = ACTIONS(193), + [anon_sym_NA_complex_] = ACTIONS(193), + [anon_sym_NA_character_] = ACTIONS(193), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(233), - [sym__semicolon] = ACTIONS(233), - [sym__raw_string_literal] = ACTIONS(233), - [sym__external_else] = ACTIONS(233), + [sym__newline] = ACTIONS(191), + [sym__semicolon] = ACTIONS(191), + [sym__raw_string_literal] = ACTIONS(191), + [sym__external_else] = ACTIONS(191), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(233), + [sym__external_open_brace] = ACTIONS(191), + [sym__external_close_brace] = ACTIONS(191), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [120] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(225), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_function] = ACTIONS(225), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(225), - [anon_sym_for] = ACTIONS(225), - [anon_sym_while] = ACTIONS(225), - [anon_sym_repeat] = ACTIONS(225), - [anon_sym_QMARK] = ACTIONS(223), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(223), - [sym__number_literal] = ACTIONS(225), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_dots] = ACTIONS(225), - [sym_dot_dot_i] = ACTIONS(223), - [sym_return] = ACTIONS(225), - [sym_next] = ACTIONS(225), - [sym_break] = ACTIONS(225), - [sym_true] = ACTIONS(225), - [sym_false] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [sym_inf] = ACTIONS(225), - [sym_nan] = ACTIONS(225), - [anon_sym_NA] = ACTIONS(225), - [anon_sym_NA_integer_] = ACTIONS(225), - [anon_sym_NA_real_] = ACTIONS(225), - [anon_sym_NA_complex_] = ACTIONS(225), - [anon_sym_NA_character_] = ACTIONS(225), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(223), - [sym__semicolon] = ACTIONS(223), - [sym__raw_string_literal] = ACTIONS(223), - [sym__external_else] = ACTIONS(223), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(223), - [sym__external_close_brace] = ACTIONS(223), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [121] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(229), - [anon_sym_BSLASH] = ACTIONS(227), - [anon_sym_function] = ACTIONS(229), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(229), - [anon_sym_for] = ACTIONS(229), - [anon_sym_while] = ACTIONS(229), - [anon_sym_repeat] = ACTIONS(229), - [anon_sym_QMARK] = ACTIONS(227), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(227), - [sym__number_literal] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(227), - [sym_dots] = ACTIONS(229), - [sym_dot_dot_i] = ACTIONS(227), - [sym_return] = ACTIONS(229), - [sym_next] = ACTIONS(229), - [sym_break] = ACTIONS(229), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [sym_null] = ACTIONS(229), - [sym_inf] = ACTIONS(229), - [sym_nan] = ACTIONS(229), - [anon_sym_NA] = ACTIONS(229), - [anon_sym_NA_integer_] = ACTIONS(229), - [anon_sym_NA_real_] = ACTIONS(229), - [anon_sym_NA_complex_] = ACTIONS(229), - [anon_sym_NA_character_] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), - [sym__semicolon] = ACTIONS(227), - [sym__raw_string_literal] = ACTIONS(227), - [sym__external_else] = ACTIONS(227), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(227), - [sym__external_close_brace] = ACTIONS(227), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [122] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(237), - [sym_identifier] = ACTIONS(235), - [anon_sym_BSLASH] = ACTIONS(237), - [anon_sym_function] = ACTIONS(235), + [92] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(189), + [anon_sym_BSLASH] = ACTIONS(187), + [anon_sym_function] = ACTIONS(189), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(235), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(235), - [anon_sym_repeat] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_if] = ACTIONS(189), + [anon_sym_for] = ACTIONS(189), + [anon_sym_while] = ACTIONS(189), + [anon_sym_repeat] = ACTIONS(189), + [anon_sym_QMARK] = ACTIONS(187), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(189), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -15557,61 +13339,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(237), - [sym__number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_dots] = ACTIONS(235), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(235), - [sym_next] = ACTIONS(235), - [sym_break] = ACTIONS(235), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_null] = ACTIONS(235), - [sym_inf] = ACTIONS(235), - [sym_nan] = ACTIONS(235), - [anon_sym_NA] = ACTIONS(235), - [anon_sym_NA_integer_] = ACTIONS(235), - [anon_sym_NA_real_] = ACTIONS(235), - [anon_sym_NA_complex_] = ACTIONS(235), - [anon_sym_NA_character_] = ACTIONS(235), + [sym__hex_literal] = ACTIONS(187), + [sym__number_literal] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym_dots] = ACTIONS(189), + [sym_dot_dot_i] = ACTIONS(187), + [sym_return] = ACTIONS(189), + [sym_next] = ACTIONS(189), + [sym_break] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_inf] = ACTIONS(189), + [sym_nan] = ACTIONS(189), + [anon_sym_NA] = ACTIONS(189), + [anon_sym_NA_integer_] = ACTIONS(189), + [anon_sym_NA_real_] = ACTIONS(189), + [anon_sym_NA_complex_] = ACTIONS(189), + [anon_sym_NA_character_] = ACTIONS(189), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - [sym__semicolon] = ACTIONS(237), - [sym__raw_string_literal] = ACTIONS(237), - [sym__external_else] = ACTIONS(237), + [sym__newline] = ACTIONS(187), + [sym__semicolon] = ACTIONS(187), + [sym__raw_string_literal] = ACTIONS(187), + [sym__external_else] = ACTIONS(187), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(237), + [sym__external_open_brace] = ACTIONS(187), + [sym__external_close_brace] = ACTIONS(187), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [123] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(237), - [sym_identifier] = ACTIONS(235), - [anon_sym_BSLASH] = ACTIONS(237), - [anon_sym_function] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_if] = ACTIONS(235), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(235), - [anon_sym_repeat] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(235), + [93] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(185), + [anon_sym_BSLASH] = ACTIONS(183), + [anon_sym_function] = ACTIONS(185), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(185), + [anon_sym_for] = ACTIONS(185), + [anon_sym_while] = ACTIONS(185), + [anon_sym_repeat] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(185), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_LT_LT_DASH] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(237), - [anon_sym_DASH_GT] = ACTIONS(235), - [anon_sym_DASH_GT_GT] = ACTIONS(237), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), [anon_sym_PIPE] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(27), [anon_sym_PIPE_PIPE] = ACTIONS(29), @@ -15631,65 +13413,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(237), - [sym__number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_dots] = ACTIONS(235), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(235), - [sym_next] = ACTIONS(235), - [sym_break] = ACTIONS(235), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_null] = ACTIONS(235), - [sym_inf] = ACTIONS(235), - [sym_nan] = ACTIONS(235), - [anon_sym_NA] = ACTIONS(235), - [anon_sym_NA_integer_] = ACTIONS(235), - [anon_sym_NA_real_] = ACTIONS(235), - [anon_sym_NA_complex_] = ACTIONS(235), - [anon_sym_NA_character_] = ACTIONS(235), + [sym__hex_literal] = ACTIONS(183), + [sym__number_literal] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(183), + [sym_dots] = ACTIONS(185), + [sym_dot_dot_i] = ACTIONS(183), + [sym_return] = ACTIONS(185), + [sym_next] = ACTIONS(185), + [sym_break] = ACTIONS(185), + [sym_true] = ACTIONS(185), + [sym_false] = ACTIONS(185), + [sym_null] = ACTIONS(185), + [sym_inf] = ACTIONS(185), + [sym_nan] = ACTIONS(185), + [anon_sym_NA] = ACTIONS(185), + [anon_sym_NA_integer_] = ACTIONS(185), + [anon_sym_NA_real_] = ACTIONS(185), + [anon_sym_NA_complex_] = ACTIONS(185), + [anon_sym_NA_character_] = ACTIONS(185), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - [sym__semicolon] = ACTIONS(237), - [sym__raw_string_literal] = ACTIONS(237), - [sym__external_else] = ACTIONS(237), + [sym__newline] = ACTIONS(183), + [sym__semicolon] = ACTIONS(183), + [sym__raw_string_literal] = ACTIONS(183), + [sym__external_else] = ACTIONS(183), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(237), + [sym__external_open_brace] = ACTIONS(183), + [sym__external_close_brace] = ACTIONS(183), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [124] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(237), - [sym_identifier] = ACTIONS(235), - [anon_sym_BSLASH] = ACTIONS(237), - [anon_sym_function] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_if] = ACTIONS(235), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(235), - [anon_sym_repeat] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(235), + [94] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(181), + [anon_sym_BSLASH] = ACTIONS(179), + [anon_sym_function] = ACTIONS(181), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(181), + [anon_sym_for] = ACTIONS(181), + [anon_sym_while] = ACTIONS(181), + [anon_sym_repeat] = ACTIONS(181), + [anon_sym_QMARK] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(181), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_LT_LT_DASH] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(237), - [anon_sym_DASH_GT] = ACTIONS(235), - [anon_sym_DASH_GT_GT] = ACTIONS(237), - [anon_sym_PIPE] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(235), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), [anon_sym_LT] = ACTIONS(33), [anon_sym_LT_EQ] = ACTIONS(35), [anon_sym_GT] = ACTIONS(33), @@ -15705,128 +13487,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(237), - [sym__number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_dots] = ACTIONS(235), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(235), - [sym_next] = ACTIONS(235), - [sym_break] = ACTIONS(235), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_null] = ACTIONS(235), - [sym_inf] = ACTIONS(235), - [sym_nan] = ACTIONS(235), - [anon_sym_NA] = ACTIONS(235), - [anon_sym_NA_integer_] = ACTIONS(235), - [anon_sym_NA_real_] = ACTIONS(235), - [anon_sym_NA_complex_] = ACTIONS(235), - [anon_sym_NA_character_] = ACTIONS(235), + [sym__hex_literal] = ACTIONS(179), + [sym__number_literal] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(179), + [sym_dots] = ACTIONS(181), + [sym_dot_dot_i] = ACTIONS(179), + [sym_return] = ACTIONS(181), + [sym_next] = ACTIONS(181), + [sym_break] = ACTIONS(181), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_inf] = ACTIONS(181), + [sym_nan] = ACTIONS(181), + [anon_sym_NA] = ACTIONS(181), + [anon_sym_NA_integer_] = ACTIONS(181), + [anon_sym_NA_real_] = ACTIONS(181), + [anon_sym_NA_complex_] = ACTIONS(181), + [anon_sym_NA_character_] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - [sym__semicolon] = ACTIONS(237), - [sym__raw_string_literal] = ACTIONS(237), - [sym__external_else] = ACTIONS(237), + [sym__newline] = ACTIONS(179), + [sym__semicolon] = ACTIONS(179), + [sym__raw_string_literal] = ACTIONS(179), + [sym__external_else] = ACTIONS(179), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(237), + [sym__external_open_brace] = ACTIONS(179), + [sym__external_close_brace] = ACTIONS(179), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [125] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(237), - [sym_identifier] = ACTIONS(235), - [anon_sym_BSLASH] = ACTIONS(237), - [anon_sym_function] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_if] = ACTIONS(235), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(235), - [anon_sym_repeat] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_LT_LT_DASH] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(237), - [anon_sym_DASH_GT] = ACTIONS(235), - [anon_sym_DASH_GT_GT] = ACTIONS(237), - [anon_sym_PIPE] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(235), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_LT] = ACTIONS(235), - [anon_sym_LT_EQ] = ACTIONS(237), - [anon_sym_GT] = ACTIONS(235), - [anon_sym_GT_EQ] = ACTIONS(237), - [anon_sym_EQ_EQ] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_SLASH] = ACTIONS(237), + [95] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(177), + [anon_sym_BSLASH] = ACTIONS(175), + [anon_sym_function] = ACTIONS(177), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(177), + [anon_sym_for] = ACTIONS(177), + [anon_sym_while] = ACTIONS(177), + [anon_sym_repeat] = ACTIONS(177), + [anon_sym_QMARK] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), [anon_sym_STAR_STAR] = ACTIONS(41), [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(237), - [anon_sym_PIPE_GT] = ACTIONS(237), - [anon_sym_COLON] = ACTIONS(235), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(237), - [sym__number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_dots] = ACTIONS(235), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(235), - [sym_next] = ACTIONS(235), - [sym_break] = ACTIONS(235), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_null] = ACTIONS(235), - [sym_inf] = ACTIONS(235), - [sym_nan] = ACTIONS(235), - [anon_sym_NA] = ACTIONS(235), - [anon_sym_NA_integer_] = ACTIONS(235), - [anon_sym_NA_real_] = ACTIONS(235), - [anon_sym_NA_complex_] = ACTIONS(235), - [anon_sym_NA_character_] = ACTIONS(235), + [sym__hex_literal] = ACTIONS(175), + [sym__number_literal] = ACTIONS(177), + [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(175), + [sym_dots] = ACTIONS(177), + [sym_dot_dot_i] = ACTIONS(175), + [sym_return] = ACTIONS(177), + [sym_next] = ACTIONS(177), + [sym_break] = ACTIONS(177), + [sym_true] = ACTIONS(177), + [sym_false] = ACTIONS(177), + [sym_null] = ACTIONS(177), + [sym_inf] = ACTIONS(177), + [sym_nan] = ACTIONS(177), + [anon_sym_NA] = ACTIONS(177), + [anon_sym_NA_integer_] = ACTIONS(177), + [anon_sym_NA_real_] = ACTIONS(177), + [anon_sym_NA_complex_] = ACTIONS(177), + [anon_sym_NA_character_] = ACTIONS(177), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - [sym__semicolon] = ACTIONS(237), - [sym__raw_string_literal] = ACTIONS(237), - [sym__external_else] = ACTIONS(237), + [sym__newline] = ACTIONS(175), + [sym__semicolon] = ACTIONS(175), + [sym__raw_string_literal] = ACTIONS(175), + [sym__external_else] = ACTIONS(175), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(237), + [sym__external_open_brace] = ACTIONS(175), + [sym__external_close_brace] = ACTIONS(175), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [126] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(241), - [sym_identifier] = ACTIONS(239), - [anon_sym_BSLASH] = ACTIONS(241), - [anon_sym_function] = ACTIONS(239), + [96] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(239), - [anon_sym_for] = ACTIONS(239), - [anon_sym_while] = ACTIONS(239), - [anon_sym_repeat] = ACTIONS(239), - [anon_sym_QMARK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(239), + [anon_sym_BANG] = ACTIONS(201), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -15853,65 +13635,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(241), - [sym__number_literal] = ACTIONS(239), - [anon_sym_SQUOTE] = ACTIONS(241), - [anon_sym_DQUOTE] = ACTIONS(241), - [sym_dots] = ACTIONS(239), - [sym_dot_dot_i] = ACTIONS(241), - [sym_return] = ACTIONS(239), - [sym_next] = ACTIONS(239), - [sym_break] = ACTIONS(239), - [sym_true] = ACTIONS(239), - [sym_false] = ACTIONS(239), - [sym_null] = ACTIONS(239), - [sym_inf] = ACTIONS(239), - [sym_nan] = ACTIONS(239), - [anon_sym_NA] = ACTIONS(239), - [anon_sym_NA_integer_] = ACTIONS(239), - [anon_sym_NA_real_] = ACTIONS(239), - [anon_sym_NA_complex_] = ACTIONS(239), - [anon_sym_NA_character_] = ACTIONS(239), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(199), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(241), - [sym__semicolon] = ACTIONS(241), - [sym__raw_string_literal] = ACTIONS(241), - [sym__external_else] = ACTIONS(241), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_else] = ACTIONS(199), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(241), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_close_brace] = ACTIONS(199), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [127] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(245), - [sym_identifier] = ACTIONS(243), - [anon_sym_BSLASH] = ACTIONS(245), - [anon_sym_function] = ACTIONS(243), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(243), - [anon_sym_for] = ACTIONS(243), - [anon_sym_while] = ACTIONS(243), - [anon_sym_repeat] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(243), + [97] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(201), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(199), + [anon_sym_LT_LT_DASH] = ACTIONS(199), + [anon_sym_COLON_EQ] = ACTIONS(199), + [anon_sym_DASH_GT] = ACTIONS(201), + [anon_sym_DASH_GT_GT] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(199), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_else] = ACTIONS(199), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_close_brace] = ACTIONS(199), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [98] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(201), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(201), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT_DASH] = ACTIONS(199), + [anon_sym_LT_LT_DASH] = ACTIONS(199), + [anon_sym_COLON_EQ] = ACTIONS(199), + [anon_sym_DASH_GT] = ACTIONS(201), + [anon_sym_DASH_GT_GT] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(201), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_PIPE_PIPE] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(199), [anon_sym_LT] = ACTIONS(33), [anon_sym_LT_EQ] = ACTIONS(35), [anon_sym_GT] = ACTIONS(33), @@ -15927,134 +13783,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(245), - [sym__number_literal] = ACTIONS(243), - [anon_sym_SQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [sym_dots] = ACTIONS(243), - [sym_dot_dot_i] = ACTIONS(245), - [sym_return] = ACTIONS(243), - [sym_next] = ACTIONS(243), - [sym_break] = ACTIONS(243), - [sym_true] = ACTIONS(243), - [sym_false] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [sym_inf] = ACTIONS(243), - [sym_nan] = ACTIONS(243), - [anon_sym_NA] = ACTIONS(243), - [anon_sym_NA_integer_] = ACTIONS(243), - [anon_sym_NA_real_] = ACTIONS(243), - [anon_sym_NA_complex_] = ACTIONS(243), - [anon_sym_NA_character_] = ACTIONS(243), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(199), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(245), - [sym__semicolon] = ACTIONS(245), - [sym__raw_string_literal] = ACTIONS(245), - [sym__external_else] = ACTIONS(245), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_else] = ACTIONS(199), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(245), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_close_brace] = ACTIONS(199), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [128] = { - [sym_call_arguments] = STATE(343), - [sym_subset_arguments] = STATE(344), - [sym_subset2_arguments] = STATE(345), - [sym__open_parenthesis] = STATE(268), - [sym__open_bracket] = STATE(269), - [sym__open_bracket2] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(147), - [sym_identifier] = ACTIONS(149), - [anon_sym_BSLASH] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_QMARK] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), + [99] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(201), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_PLUS] = ACTIONS(199), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LT_DASH] = ACTIONS(199), + [anon_sym_LT_LT_DASH] = ACTIONS(199), + [anon_sym_COLON_EQ] = ACTIONS(199), + [anon_sym_DASH_GT] = ACTIONS(201), + [anon_sym_DASH_GT_GT] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(201), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_PIPE_PIPE] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_LT_EQ] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(201), + [anon_sym_GT_EQ] = ACTIONS(199), + [anon_sym_EQ_EQ] = ACTIONS(199), + [anon_sym_BANG_EQ] = ACTIONS(199), + [anon_sym_STAR] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(199), [anon_sym_STAR_STAR] = ACTIONS(41), [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), + [aux_sym_binary_operator_token1] = ACTIONS(199), + [anon_sym_PIPE_GT] = ACTIONS(199), + [anon_sym_COLON] = ACTIONS(201), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(147), - [sym__number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym_dots] = ACTIONS(149), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(149), - [sym_next] = ACTIONS(149), - [sym_break] = ACTIONS(149), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_null] = ACTIONS(149), - [sym_inf] = ACTIONS(149), - [sym_nan] = ACTIONS(149), - [anon_sym_NA] = ACTIONS(149), - [anon_sym_NA_integer_] = ACTIONS(149), - [anon_sym_NA_real_] = ACTIONS(149), - [anon_sym_NA_complex_] = ACTIONS(149), - [anon_sym_NA_character_] = ACTIONS(149), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(199), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(147), - [sym__semicolon] = ACTIONS(147), - [sym__raw_string_literal] = ACTIONS(147), - [sym__external_else] = ACTIONS(147), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_else] = ACTIONS(199), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(147), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_close_brace] = ACTIONS(199), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [129] = { - [sym_call_arguments] = STATE(361), - [sym_subset_arguments] = STATE(328), - [sym_subset2_arguments] = STATE(329), - [sym__open_parenthesis] = STATE(274), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(276), - [sym_identifier] = ACTIONS(149), - [anon_sym_BSLASH] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_if] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_QMARK] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), + [100] = { + [sym_call_arguments] = STATE(333), + [sym_subset_arguments] = STATE(332), + [sym_subset2_arguments] = STATE(330), + [sym__open_parenthesis] = STATE(252), + [sym__open_bracket] = STATE(251), + [sym__open_bracket2] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(245), + [sym_identifier] = ACTIONS(243), + [anon_sym_BSLASH] = ACTIONS(245), + [anon_sym_function] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(243), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(243), + [anon_sym_repeat] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(147), - [anon_sym_LT_LT_DASH] = ACTIONS(147), - [anon_sym_COLON_EQ] = ACTIONS(147), - [anon_sym_DASH_GT] = ACTIONS(149), - [anon_sym_DASH_GT_GT] = ACTIONS(147), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), [anon_sym_PIPE] = ACTIONS(89), [anon_sym_AMP] = ACTIONS(91), [anon_sym_PIPE_PIPE] = ACTIONS(93), @@ -16074,226 +13932,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(147), - [sym__number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym_dots] = ACTIONS(149), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(149), - [sym_next] = ACTIONS(149), - [sym_break] = ACTIONS(149), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_null] = ACTIONS(149), - [sym_inf] = ACTIONS(149), - [sym_nan] = ACTIONS(149), - [anon_sym_NA] = ACTIONS(149), - [anon_sym_NA_integer_] = ACTIONS(149), - [anon_sym_NA_real_] = ACTIONS(149), - [anon_sym_NA_complex_] = ACTIONS(149), - [anon_sym_NA_character_] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(147), - [sym__semicolon] = ACTIONS(147), - [sym__raw_string_literal] = ACTIONS(147), - [sym__external_else] = ACTIONS(147), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(147), - [sym__external_close_brace] = ACTIONS(147), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [130] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ] = ACTIONS(151), - [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), - }, - [131] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(239), - [anon_sym_BSLASH] = ACTIONS(241), - [anon_sym_function] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(239), - [anon_sym_for] = ACTIONS(239), - [anon_sym_while] = ACTIONS(239), - [anon_sym_repeat] = ACTIONS(239), - [anon_sym_QMARK] = ACTIONS(241), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(241), - [sym__number_literal] = ACTIONS(239), - [anon_sym_SQUOTE] = ACTIONS(241), - [anon_sym_DQUOTE] = ACTIONS(241), - [sym_dots] = ACTIONS(239), - [sym_dot_dot_i] = ACTIONS(241), - [sym_return] = ACTIONS(239), - [sym_next] = ACTIONS(239), - [sym_break] = ACTIONS(239), - [sym_true] = ACTIONS(239), - [sym_false] = ACTIONS(239), - [sym_null] = ACTIONS(239), - [sym_inf] = ACTIONS(239), - [sym_nan] = ACTIONS(239), - [anon_sym_NA] = ACTIONS(239), - [anon_sym_NA_integer_] = ACTIONS(239), - [anon_sym_NA_real_] = ACTIONS(239), - [anon_sym_NA_complex_] = ACTIONS(239), - [anon_sym_NA_character_] = ACTIONS(239), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(241), - [sym__semicolon] = ACTIONS(241), - [sym__raw_string_literal] = ACTIONS(241), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(241), - [sym__external_close_brace] = ACTIONS(241), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), - }, - [132] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(243), - [anon_sym_BSLASH] = ACTIONS(245), - [anon_sym_function] = ACTIONS(243), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(243), - [anon_sym_for] = ACTIONS(243), - [anon_sym_while] = ACTIONS(243), - [anon_sym_repeat] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(245), [sym__number_literal] = ACTIONS(243), [anon_sym_SQUOTE] = ACTIONS(245), @@ -16317,348 +13955,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(245), [sym__semicolon] = ACTIONS(245), [sym__raw_string_literal] = ACTIONS(245), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(245), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(245), - [sym__external_close_brace] = ACTIONS(245), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), - }, - [133] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(149), - [anon_sym_BSLASH] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_QMARK] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(147), - [sym__number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym_dots] = ACTIONS(149), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(149), - [sym_next] = ACTIONS(149), - [sym_break] = ACTIONS(149), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_null] = ACTIONS(149), - [sym_inf] = ACTIONS(149), - [sym_nan] = ACTIONS(149), - [anon_sym_NA] = ACTIONS(149), - [anon_sym_NA_integer_] = ACTIONS(149), - [anon_sym_NA_real_] = ACTIONS(149), - [anon_sym_NA_complex_] = ACTIONS(149), - [anon_sym_NA_character_] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(147), - [sym__semicolon] = ACTIONS(147), - [sym__raw_string_literal] = ACTIONS(147), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(147), - [sym__external_close_brace] = ACTIONS(147), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), - }, - [134] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(149), - [anon_sym_BSLASH] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_if] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_QMARK] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(147), - [anon_sym_LT_LT_DASH] = ACTIONS(147), - [anon_sym_COLON_EQ] = ACTIONS(147), - [anon_sym_DASH_GT] = ACTIONS(149), - [anon_sym_DASH_GT_GT] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(147), - [sym__number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym_dots] = ACTIONS(149), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(149), - [sym_next] = ACTIONS(149), - [sym_break] = ACTIONS(149), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_null] = ACTIONS(149), - [sym_inf] = ACTIONS(149), - [sym_nan] = ACTIONS(149), - [anon_sym_NA] = ACTIONS(149), - [anon_sym_NA_integer_] = ACTIONS(149), - [anon_sym_NA_real_] = ACTIONS(149), - [anon_sym_NA_complex_] = ACTIONS(149), - [anon_sym_NA_character_] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(147), - [sym__semicolon] = ACTIONS(147), - [sym__raw_string_literal] = ACTIONS(147), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(147), - [sym__external_close_brace] = ACTIONS(147), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), - }, - [135] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(149), - [anon_sym_BSLASH] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_if] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_QMARK] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(147), - [anon_sym_LT_LT_DASH] = ACTIONS(147), - [anon_sym_COLON_EQ] = ACTIONS(147), - [anon_sym_DASH_GT] = ACTIONS(149), - [anon_sym_DASH_GT_GT] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_AMP] = ACTIONS(149), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(147), - [sym__number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym_dots] = ACTIONS(149), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(149), - [sym_next] = ACTIONS(149), - [sym_break] = ACTIONS(149), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_null] = ACTIONS(149), - [sym_inf] = ACTIONS(149), - [sym_nan] = ACTIONS(149), - [anon_sym_NA] = ACTIONS(149), - [anon_sym_NA_integer_] = ACTIONS(149), - [anon_sym_NA_real_] = ACTIONS(149), - [anon_sym_NA_complex_] = ACTIONS(149), - [anon_sym_NA_character_] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(147), - [sym__semicolon] = ACTIONS(147), - [sym__raw_string_literal] = ACTIONS(147), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(147), - [sym__external_close_brace] = ACTIONS(147), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), - }, - [136] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(149), - [anon_sym_BSLASH] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_if] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_QMARK] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_LT_DASH] = ACTIONS(147), - [anon_sym_LT_LT_DASH] = ACTIONS(147), - [anon_sym_COLON_EQ] = ACTIONS(147), - [anon_sym_DASH_GT] = ACTIONS(149), - [anon_sym_DASH_GT_GT] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_AMP] = ACTIONS(149), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(147), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(147), - [anon_sym_PIPE_GT] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(147), - [sym__number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym_dots] = ACTIONS(149), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(149), - [sym_next] = ACTIONS(149), - [sym_break] = ACTIONS(149), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_null] = ACTIONS(149), - [sym_inf] = ACTIONS(149), - [sym_nan] = ACTIONS(149), - [anon_sym_NA] = ACTIONS(149), - [anon_sym_NA_integer_] = ACTIONS(149), - [anon_sym_NA_real_] = ACTIONS(149), - [anon_sym_NA_complex_] = ACTIONS(149), - [anon_sym_NA_character_] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(147), - [sym__semicolon] = ACTIONS(147), - [sym__raw_string_literal] = ACTIONS(147), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(147), - [sym__external_close_brace] = ACTIONS(147), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [137] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [101] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(269), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(153), [anon_sym_for] = ACTIONS(153), [anon_sym_while] = ACTIONS(153), [anon_sym_repeat] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -16682,56 +14028,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [138] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [102] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(269), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(153), [anon_sym_for] = ACTIONS(153), [anon_sym_while] = ACTIONS(153), [anon_sym_repeat] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -16755,19 +14102,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [139] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [103] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -16779,32 +14127,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), [anon_sym_DASH_GT] = ACTIONS(153), [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -16828,19 +14176,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [140] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [104] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -16869,15 +14218,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -16901,56 +14250,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [141] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [105] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(269), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(153), [anon_sym_for] = ACTIONS(153), [anon_sym_while] = ACTIONS(153), [anon_sym_repeat] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -16974,19 +14324,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [142] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [106] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -16996,34 +14347,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(153), [anon_sym_repeat] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), [anon_sym_DASH_GT] = ACTIONS(153), [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -17047,19 +14398,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [143] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [107] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -17071,32 +14423,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), [anon_sym_DASH_GT] = ACTIONS(153), [anon_sym_DASH_GT_GT] = ACTIONS(151), [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -17120,19 +14472,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [144] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [108] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -17144,8 +14497,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), @@ -17155,21 +14508,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(153), [anon_sym_PIPE_PIPE] = ACTIONS(151), [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -17190,22 +14543,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NA_complex_] = ACTIONS(153), [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [109] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(173), + [anon_sym_BSLASH] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(173), + [anon_sym_for] = ACTIONS(173), + [anon_sym_while] = ACTIONS(173), + [anon_sym_repeat] = ACTIONS(173), + [anon_sym_QMARK] = ACTIONS(171), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(171), + [sym__number_literal] = ACTIONS(173), + [anon_sym_SQUOTE] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(171), + [sym_dots] = ACTIONS(173), + [sym_dot_dot_i] = ACTIONS(171), + [sym_return] = ACTIONS(173), + [sym_next] = ACTIONS(173), + [sym_break] = ACTIONS(173), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [sym_null] = ACTIONS(173), + [sym_inf] = ACTIONS(173), + [sym_nan] = ACTIONS(173), + [anon_sym_NA] = ACTIONS(173), + [anon_sym_NA_integer_] = ACTIONS(173), + [anon_sym_NA_real_] = ACTIONS(173), + [anon_sym_NA_complex_] = ACTIONS(173), + [anon_sym_NA_character_] = ACTIONS(173), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(171), + [sym__semicolon] = ACTIONS(171), + [sym__raw_string_literal] = ACTIONS(171), + [sym__external_else] = ACTIONS(171), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(171), + [sym__external_close_brace] = ACTIONS(171), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [145] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [110] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -17217,8 +14645,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), @@ -17234,15 +14662,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -17266,19 +14694,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [146] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [111] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), + [sym_identifier] = ACTIONS(169), + [anon_sym_BSLASH] = ACTIONS(167), + [anon_sym_function] = ACTIONS(169), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(169), + [anon_sym_for] = ACTIONS(169), + [anon_sym_while] = ACTIONS(169), + [anon_sym_repeat] = ACTIONS(169), + [anon_sym_QMARK] = ACTIONS(167), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(167), + [sym__number_literal] = ACTIONS(169), + [anon_sym_SQUOTE] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(167), + [sym_dots] = ACTIONS(169), + [sym_dot_dot_i] = ACTIONS(167), + [sym_return] = ACTIONS(169), + [sym_next] = ACTIONS(169), + [sym_break] = ACTIONS(169), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [sym_null] = ACTIONS(169), + [sym_inf] = ACTIONS(169), + [sym_nan] = ACTIONS(169), + [anon_sym_NA] = ACTIONS(169), + [anon_sym_NA_integer_] = ACTIONS(169), + [anon_sym_NA_real_] = ACTIONS(169), + [anon_sym_NA_complex_] = ACTIONS(169), + [anon_sym_NA_character_] = ACTIONS(169), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(167), + [sym__semicolon] = ACTIONS(167), + [sym__raw_string_literal] = ACTIONS(167), + [sym__external_else] = ACTIONS(167), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(167), + [sym__external_close_brace] = ACTIONS(167), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [112] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -17309,13 +14812,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -17339,19 +14842,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [147] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [113] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -17382,13 +14886,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), [anon_sym_COLON] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -17412,19 +14916,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [148] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [114] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -17455,13 +14960,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -17485,19 +14990,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [149] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [115] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -17528,13 +15034,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), [anon_sym_COLON] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -17558,56 +15064,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [150] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [116] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(157), [anon_sym_BSLASH] = ACTIONS(155), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ] = ACTIONS(269), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(157), [anon_sym_for] = ACTIONS(157), [anon_sym_while] = ACTIONS(157), [anon_sym_repeat] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(155), [sym__number_literal] = ACTIONS(157), [anon_sym_SQUOTE] = ACTIONS(155), @@ -17631,56 +15138,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(155), [sym__semicolon] = ACTIONS(155), [sym__raw_string_literal] = ACTIONS(155), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(155), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(155), [sym__external_close_brace] = ACTIONS(155), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [151] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [117] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(161), [anon_sym_BSLASH] = ACTIONS(159), [anon_sym_function] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(269), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(161), [anon_sym_for] = ACTIONS(161), [anon_sym_while] = ACTIONS(161), [anon_sym_repeat] = ACTIONS(161), [anon_sym_QMARK] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(159), [sym__number_literal] = ACTIONS(161), [anon_sym_SQUOTE] = ACTIONS(159), @@ -17704,56 +15212,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(159), [sym__semicolon] = ACTIONS(159), [sym__raw_string_literal] = ACTIONS(159), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(159), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(159), [sym__external_close_brace] = ACTIONS(159), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [152] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [118] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(269), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -17777,56 +15286,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [153] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [119] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(269), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -17850,19 +15360,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [154] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [120] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -17874,32 +15385,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -17923,19 +15434,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [155] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [121] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -17964,88 +15476,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(163), [anon_sym_EQ_EQ] = ACTIONS(163), [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(163), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), - }, - [156] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -18069,56 +15508,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [157] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [122] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -18142,19 +15582,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [158] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [123] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -18164,34 +15605,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -18215,19 +15656,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [159] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [124] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -18239,32 +15681,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -18288,19 +15730,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [160] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [125] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -18312,8 +15755,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), @@ -18323,21 +15766,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -18361,19 +15804,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [161] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [126] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -18385,8 +15829,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), @@ -18402,15 +15846,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(163), [anon_sym_EQ_EQ] = ACTIONS(163), [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -18434,19 +15878,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [162] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [127] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -18477,13 +15922,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), [aux_sym_binary_operator_token1] = ACTIONS(163), [anon_sym_PIPE_GT] = ACTIONS(163), [anon_sym_COLON] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -18507,19 +15952,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [163] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [128] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -18550,13 +15996,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(163), - [anon_sym_PIPE_GT] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -18580,19 +16026,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [164] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [129] = { + [sym_call_arguments] = STATE(375), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(383), + [sym__open_parenthesis] = STATE(266), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(249), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -18623,13 +16070,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), [aux_sym_binary_operator_token1] = ACTIONS(163), [anon_sym_PIPE_GT] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -18650,789 +16097,1666 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NA_complex_] = ACTIONS(165), [anon_sym_NA_character_] = ACTIONS(165), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [130] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [131] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(169), + [anon_sym_BSLASH] = ACTIONS(167), + [anon_sym_function] = ACTIONS(169), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(169), + [anon_sym_for] = ACTIONS(169), + [anon_sym_while] = ACTIONS(169), + [anon_sym_repeat] = ACTIONS(169), + [anon_sym_QMARK] = ACTIONS(167), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(167), + [sym__number_literal] = ACTIONS(169), + [anon_sym_SQUOTE] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(167), + [sym_dots] = ACTIONS(169), + [sym_dot_dot_i] = ACTIONS(167), + [sym_return] = ACTIONS(169), + [sym_next] = ACTIONS(169), + [sym_break] = ACTIONS(169), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [sym_null] = ACTIONS(169), + [sym_inf] = ACTIONS(169), + [sym_nan] = ACTIONS(169), + [anon_sym_NA] = ACTIONS(169), + [anon_sym_NA_integer_] = ACTIONS(169), + [anon_sym_NA_real_] = ACTIONS(169), + [anon_sym_NA_complex_] = ACTIONS(169), + [anon_sym_NA_character_] = ACTIONS(169), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(167), + [sym__semicolon] = ACTIONS(167), + [sym__raw_string_literal] = ACTIONS(167), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(167), + [sym__external_close_brace] = ACTIONS(167), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), + }, + [132] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), + }, + [133] = { + [sym_string] = STATE(338), + [sym__single_quoted_string] = STATE(290), + [sym__double_quoted_string] = STATE(294), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(338), + [aux_sym_function_definition_repeat1] = STATE(307), + [ts_builtin_sym_end] = ACTIONS(335), + [sym_identifier] = ACTIONS(337), + [anon_sym_BSLASH] = ACTIONS(335), + [anon_sym_function] = ACTIONS(339), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_for] = ACTIONS(339), + [anon_sym_while] = ACTIONS(339), + [anon_sym_repeat] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(335), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_LT_DASH] = ACTIONS(335), + [anon_sym_LT_LT_DASH] = ACTIONS(335), + [anon_sym_COLON_EQ] = ACTIONS(335), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_DASH_GT_GT] = ACTIONS(335), + [anon_sym_PIPE] = ACTIONS(339), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_GT_EQ] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(335), + [anon_sym_BANG_EQ] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_SLASH] = ACTIONS(335), + [anon_sym_STAR_STAR] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [aux_sym_binary_operator_token1] = ACTIONS(335), + [anon_sym_PIPE_GT] = ACTIONS(335), + [anon_sym_COLON] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(335), + [sym__hex_literal] = ACTIONS(335), + [sym__number_literal] = ACTIONS(339), + [anon_sym_SQUOTE] = ACTIONS(341), + [anon_sym_DQUOTE] = ACTIONS(343), + [sym_dots] = ACTIONS(337), + [sym_dot_dot_i] = ACTIONS(345), + [sym_return] = ACTIONS(339), + [sym_next] = ACTIONS(339), + [sym_break] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_null] = ACTIONS(339), + [sym_inf] = ACTIONS(339), + [sym_nan] = ACTIONS(339), + [anon_sym_NA] = ACTIONS(339), + [anon_sym_NA_integer_] = ACTIONS(339), + [anon_sym_NA_real_] = ACTIONS(339), + [anon_sym_NA_complex_] = ACTIONS(339), + [anon_sym_NA_character_] = ACTIONS(339), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(335), + [sym__semicolon] = ACTIONS(335), + [sym__raw_string_literal] = ACTIONS(347), + [sym__external_else] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_brace] = ACTIONS(335), + [sym__external_open_bracket] = ACTIONS(335), + [sym__external_open_bracket2] = ACTIONS(335), + }, + [134] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_identifier] = ACTIONS(351), + [anon_sym_BSLASH] = ACTIONS(349), + [anon_sym_function] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_repeat] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(353), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(349), + [sym__number_literal] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [sym_dots] = ACTIONS(351), + [sym_dot_dot_i] = ACTIONS(349), + [sym_return] = ACTIONS(351), + [sym_next] = ACTIONS(351), + [sym_break] = ACTIONS(351), + [sym_true] = ACTIONS(351), + [sym_false] = ACTIONS(351), + [sym_null] = ACTIONS(351), + [sym_inf] = ACTIONS(351), + [sym_nan] = ACTIONS(351), + [anon_sym_NA] = ACTIONS(351), + [anon_sym_NA_integer_] = ACTIONS(351), + [anon_sym_NA_real_] = ACTIONS(351), + [anon_sym_NA_complex_] = ACTIONS(351), + [anon_sym_NA_character_] = ACTIONS(351), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(349), + [sym__semicolon] = ACTIONS(349), + [sym__raw_string_literal] = ACTIONS(349), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(349), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [135] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(245), + [sym_identifier] = ACTIONS(243), + [anon_sym_BSLASH] = ACTIONS(245), + [anon_sym_function] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(243), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(243), + [anon_sym_repeat] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(245), + [sym__number_literal] = ACTIONS(243), + [anon_sym_SQUOTE] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(245), + [sym_dots] = ACTIONS(243), + [sym_dot_dot_i] = ACTIONS(245), + [sym_return] = ACTIONS(243), + [sym_next] = ACTIONS(243), + [sym_break] = ACTIONS(243), + [sym_true] = ACTIONS(243), + [sym_false] = ACTIONS(243), + [sym_null] = ACTIONS(243), + [sym_inf] = ACTIONS(243), + [sym_nan] = ACTIONS(243), + [anon_sym_NA] = ACTIONS(243), + [anon_sym_NA_integer_] = ACTIONS(243), + [anon_sym_NA_real_] = ACTIONS(243), + [anon_sym_NA_complex_] = ACTIONS(243), + [anon_sym_NA_character_] = ACTIONS(243), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(245), + [sym__semicolon] = ACTIONS(245), + [sym__raw_string_literal] = ACTIONS(245), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(245), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [136] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(151), + [anon_sym_PIPE_GT] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [137] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(151), + [anon_sym_PIPE_GT] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [138] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), + }, + [139] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [140] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), + }, + [141] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [165] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(167), - [anon_sym_function] = ACTIONS(169), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(169), - [anon_sym_for] = ACTIONS(169), - [anon_sym_while] = ACTIONS(169), - [anon_sym_repeat] = ACTIONS(169), - [anon_sym_QMARK] = ACTIONS(167), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(167), - [sym__number_literal] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(167), - [sym_dots] = ACTIONS(169), - [sym_dot_dot_i] = ACTIONS(167), - [sym_return] = ACTIONS(169), - [sym_next] = ACTIONS(169), - [sym_break] = ACTIONS(169), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [sym_null] = ACTIONS(169), - [sym_inf] = ACTIONS(169), - [sym_nan] = ACTIONS(169), - [anon_sym_NA] = ACTIONS(169), - [anon_sym_NA_integer_] = ACTIONS(169), - [anon_sym_NA_real_] = ACTIONS(169), - [anon_sym_NA_complex_] = ACTIONS(169), - [anon_sym_NA_character_] = ACTIONS(169), + [142] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(167), - [sym__semicolon] = ACTIONS(167), - [sym__raw_string_literal] = ACTIONS(167), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(167), - [sym__external_close_brace] = ACTIONS(167), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [166] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(313), - [sym_identifier] = ACTIONS(315), - [anon_sym_BSLASH] = ACTIONS(313), - [anon_sym_function] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_if] = ACTIONS(315), - [anon_sym_for] = ACTIONS(315), - [anon_sym_while] = ACTIONS(315), - [anon_sym_repeat] = ACTIONS(315), - [anon_sym_QMARK] = ACTIONS(319), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(313), - [sym__number_literal] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(313), - [anon_sym_DQUOTE] = ACTIONS(313), - [sym_dots] = ACTIONS(315), - [sym_dot_dot_i] = ACTIONS(313), - [sym_return] = ACTIONS(315), - [sym_next] = ACTIONS(315), - [sym_break] = ACTIONS(315), - [sym_true] = ACTIONS(315), - [sym_false] = ACTIONS(315), - [sym_null] = ACTIONS(315), - [sym_inf] = ACTIONS(315), - [sym_nan] = ACTIONS(315), - [anon_sym_NA] = ACTIONS(315), - [anon_sym_NA_integer_] = ACTIONS(315), - [anon_sym_NA_real_] = ACTIONS(315), - [anon_sym_NA_complex_] = ACTIONS(315), - [anon_sym_NA_character_] = ACTIONS(315), + [143] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(313), - [sym__semicolon] = ACTIONS(313), - [sym__raw_string_literal] = ACTIONS(313), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(313), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [167] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(173), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_function] = ACTIONS(173), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(173), - [anon_sym_for] = ACTIONS(173), - [anon_sym_while] = ACTIONS(173), - [anon_sym_repeat] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(171), - [sym__number_literal] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym_dots] = ACTIONS(173), - [sym_dot_dot_i] = ACTIONS(171), - [sym_return] = ACTIONS(173), - [sym_next] = ACTIONS(173), - [sym_break] = ACTIONS(173), - [sym_true] = ACTIONS(173), - [sym_false] = ACTIONS(173), - [sym_null] = ACTIONS(173), - [sym_inf] = ACTIONS(173), - [sym_nan] = ACTIONS(173), - [anon_sym_NA] = ACTIONS(173), - [anon_sym_NA_integer_] = ACTIONS(173), - [anon_sym_NA_real_] = ACTIONS(173), - [anon_sym_NA_complex_] = ACTIONS(173), - [anon_sym_NA_character_] = ACTIONS(173), + [144] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(171), - [sym__semicolon] = ACTIONS(171), - [sym__raw_string_literal] = ACTIONS(171), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(171), - [sym__external_close_brace] = ACTIONS(171), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [168] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(177), - [anon_sym_BSLASH] = ACTIONS(175), - [anon_sym_function] = ACTIONS(177), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(177), - [anon_sym_for] = ACTIONS(177), - [anon_sym_while] = ACTIONS(177), - [anon_sym_repeat] = ACTIONS(177), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(175), - [sym__number_literal] = ACTIONS(177), - [anon_sym_SQUOTE] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(175), - [sym_dots] = ACTIONS(177), - [sym_dot_dot_i] = ACTIONS(175), - [sym_return] = ACTIONS(177), - [sym_next] = ACTIONS(177), - [sym_break] = ACTIONS(177), - [sym_true] = ACTIONS(177), - [sym_false] = ACTIONS(177), - [sym_null] = ACTIONS(177), - [sym_inf] = ACTIONS(177), - [sym_nan] = ACTIONS(177), - [anon_sym_NA] = ACTIONS(177), - [anon_sym_NA_integer_] = ACTIONS(177), - [anon_sym_NA_real_] = ACTIONS(177), - [anon_sym_NA_complex_] = ACTIONS(177), - [anon_sym_NA_character_] = ACTIONS(177), + [145] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(175), - [sym__semicolon] = ACTIONS(175), - [sym__raw_string_literal] = ACTIONS(175), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(175), - [sym__external_close_brace] = ACTIONS(175), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [169] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(181), - [anon_sym_BSLASH] = ACTIONS(179), - [anon_sym_function] = ACTIONS(181), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(181), - [anon_sym_for] = ACTIONS(181), - [anon_sym_while] = ACTIONS(181), - [anon_sym_repeat] = ACTIONS(181), - [anon_sym_QMARK] = ACTIONS(179), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(181), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(179), - [sym__number_literal] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(179), - [sym_dots] = ACTIONS(181), - [sym_dot_dot_i] = ACTIONS(179), - [sym_return] = ACTIONS(181), - [sym_next] = ACTIONS(181), - [sym_break] = ACTIONS(181), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_inf] = ACTIONS(181), - [sym_nan] = ACTIONS(181), - [anon_sym_NA] = ACTIONS(181), - [anon_sym_NA_integer_] = ACTIONS(181), - [anon_sym_NA_real_] = ACTIONS(181), - [anon_sym_NA_complex_] = ACTIONS(181), - [anon_sym_NA_character_] = ACTIONS(181), + [146] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(179), - [sym__semicolon] = ACTIONS(179), - [sym__raw_string_literal] = ACTIONS(179), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(179), - [sym__external_close_brace] = ACTIONS(179), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [170] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(185), - [anon_sym_BSLASH] = ACTIONS(183), - [anon_sym_function] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(185), - [anon_sym_for] = ACTIONS(185), - [anon_sym_while] = ACTIONS(185), - [anon_sym_repeat] = ACTIONS(185), - [anon_sym_QMARK] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(183), - [sym__number_literal] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_DQUOTE] = ACTIONS(183), - [sym_dots] = ACTIONS(185), - [sym_dot_dot_i] = ACTIONS(183), - [sym_return] = ACTIONS(185), - [sym_next] = ACTIONS(185), - [sym_break] = ACTIONS(185), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_inf] = ACTIONS(185), - [sym_nan] = ACTIONS(185), - [anon_sym_NA] = ACTIONS(185), - [anon_sym_NA_integer_] = ACTIONS(185), - [anon_sym_NA_real_] = ACTIONS(185), - [anon_sym_NA_complex_] = ACTIONS(185), - [anon_sym_NA_character_] = ACTIONS(185), + [147] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(183), - [sym__semicolon] = ACTIONS(183), - [sym__raw_string_literal] = ACTIONS(183), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(183), - [sym__external_close_brace] = ACTIONS(183), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [171] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(233), - [sym_identifier] = ACTIONS(231), - [anon_sym_BSLASH] = ACTIONS(233), - [anon_sym_function] = ACTIONS(231), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_if] = ACTIONS(231), - [anon_sym_for] = ACTIONS(231), - [anon_sym_while] = ACTIONS(231), - [anon_sym_repeat] = ACTIONS(231), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(233), - [sym__number_literal] = ACTIONS(231), - [anon_sym_SQUOTE] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym_dots] = ACTIONS(231), - [sym_dot_dot_i] = ACTIONS(233), - [sym_return] = ACTIONS(231), - [sym_next] = ACTIONS(231), - [sym_break] = ACTIONS(231), - [sym_true] = ACTIONS(231), - [sym_false] = ACTIONS(231), - [sym_null] = ACTIONS(231), - [sym_inf] = ACTIONS(231), - [sym_nan] = ACTIONS(231), - [anon_sym_NA] = ACTIONS(231), - [anon_sym_NA_integer_] = ACTIONS(231), - [anon_sym_NA_real_] = ACTIONS(231), - [anon_sym_NA_complex_] = ACTIONS(231), - [anon_sym_NA_character_] = ACTIONS(231), + [148] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(201), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_PLUS] = ACTIONS(199), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LT_DASH] = ACTIONS(199), + [anon_sym_LT_LT_DASH] = ACTIONS(199), + [anon_sym_COLON_EQ] = ACTIONS(199), + [anon_sym_DASH_GT] = ACTIONS(201), + [anon_sym_DASH_GT_GT] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(201), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_PIPE_PIPE] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_LT_EQ] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(201), + [anon_sym_GT_EQ] = ACTIONS(199), + [anon_sym_EQ_EQ] = ACTIONS(199), + [anon_sym_BANG_EQ] = ACTIONS(199), + [anon_sym_STAR] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(199), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(199), + [anon_sym_PIPE_GT] = ACTIONS(199), + [anon_sym_COLON] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(199), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(233), - [sym__semicolon] = ACTIONS(233), - [sym__raw_string_literal] = ACTIONS(233), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(233), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_close_brace] = ACTIONS(199), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [172] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(189), - [anon_sym_BSLASH] = ACTIONS(187), - [anon_sym_function] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(189), - [anon_sym_for] = ACTIONS(189), - [anon_sym_while] = ACTIONS(189), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(187), - [sym__number_literal] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(187), - [sym_dots] = ACTIONS(189), - [sym_dot_dot_i] = ACTIONS(187), - [sym_return] = ACTIONS(189), - [sym_next] = ACTIONS(189), - [sym_break] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_inf] = ACTIONS(189), - [sym_nan] = ACTIONS(189), - [anon_sym_NA] = ACTIONS(189), - [anon_sym_NA_integer_] = ACTIONS(189), - [anon_sym_NA_real_] = ACTIONS(189), - [anon_sym_NA_complex_] = ACTIONS(189), - [anon_sym_NA_character_] = ACTIONS(189), + [149] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(201), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(199), + [anon_sym_LT_LT_DASH] = ACTIONS(199), + [anon_sym_COLON_EQ] = ACTIONS(199), + [anon_sym_DASH_GT] = ACTIONS(201), + [anon_sym_DASH_GT_GT] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(201), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_PIPE_PIPE] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(199), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(187), - [sym__semicolon] = ACTIONS(187), - [sym__raw_string_literal] = ACTIONS(187), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(187), - [sym__external_close_brace] = ACTIONS(187), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_close_brace] = ACTIONS(199), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [173] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(193), - [anon_sym_BSLASH] = ACTIONS(191), - [anon_sym_function] = ACTIONS(193), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(193), - [anon_sym_for] = ACTIONS(193), - [anon_sym_while] = ACTIONS(193), - [anon_sym_repeat] = ACTIONS(193), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(193), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(191), - [sym__number_literal] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(191), - [sym_dots] = ACTIONS(193), - [sym_dot_dot_i] = ACTIONS(191), - [sym_return] = ACTIONS(193), - [sym_next] = ACTIONS(193), - [sym_break] = ACTIONS(193), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_inf] = ACTIONS(193), - [sym_nan] = ACTIONS(193), - [anon_sym_NA] = ACTIONS(193), - [anon_sym_NA_integer_] = ACTIONS(193), - [anon_sym_NA_real_] = ACTIONS(193), - [anon_sym_NA_complex_] = ACTIONS(193), - [anon_sym_NA_character_] = ACTIONS(193), + [150] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(201), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(199), + [anon_sym_LT_LT_DASH] = ACTIONS(199), + [anon_sym_COLON_EQ] = ACTIONS(199), + [anon_sym_DASH_GT] = ACTIONS(201), + [anon_sym_DASH_GT_GT] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(199), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(191), - [sym__semicolon] = ACTIONS(191), - [sym__raw_string_literal] = ACTIONS(191), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(191), - [sym__external_close_brace] = ACTIONS(191), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_close_brace] = ACTIONS(199), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [174] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(197), - [anon_sym_BSLASH] = ACTIONS(195), - [anon_sym_function] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(197), - [anon_sym_for] = ACTIONS(197), - [anon_sym_while] = ACTIONS(197), - [anon_sym_repeat] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(195), - [sym__number_literal] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(195), - [sym_dots] = ACTIONS(197), - [sym_dot_dot_i] = ACTIONS(195), - [sym_return] = ACTIONS(197), - [sym_next] = ACTIONS(197), - [sym_break] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_inf] = ACTIONS(197), - [sym_nan] = ACTIONS(197), - [anon_sym_NA] = ACTIONS(197), - [anon_sym_NA_integer_] = ACTIONS(197), - [anon_sym_NA_real_] = ACTIONS(197), - [anon_sym_NA_complex_] = ACTIONS(197), - [anon_sym_NA_character_] = ACTIONS(197), + [151] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(149), + [sym_identifier] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(149), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(149), + [sym__number_literal] = ACTIONS(147), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_dots] = ACTIONS(147), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(147), + [sym_next] = ACTIONS(147), + [sym_break] = ACTIONS(147), + [sym_true] = ACTIONS(147), + [sym_false] = ACTIONS(147), + [sym_null] = ACTIONS(147), + [sym_inf] = ACTIONS(147), + [sym_nan] = ACTIONS(147), + [anon_sym_NA] = ACTIONS(147), + [anon_sym_NA_integer_] = ACTIONS(147), + [anon_sym_NA_real_] = ACTIONS(147), + [anon_sym_NA_complex_] = ACTIONS(147), + [anon_sym_NA_character_] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(195), - [sym__semicolon] = ACTIONS(195), - [sym__raw_string_literal] = ACTIONS(195), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(195), - [sym__external_close_brace] = ACTIONS(195), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(149), + [sym__semicolon] = ACTIONS(149), + [sym__raw_string_literal] = ACTIONS(149), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(149), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [175] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [152] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(201), [anon_sym_BSLASH] = ACTIONS(199), [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(269), + [anon_sym_EQ] = ACTIONS(291), [anon_sym_if] = ACTIONS(201), [anon_sym_for] = ACTIONS(201), [anon_sym_while] = ACTIONS(201), [anon_sym_repeat] = ACTIONS(201), [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(293), [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(199), [sym__number_literal] = ACTIONS(201), [anon_sym_SQUOTE] = ACTIONS(199), @@ -19456,56 +17780,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(199), [sym__semicolon] = ACTIONS(199), [sym__raw_string_literal] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(199), [sym__external_close_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [176] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), + [153] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(155), + [sym_identifier] = ACTIONS(157), + [anon_sym_BSLASH] = ACTIONS(155), + [anon_sym_function] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(157), + [anon_sym_for] = ACTIONS(157), + [anon_sym_while] = ACTIONS(157), + [anon_sym_repeat] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(155), + [sym__number_literal] = ACTIONS(157), + [anon_sym_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(155), + [sym_dots] = ACTIONS(157), + [sym_dot_dot_i] = ACTIONS(155), + [sym_return] = ACTIONS(157), + [sym_next] = ACTIONS(157), + [sym_break] = ACTIONS(157), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [sym_null] = ACTIONS(157), + [sym_inf] = ACTIONS(157), + [sym_nan] = ACTIONS(157), + [anon_sym_NA] = ACTIONS(157), + [anon_sym_NA_integer_] = ACTIONS(157), + [anon_sym_NA_real_] = ACTIONS(157), + [anon_sym_NA_complex_] = ACTIONS(157), + [anon_sym_NA_character_] = ACTIONS(157), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(155), + [sym__semicolon] = ACTIONS(155), + [sym__raw_string_literal] = ACTIONS(155), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(155), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [154] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(149), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_TILDE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_LT_DASH] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_COLON_EQ] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(147), + [anon_sym_DASH_GT_GT] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_PIPE_PIPE] = ACTIONS(149), + [anon_sym_AMP_AMP] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(149), + [anon_sym_PIPE_GT] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(149), + [sym__number_literal] = ACTIONS(147), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_dots] = ACTIONS(147), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(147), + [sym_next] = ACTIONS(147), + [sym_break] = ACTIONS(147), + [sym_true] = ACTIONS(147), + [sym_false] = ACTIONS(147), + [sym_null] = ACTIONS(147), + [sym_inf] = ACTIONS(147), + [sym_nan] = ACTIONS(147), + [anon_sym_NA] = ACTIONS(147), + [anon_sym_NA_integer_] = ACTIONS(147), + [anon_sym_NA_real_] = ACTIONS(147), + [anon_sym_NA_complex_] = ACTIONS(147), + [anon_sym_NA_character_] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(149), + [sym__semicolon] = ACTIONS(149), + [sym__raw_string_literal] = ACTIONS(149), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(149), + [sym__external_close_brace] = ACTIONS(149), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), + }, + [155] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(205), [anon_sym_BSLASH] = ACTIONS(203), [anon_sym_function] = ACTIONS(205), - [anon_sym_EQ] = ACTIONS(269), + [anon_sym_EQ] = ACTIONS(291), [anon_sym_if] = ACTIONS(205), [anon_sym_for] = ACTIONS(205), [anon_sym_while] = ACTIONS(205), [anon_sym_repeat] = ACTIONS(205), [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(293), [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(203), [sym__number_literal] = ACTIONS(205), [anon_sym_SQUOTE] = ACTIONS(203), @@ -19529,1079 +17999,713 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(203), [sym__semicolon] = ACTIONS(203), [sym__raw_string_literal] = ACTIONS(203), - [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(203), [sym__external_close_brace] = ACTIONS(203), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), - }, - [177] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(207), - [anon_sym_function] = ACTIONS(209), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(209), - [anon_sym_for] = ACTIONS(209), - [anon_sym_while] = ACTIONS(209), - [anon_sym_repeat] = ACTIONS(209), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(207), - [sym__number_literal] = ACTIONS(209), - [anon_sym_SQUOTE] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(207), - [sym_dots] = ACTIONS(209), - [sym_dot_dot_i] = ACTIONS(207), - [sym_return] = ACTIONS(209), - [sym_next] = ACTIONS(209), - [sym_break] = ACTIONS(209), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_null] = ACTIONS(209), - [sym_inf] = ACTIONS(209), - [sym_nan] = ACTIONS(209), - [anon_sym_NA] = ACTIONS(209), - [anon_sym_NA_integer_] = ACTIONS(209), - [anon_sym_NA_real_] = ACTIONS(209), - [anon_sym_NA_complex_] = ACTIONS(209), - [anon_sym_NA_character_] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(207), - [sym__semicolon] = ACTIONS(207), - [sym__raw_string_literal] = ACTIONS(207), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(207), - [sym__external_close_brace] = ACTIONS(207), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), - }, - [178] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(211), - [anon_sym_function] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(213), - [anon_sym_for] = ACTIONS(213), - [anon_sym_while] = ACTIONS(213), - [anon_sym_repeat] = ACTIONS(213), - [anon_sym_QMARK] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(211), - [sym__number_literal] = ACTIONS(213), - [anon_sym_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [sym_dots] = ACTIONS(213), - [sym_dot_dot_i] = ACTIONS(211), - [sym_return] = ACTIONS(213), - [sym_next] = ACTIONS(213), - [sym_break] = ACTIONS(213), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [sym_null] = ACTIONS(213), - [sym_inf] = ACTIONS(213), - [sym_nan] = ACTIONS(213), - [anon_sym_NA] = ACTIONS(213), - [anon_sym_NA_integer_] = ACTIONS(213), - [anon_sym_NA_real_] = ACTIONS(213), - [anon_sym_NA_complex_] = ACTIONS(213), - [anon_sym_NA_character_] = ACTIONS(213), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(211), - [sym__semicolon] = ACTIONS(211), - [sym__raw_string_literal] = ACTIONS(211), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(211), - [sym__external_close_brace] = ACTIONS(211), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), - }, - [179] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(215), - [anon_sym_function] = ACTIONS(217), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(217), - [anon_sym_for] = ACTIONS(217), - [anon_sym_while] = ACTIONS(217), - [anon_sym_repeat] = ACTIONS(217), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(215), - [sym__number_literal] = ACTIONS(217), - [anon_sym_SQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym_dots] = ACTIONS(217), - [sym_dot_dot_i] = ACTIONS(215), - [sym_return] = ACTIONS(217), - [sym_next] = ACTIONS(217), - [sym_break] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_inf] = ACTIONS(217), - [sym_nan] = ACTIONS(217), - [anon_sym_NA] = ACTIONS(217), - [anon_sym_NA_integer_] = ACTIONS(217), - [anon_sym_NA_real_] = ACTIONS(217), - [anon_sym_NA_complex_] = ACTIONS(217), - [anon_sym_NA_character_] = ACTIONS(217), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(215), - [sym__semicolon] = ACTIONS(215), - [sym__raw_string_literal] = ACTIONS(215), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(215), - [sym__external_close_brace] = ACTIONS(215), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), - }, - [180] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_function] = ACTIONS(221), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(221), - [anon_sym_for] = ACTIONS(221), - [anon_sym_while] = ACTIONS(221), - [anon_sym_repeat] = ACTIONS(221), - [anon_sym_QMARK] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(219), - [sym__number_literal] = ACTIONS(221), - [anon_sym_SQUOTE] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(219), - [sym_dots] = ACTIONS(221), - [sym_dot_dot_i] = ACTIONS(219), - [sym_return] = ACTIONS(221), - [sym_next] = ACTIONS(221), - [sym_break] = ACTIONS(221), - [sym_true] = ACTIONS(221), - [sym_false] = ACTIONS(221), - [sym_null] = ACTIONS(221), - [sym_inf] = ACTIONS(221), - [sym_nan] = ACTIONS(221), - [anon_sym_NA] = ACTIONS(221), - [anon_sym_NA_integer_] = ACTIONS(221), - [anon_sym_NA_real_] = ACTIONS(221), - [anon_sym_NA_complex_] = ACTIONS(221), - [anon_sym_NA_character_] = ACTIONS(221), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(219), - [sym__semicolon] = ACTIONS(219), - [sym__raw_string_literal] = ACTIONS(219), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(219), - [sym__external_close_brace] = ACTIONS(219), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [181] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(143), - [anon_sym_BSLASH] = ACTIONS(145), - [anon_sym_function] = ACTIONS(143), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(143), - [anon_sym_for] = ACTIONS(143), - [anon_sym_while] = ACTIONS(143), - [anon_sym_repeat] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(145), - [sym__number_literal] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_dots] = ACTIONS(143), - [sym_dot_dot_i] = ACTIONS(145), - [sym_return] = ACTIONS(143), - [sym_next] = ACTIONS(143), - [sym_break] = ACTIONS(143), - [sym_true] = ACTIONS(143), - [sym_false] = ACTIONS(143), - [sym_null] = ACTIONS(143), - [sym_inf] = ACTIONS(143), - [sym_nan] = ACTIONS(143), - [anon_sym_NA] = ACTIONS(143), - [anon_sym_NA_integer_] = ACTIONS(143), - [anon_sym_NA_real_] = ACTIONS(143), - [anon_sym_NA_complex_] = ACTIONS(143), - [anon_sym_NA_character_] = ACTIONS(143), + [156] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(149), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_TILDE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_COLON_EQ] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(147), + [anon_sym_DASH_GT_GT] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_PIPE_PIPE] = ACTIONS(149), + [anon_sym_AMP_AMP] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(149), + [sym__number_literal] = ACTIONS(147), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_dots] = ACTIONS(147), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(147), + [sym_next] = ACTIONS(147), + [sym_break] = ACTIONS(147), + [sym_true] = ACTIONS(147), + [sym_false] = ACTIONS(147), + [sym_null] = ACTIONS(147), + [sym_inf] = ACTIONS(147), + [sym_nan] = ACTIONS(147), + [anon_sym_NA] = ACTIONS(147), + [anon_sym_NA_integer_] = ACTIONS(147), + [anon_sym_NA_real_] = ACTIONS(147), + [anon_sym_NA_complex_] = ACTIONS(147), + [anon_sym_NA_character_] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(145), - [sym__semicolon] = ACTIONS(145), - [sym__raw_string_literal] = ACTIONS(145), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(145), - [sym__external_close_brace] = ACTIONS(145), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(149), + [sym__semicolon] = ACTIONS(149), + [sym__raw_string_literal] = ACTIONS(149), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(149), + [sym__external_close_brace] = ACTIONS(149), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [182] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(225), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_function] = ACTIONS(225), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(225), - [anon_sym_for] = ACTIONS(225), - [anon_sym_while] = ACTIONS(225), - [anon_sym_repeat] = ACTIONS(225), - [anon_sym_QMARK] = ACTIONS(223), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(223), - [sym__number_literal] = ACTIONS(225), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_dots] = ACTIONS(225), - [sym_dot_dot_i] = ACTIONS(223), - [sym_return] = ACTIONS(225), - [sym_next] = ACTIONS(225), - [sym_break] = ACTIONS(225), - [sym_true] = ACTIONS(225), - [sym_false] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [sym_inf] = ACTIONS(225), - [sym_nan] = ACTIONS(225), - [anon_sym_NA] = ACTIONS(225), - [anon_sym_NA_integer_] = ACTIONS(225), - [anon_sym_NA_real_] = ACTIONS(225), - [anon_sym_NA_complex_] = ACTIONS(225), - [anon_sym_NA_character_] = ACTIONS(225), + [157] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(149), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_TILDE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_COLON_EQ] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(147), + [anon_sym_DASH_GT_GT] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(149), + [sym__number_literal] = ACTIONS(147), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_dots] = ACTIONS(147), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(147), + [sym_next] = ACTIONS(147), + [sym_break] = ACTIONS(147), + [sym_true] = ACTIONS(147), + [sym_false] = ACTIONS(147), + [sym_null] = ACTIONS(147), + [sym_inf] = ACTIONS(147), + [sym_nan] = ACTIONS(147), + [anon_sym_NA] = ACTIONS(147), + [anon_sym_NA_integer_] = ACTIONS(147), + [anon_sym_NA_real_] = ACTIONS(147), + [anon_sym_NA_complex_] = ACTIONS(147), + [anon_sym_NA_character_] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(223), - [sym__semicolon] = ACTIONS(223), - [sym__raw_string_literal] = ACTIONS(223), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(223), - [sym__external_close_brace] = ACTIONS(223), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(149), + [sym__semicolon] = ACTIONS(149), + [sym__raw_string_literal] = ACTIONS(149), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(149), + [sym__external_close_brace] = ACTIONS(149), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [183] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(229), - [anon_sym_BSLASH] = ACTIONS(227), - [anon_sym_function] = ACTIONS(229), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(229), - [anon_sym_for] = ACTIONS(229), - [anon_sym_while] = ACTIONS(229), - [anon_sym_repeat] = ACTIONS(229), - [anon_sym_QMARK] = ACTIONS(227), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(227), - [sym__number_literal] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(227), - [sym_dots] = ACTIONS(229), - [sym_dot_dot_i] = ACTIONS(227), - [sym_return] = ACTIONS(229), - [sym_next] = ACTIONS(229), - [sym_break] = ACTIONS(229), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [sym_null] = ACTIONS(229), - [sym_inf] = ACTIONS(229), - [sym_nan] = ACTIONS(229), - [anon_sym_NA] = ACTIONS(229), - [anon_sym_NA_integer_] = ACTIONS(229), - [anon_sym_NA_real_] = ACTIONS(229), - [anon_sym_NA_complex_] = ACTIONS(229), - [anon_sym_NA_character_] = ACTIONS(229), + [158] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(159), + [sym_identifier] = ACTIONS(161), + [anon_sym_BSLASH] = ACTIONS(159), + [anon_sym_function] = ACTIONS(161), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(161), + [anon_sym_for] = ACTIONS(161), + [anon_sym_while] = ACTIONS(161), + [anon_sym_repeat] = ACTIONS(161), + [anon_sym_QMARK] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(159), + [sym__number_literal] = ACTIONS(161), + [anon_sym_SQUOTE] = ACTIONS(159), + [anon_sym_DQUOTE] = ACTIONS(159), + [sym_dots] = ACTIONS(161), + [sym_dot_dot_i] = ACTIONS(159), + [sym_return] = ACTIONS(161), + [sym_next] = ACTIONS(161), + [sym_break] = ACTIONS(161), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [sym_null] = ACTIONS(161), + [sym_inf] = ACTIONS(161), + [sym_nan] = ACTIONS(161), + [anon_sym_NA] = ACTIONS(161), + [anon_sym_NA_integer_] = ACTIONS(161), + [anon_sym_NA_real_] = ACTIONS(161), + [anon_sym_NA_complex_] = ACTIONS(161), + [anon_sym_NA_character_] = ACTIONS(161), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), - [sym__semicolon] = ACTIONS(227), - [sym__raw_string_literal] = ACTIONS(227), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(227), - [sym__external_close_brace] = ACTIONS(227), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(159), + [sym__semicolon] = ACTIONS(159), + [sym__raw_string_literal] = ACTIONS(159), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(159), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [184] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(237), - [sym_identifier] = ACTIONS(235), - [anon_sym_BSLASH] = ACTIONS(237), - [anon_sym_function] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_if] = ACTIONS(235), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(235), - [anon_sym_repeat] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(237), - [sym__number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_dots] = ACTIONS(235), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(235), - [sym_next] = ACTIONS(235), - [sym_break] = ACTIONS(235), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_null] = ACTIONS(235), - [sym_inf] = ACTIONS(235), - [sym_nan] = ACTIONS(235), - [anon_sym_NA] = ACTIONS(235), - [anon_sym_NA_integer_] = ACTIONS(235), - [anon_sym_NA_real_] = ACTIONS(235), - [anon_sym_NA_complex_] = ACTIONS(235), - [anon_sym_NA_character_] = ACTIONS(235), + [159] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - [sym__semicolon] = ACTIONS(237), - [sym__raw_string_literal] = ACTIONS(237), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(237), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [185] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(237), - [sym_identifier] = ACTIONS(235), - [anon_sym_BSLASH] = ACTIONS(237), - [anon_sym_function] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_if] = ACTIONS(235), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(235), - [anon_sym_repeat] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_LT_LT_DASH] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(237), - [anon_sym_DASH_GT] = ACTIONS(235), - [anon_sym_DASH_GT_GT] = ACTIONS(237), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), + [160] = { + [sym_string] = STATE(382), + [sym__single_quoted_string] = STATE(291), + [sym__double_quoted_string] = STATE(304), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(382), + [aux_sym_function_definition_repeat1] = STATE(323), + [sym_identifier] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(335), + [anon_sym_function] = ACTIONS(339), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_for] = ACTIONS(339), + [anon_sym_while] = ACTIONS(339), + [anon_sym_repeat] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(335), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_LT_DASH] = ACTIONS(335), + [anon_sym_LT_LT_DASH] = ACTIONS(335), + [anon_sym_COLON_EQ] = ACTIONS(335), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_DASH_GT_GT] = ACTIONS(335), + [anon_sym_PIPE] = ACTIONS(339), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_PIPE_PIPE] = ACTIONS(335), [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(237), - [sym__number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_dots] = ACTIONS(235), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(235), - [sym_next] = ACTIONS(235), - [sym_break] = ACTIONS(235), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_null] = ACTIONS(235), - [sym_inf] = ACTIONS(235), - [sym_nan] = ACTIONS(235), - [anon_sym_NA] = ACTIONS(235), - [anon_sym_NA_integer_] = ACTIONS(235), - [anon_sym_NA_real_] = ACTIONS(235), - [anon_sym_NA_complex_] = ACTIONS(235), - [anon_sym_NA_character_] = ACTIONS(235), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - [sym__semicolon] = ACTIONS(237), - [sym__raw_string_literal] = ACTIONS(237), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(237), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), - }, - [186] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(237), - [sym_identifier] = ACTIONS(235), - [anon_sym_BSLASH] = ACTIONS(237), - [anon_sym_function] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_if] = ACTIONS(235), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(235), - [anon_sym_repeat] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_LT_LT_DASH] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(237), - [anon_sym_DASH_GT] = ACTIONS(235), - [anon_sym_DASH_GT_GT] = ACTIONS(237), - [anon_sym_PIPE] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(235), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(237), - [sym__number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_dots] = ACTIONS(235), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(235), - [sym_next] = ACTIONS(235), - [sym_break] = ACTIONS(235), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_null] = ACTIONS(235), - [sym_inf] = ACTIONS(235), - [sym_nan] = ACTIONS(235), - [anon_sym_NA] = ACTIONS(235), - [anon_sym_NA_integer_] = ACTIONS(235), - [anon_sym_NA_real_] = ACTIONS(235), - [anon_sym_NA_complex_] = ACTIONS(235), - [anon_sym_NA_character_] = ACTIONS(235), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_GT_EQ] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(335), + [anon_sym_BANG_EQ] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_SLASH] = ACTIONS(335), + [anon_sym_STAR_STAR] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [aux_sym_binary_operator_token1] = ACTIONS(335), + [anon_sym_PIPE_GT] = ACTIONS(335), + [anon_sym_COLON] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(335), + [sym__hex_literal] = ACTIONS(335), + [sym__number_literal] = ACTIONS(339), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [sym_dots] = ACTIONS(355), + [sym_dot_dot_i] = ACTIONS(361), + [sym_return] = ACTIONS(339), + [sym_next] = ACTIONS(339), + [sym_break] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_null] = ACTIONS(339), + [sym_inf] = ACTIONS(339), + [sym_nan] = ACTIONS(339), + [anon_sym_NA] = ACTIONS(339), + [anon_sym_NA_integer_] = ACTIONS(339), + [anon_sym_NA_real_] = ACTIONS(339), + [anon_sym_NA_complex_] = ACTIONS(339), + [anon_sym_NA_character_] = ACTIONS(339), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - [sym__semicolon] = ACTIONS(237), - [sym__raw_string_literal] = ACTIONS(237), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(237), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__newline] = ACTIONS(335), + [sym__semicolon] = ACTIONS(335), + [sym__raw_string_literal] = ACTIONS(363), + [sym__external_else] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_brace] = ACTIONS(335), + [sym__external_close_brace] = ACTIONS(335), + [sym__external_open_bracket] = ACTIONS(335), + [sym__external_open_bracket2] = ACTIONS(335), }, - [187] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(237), - [sym_identifier] = ACTIONS(235), - [anon_sym_BSLASH] = ACTIONS(237), - [anon_sym_function] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_if] = ACTIONS(235), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(235), - [anon_sym_repeat] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_LT_LT_DASH] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(237), - [anon_sym_DASH_GT] = ACTIONS(235), - [anon_sym_DASH_GT_GT] = ACTIONS(237), - [anon_sym_PIPE] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(235), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_LT] = ACTIONS(235), - [anon_sym_LT_EQ] = ACTIONS(237), - [anon_sym_GT] = ACTIONS(235), - [anon_sym_GT_EQ] = ACTIONS(237), - [anon_sym_EQ_EQ] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_SLASH] = ACTIONS(237), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(237), - [anon_sym_PIPE_GT] = ACTIONS(237), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(237), - [sym__number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_dots] = ACTIONS(235), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(235), - [sym_next] = ACTIONS(235), - [sym_break] = ACTIONS(235), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_null] = ACTIONS(235), - [sym_inf] = ACTIONS(235), - [sym_nan] = ACTIONS(235), - [anon_sym_NA] = ACTIONS(235), - [anon_sym_NA_integer_] = ACTIONS(235), - [anon_sym_NA_real_] = ACTIONS(235), - [anon_sym_NA_complex_] = ACTIONS(235), - [anon_sym_NA_character_] = ACTIONS(235), + [161] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(149), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(149), + [sym__number_literal] = ACTIONS(147), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_dots] = ACTIONS(147), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(147), + [sym_next] = ACTIONS(147), + [sym_break] = ACTIONS(147), + [sym_true] = ACTIONS(147), + [sym_false] = ACTIONS(147), + [sym_null] = ACTIONS(147), + [sym_inf] = ACTIONS(147), + [sym_nan] = ACTIONS(147), + [anon_sym_NA] = ACTIONS(147), + [anon_sym_NA_integer_] = ACTIONS(147), + [anon_sym_NA_real_] = ACTIONS(147), + [anon_sym_NA_complex_] = ACTIONS(147), + [anon_sym_NA_character_] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - [sym__semicolon] = ACTIONS(237), - [sym__raw_string_literal] = ACTIONS(237), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(237), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__newline] = ACTIONS(149), + [sym__semicolon] = ACTIONS(149), + [sym__raw_string_literal] = ACTIONS(149), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(149), + [sym__external_close_brace] = ACTIONS(149), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [188] = { - [sym_string] = STATE(371), - [sym__single_quoted_string] = STATE(301), - [sym__double_quoted_string] = STATE(302), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(371), - [aux_sym_function_definition_repeat1] = STATE(194), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_identifier] = ACTIONS(343), - [anon_sym_BSLASH] = ACTIONS(341), - [anon_sym_function] = ACTIONS(345), - [anon_sym_EQ] = ACTIONS(345), - [anon_sym_if] = ACTIONS(345), - [anon_sym_for] = ACTIONS(345), - [anon_sym_while] = ACTIONS(345), - [anon_sym_repeat] = ACTIONS(345), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(341), - [anon_sym_LT_LT_DASH] = ACTIONS(341), - [anon_sym_COLON_EQ] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(345), - [anon_sym_DASH_GT_GT] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(345), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(345), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT] = ACTIONS(345), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(345), - [anon_sym_SLASH] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_CARET] = ACTIONS(341), - [aux_sym_binary_operator_token1] = ACTIONS(341), - [anon_sym_PIPE_GT] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(345), - [anon_sym_DOLLAR] = ACTIONS(341), - [anon_sym_AT] = ACTIONS(341), - [sym__hex_literal] = ACTIONS(341), - [sym__number_literal] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_DQUOTE] = ACTIONS(349), - [sym_dots] = ACTIONS(343), - [sym_dot_dot_i] = ACTIONS(351), - [sym_return] = ACTIONS(345), - [sym_next] = ACTIONS(345), - [sym_break] = ACTIONS(345), - [sym_true] = ACTIONS(345), - [sym_false] = ACTIONS(345), - [sym_null] = ACTIONS(345), - [sym_inf] = ACTIONS(345), - [sym_nan] = ACTIONS(345), - [anon_sym_NA] = ACTIONS(345), - [anon_sym_NA_integer_] = ACTIONS(345), - [anon_sym_NA_real_] = ACTIONS(345), - [anon_sym_NA_complex_] = ACTIONS(345), - [anon_sym_NA_character_] = ACTIONS(345), + [162] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(353), - [sym__semicolon] = ACTIONS(341), - [sym__raw_string_literal] = ACTIONS(355), - [sym__external_else] = ACTIONS(341), - [sym__external_open_parenthesis] = ACTIONS(341), - [sym__external_open_brace] = ACTIONS(341), - [sym__external_open_bracket] = ACTIONS(341), - [sym__external_open_bracket2] = ACTIONS(341), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [189] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(357), - [anon_sym_BSLASH] = ACTIONS(359), - [anon_sym_function] = ACTIONS(357), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(357), - [anon_sym_for] = ACTIONS(357), - [anon_sym_while] = ACTIONS(357), - [anon_sym_repeat] = ACTIONS(357), - [anon_sym_QMARK] = ACTIONS(361), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(359), - [sym__number_literal] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_DQUOTE] = ACTIONS(359), - [sym_dots] = ACTIONS(357), - [sym_dot_dot_i] = ACTIONS(359), - [sym_return] = ACTIONS(357), - [sym_next] = ACTIONS(357), - [sym_break] = ACTIONS(357), - [sym_true] = ACTIONS(357), - [sym_false] = ACTIONS(357), - [sym_null] = ACTIONS(357), - [sym_inf] = ACTIONS(357), - [sym_nan] = ACTIONS(357), - [anon_sym_NA] = ACTIONS(357), - [anon_sym_NA_integer_] = ACTIONS(357), - [anon_sym_NA_real_] = ACTIONS(357), - [anon_sym_NA_complex_] = ACTIONS(357), - [anon_sym_NA_character_] = ACTIONS(357), + [163] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(359), - [sym__semicolon] = ACTIONS(359), - [sym__raw_string_literal] = ACTIONS(359), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(359), - [sym__external_close_brace] = ACTIONS(359), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [190] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(235), - [anon_sym_BSLASH] = ACTIONS(237), - [anon_sym_function] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_if] = ACTIONS(235), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(235), - [anon_sym_repeat] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_LT_LT_DASH] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(237), - [anon_sym_DASH_GT] = ACTIONS(235), - [anon_sym_DASH_GT_GT] = ACTIONS(237), - [anon_sym_PIPE] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(235), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_LT] = ACTIONS(235), - [anon_sym_LT_EQ] = ACTIONS(237), - [anon_sym_GT] = ACTIONS(235), - [anon_sym_GT_EQ] = ACTIONS(237), - [anon_sym_EQ_EQ] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_SLASH] = ACTIONS(237), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(237), - [anon_sym_PIPE_GT] = ACTIONS(237), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(237), - [sym__number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_dots] = ACTIONS(235), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(235), - [sym_next] = ACTIONS(235), - [sym_break] = ACTIONS(235), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_null] = ACTIONS(235), - [sym_inf] = ACTIONS(235), - [sym_nan] = ACTIONS(235), - [anon_sym_NA] = ACTIONS(235), - [anon_sym_NA_integer_] = ACTIONS(235), - [anon_sym_NA_real_] = ACTIONS(235), - [anon_sym_NA_complex_] = ACTIONS(235), - [anon_sym_NA_character_] = ACTIONS(235), + [164] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(149), + [sym_identifier] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(149), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_TILDE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_COLON_EQ] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(147), + [anon_sym_DASH_GT_GT] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(149), + [sym__number_literal] = ACTIONS(147), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_dots] = ACTIONS(147), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(147), + [sym_next] = ACTIONS(147), + [sym_break] = ACTIONS(147), + [sym_true] = ACTIONS(147), + [sym_false] = ACTIONS(147), + [sym_null] = ACTIONS(147), + [sym_inf] = ACTIONS(147), + [sym_nan] = ACTIONS(147), + [anon_sym_NA] = ACTIONS(147), + [anon_sym_NA_integer_] = ACTIONS(147), + [anon_sym_NA_real_] = ACTIONS(147), + [anon_sym_NA_complex_] = ACTIONS(147), + [anon_sym_NA_character_] = ACTIONS(147), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - [sym__semicolon] = ACTIONS(237), - [sym__raw_string_literal] = ACTIONS(237), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(237), - [sym__external_close_brace] = ACTIONS(237), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(149), + [sym__semicolon] = ACTIONS(149), + [sym__raw_string_literal] = ACTIONS(149), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(149), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [191] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(245), + [165] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(243), [anon_sym_BSLASH] = ACTIONS(245), [anon_sym_function] = ACTIONS(243), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), [anon_sym_if] = ACTIONS(243), [anon_sym_for] = ACTIONS(243), [anon_sym_while] = ACTIONS(243), [anon_sym_repeat] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(293), [anon_sym_BANG] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(245), [sym__number_literal] = ACTIONS(243), [anon_sym_SQUOTE] = ACTIONS(245), @@ -20625,602 +18729,1041 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(245), [sym__semicolon] = ACTIONS(245), [sym__raw_string_literal] = ACTIONS(245), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(245), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(245), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [192] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(147), - [sym_identifier] = ACTIONS(149), - [anon_sym_BSLASH] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_if] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_QMARK] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(147), - [sym__number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym_dots] = ACTIONS(149), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(149), - [sym_next] = ACTIONS(149), - [sym_break] = ACTIONS(149), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_null] = ACTIONS(149), - [sym_inf] = ACTIONS(149), - [sym_nan] = ACTIONS(149), - [anon_sym_NA] = ACTIONS(149), - [anon_sym_NA_integer_] = ACTIONS(149), - [anon_sym_NA_real_] = ACTIONS(149), - [anon_sym_NA_complex_] = ACTIONS(149), - [anon_sym_NA_character_] = ACTIONS(149), + [166] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(163), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(163), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(147), - [sym__semicolon] = ACTIONS(147), - [sym__raw_string_literal] = ACTIONS(147), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(147), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [193] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(147), - [sym_identifier] = ACTIONS(149), - [anon_sym_BSLASH] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_if] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_QMARK] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(147), - [anon_sym_LT_LT_DASH] = ACTIONS(147), - [anon_sym_COLON_EQ] = ACTIONS(147), - [anon_sym_DASH_GT] = ACTIONS(149), - [anon_sym_DASH_GT_GT] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(147), - [sym__number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym_dots] = ACTIONS(149), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(149), - [sym_next] = ACTIONS(149), - [sym_break] = ACTIONS(149), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_null] = ACTIONS(149), - [sym_inf] = ACTIONS(149), - [sym_nan] = ACTIONS(149), - [anon_sym_NA] = ACTIONS(149), - [anon_sym_NA_integer_] = ACTIONS(149), - [anon_sym_NA_real_] = ACTIONS(149), - [anon_sym_NA_complex_] = ACTIONS(149), - [anon_sym_NA_character_] = ACTIONS(149), + [167] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(163), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(163), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(147), - [sym__semicolon] = ACTIONS(147), - [sym__raw_string_literal] = ACTIONS(147), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(147), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [194] = { - [sym_string] = STATE(341), - [sym__single_quoted_string] = STATE(301), - [sym__double_quoted_string] = STATE(302), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(341), - [aux_sym_function_definition_repeat1] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(363), - [sym_identifier] = ACTIONS(365), - [anon_sym_BSLASH] = ACTIONS(363), - [anon_sym_function] = ACTIONS(367), - [anon_sym_EQ] = ACTIONS(367), - [anon_sym_if] = ACTIONS(367), - [anon_sym_for] = ACTIONS(367), - [anon_sym_while] = ACTIONS(367), - [anon_sym_repeat] = ACTIONS(367), - [anon_sym_QMARK] = ACTIONS(363), - [anon_sym_TILDE] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(367), - [anon_sym_PLUS] = ACTIONS(363), - [anon_sym_DASH] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(363), - [anon_sym_LT_LT_DASH] = ACTIONS(363), - [anon_sym_COLON_EQ] = ACTIONS(363), - [anon_sym_DASH_GT] = ACTIONS(367), - [anon_sym_DASH_GT_GT] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(367), - [anon_sym_PIPE_PIPE] = ACTIONS(363), - [anon_sym_AMP_AMP] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(367), - [anon_sym_SLASH] = ACTIONS(363), - [anon_sym_STAR_STAR] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(363), - [aux_sym_binary_operator_token1] = ACTIONS(363), - [anon_sym_PIPE_GT] = ACTIONS(363), - [anon_sym_COLON] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_AT] = ACTIONS(363), - [sym__hex_literal] = ACTIONS(363), - [sym__number_literal] = ACTIONS(367), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_DQUOTE] = ACTIONS(349), - [sym_dots] = ACTIONS(365), - [sym_dot_dot_i] = ACTIONS(369), - [sym_return] = ACTIONS(367), - [sym_next] = ACTIONS(367), - [sym_break] = ACTIONS(367), - [sym_true] = ACTIONS(367), - [sym_false] = ACTIONS(367), - [sym_null] = ACTIONS(367), - [sym_inf] = ACTIONS(367), - [sym_nan] = ACTIONS(367), - [anon_sym_NA] = ACTIONS(367), - [anon_sym_NA_integer_] = ACTIONS(367), - [anon_sym_NA_real_] = ACTIONS(367), - [anon_sym_NA_complex_] = ACTIONS(367), - [anon_sym_NA_character_] = ACTIONS(367), + [168] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(163), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(163), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - [sym__semicolon] = ACTIONS(363), - [sym__raw_string_literal] = ACTIONS(355), - [sym__external_else] = ACTIONS(363), - [sym__external_open_parenthesis] = ACTIONS(363), - [sym__external_open_brace] = ACTIONS(363), - [sym__external_open_bracket] = ACTIONS(363), - [sym__external_open_bracket2] = ACTIONS(363), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [195] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(147), - [sym_identifier] = ACTIONS(149), - [anon_sym_BSLASH] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_if] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_QMARK] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(147), - [anon_sym_LT_LT_DASH] = ACTIONS(147), - [anon_sym_COLON_EQ] = ACTIONS(147), - [anon_sym_DASH_GT] = ACTIONS(149), - [anon_sym_DASH_GT_GT] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_AMP] = ACTIONS(149), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(147), - [sym__number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym_dots] = ACTIONS(149), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(149), - [sym_next] = ACTIONS(149), - [sym_break] = ACTIONS(149), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_null] = ACTIONS(149), - [sym_inf] = ACTIONS(149), - [sym_nan] = ACTIONS(149), - [anon_sym_NA] = ACTIONS(149), - [anon_sym_NA_integer_] = ACTIONS(149), - [anon_sym_NA_real_] = ACTIONS(149), - [anon_sym_NA_complex_] = ACTIONS(149), - [anon_sym_NA_character_] = ACTIONS(149), + [169] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(163), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(163), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [170] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(163), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(163), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [171] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(163), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(163), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [172] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(163), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(163), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [173] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(163), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(163), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [174] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(163), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(163), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [175] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(163), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(163), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(147), - [sym__semicolon] = ACTIONS(147), - [sym__raw_string_literal] = ACTIONS(147), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(147), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [196] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(147), - [sym_identifier] = ACTIONS(149), - [anon_sym_BSLASH] = ACTIONS(147), - [anon_sym_function] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_if] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_QMARK] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_LT_DASH] = ACTIONS(147), - [anon_sym_LT_LT_DASH] = ACTIONS(147), - [anon_sym_COLON_EQ] = ACTIONS(147), - [anon_sym_DASH_GT] = ACTIONS(149), - [anon_sym_DASH_GT_GT] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_AMP] = ACTIONS(149), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(147), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(147), - [anon_sym_PIPE_GT] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(147), - [sym__number_literal] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym_dots] = ACTIONS(149), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(149), - [sym_next] = ACTIONS(149), - [sym_break] = ACTIONS(149), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_null] = ACTIONS(149), - [sym_inf] = ACTIONS(149), - [sym_nan] = ACTIONS(149), - [anon_sym_NA] = ACTIONS(149), - [anon_sym_NA_integer_] = ACTIONS(149), - [anon_sym_NA_real_] = ACTIONS(149), - [anon_sym_NA_complex_] = ACTIONS(149), - [anon_sym_NA_character_] = ACTIONS(149), + [176] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(163), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(163), + [anon_sym_PIPE_GT] = ACTIONS(163), + [anon_sym_COLON] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(163), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(147), - [sym__semicolon] = ACTIONS(147), - [sym__raw_string_literal] = ACTIONS(147), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(147), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [197] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), + [177] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(163), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(163), + [anon_sym_PIPE_GT] = ACTIONS(163), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(163), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [198] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), + [178] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(163), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(163), + [anon_sym_PIPE_GT] = ACTIONS(163), + [anon_sym_COLON] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(163), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [199] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), + [179] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(207), + [anon_sym_function] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(209), + [anon_sym_for] = ACTIONS(209), + [anon_sym_while] = ACTIONS(209), + [anon_sym_repeat] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(207), + [sym__number_literal] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(207), + [sym_dots] = ACTIONS(209), + [sym_dot_dot_i] = ACTIONS(207), + [sym_return] = ACTIONS(209), + [sym_next] = ACTIONS(209), + [sym_break] = ACTIONS(209), + [sym_true] = ACTIONS(209), + [sym_false] = ACTIONS(209), + [sym_null] = ACTIONS(209), + [sym_inf] = ACTIONS(209), + [sym_nan] = ACTIONS(209), + [anon_sym_NA] = ACTIONS(209), + [anon_sym_NA_integer_] = ACTIONS(209), + [anon_sym_NA_real_] = ACTIONS(209), + [anon_sym_NA_complex_] = ACTIONS(209), + [anon_sym_NA_character_] = ACTIONS(209), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__newline] = ACTIONS(207), + [sym__semicolon] = ACTIONS(207), + [sym__raw_string_literal] = ACTIONS(207), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(207), + [sym__external_close_brace] = ACTIONS(207), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [200] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), + [180] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), @@ -21250,307 +19793,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), - }, - [201] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), - }, - [202] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), - }, - [203] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(151), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), - }, - [204] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -21574,19 +19825,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(285), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [205] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(151), + [181] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -21617,13 +19867,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -21647,18 +19897,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [206] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), + [182] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), @@ -21671,6 +19922,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [183] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(153), [anon_sym_LT_DASH] = ACTIONS(151), @@ -21690,13 +20013,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), [anon_sym_COLON] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -21720,19 +20043,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [207] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(151), + [184] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -21763,13 +20086,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -21793,22 +20116,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [208] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), + [185] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [186] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ] = ACTIONS(153), [anon_sym_if] = ACTIONS(153), [anon_sym_for] = ACTIONS(153), @@ -21836,13 +20232,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), [anon_sym_COLON] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -21866,56 +20262,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [209] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(155), + [187] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(149), + [sym_identifier] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(149), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_TILDE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_COLON_EQ] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(147), + [anon_sym_DASH_GT_GT] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_PIPE_PIPE] = ACTIONS(149), + [anon_sym_AMP_AMP] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(149), + [sym__number_literal] = ACTIONS(147), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_dots] = ACTIONS(147), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(147), + [sym_next] = ACTIONS(147), + [sym_break] = ACTIONS(147), + [sym_true] = ACTIONS(147), + [sym_false] = ACTIONS(147), + [sym_null] = ACTIONS(147), + [sym_inf] = ACTIONS(147), + [sym_nan] = ACTIONS(147), + [anon_sym_NA] = ACTIONS(147), + [anon_sym_NA_integer_] = ACTIONS(147), + [anon_sym_NA_real_] = ACTIONS(147), + [anon_sym_NA_complex_] = ACTIONS(147), + [anon_sym_NA_character_] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(149), + [sym__semicolon] = ACTIONS(149), + [sym__raw_string_literal] = ACTIONS(149), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(149), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [188] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(149), + [sym_identifier] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(149), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(147), + [anon_sym_while] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_TILDE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_LT_DASH] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_COLON_EQ] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(147), + [anon_sym_DASH_GT_GT] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_PIPE_PIPE] = ACTIONS(149), + [anon_sym_AMP_AMP] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(149), + [anon_sym_EQ_EQ] = ACTIONS(149), + [anon_sym_BANG_EQ] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(149), + [anon_sym_PIPE_GT] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(149), + [sym__number_literal] = ACTIONS(147), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_dots] = ACTIONS(147), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(147), + [sym_next] = ACTIONS(147), + [sym_break] = ACTIONS(147), + [sym_true] = ACTIONS(147), + [sym_false] = ACTIONS(147), + [sym_null] = ACTIONS(147), + [sym_inf] = ACTIONS(147), + [sym_nan] = ACTIONS(147), + [anon_sym_NA] = ACTIONS(147), + [anon_sym_NA_integer_] = ACTIONS(147), + [anon_sym_NA_real_] = ACTIONS(147), + [anon_sym_NA_complex_] = ACTIONS(147), + [anon_sym_NA_character_] = ACTIONS(147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(149), + [sym__semicolon] = ACTIONS(149), + [sym__raw_string_literal] = ACTIONS(149), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(149), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [189] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(157), [anon_sym_BSLASH] = ACTIONS(155), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), [anon_sym_if] = ACTIONS(157), [anon_sym_for] = ACTIONS(157), [anon_sym_while] = ACTIONS(157), [anon_sym_repeat] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(293), [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(155), [sym__number_literal] = ACTIONS(157), [anon_sym_SQUOTE] = ACTIONS(155), @@ -21939,56 +20481,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(155), [sym__semicolon] = ACTIONS(155), [sym__raw_string_literal] = ACTIONS(155), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(155), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(155), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [210] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(159), + [190] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [191] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(161), [anon_sym_BSLASH] = ACTIONS(159), [anon_sym_function] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), [anon_sym_if] = ACTIONS(161), [anon_sym_for] = ACTIONS(161), [anon_sym_while] = ACTIONS(161), [anon_sym_repeat] = ACTIONS(161), [anon_sym_QMARK] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(293), [anon_sym_BANG] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(159), [sym__number_literal] = ACTIONS(161), [anon_sym_SQUOTE] = ACTIONS(159), @@ -22012,56 +20627,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(159), [sym__semicolon] = ACTIONS(159), [sym__raw_string_literal] = ACTIONS(159), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(159), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(159), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [211] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(163), + [192] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(293), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -22085,56 +20700,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [212] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(163), + [193] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(293), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -22158,19 +20773,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [213] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(163), + [194] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -22182,32 +20797,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -22231,19 +20846,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [214] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(163), + [195] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -22268,165 +20883,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(163), [anon_sym_LT] = ACTIONS(165), [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(163), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), - }, - [215] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(163), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(163), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), - }, - [216] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(163), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -22450,56 +20919,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [217] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(163), + [196] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(167), + [sym_identifier] = ACTIONS(169), + [anon_sym_BSLASH] = ACTIONS(167), + [anon_sym_function] = ACTIONS(169), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(169), + [anon_sym_for] = ACTIONS(169), + [anon_sym_while] = ACTIONS(169), + [anon_sym_repeat] = ACTIONS(169), + [anon_sym_QMARK] = ACTIONS(167), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(167), + [sym__number_literal] = ACTIONS(169), + [anon_sym_SQUOTE] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(167), + [sym_dots] = ACTIONS(169), + [sym_dot_dot_i] = ACTIONS(167), + [sym_return] = ACTIONS(169), + [sym_next] = ACTIONS(169), + [sym_break] = ACTIONS(169), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [sym_null] = ACTIONS(169), + [sym_inf] = ACTIONS(169), + [sym_nan] = ACTIONS(169), + [anon_sym_NA] = ACTIONS(169), + [anon_sym_NA_integer_] = ACTIONS(169), + [anon_sym_NA_real_] = ACTIONS(169), + [anon_sym_NA_complex_] = ACTIONS(169), + [anon_sym_NA_character_] = ACTIONS(169), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(167), + [sym__semicolon] = ACTIONS(167), + [sym__raw_string_literal] = ACTIONS(167), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(167), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [197] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(291), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(293), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -22523,19 +21065,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [218] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(163), + [198] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -22545,34 +21087,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(293), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -22596,92 +21138,457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [219] = { - [sym_string] = STATE(334), - [sym__single_quoted_string] = STATE(294), - [sym__double_quoted_string] = STATE(295), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(334), - [aux_sym_function_definition_repeat1] = STATE(227), - [sym_identifier] = ACTIONS(371), - [anon_sym_BSLASH] = ACTIONS(341), - [anon_sym_function] = ACTIONS(345), - [anon_sym_EQ] = ACTIONS(345), - [anon_sym_if] = ACTIONS(345), - [anon_sym_for] = ACTIONS(345), - [anon_sym_while] = ACTIONS(345), - [anon_sym_repeat] = ACTIONS(345), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(341), - [anon_sym_LT_LT_DASH] = ACTIONS(341), - [anon_sym_COLON_EQ] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(345), - [anon_sym_DASH_GT_GT] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(345), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(345), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT] = ACTIONS(345), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(345), - [anon_sym_SLASH] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_CARET] = ACTIONS(341), - [aux_sym_binary_operator_token1] = ACTIONS(341), - [anon_sym_PIPE_GT] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(345), - [anon_sym_DOLLAR] = ACTIONS(341), - [anon_sym_AT] = ACTIONS(341), - [sym__hex_literal] = ACTIONS(341), - [sym__number_literal] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(375), - [sym_dots] = ACTIONS(371), - [sym_dot_dot_i] = ACTIONS(377), - [sym_return] = ACTIONS(345), - [sym_next] = ACTIONS(345), - [sym_break] = ACTIONS(345), - [sym_true] = ACTIONS(345), - [sym_false] = ACTIONS(345), - [sym_null] = ACTIONS(345), - [sym_inf] = ACTIONS(345), - [sym_nan] = ACTIONS(345), - [anon_sym_NA] = ACTIONS(345), - [anon_sym_NA_integer_] = ACTIONS(345), - [anon_sym_NA_real_] = ACTIONS(345), - [anon_sym_NA_complex_] = ACTIONS(345), - [anon_sym_NA_character_] = ACTIONS(345), + [199] = { + [sym_string] = STATE(390), + [sym__single_quoted_string] = STATE(290), + [sym__double_quoted_string] = STATE(294), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(390), + [aux_sym_function_definition_repeat1] = STATE(133), + [ts_builtin_sym_end] = ACTIONS(365), + [sym_identifier] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(365), + [anon_sym_function] = ACTIONS(369), + [anon_sym_EQ] = ACTIONS(369), + [anon_sym_if] = ACTIONS(369), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(369), + [anon_sym_repeat] = ACTIONS(369), + [anon_sym_QMARK] = ACTIONS(365), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_LT_DASH] = ACTIONS(365), + [anon_sym_LT_LT_DASH] = ACTIONS(365), + [anon_sym_COLON_EQ] = ACTIONS(365), + [anon_sym_DASH_GT] = ACTIONS(369), + [anon_sym_DASH_GT_GT] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(365), + [anon_sym_AMP_AMP] = ACTIONS(365), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(365), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_EQ] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(365), + [anon_sym_BANG_EQ] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(365), + [anon_sym_STAR_STAR] = ACTIONS(365), + [anon_sym_CARET] = ACTIONS(365), + [aux_sym_binary_operator_token1] = ACTIONS(365), + [anon_sym_PIPE_GT] = ACTIONS(365), + [anon_sym_COLON] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_AT] = ACTIONS(365), + [sym__hex_literal] = ACTIONS(365), + [sym__number_literal] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(341), + [anon_sym_DQUOTE] = ACTIONS(343), + [sym_dots] = ACTIONS(367), + [sym_dot_dot_i] = ACTIONS(371), + [sym_return] = ACTIONS(369), + [sym_next] = ACTIONS(369), + [sym_break] = ACTIONS(369), + [sym_true] = ACTIONS(369), + [sym_false] = ACTIONS(369), + [sym_null] = ACTIONS(369), + [sym_inf] = ACTIONS(369), + [sym_nan] = ACTIONS(369), + [anon_sym_NA] = ACTIONS(369), + [anon_sym_NA_integer_] = ACTIONS(369), + [anon_sym_NA_real_] = ACTIONS(369), + [anon_sym_NA_complex_] = ACTIONS(369), + [anon_sym_NA_character_] = ACTIONS(369), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(379), - [sym__semicolon] = ACTIONS(341), - [sym__raw_string_literal] = ACTIONS(381), - [sym__external_else] = ACTIONS(341), - [sym__external_open_parenthesis] = ACTIONS(341), - [sym__external_open_brace] = ACTIONS(341), - [sym__external_close_brace] = ACTIONS(341), - [sym__external_open_bracket] = ACTIONS(341), - [sym__external_open_bracket2] = ACTIONS(341), + [sym__newline] = ACTIONS(373), + [sym__semicolon] = ACTIONS(365), + [sym__raw_string_literal] = ACTIONS(347), + [sym__external_else] = ACTIONS(365), + [sym__external_open_parenthesis] = ACTIONS(365), + [sym__external_open_brace] = ACTIONS(365), + [sym__external_open_bracket] = ACTIONS(365), + [sym__external_open_bracket2] = ACTIONS(365), }, - [220] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(163), + [200] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(241), + [anon_sym_BSLASH] = ACTIONS(239), + [anon_sym_function] = ACTIONS(241), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(241), + [anon_sym_for] = ACTIONS(241), + [anon_sym_while] = ACTIONS(241), + [anon_sym_repeat] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(239), + [sym__number_literal] = ACTIONS(241), + [anon_sym_SQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym_dots] = ACTIONS(241), + [sym_dot_dot_i] = ACTIONS(239), + [sym_return] = ACTIONS(241), + [sym_next] = ACTIONS(241), + [sym_break] = ACTIONS(241), + [sym_true] = ACTIONS(241), + [sym_false] = ACTIONS(241), + [sym_null] = ACTIONS(241), + [sym_inf] = ACTIONS(241), + [sym_nan] = ACTIONS(241), + [anon_sym_NA] = ACTIONS(241), + [anon_sym_NA_integer_] = ACTIONS(241), + [anon_sym_NA_real_] = ACTIONS(241), + [anon_sym_NA_complex_] = ACTIONS(241), + [anon_sym_NA_character_] = ACTIONS(241), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(239), + [sym__semicolon] = ACTIONS(239), + [sym__raw_string_literal] = ACTIONS(239), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(239), + [sym__external_close_brace] = ACTIONS(239), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), + }, + [201] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(199), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(201), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_PLUS] = ACTIONS(199), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LT_DASH] = ACTIONS(199), + [anon_sym_LT_LT_DASH] = ACTIONS(199), + [anon_sym_COLON_EQ] = ACTIONS(199), + [anon_sym_DASH_GT] = ACTIONS(201), + [anon_sym_DASH_GT_GT] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(201), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_PIPE_PIPE] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_LT_EQ] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(201), + [anon_sym_GT_EQ] = ACTIONS(199), + [anon_sym_EQ_EQ] = ACTIONS(199), + [anon_sym_BANG_EQ] = ACTIONS(199), + [anon_sym_STAR] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(199), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(199), + [anon_sym_PIPE_GT] = ACTIONS(199), + [anon_sym_COLON] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(199), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [202] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(171), + [sym_identifier] = ACTIONS(173), + [anon_sym_BSLASH] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(173), + [anon_sym_for] = ACTIONS(173), + [anon_sym_while] = ACTIONS(173), + [anon_sym_repeat] = ACTIONS(173), + [anon_sym_QMARK] = ACTIONS(171), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(171), + [sym__number_literal] = ACTIONS(173), + [anon_sym_SQUOTE] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(171), + [sym_dots] = ACTIONS(173), + [sym_dot_dot_i] = ACTIONS(171), + [sym_return] = ACTIONS(173), + [sym_next] = ACTIONS(173), + [sym_break] = ACTIONS(173), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [sym_null] = ACTIONS(173), + [sym_inf] = ACTIONS(173), + [sym_nan] = ACTIONS(173), + [anon_sym_NA] = ACTIONS(173), + [anon_sym_NA_integer_] = ACTIONS(173), + [anon_sym_NA_real_] = ACTIONS(173), + [anon_sym_NA_complex_] = ACTIONS(173), + [anon_sym_NA_character_] = ACTIONS(173), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(171), + [sym__semicolon] = ACTIONS(171), + [sym__raw_string_literal] = ACTIONS(171), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(171), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [203] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(199), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(201), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(199), + [anon_sym_LT_LT_DASH] = ACTIONS(199), + [anon_sym_COLON_EQ] = ACTIONS(199), + [anon_sym_DASH_GT] = ACTIONS(201), + [anon_sym_DASH_GT_GT] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(201), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_PIPE_PIPE] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(199), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [204] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(199), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(201), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(199), + [anon_sym_LT_LT_DASH] = ACTIONS(199), + [anon_sym_COLON_EQ] = ACTIONS(199), + [anon_sym_DASH_GT] = ACTIONS(201), + [anon_sym_DASH_GT_GT] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(199), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [205] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -22693,32 +21600,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(307), [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -22742,19 +21649,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [221] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(163), + [206] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(199), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(199), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [207] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -22766,8 +21746,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), @@ -22777,21 +21757,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -22815,19 +21795,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [222] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(163), + [208] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -22839,8 +21819,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), @@ -22856,15 +21836,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(163), [anon_sym_EQ_EQ] = ACTIONS(163), [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(163), - [anon_sym_PIPE_GT] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -22888,19 +21868,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [223] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(163), + [209] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(203), + [sym_identifier] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(203), + [anon_sym_function] = ACTIONS(205), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(205), + [anon_sym_for] = ACTIONS(205), + [anon_sym_while] = ACTIONS(205), + [anon_sym_repeat] = ACTIONS(205), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(203), + [sym__number_literal] = ACTIONS(205), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE] = ACTIONS(203), + [sym_dots] = ACTIONS(205), + [sym_dot_dot_i] = ACTIONS(203), + [sym_return] = ACTIONS(205), + [sym_next] = ACTIONS(205), + [sym_break] = ACTIONS(205), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [sym_null] = ACTIONS(205), + [sym_inf] = ACTIONS(205), + [sym_nan] = ACTIONS(205), + [anon_sym_NA] = ACTIONS(205), + [anon_sym_NA_integer_] = ACTIONS(205), + [anon_sym_NA_real_] = ACTIONS(205), + [anon_sym_NA_complex_] = ACTIONS(205), + [anon_sym_NA_character_] = ACTIONS(205), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(203), + [sym__semicolon] = ACTIONS(203), + [sym__raw_string_literal] = ACTIONS(203), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(203), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [210] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(207), + [sym_identifier] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(207), + [anon_sym_function] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(209), + [anon_sym_for] = ACTIONS(209), + [anon_sym_while] = ACTIONS(209), + [anon_sym_repeat] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(207), + [sym__number_literal] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(207), + [sym_dots] = ACTIONS(209), + [sym_dot_dot_i] = ACTIONS(207), + [sym_return] = ACTIONS(209), + [sym_next] = ACTIONS(209), + [sym_break] = ACTIONS(209), + [sym_true] = ACTIONS(209), + [sym_false] = ACTIONS(209), + [sym_null] = ACTIONS(209), + [sym_inf] = ACTIONS(209), + [sym_nan] = ACTIONS(209), + [anon_sym_NA] = ACTIONS(209), + [anon_sym_NA_integer_] = ACTIONS(209), + [anon_sym_NA_real_] = ACTIONS(209), + [anon_sym_NA_complex_] = ACTIONS(209), + [anon_sym_NA_character_] = ACTIONS(209), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(207), + [sym__semicolon] = ACTIONS(207), + [sym__raw_string_literal] = ACTIONS(207), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(207), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [211] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -22931,13 +22057,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(163), - [anon_sym_PIPE_GT] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -22961,19 +22087,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(329), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [224] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(163), + [212] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(151), + [anon_sym_PIPE_GT] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(151), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [213] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -23004,13 +22203,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), [aux_sym_binary_operator_token1] = ACTIONS(163), [anon_sym_PIPE_GT] = ACTIONS(163), [anon_sym_COLON] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -23031,278 +22230,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NA_complex_] = ACTIONS(165), [anon_sym_NA_character_] = ACTIONS(165), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), - }, - [225] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(167), - [sym_identifier] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(167), - [anon_sym_function] = ACTIONS(169), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_if] = ACTIONS(169), - [anon_sym_for] = ACTIONS(169), - [anon_sym_while] = ACTIONS(169), - [anon_sym_repeat] = ACTIONS(169), - [anon_sym_QMARK] = ACTIONS(167), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(167), - [sym__number_literal] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(167), - [sym_dots] = ACTIONS(169), - [sym_dot_dot_i] = ACTIONS(167), - [sym_return] = ACTIONS(169), - [sym_next] = ACTIONS(169), - [sym_break] = ACTIONS(169), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [sym_null] = ACTIONS(169), - [sym_inf] = ACTIONS(169), - [sym_nan] = ACTIONS(169), - [anon_sym_NA] = ACTIONS(169), - [anon_sym_NA_integer_] = ACTIONS(169), - [anon_sym_NA_real_] = ACTIONS(169), - [anon_sym_NA_complex_] = ACTIONS(169), - [anon_sym_NA_character_] = ACTIONS(169), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(167), - [sym__semicolon] = ACTIONS(167), - [sym__raw_string_literal] = ACTIONS(167), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(167), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), - }, - [226] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(171), - [sym_identifier] = ACTIONS(173), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_function] = ACTIONS(173), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_if] = ACTIONS(173), - [anon_sym_for] = ACTIONS(173), - [anon_sym_while] = ACTIONS(173), - [anon_sym_repeat] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(171), - [sym__number_literal] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym_dots] = ACTIONS(173), - [sym_dot_dot_i] = ACTIONS(171), - [sym_return] = ACTIONS(173), - [sym_next] = ACTIONS(173), - [sym_break] = ACTIONS(173), - [sym_true] = ACTIONS(173), - [sym_false] = ACTIONS(173), - [sym_null] = ACTIONS(173), - [sym_inf] = ACTIONS(173), - [sym_nan] = ACTIONS(173), - [anon_sym_NA] = ACTIONS(173), - [anon_sym_NA_integer_] = ACTIONS(173), - [anon_sym_NA_real_] = ACTIONS(173), - [anon_sym_NA_complex_] = ACTIONS(173), - [anon_sym_NA_character_] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(171), - [sym__semicolon] = ACTIONS(171), - [sym__raw_string_literal] = ACTIONS(171), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(171), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [227] = { - [sym_string] = STATE(349), - [sym__single_quoted_string] = STATE(294), - [sym__double_quoted_string] = STATE(295), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(349), - [aux_sym_function_definition_repeat1] = STATE(322), - [sym_identifier] = ACTIONS(383), - [anon_sym_BSLASH] = ACTIONS(363), - [anon_sym_function] = ACTIONS(367), - [anon_sym_EQ] = ACTIONS(367), - [anon_sym_if] = ACTIONS(367), - [anon_sym_for] = ACTIONS(367), - [anon_sym_while] = ACTIONS(367), - [anon_sym_repeat] = ACTIONS(367), - [anon_sym_QMARK] = ACTIONS(363), - [anon_sym_TILDE] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(367), - [anon_sym_PLUS] = ACTIONS(363), - [anon_sym_DASH] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(363), - [anon_sym_LT_LT_DASH] = ACTIONS(363), - [anon_sym_COLON_EQ] = ACTIONS(363), - [anon_sym_DASH_GT] = ACTIONS(367), - [anon_sym_DASH_GT_GT] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(367), - [anon_sym_PIPE_PIPE] = ACTIONS(363), - [anon_sym_AMP_AMP] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(367), - [anon_sym_SLASH] = ACTIONS(363), - [anon_sym_STAR_STAR] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(363), - [aux_sym_binary_operator_token1] = ACTIONS(363), - [anon_sym_PIPE_GT] = ACTIONS(363), - [anon_sym_COLON] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_AT] = ACTIONS(363), - [sym__hex_literal] = ACTIONS(363), - [sym__number_literal] = ACTIONS(367), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(375), - [sym_dots] = ACTIONS(383), - [sym_dot_dot_i] = ACTIONS(385), - [sym_return] = ACTIONS(367), - [sym_next] = ACTIONS(367), - [sym_break] = ACTIONS(367), - [sym_true] = ACTIONS(367), - [sym_false] = ACTIONS(367), - [sym_null] = ACTIONS(367), - [sym_inf] = ACTIONS(367), - [sym_nan] = ACTIONS(367), - [anon_sym_NA] = ACTIONS(367), - [anon_sym_NA_integer_] = ACTIONS(367), - [anon_sym_NA_real_] = ACTIONS(367), - [anon_sym_NA_complex_] = ACTIONS(367), - [anon_sym_NA_character_] = ACTIONS(367), + [214] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(163), + [anon_sym_PIPE_GT] = ACTIONS(163), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(163), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - [sym__semicolon] = ACTIONS(363), - [sym__raw_string_literal] = ACTIONS(381), - [sym__external_else] = ACTIONS(363), - [sym__external_open_parenthesis] = ACTIONS(363), - [sym__external_open_brace] = ACTIONS(363), - [sym__external_close_brace] = ACTIONS(363), - [sym__external_open_bracket] = ACTIONS(363), - [sym__external_open_bracket2] = ACTIONS(363), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [228] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), + [215] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), [ts_builtin_sym_end] = ACTIONS(175), [sym_identifier] = ACTIONS(177), [anon_sym_BSLASH] = ACTIONS(175), [anon_sym_function] = ACTIONS(177), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(247), [anon_sym_if] = ACTIONS(177), [anon_sym_for] = ACTIONS(177), [anon_sym_while] = ACTIONS(177), [anon_sym_repeat] = ACTIONS(177), [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(249), [anon_sym_BANG] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), [sym__hex_literal] = ACTIONS(175), [sym__number_literal] = ACTIONS(177), [anon_sym_SQUOTE] = ACTIONS(175), @@ -23326,56 +22380,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(175), [sym__semicolon] = ACTIONS(175), [sym__raw_string_literal] = ACTIONS(175), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(285), [sym__external_open_brace] = ACTIONS(175), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [229] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), + [216] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), [ts_builtin_sym_end] = ACTIONS(179), [sym_identifier] = ACTIONS(181), [anon_sym_BSLASH] = ACTIONS(179), [anon_sym_function] = ACTIONS(181), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(247), [anon_sym_if] = ACTIONS(181), [anon_sym_for] = ACTIONS(181), [anon_sym_while] = ACTIONS(181), [anon_sym_repeat] = ACTIONS(181), [anon_sym_QMARK] = ACTIONS(179), - [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(249), [anon_sym_BANG] = ACTIONS(181), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), [sym__hex_literal] = ACTIONS(179), [sym__number_literal] = ACTIONS(181), [anon_sym_SQUOTE] = ACTIONS(179), @@ -23399,56 +22453,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(179), [sym__semicolon] = ACTIONS(179), [sym__raw_string_literal] = ACTIONS(179), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(285), [sym__external_open_brace] = ACTIONS(179), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [230] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), + [217] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(163), + [anon_sym_PIPE_GT] = ACTIONS(163), + [anon_sym_COLON] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(163), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), + }, + [218] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), [ts_builtin_sym_end] = ACTIONS(183), [sym_identifier] = ACTIONS(185), [anon_sym_BSLASH] = ACTIONS(183), [anon_sym_function] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(247), [anon_sym_if] = ACTIONS(185), [anon_sym_for] = ACTIONS(185), [anon_sym_while] = ACTIONS(185), [anon_sym_repeat] = ACTIONS(185), [anon_sym_QMARK] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(249), [anon_sym_BANG] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), [sym__hex_literal] = ACTIONS(183), [sym__number_literal] = ACTIONS(185), [anon_sym_SQUOTE] = ACTIONS(183), @@ -23472,56 +22599,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(183), [sym__semicolon] = ACTIONS(183), [sym__raw_string_literal] = ACTIONS(183), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(285), [sym__external_open_brace] = ACTIONS(183), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [231] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), + [219] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(237), + [anon_sym_BSLASH] = ACTIONS(235), + [anon_sym_function] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(237), + [anon_sym_for] = ACTIONS(237), + [anon_sym_while] = ACTIONS(237), + [anon_sym_repeat] = ACTIONS(237), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(235), + [sym__number_literal] = ACTIONS(237), + [anon_sym_SQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym_dots] = ACTIONS(237), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(237), + [sym_next] = ACTIONS(237), + [sym_break] = ACTIONS(237), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [sym_null] = ACTIONS(237), + [sym_inf] = ACTIONS(237), + [sym_nan] = ACTIONS(237), + [anon_sym_NA] = ACTIONS(237), + [anon_sym_NA_integer_] = ACTIONS(237), + [anon_sym_NA_real_] = ACTIONS(237), + [anon_sym_NA_complex_] = ACTIONS(237), + [anon_sym_NA_character_] = ACTIONS(237), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(235), + [sym__semicolon] = ACTIONS(235), + [sym__raw_string_literal] = ACTIONS(235), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(235), + [sym__external_close_brace] = ACTIONS(235), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), + }, + [220] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(233), + [anon_sym_BSLASH] = ACTIONS(231), + [anon_sym_function] = ACTIONS(233), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(233), + [anon_sym_for] = ACTIONS(233), + [anon_sym_while] = ACTIONS(233), + [anon_sym_repeat] = ACTIONS(233), + [anon_sym_QMARK] = ACTIONS(231), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(233), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(231), + [sym__number_literal] = ACTIONS(233), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_dots] = ACTIONS(233), + [sym_dot_dot_i] = ACTIONS(231), + [sym_return] = ACTIONS(233), + [sym_next] = ACTIONS(233), + [sym_break] = ACTIONS(233), + [sym_true] = ACTIONS(233), + [sym_false] = ACTIONS(233), + [sym_null] = ACTIONS(233), + [sym_inf] = ACTIONS(233), + [sym_nan] = ACTIONS(233), + [anon_sym_NA] = ACTIONS(233), + [anon_sym_NA_integer_] = ACTIONS(233), + [anon_sym_NA_real_] = ACTIONS(233), + [anon_sym_NA_complex_] = ACTIONS(233), + [anon_sym_NA_character_] = ACTIONS(233), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(231), + [sym__semicolon] = ACTIONS(231), + [sym__raw_string_literal] = ACTIONS(231), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(231), + [sym__external_close_brace] = ACTIONS(231), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), + }, + [221] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(173), + [anon_sym_BSLASH] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(173), + [anon_sym_for] = ACTIONS(173), + [anon_sym_while] = ACTIONS(173), + [anon_sym_repeat] = ACTIONS(173), + [anon_sym_QMARK] = ACTIONS(171), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(171), + [sym__number_literal] = ACTIONS(173), + [anon_sym_SQUOTE] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(171), + [sym_dots] = ACTIONS(173), + [sym_dot_dot_i] = ACTIONS(171), + [sym_return] = ACTIONS(173), + [sym_next] = ACTIONS(173), + [sym_break] = ACTIONS(173), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [sym_null] = ACTIONS(173), + [sym_inf] = ACTIONS(173), + [sym_nan] = ACTIONS(173), + [anon_sym_NA] = ACTIONS(173), + [anon_sym_NA_integer_] = ACTIONS(173), + [anon_sym_NA_real_] = ACTIONS(173), + [anon_sym_NA_complex_] = ACTIONS(173), + [anon_sym_NA_character_] = ACTIONS(173), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(171), + [sym__semicolon] = ACTIONS(171), + [sym__raw_string_literal] = ACTIONS(171), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(171), + [sym__external_close_brace] = ACTIONS(171), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), + }, + [222] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(229), + [anon_sym_BSLASH] = ACTIONS(227), + [anon_sym_function] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(229), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_repeat] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(227), + [sym__number_literal] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [sym_dots] = ACTIONS(229), + [sym_dot_dot_i] = ACTIONS(227), + [sym_return] = ACTIONS(229), + [sym_next] = ACTIONS(229), + [sym_break] = ACTIONS(229), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [sym_null] = ACTIONS(229), + [sym_inf] = ACTIONS(229), + [sym_nan] = ACTIONS(229), + [anon_sym_NA] = ACTIONS(229), + [anon_sym_NA_integer_] = ACTIONS(229), + [anon_sym_NA_real_] = ACTIONS(229), + [anon_sym_NA_complex_] = ACTIONS(229), + [anon_sym_NA_character_] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(227), + [sym__semicolon] = ACTIONS(227), + [sym__raw_string_literal] = ACTIONS(227), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(227), + [sym__external_close_brace] = ACTIONS(227), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), + }, + [223] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), [ts_builtin_sym_end] = ACTIONS(187), [sym_identifier] = ACTIONS(189), [anon_sym_BSLASH] = ACTIONS(187), [anon_sym_function] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(247), [anon_sym_if] = ACTIONS(189), [anon_sym_for] = ACTIONS(189), [anon_sym_while] = ACTIONS(189), [anon_sym_repeat] = ACTIONS(189), [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(249), [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), [sym__hex_literal] = ACTIONS(187), [sym__number_literal] = ACTIONS(189), [anon_sym_SQUOTE] = ACTIONS(187), @@ -23545,56 +22964,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(187), [sym__semicolon] = ACTIONS(187), [sym__raw_string_literal] = ACTIONS(187), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(285), [sym__external_open_brace] = ACTIONS(187), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [232] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), + [224] = { + [sym_string] = STATE(378), + [sym__single_quoted_string] = STATE(291), + [sym__double_quoted_string] = STATE(304), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(378), + [aux_sym_function_definition_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(365), + [anon_sym_function] = ACTIONS(369), + [anon_sym_EQ] = ACTIONS(369), + [anon_sym_if] = ACTIONS(369), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(369), + [anon_sym_repeat] = ACTIONS(369), + [anon_sym_QMARK] = ACTIONS(365), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_LT_DASH] = ACTIONS(365), + [anon_sym_LT_LT_DASH] = ACTIONS(365), + [anon_sym_COLON_EQ] = ACTIONS(365), + [anon_sym_DASH_GT] = ACTIONS(369), + [anon_sym_DASH_GT_GT] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(365), + [anon_sym_AMP_AMP] = ACTIONS(365), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(365), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_EQ] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(365), + [anon_sym_BANG_EQ] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(365), + [anon_sym_STAR_STAR] = ACTIONS(365), + [anon_sym_CARET] = ACTIONS(365), + [aux_sym_binary_operator_token1] = ACTIONS(365), + [anon_sym_PIPE_GT] = ACTIONS(365), + [anon_sym_COLON] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_AT] = ACTIONS(365), + [sym__hex_literal] = ACTIONS(365), + [sym__number_literal] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [sym_dots] = ACTIONS(375), + [sym_dot_dot_i] = ACTIONS(377), + [sym_return] = ACTIONS(369), + [sym_next] = ACTIONS(369), + [sym_break] = ACTIONS(369), + [sym_true] = ACTIONS(369), + [sym_false] = ACTIONS(369), + [sym_null] = ACTIONS(369), + [sym_inf] = ACTIONS(369), + [sym_nan] = ACTIONS(369), + [anon_sym_NA] = ACTIONS(369), + [anon_sym_NA_integer_] = ACTIONS(369), + [anon_sym_NA_real_] = ACTIONS(369), + [anon_sym_NA_complex_] = ACTIONS(369), + [anon_sym_NA_character_] = ACTIONS(369), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(379), + [sym__semicolon] = ACTIONS(365), + [sym__raw_string_literal] = ACTIONS(363), + [sym__external_else] = ACTIONS(365), + [sym__external_open_parenthesis] = ACTIONS(365), + [sym__external_open_brace] = ACTIONS(365), + [sym__external_close_brace] = ACTIONS(365), + [sym__external_open_bracket] = ACTIONS(365), + [sym__external_open_bracket2] = ACTIONS(365), + }, + [225] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(223), + [anon_sym_function] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(225), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_repeat] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(223), + [sym__number_literal] = ACTIONS(225), + [anon_sym_SQUOTE] = ACTIONS(223), + [anon_sym_DQUOTE] = ACTIONS(223), + [sym_dots] = ACTIONS(225), + [sym_dot_dot_i] = ACTIONS(223), + [sym_return] = ACTIONS(225), + [sym_next] = ACTIONS(225), + [sym_break] = ACTIONS(225), + [sym_true] = ACTIONS(225), + [sym_false] = ACTIONS(225), + [sym_null] = ACTIONS(225), + [sym_inf] = ACTIONS(225), + [sym_nan] = ACTIONS(225), + [anon_sym_NA] = ACTIONS(225), + [anon_sym_NA_integer_] = ACTIONS(225), + [anon_sym_NA_real_] = ACTIONS(225), + [anon_sym_NA_complex_] = ACTIONS(225), + [anon_sym_NA_character_] = ACTIONS(225), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(223), + [sym__semicolon] = ACTIONS(223), + [sym__raw_string_literal] = ACTIONS(223), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(223), + [sym__external_close_brace] = ACTIONS(223), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), + }, + [226] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), [ts_builtin_sym_end] = ACTIONS(191), [sym_identifier] = ACTIONS(193), [anon_sym_BSLASH] = ACTIONS(191), [anon_sym_function] = ACTIONS(193), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(247), [anon_sym_if] = ACTIONS(193), [anon_sym_for] = ACTIONS(193), [anon_sym_while] = ACTIONS(193), [anon_sym_repeat] = ACTIONS(193), [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(249), [anon_sym_BANG] = ACTIONS(193), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), [sym__hex_literal] = ACTIONS(191), [sym__number_literal] = ACTIONS(193), [anon_sym_SQUOTE] = ACTIONS(191), @@ -23618,56 +23183,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(191), [sym__semicolon] = ACTIONS(191), [sym__raw_string_literal] = ACTIONS(191), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(285), [sym__external_open_brace] = ACTIONS(191), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [233] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), + [227] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), [ts_builtin_sym_end] = ACTIONS(195), [sym_identifier] = ACTIONS(197), [anon_sym_BSLASH] = ACTIONS(195), [anon_sym_function] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(247), [anon_sym_if] = ACTIONS(197), [anon_sym_for] = ACTIONS(197), [anon_sym_while] = ACTIONS(197), [anon_sym_repeat] = ACTIONS(197), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(249), [anon_sym_BANG] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), [sym__hex_literal] = ACTIONS(195), [sym__number_literal] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(195), @@ -23691,275 +23256,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(195), [sym__semicolon] = ACTIONS(195), [sym__raw_string_literal] = ACTIONS(195), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(285), [sym__external_open_brace] = ACTIONS(195), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), - }, - [234] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(199), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(199), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), - }, - [235] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(203), - [sym_identifier] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_if] = ACTIONS(205), - [anon_sym_for] = ACTIONS(205), - [anon_sym_while] = ACTIONS(205), - [anon_sym_repeat] = ACTIONS(205), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(203), - [sym__number_literal] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE] = ACTIONS(203), - [sym_dots] = ACTIONS(205), - [sym_dot_dot_i] = ACTIONS(203), - [sym_return] = ACTIONS(205), - [sym_next] = ACTIONS(205), - [sym_break] = ACTIONS(205), - [sym_true] = ACTIONS(205), - [sym_false] = ACTIONS(205), - [sym_null] = ACTIONS(205), - [sym_inf] = ACTIONS(205), - [sym_nan] = ACTIONS(205), - [anon_sym_NA] = ACTIONS(205), - [anon_sym_NA_integer_] = ACTIONS(205), - [anon_sym_NA_real_] = ACTIONS(205), - [anon_sym_NA_complex_] = ACTIONS(205), - [anon_sym_NA_character_] = ACTIONS(205), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(203), - [sym__semicolon] = ACTIONS(203), - [sym__raw_string_literal] = ACTIONS(203), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(203), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), - }, - [236] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(207), - [sym_identifier] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(207), - [anon_sym_function] = ACTIONS(209), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_if] = ACTIONS(209), - [anon_sym_for] = ACTIONS(209), - [anon_sym_while] = ACTIONS(209), - [anon_sym_repeat] = ACTIONS(209), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(207), - [sym__number_literal] = ACTIONS(209), - [anon_sym_SQUOTE] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(207), - [sym_dots] = ACTIONS(209), - [sym_dot_dot_i] = ACTIONS(207), - [sym_return] = ACTIONS(209), - [sym_next] = ACTIONS(209), - [sym_break] = ACTIONS(209), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_null] = ACTIONS(209), - [sym_inf] = ACTIONS(209), - [sym_nan] = ACTIONS(209), - [anon_sym_NA] = ACTIONS(209), - [anon_sym_NA_integer_] = ACTIONS(209), - [anon_sym_NA_real_] = ACTIONS(209), - [anon_sym_NA_complex_] = ACTIONS(209), - [anon_sym_NA_character_] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(207), - [sym__semicolon] = ACTIONS(207), - [sym__raw_string_literal] = ACTIONS(207), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(207), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [237] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), + [228] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), [ts_builtin_sym_end] = ACTIONS(211), [sym_identifier] = ACTIONS(213), [anon_sym_BSLASH] = ACTIONS(211), [anon_sym_function] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(247), [anon_sym_if] = ACTIONS(213), [anon_sym_for] = ACTIONS(213), [anon_sym_while] = ACTIONS(213), [anon_sym_repeat] = ACTIONS(213), [anon_sym_QMARK] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(249), [anon_sym_BANG] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), [sym__hex_literal] = ACTIONS(211), [sym__number_literal] = ACTIONS(213), [anon_sym_SQUOTE] = ACTIONS(211), @@ -23983,56 +23329,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(211), [sym__semicolon] = ACTIONS(211), [sym__raw_string_literal] = ACTIONS(211), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(285), [sym__external_open_brace] = ACTIONS(211), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [238] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), + [229] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(177), + [anon_sym_BSLASH] = ACTIONS(175), + [anon_sym_function] = ACTIONS(177), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(177), + [anon_sym_for] = ACTIONS(177), + [anon_sym_while] = ACTIONS(177), + [anon_sym_repeat] = ACTIONS(177), + [anon_sym_QMARK] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(175), + [sym__number_literal] = ACTIONS(177), + [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(175), + [sym_dots] = ACTIONS(177), + [sym_dot_dot_i] = ACTIONS(175), + [sym_return] = ACTIONS(177), + [sym_next] = ACTIONS(177), + [sym_break] = ACTIONS(177), + [sym_true] = ACTIONS(177), + [sym_false] = ACTIONS(177), + [sym_null] = ACTIONS(177), + [sym_inf] = ACTIONS(177), + [sym_nan] = ACTIONS(177), + [anon_sym_NA] = ACTIONS(177), + [anon_sym_NA_integer_] = ACTIONS(177), + [anon_sym_NA_real_] = ACTIONS(177), + [anon_sym_NA_complex_] = ACTIONS(177), + [anon_sym_NA_character_] = ACTIONS(177), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(175), + [sym__semicolon] = ACTIONS(175), + [sym__raw_string_literal] = ACTIONS(175), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(175), + [sym__external_close_brace] = ACTIONS(175), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), + }, + [230] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), [ts_builtin_sym_end] = ACTIONS(215), [sym_identifier] = ACTIONS(217), [anon_sym_BSLASH] = ACTIONS(215), [anon_sym_function] = ACTIONS(217), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(247), [anon_sym_if] = ACTIONS(217), [anon_sym_for] = ACTIONS(217), [anon_sym_while] = ACTIONS(217), [anon_sym_repeat] = ACTIONS(217), [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(249), [anon_sym_BANG] = ACTIONS(217), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), [sym__hex_literal] = ACTIONS(215), [sym__number_literal] = ACTIONS(217), [anon_sym_SQUOTE] = ACTIONS(215), @@ -24056,56 +23475,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(215), [sym__semicolon] = ACTIONS(215), [sym__raw_string_literal] = ACTIONS(215), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(285), [sym__external_open_brace] = ACTIONS(215), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [239] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), + [231] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(181), + [anon_sym_BSLASH] = ACTIONS(179), + [anon_sym_function] = ACTIONS(181), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(181), + [anon_sym_for] = ACTIONS(181), + [anon_sym_while] = ACTIONS(181), + [anon_sym_repeat] = ACTIONS(181), + [anon_sym_QMARK] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(179), + [sym__number_literal] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(179), + [sym_dots] = ACTIONS(181), + [sym_dot_dot_i] = ACTIONS(179), + [sym_return] = ACTIONS(181), + [sym_next] = ACTIONS(181), + [sym_break] = ACTIONS(181), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_inf] = ACTIONS(181), + [sym_nan] = ACTIONS(181), + [anon_sym_NA] = ACTIONS(181), + [anon_sym_NA_integer_] = ACTIONS(181), + [anon_sym_NA_real_] = ACTIONS(181), + [anon_sym_NA_complex_] = ACTIONS(181), + [anon_sym_NA_character_] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(179), + [sym__semicolon] = ACTIONS(179), + [sym__raw_string_literal] = ACTIONS(179), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(179), + [sym__external_close_brace] = ACTIONS(179), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), + }, + [232] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(221), + [anon_sym_BSLASH] = ACTIONS(219), + [anon_sym_function] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(221), + [anon_sym_for] = ACTIONS(221), + [anon_sym_while] = ACTIONS(221), + [anon_sym_repeat] = ACTIONS(221), + [anon_sym_QMARK] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(219), + [sym__number_literal] = ACTIONS(221), + [anon_sym_SQUOTE] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(219), + [sym_dots] = ACTIONS(221), + [sym_dot_dot_i] = ACTIONS(219), + [sym_return] = ACTIONS(221), + [sym_next] = ACTIONS(221), + [sym_break] = ACTIONS(221), + [sym_true] = ACTIONS(221), + [sym_false] = ACTIONS(221), + [sym_null] = ACTIONS(221), + [sym_inf] = ACTIONS(221), + [sym_nan] = ACTIONS(221), + [anon_sym_NA] = ACTIONS(221), + [anon_sym_NA_integer_] = ACTIONS(221), + [anon_sym_NA_real_] = ACTIONS(221), + [anon_sym_NA_complex_] = ACTIONS(221), + [anon_sym_NA_character_] = ACTIONS(221), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(219), + [sym__semicolon] = ACTIONS(219), + [sym__raw_string_literal] = ACTIONS(219), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(219), + [sym__external_close_brace] = ACTIONS(219), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), + }, + [233] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(143), + [sym_identifier] = ACTIONS(145), + [anon_sym_BSLASH] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(145), + [anon_sym_for] = ACTIONS(145), + [anon_sym_while] = ACTIONS(145), + [anon_sym_repeat] = ACTIONS(145), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(143), + [sym__number_literal] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(143), + [sym_dots] = ACTIONS(145), + [sym_dot_dot_i] = ACTIONS(143), + [sym_return] = ACTIONS(145), + [sym_next] = ACTIONS(145), + [sym_break] = ACTIONS(145), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_inf] = ACTIONS(145), + [sym_nan] = ACTIONS(145), + [anon_sym_NA] = ACTIONS(145), + [anon_sym_NA_integer_] = ACTIONS(145), + [anon_sym_NA_real_] = ACTIONS(145), + [anon_sym_NA_complex_] = ACTIONS(145), + [anon_sym_NA_character_] = ACTIONS(145), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(143), + [sym__semicolon] = ACTIONS(143), + [sym__raw_string_literal] = ACTIONS(143), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(143), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [234] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), [ts_builtin_sym_end] = ACTIONS(219), [sym_identifier] = ACTIONS(221), [anon_sym_BSLASH] = ACTIONS(219), [anon_sym_function] = ACTIONS(221), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(247), [anon_sym_if] = ACTIONS(221), [anon_sym_for] = ACTIONS(221), [anon_sym_while] = ACTIONS(221), [anon_sym_repeat] = ACTIONS(221), [anon_sym_QMARK] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(249), [anon_sym_BANG] = ACTIONS(221), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), [sym__hex_literal] = ACTIONS(219), [sym__number_literal] = ACTIONS(221), [anon_sym_SQUOTE] = ACTIONS(219), @@ -24129,129 +23767,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(219), [sym__semicolon] = ACTIONS(219), [sym__raw_string_literal] = ACTIONS(219), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(285), [sym__external_open_brace] = ACTIONS(219), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [240] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(145), - [sym_identifier] = ACTIONS(143), - [anon_sym_BSLASH] = ACTIONS(145), - [anon_sym_function] = ACTIONS(143), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_if] = ACTIONS(143), - [anon_sym_for] = ACTIONS(143), - [anon_sym_while] = ACTIONS(143), - [anon_sym_repeat] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(145), - [sym__number_literal] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_dots] = ACTIONS(143), - [sym_dot_dot_i] = ACTIONS(145), - [sym_return] = ACTIONS(143), - [sym_next] = ACTIONS(143), - [sym_break] = ACTIONS(143), - [sym_true] = ACTIONS(143), - [sym_false] = ACTIONS(143), - [sym_null] = ACTIONS(143), - [sym_inf] = ACTIONS(143), - [sym_nan] = ACTIONS(143), - [anon_sym_NA] = ACTIONS(143), - [anon_sym_NA_integer_] = ACTIONS(143), - [anon_sym_NA_real_] = ACTIONS(143), - [anon_sym_NA_complex_] = ACTIONS(143), - [anon_sym_NA_character_] = ACTIONS(143), + [235] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(145), + [anon_sym_BSLASH] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(145), + [anon_sym_for] = ACTIONS(145), + [anon_sym_while] = ACTIONS(145), + [anon_sym_repeat] = ACTIONS(145), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(143), + [sym__number_literal] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(143), + [sym_dots] = ACTIONS(145), + [sym_dot_dot_i] = ACTIONS(143), + [sym_return] = ACTIONS(145), + [sym_next] = ACTIONS(145), + [sym_break] = ACTIONS(145), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_inf] = ACTIONS(145), + [sym_nan] = ACTIONS(145), + [anon_sym_NA] = ACTIONS(145), + [anon_sym_NA_integer_] = ACTIONS(145), + [anon_sym_NA_real_] = ACTIONS(145), + [anon_sym_NA_complex_] = ACTIONS(145), + [anon_sym_NA_character_] = ACTIONS(145), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(145), - [sym__semicolon] = ACTIONS(145), - [sym__raw_string_literal] = ACTIONS(145), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(145), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__newline] = ACTIONS(143), + [sym__semicolon] = ACTIONS(143), + [sym__raw_string_literal] = ACTIONS(143), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(143), + [sym__external_close_brace] = ACTIONS(143), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, - [241] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), + [236] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), [ts_builtin_sym_end] = ACTIONS(223), [sym_identifier] = ACTIONS(225), [anon_sym_BSLASH] = ACTIONS(223), [anon_sym_function] = ACTIONS(225), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(247), [anon_sym_if] = ACTIONS(225), [anon_sym_for] = ACTIONS(225), [anon_sym_while] = ACTIONS(225), [anon_sym_repeat] = ACTIONS(225), [anon_sym_QMARK] = ACTIONS(223), - [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(249), [anon_sym_BANG] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), [sym__hex_literal] = ACTIONS(223), [sym__number_literal] = ACTIONS(225), [anon_sym_SQUOTE] = ACTIONS(223), @@ -24275,56 +23913,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(223), [sym__semicolon] = ACTIONS(223), [sym__raw_string_literal] = ACTIONS(223), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(285), [sym__external_open_brace] = ACTIONS(223), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), }, - [242] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), + [237] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), [ts_builtin_sym_end] = ACTIONS(227), [sym_identifier] = ACTIONS(229), [anon_sym_BSLASH] = ACTIONS(227), [anon_sym_function] = ACTIONS(229), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(247), [anon_sym_if] = ACTIONS(229), [anon_sym_for] = ACTIONS(229), [anon_sym_while] = ACTIONS(229), [anon_sym_repeat] = ACTIONS(229), [anon_sym_QMARK] = ACTIONS(227), - [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_TILDE] = ACTIONS(249), [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), [sym__hex_literal] = ACTIONS(227), [sym__number_literal] = ACTIONS(229), [anon_sym_SQUOTE] = ACTIONS(227), @@ -24348,3461 +23986,3686 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(227), [sym__semicolon] = ACTIONS(227), [sym__raw_string_literal] = ACTIONS(227), - [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_parenthesis] = ACTIONS(285), [sym__external_open_brace] = ACTIONS(227), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [238] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(231), + [sym_identifier] = ACTIONS(233), + [anon_sym_BSLASH] = ACTIONS(231), + [anon_sym_function] = ACTIONS(233), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(233), + [anon_sym_for] = ACTIONS(233), + [anon_sym_while] = ACTIONS(233), + [anon_sym_repeat] = ACTIONS(233), + [anon_sym_QMARK] = ACTIONS(231), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(233), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(231), + [sym__number_literal] = ACTIONS(233), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_dots] = ACTIONS(233), + [sym_dot_dot_i] = ACTIONS(231), + [sym_return] = ACTIONS(233), + [sym_next] = ACTIONS(233), + [sym_break] = ACTIONS(233), + [sym_true] = ACTIONS(233), + [sym_false] = ACTIONS(233), + [sym_null] = ACTIONS(233), + [sym_inf] = ACTIONS(233), + [sym_nan] = ACTIONS(233), + [anon_sym_NA] = ACTIONS(233), + [anon_sym_NA_integer_] = ACTIONS(233), + [anon_sym_NA_real_] = ACTIONS(233), + [anon_sym_NA_complex_] = ACTIONS(233), + [anon_sym_NA_character_] = ACTIONS(233), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(231), + [sym__semicolon] = ACTIONS(231), + [sym__raw_string_literal] = ACTIONS(231), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(231), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [239] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(381), + [anon_sym_BSLASH] = ACTIONS(383), + [anon_sym_function] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(381), + [anon_sym_for] = ACTIONS(381), + [anon_sym_while] = ACTIONS(381), + [anon_sym_repeat] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(383), + [sym__number_literal] = ACTIONS(381), + [anon_sym_SQUOTE] = ACTIONS(383), + [anon_sym_DQUOTE] = ACTIONS(383), + [sym_dots] = ACTIONS(381), + [sym_dot_dot_i] = ACTIONS(383), + [sym_return] = ACTIONS(381), + [sym_next] = ACTIONS(381), + [sym_break] = ACTIONS(381), + [sym_true] = ACTIONS(381), + [sym_false] = ACTIONS(381), + [sym_null] = ACTIONS(381), + [sym_inf] = ACTIONS(381), + [sym_nan] = ACTIONS(381), + [anon_sym_NA] = ACTIONS(381), + [anon_sym_NA_integer_] = ACTIONS(381), + [anon_sym_NA_real_] = ACTIONS(381), + [anon_sym_NA_complex_] = ACTIONS(381), + [anon_sym_NA_character_] = ACTIONS(381), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(383), + [sym__semicolon] = ACTIONS(383), + [sym__raw_string_literal] = ACTIONS(383), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(383), + [sym__external_close_brace] = ACTIONS(383), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), + }, + [240] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(235), + [sym_identifier] = ACTIONS(237), + [anon_sym_BSLASH] = ACTIONS(235), + [anon_sym_function] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(237), + [anon_sym_for] = ACTIONS(237), + [anon_sym_while] = ACTIONS(237), + [anon_sym_repeat] = ACTIONS(237), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(235), + [sym__number_literal] = ACTIONS(237), + [anon_sym_SQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym_dots] = ACTIONS(237), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(237), + [sym_next] = ACTIONS(237), + [sym_break] = ACTIONS(237), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [sym_null] = ACTIONS(237), + [sym_inf] = ACTIONS(237), + [sym_nan] = ACTIONS(237), + [anon_sym_NA] = ACTIONS(237), + [anon_sym_NA_integer_] = ACTIONS(237), + [anon_sym_NA_real_] = ACTIONS(237), + [anon_sym_NA_complex_] = ACTIONS(237), + [anon_sym_NA_character_] = ACTIONS(237), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(235), + [sym__semicolon] = ACTIONS(235), + [sym__raw_string_literal] = ACTIONS(235), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(235), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [241] = { + [sym_call_arguments] = STATE(443), + [sym_subset_arguments] = STATE(442), + [sym_subset2_arguments] = STATE(441), + [sym__open_parenthesis] = STATE(263), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(239), + [sym_identifier] = ACTIONS(241), + [anon_sym_BSLASH] = ACTIONS(239), + [anon_sym_function] = ACTIONS(241), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_if] = ACTIONS(241), + [anon_sym_for] = ACTIONS(241), + [anon_sym_while] = ACTIONS(241), + [anon_sym_repeat] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(255), + [anon_sym_COLON_EQ] = ACTIONS(255), + [anon_sym_DASH_GT] = ACTIONS(257), + [anon_sym_DASH_GT_GT] = ACTIONS(259), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [aux_sym_binary_operator_token1] = ACTIONS(279), + [anon_sym_PIPE_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(283), + [sym__hex_literal] = ACTIONS(239), + [sym__number_literal] = ACTIONS(241), + [anon_sym_SQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym_dots] = ACTIONS(241), + [sym_dot_dot_i] = ACTIONS(239), + [sym_return] = ACTIONS(241), + [sym_next] = ACTIONS(241), + [sym_break] = ACTIONS(241), + [sym_true] = ACTIONS(241), + [sym_false] = ACTIONS(241), + [sym_null] = ACTIONS(241), + [sym_inf] = ACTIONS(241), + [sym_nan] = ACTIONS(241), + [anon_sym_NA] = ACTIONS(241), + [anon_sym_NA_integer_] = ACTIONS(241), + [anon_sym_NA_real_] = ACTIONS(241), + [anon_sym_NA_complex_] = ACTIONS(241), + [anon_sym_NA_character_] = ACTIONS(241), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(239), + [sym__semicolon] = ACTIONS(239), + [sym__raw_string_literal] = ACTIONS(239), + [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_brace] = ACTIONS(239), + [sym__external_open_bracket] = ACTIONS(287), + [sym__external_open_bracket2] = ACTIONS(289), + }, + [242] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(185), + [anon_sym_BSLASH] = ACTIONS(183), + [anon_sym_function] = ACTIONS(185), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(185), + [anon_sym_for] = ACTIONS(185), + [anon_sym_while] = ACTIONS(185), + [anon_sym_repeat] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(183), + [sym__number_literal] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(183), + [sym_dots] = ACTIONS(185), + [sym_dot_dot_i] = ACTIONS(183), + [sym_return] = ACTIONS(185), + [sym_next] = ACTIONS(185), + [sym_break] = ACTIONS(185), + [sym_true] = ACTIONS(185), + [sym_false] = ACTIONS(185), + [sym_null] = ACTIONS(185), + [sym_inf] = ACTIONS(185), + [sym_nan] = ACTIONS(185), + [anon_sym_NA] = ACTIONS(185), + [anon_sym_NA_integer_] = ACTIONS(185), + [anon_sym_NA_real_] = ACTIONS(185), + [anon_sym_NA_complex_] = ACTIONS(185), + [anon_sym_NA_character_] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(183), + [sym__semicolon] = ACTIONS(183), + [sym__raw_string_literal] = ACTIONS(183), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(183), + [sym__external_close_brace] = ACTIONS(183), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, [243] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(231), - [anon_sym_BSLASH] = ACTIONS(233), - [anon_sym_function] = ACTIONS(231), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(231), - [anon_sym_for] = ACTIONS(231), - [anon_sym_while] = ACTIONS(231), - [anon_sym_repeat] = ACTIONS(231), - [anon_sym_QMARK] = ACTIONS(233), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(233), - [sym__number_literal] = ACTIONS(231), - [anon_sym_SQUOTE] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym_dots] = ACTIONS(231), - [sym_dot_dot_i] = ACTIONS(233), - [sym_return] = ACTIONS(231), - [sym_next] = ACTIONS(231), - [sym_break] = ACTIONS(231), - [sym_true] = ACTIONS(231), - [sym_false] = ACTIONS(231), - [sym_null] = ACTIONS(231), - [sym_inf] = ACTIONS(231), - [sym_nan] = ACTIONS(231), - [anon_sym_NA] = ACTIONS(231), - [anon_sym_NA_integer_] = ACTIONS(231), - [anon_sym_NA_real_] = ACTIONS(231), - [anon_sym_NA_complex_] = ACTIONS(231), - [anon_sym_NA_character_] = ACTIONS(231), + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(217), + [anon_sym_BSLASH] = ACTIONS(215), + [anon_sym_function] = ACTIONS(217), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(217), + [anon_sym_while] = ACTIONS(217), + [anon_sym_repeat] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(215), + [sym__number_literal] = ACTIONS(217), + [anon_sym_SQUOTE] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(215), + [sym_dots] = ACTIONS(217), + [sym_dot_dot_i] = ACTIONS(215), + [sym_return] = ACTIONS(217), + [sym_next] = ACTIONS(217), + [sym_break] = ACTIONS(217), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [sym_null] = ACTIONS(217), + [sym_inf] = ACTIONS(217), + [sym_nan] = ACTIONS(217), + [anon_sym_NA] = ACTIONS(217), + [anon_sym_NA_integer_] = ACTIONS(217), + [anon_sym_NA_real_] = ACTIONS(217), + [anon_sym_NA_complex_] = ACTIONS(217), + [anon_sym_NA_character_] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(233), - [sym__semicolon] = ACTIONS(233), - [sym__raw_string_literal] = ACTIONS(233), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(233), - [sym__external_close_brace] = ACTIONS(233), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(215), + [sym__semicolon] = ACTIONS(215), + [sym__raw_string_literal] = ACTIONS(215), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(215), + [sym__external_close_brace] = ACTIONS(215), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, [244] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(235), - [anon_sym_BSLASH] = ACTIONS(237), - [anon_sym_function] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(269), - [anon_sym_if] = ACTIONS(235), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(235), - [anon_sym_repeat] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(279), - [anon_sym_DASH_GT_GT] = ACTIONS(281), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(237), - [sym__number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_dots] = ACTIONS(235), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(235), - [sym_next] = ACTIONS(235), - [sym_break] = ACTIONS(235), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_null] = ACTIONS(235), - [sym_inf] = ACTIONS(235), - [sym_nan] = ACTIONS(235), - [anon_sym_NA] = ACTIONS(235), - [anon_sym_NA_integer_] = ACTIONS(235), - [anon_sym_NA_real_] = ACTIONS(235), - [anon_sym_NA_complex_] = ACTIONS(235), - [anon_sym_NA_character_] = ACTIONS(235), + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(211), + [anon_sym_function] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(213), + [anon_sym_for] = ACTIONS(213), + [anon_sym_while] = ACTIONS(213), + [anon_sym_repeat] = ACTIONS(213), + [anon_sym_QMARK] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(211), + [sym__number_literal] = ACTIONS(213), + [anon_sym_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [sym_dots] = ACTIONS(213), + [sym_dot_dot_i] = ACTIONS(211), + [sym_return] = ACTIONS(213), + [sym_next] = ACTIONS(213), + [sym_break] = ACTIONS(213), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [sym_null] = ACTIONS(213), + [sym_inf] = ACTIONS(213), + [sym_nan] = ACTIONS(213), + [anon_sym_NA] = ACTIONS(213), + [anon_sym_NA_integer_] = ACTIONS(213), + [anon_sym_NA_real_] = ACTIONS(213), + [anon_sym_NA_complex_] = ACTIONS(213), + [anon_sym_NA_character_] = ACTIONS(213), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - [sym__semicolon] = ACTIONS(237), - [sym__raw_string_literal] = ACTIONS(237), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(237), - [sym__external_close_brace] = ACTIONS(237), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(211), + [sym__semicolon] = ACTIONS(211), + [sym__raw_string_literal] = ACTIONS(211), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(211), + [sym__external_close_brace] = ACTIONS(211), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, [245] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(235), - [anon_sym_BSLASH] = ACTIONS(237), - [anon_sym_function] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_if] = ACTIONS(235), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(235), - [anon_sym_repeat] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_LT_LT_DASH] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(237), - [anon_sym_DASH_GT] = ACTIONS(235), - [anon_sym_DASH_GT_GT] = ACTIONS(237), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(237), - [sym__number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_dots] = ACTIONS(235), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(235), - [sym_next] = ACTIONS(235), - [sym_break] = ACTIONS(235), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_null] = ACTIONS(235), - [sym_inf] = ACTIONS(235), - [sym_nan] = ACTIONS(235), - [anon_sym_NA] = ACTIONS(235), - [anon_sym_NA_integer_] = ACTIONS(235), - [anon_sym_NA_real_] = ACTIONS(235), - [anon_sym_NA_complex_] = ACTIONS(235), - [anon_sym_NA_character_] = ACTIONS(235), + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(197), + [anon_sym_BSLASH] = ACTIONS(195), + [anon_sym_function] = ACTIONS(197), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(197), + [anon_sym_for] = ACTIONS(197), + [anon_sym_while] = ACTIONS(197), + [anon_sym_repeat] = ACTIONS(197), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(195), + [sym__number_literal] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [sym_dots] = ACTIONS(197), + [sym_dot_dot_i] = ACTIONS(195), + [sym_return] = ACTIONS(197), + [sym_next] = ACTIONS(197), + [sym_break] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_inf] = ACTIONS(197), + [sym_nan] = ACTIONS(197), + [anon_sym_NA] = ACTIONS(197), + [anon_sym_NA_integer_] = ACTIONS(197), + [anon_sym_NA_real_] = ACTIONS(197), + [anon_sym_NA_complex_] = ACTIONS(197), + [anon_sym_NA_character_] = ACTIONS(197), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - [sym__semicolon] = ACTIONS(237), - [sym__raw_string_literal] = ACTIONS(237), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(237), - [sym__external_close_brace] = ACTIONS(237), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(195), + [sym__semicolon] = ACTIONS(195), + [sym__raw_string_literal] = ACTIONS(195), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(195), + [sym__external_close_brace] = ACTIONS(195), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, [246] = { - [sym_call_arguments] = STATE(417), - [sym_subset_arguments] = STATE(439), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(259), - [sym__open_bracket] = STATE(260), - [sym__open_bracket2] = STATE(261), - [sym_identifier] = ACTIONS(235), - [anon_sym_BSLASH] = ACTIONS(237), - [anon_sym_function] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_if] = ACTIONS(235), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(235), - [anon_sym_repeat] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_LT_LT_DASH] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(237), - [anon_sym_DASH_GT] = ACTIONS(235), - [anon_sym_DASH_GT_GT] = ACTIONS(237), - [anon_sym_PIPE] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(235), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(299), - [aux_sym_binary_operator_token1] = ACTIONS(301), - [anon_sym_PIPE_GT] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(305), - [sym__hex_literal] = ACTIONS(237), - [sym__number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_dots] = ACTIONS(235), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(235), - [sym_next] = ACTIONS(235), - [sym_break] = ACTIONS(235), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_null] = ACTIONS(235), - [sym_inf] = ACTIONS(235), - [sym_nan] = ACTIONS(235), - [anon_sym_NA] = ACTIONS(235), - [anon_sym_NA_integer_] = ACTIONS(235), - [anon_sym_NA_real_] = ACTIONS(235), - [anon_sym_NA_complex_] = ACTIONS(235), - [anon_sym_NA_character_] = ACTIONS(235), + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(193), + [anon_sym_BSLASH] = ACTIONS(191), + [anon_sym_function] = ACTIONS(193), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(193), + [anon_sym_for] = ACTIONS(193), + [anon_sym_while] = ACTIONS(193), + [anon_sym_repeat] = ACTIONS(193), + [anon_sym_QMARK] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(191), + [sym__number_literal] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(191), + [sym_dots] = ACTIONS(193), + [sym_dot_dot_i] = ACTIONS(191), + [sym_return] = ACTIONS(193), + [sym_next] = ACTIONS(193), + [sym_break] = ACTIONS(193), + [sym_true] = ACTIONS(193), + [sym_false] = ACTIONS(193), + [sym_null] = ACTIONS(193), + [sym_inf] = ACTIONS(193), + [sym_nan] = ACTIONS(193), + [anon_sym_NA] = ACTIONS(193), + [anon_sym_NA_integer_] = ACTIONS(193), + [anon_sym_NA_real_] = ACTIONS(193), + [anon_sym_NA_complex_] = ACTIONS(193), + [anon_sym_NA_character_] = ACTIONS(193), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - [sym__semicolon] = ACTIONS(237), - [sym__raw_string_literal] = ACTIONS(237), - [sym__external_open_parenthesis] = ACTIONS(307), - [sym__external_open_brace] = ACTIONS(237), - [sym__external_close_brace] = ACTIONS(237), - [sym__external_open_bracket] = ACTIONS(309), - [sym__external_open_bracket2] = ACTIONS(311), + [sym__newline] = ACTIONS(191), + [sym__semicolon] = ACTIONS(191), + [sym__raw_string_literal] = ACTIONS(191), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(191), + [sym__external_close_brace] = ACTIONS(191), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, [247] = { - [sym_call_arguments] = STATE(440), - [sym_subset_arguments] = STATE(403), - [sym_subset2_arguments] = STATE(410), - [sym__open_parenthesis] = STATE(283), - [sym__open_bracket] = STATE(249), - [sym__open_bracket2] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(241), - [sym_identifier] = ACTIONS(239), - [anon_sym_BSLASH] = ACTIONS(241), - [anon_sym_function] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_if] = ACTIONS(239), - [anon_sym_for] = ACTIONS(239), - [anon_sym_while] = ACTIONS(239), - [anon_sym_repeat] = ACTIONS(239), - [anon_sym_QMARK] = ACTIONS(241), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(323), - [anon_sym_COLON_EQ] = ACTIONS(323), - [anon_sym_DASH_GT] = ACTIONS(325), - [anon_sym_DASH_GT_GT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_LT_EQ] = ACTIONS(339), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_GT_EQ] = ACTIONS(339), - [anon_sym_EQ_EQ] = ACTIONS(339), - [anon_sym_BANG_EQ] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(255), - [anon_sym_CARET] = ACTIONS(255), - [aux_sym_binary_operator_token1] = ACTIONS(257), - [anon_sym_PIPE_GT] = ACTIONS(257), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(261), - [sym__hex_literal] = ACTIONS(241), - [sym__number_literal] = ACTIONS(239), - [anon_sym_SQUOTE] = ACTIONS(241), - [anon_sym_DQUOTE] = ACTIONS(241), - [sym_dots] = ACTIONS(239), - [sym_dot_dot_i] = ACTIONS(241), - [sym_return] = ACTIONS(239), - [sym_next] = ACTIONS(239), - [sym_break] = ACTIONS(239), - [sym_true] = ACTIONS(239), - [sym_false] = ACTIONS(239), - [sym_null] = ACTIONS(239), - [sym_inf] = ACTIONS(239), - [sym_nan] = ACTIONS(239), - [anon_sym_NA] = ACTIONS(239), - [anon_sym_NA_integer_] = ACTIONS(239), - [anon_sym_NA_real_] = ACTIONS(239), - [anon_sym_NA_complex_] = ACTIONS(239), - [anon_sym_NA_character_] = ACTIONS(239), + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(414), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(267), + [sym__open_bracket] = STATE(272), + [sym__open_bracket2] = STATE(273), + [sym_identifier] = ACTIONS(189), + [anon_sym_BSLASH] = ACTIONS(187), + [anon_sym_function] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_if] = ACTIONS(189), + [anon_sym_for] = ACTIONS(189), + [anon_sym_while] = ACTIONS(189), + [anon_sym_repeat] = ACTIONS(189), + [anon_sym_QMARK] = ACTIONS(187), + [anon_sym_TILDE] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT_DASH] = ACTIONS(299), + [anon_sym_LT_LT_DASH] = ACTIONS(299), + [anon_sym_COLON_EQ] = ACTIONS(299), + [anon_sym_DASH_GT] = ACTIONS(301), + [anon_sym_DASH_GT_GT] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_STAR_STAR] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [aux_sym_binary_operator_token1] = ACTIONS(323), + [anon_sym_PIPE_GT] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_DOLLAR] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [sym__hex_literal] = ACTIONS(187), + [sym__number_literal] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym_dots] = ACTIONS(189), + [sym_dot_dot_i] = ACTIONS(187), + [sym_return] = ACTIONS(189), + [sym_next] = ACTIONS(189), + [sym_break] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_inf] = ACTIONS(189), + [sym_nan] = ACTIONS(189), + [anon_sym_NA] = ACTIONS(189), + [anon_sym_NA_integer_] = ACTIONS(189), + [anon_sym_NA_real_] = ACTIONS(189), + [anon_sym_NA_complex_] = ACTIONS(189), + [anon_sym_NA_character_] = ACTIONS(189), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(241), - [sym__semicolon] = ACTIONS(241), - [sym__raw_string_literal] = ACTIONS(241), - [sym__external_open_parenthesis] = ACTIONS(263), - [sym__external_open_brace] = ACTIONS(241), - [sym__external_open_bracket] = ACTIONS(265), - [sym__external_open_bracket2] = ACTIONS(267), + [sym__newline] = ACTIONS(187), + [sym__semicolon] = ACTIONS(187), + [sym__raw_string_literal] = ACTIONS(187), + [sym__external_open_parenthesis] = ACTIONS(329), + [sym__external_open_brace] = ACTIONS(187), + [sym__external_close_brace] = ACTIONS(187), + [sym__external_open_bracket] = ACTIONS(331), + [sym__external_open_bracket2] = ACTIONS(333), }, [248] = { - [sym_string] = STATE(333), - [sym__single_quoted_string] = STATE(294), - [sym__double_quoted_string] = STATE(295), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(333), + [sym_function_definition] = STATE(1370), + [sym_if_statement] = STATE(1370), + [sym_for_statement] = STATE(1370), + [sym_while_statement] = STATE(1370), + [sym_repeat_statement] = STATE(1370), + [sym_braced_expression] = STATE(1370), + [sym_parenthesized_expression] = STATE(1370), + [sym_call] = STATE(1370), + [sym_subset] = STATE(1370), + [sym_subset2] = STATE(1370), + [sym_argument] = STATE(1910), + [sym__argument_named] = STATE(2043), + [sym__argument_unnamed] = STATE(2044), + [sym__argument_value] = STATE(2045), + [sym_unary_operator] = STATE(1370), + [sym_binary_operator] = STATE(1370), + [sym_extract_operator] = STATE(1370), + [sym_namespace_operator] = STATE(1370), + [sym_integer] = STATE(1370), + [sym_complex] = STATE(1370), + [sym_float] = STATE(1370), + [sym__float_literal] = STATE(1618), + [sym_string] = STATE(1610), + [sym__single_quoted_string] = STATE(1605), + [sym__double_quoted_string] = STATE(1619), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2027), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2056), + [sym_na] = STATE(1370), + [sym__expression] = STATE(1370), + [sym__open_parenthesis] = STATE(1057), + [sym__open_brace] = STATE(335), + [sym__close_bracket] = STATE(1679), + [aux_sym_call_arguments_repeat1] = STATE(1909), [sym_identifier] = ACTIONS(387), [anon_sym_BSLASH] = ACTIONS(389), [anon_sym_function] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_if] = ACTIONS(391), - [anon_sym_for] = ACTIONS(391), - [anon_sym_while] = ACTIONS(391), - [anon_sym_repeat] = ACTIONS(391), - [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_TILDE] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_LT_DASH] = ACTIONS(389), - [anon_sym_LT_LT_DASH] = ACTIONS(389), - [anon_sym_COLON_EQ] = ACTIONS(389), - [anon_sym_DASH_GT] = ACTIONS(391), - [anon_sym_DASH_GT_GT] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_STAR_STAR] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [aux_sym_binary_operator_token1] = ACTIONS(389), - [anon_sym_PIPE_GT] = ACTIONS(389), - [anon_sym_COLON] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(389), - [anon_sym_AT] = ACTIONS(389), - [sym__hex_literal] = ACTIONS(389), - [sym__number_literal] = ACTIONS(391), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(375), + [anon_sym_if] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_while] = ACTIONS(397), + [anon_sym_repeat] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [sym__hex_literal] = ACTIONS(409), + [sym__number_literal] = ACTIONS(411), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), [sym_dots] = ACTIONS(387), - [sym_dot_dot_i] = ACTIONS(393), - [sym_return] = ACTIONS(391), - [sym_next] = ACTIONS(391), - [sym_break] = ACTIONS(391), - [sym_true] = ACTIONS(391), - [sym_false] = ACTIONS(391), - [sym_null] = ACTIONS(391), - [sym_inf] = ACTIONS(391), - [sym_nan] = ACTIONS(391), - [anon_sym_NA] = ACTIONS(391), - [anon_sym_NA_integer_] = ACTIONS(391), - [anon_sym_NA_real_] = ACTIONS(391), - [anon_sym_NA_complex_] = ACTIONS(391), - [anon_sym_NA_character_] = ACTIONS(391), + [sym_dot_dot_i] = ACTIONS(417), + [sym_return] = ACTIONS(419), + [sym_next] = ACTIONS(419), + [sym_break] = ACTIONS(419), + [sym_true] = ACTIONS(419), + [sym_false] = ACTIONS(419), + [sym_null] = ACTIONS(419), + [sym_inf] = ACTIONS(419), + [sym_nan] = ACTIONS(419), + [anon_sym_NA] = ACTIONS(421), + [anon_sym_NA_integer_] = ACTIONS(421), + [anon_sym_NA_real_] = ACTIONS(421), + [anon_sym_NA_complex_] = ACTIONS(421), + [anon_sym_NA_character_] = ACTIONS(421), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(389), - [sym__semicolon] = ACTIONS(389), - [sym__raw_string_literal] = ACTIONS(381), - [sym__external_else] = ACTIONS(389), - [sym__external_open_parenthesis] = ACTIONS(389), - [sym__external_open_brace] = ACTIONS(389), - [sym__external_close_brace] = ACTIONS(389), - [sym__external_open_bracket] = ACTIONS(389), - [sym__external_open_bracket2] = ACTIONS(389), + [sym_comma] = ACTIONS(423), + [sym__raw_string_literal] = ACTIONS(425), + [sym__external_open_parenthesis] = ACTIONS(427), + [sym__external_open_brace] = ACTIONS(429), + [sym__external_close_bracket] = ACTIONS(431), }, [249] = { - [sym_function_definition] = STATE(1518), - [sym_if_statement] = STATE(1518), - [sym_for_statement] = STATE(1518), - [sym_while_statement] = STATE(1518), - [sym_repeat_statement] = STATE(1518), - [sym_braced_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_call] = STATE(1518), - [sym_subset] = STATE(1518), - [sym_subset2] = STATE(1518), - [sym_argument] = STATE(1816), - [sym__argument_named] = STATE(2039), - [sym__argument_unnamed] = STATE(2047), - [sym__argument_value] = STATE(2053), - [sym_unary_operator] = STATE(1518), - [sym_binary_operator] = STATE(1518), - [sym_extract_operator] = STATE(1518), - [sym_namespace_operator] = STATE(1518), - [sym_integer] = STATE(1518), - [sym_complex] = STATE(1518), - [sym_float] = STATE(1518), - [sym__float_literal] = STATE(1605), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1604), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2048), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2069), - [sym_na] = STATE(1518), - [sym__expression] = STATE(1518), - [sym__open_parenthesis] = STATE(1066), - [sym__open_brace] = STATE(373), - [sym__close_bracket] = STATE(411), - [aux_sym_call_arguments_repeat1] = STATE(1811), - [sym_identifier] = ACTIONS(395), - [anon_sym_BSLASH] = ACTIONS(397), - [anon_sym_function] = ACTIONS(399), - [anon_sym_if] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_repeat] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [sym__hex_literal] = ACTIONS(417), - [sym__number_literal] = ACTIONS(419), - [anon_sym_SQUOTE] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [sym_dots] = ACTIONS(395), - [sym_dot_dot_i] = ACTIONS(425), - [sym_return] = ACTIONS(427), - [sym_next] = ACTIONS(427), - [sym_break] = ACTIONS(427), - [sym_true] = ACTIONS(427), - [sym_false] = ACTIONS(427), - [sym_null] = ACTIONS(427), - [sym_inf] = ACTIONS(427), - [sym_nan] = ACTIONS(427), - [anon_sym_NA] = ACTIONS(429), - [anon_sym_NA_integer_] = ACTIONS(429), - [anon_sym_NA_real_] = ACTIONS(429), - [anon_sym_NA_complex_] = ACTIONS(429), - [anon_sym_NA_character_] = ACTIONS(429), + [sym_function_definition] = STATE(1344), + [sym_if_statement] = STATE(1344), + [sym_for_statement] = STATE(1344), + [sym_while_statement] = STATE(1344), + [sym_repeat_statement] = STATE(1344), + [sym_braced_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_call] = STATE(1344), + [sym_subset] = STATE(1344), + [sym_subset2] = STATE(1344), + [sym_argument] = STATE(1824), + [sym__argument_named] = STATE(2053), + [sym__argument_unnamed] = STATE(2030), + [sym__argument_value] = STATE(2031), + [sym_unary_operator] = STATE(1344), + [sym_binary_operator] = STATE(1344), + [sym_extract_operator] = STATE(1344), + [sym_namespace_operator] = STATE(1344), + [sym_integer] = STATE(1344), + [sym_complex] = STATE(1344), + [sym_float] = STATE(1344), + [sym__float_literal] = STATE(1628), + [sym_string] = STATE(1609), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1632), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2039), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2057), + [sym_na] = STATE(1344), + [sym__expression] = STATE(1344), + [sym__open_parenthesis] = STATE(1113), + [sym__open_brace] = STATE(331), + [sym__close_bracket2] = STATE(372), + [aux_sym_call_arguments_repeat1] = STATE(1902), + [sym_identifier] = ACTIONS(433), + [anon_sym_BSLASH] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_for] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_repeat] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [sym__hex_literal] = ACTIONS(455), + [sym__number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [sym_dots] = ACTIONS(433), + [sym_dot_dot_i] = ACTIONS(463), + [sym_return] = ACTIONS(465), + [sym_next] = ACTIONS(465), + [sym_break] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_inf] = ACTIONS(465), + [sym_nan] = ACTIONS(465), + [anon_sym_NA] = ACTIONS(467), + [anon_sym_NA_integer_] = ACTIONS(467), + [anon_sym_NA_real_] = ACTIONS(467), + [anon_sym_NA_complex_] = ACTIONS(467), + [anon_sym_NA_character_] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(431), - [sym__raw_string_literal] = ACTIONS(433), - [sym__external_open_parenthesis] = ACTIONS(435), - [sym__external_open_brace] = ACTIONS(437), - [sym__external_close_bracket] = ACTIONS(439), + [sym_comma] = ACTIONS(469), + [sym__raw_string_literal] = ACTIONS(471), + [sym__external_open_parenthesis] = ACTIONS(473), + [sym__external_open_brace] = ACTIONS(475), + [sym__external_close_bracket2] = ACTIONS(477), }, [250] = { - [sym_function_definition] = STATE(1537), - [sym_if_statement] = STATE(1537), - [sym_for_statement] = STATE(1537), - [sym_while_statement] = STATE(1537), - [sym_repeat_statement] = STATE(1537), - [sym_braced_expression] = STATE(1537), - [sym_parenthesized_expression] = STATE(1537), - [sym_call] = STATE(1537), - [sym_subset] = STATE(1537), - [sym_subset2] = STATE(1537), - [sym_argument] = STATE(1821), - [sym__argument_named] = STATE(2036), - [sym__argument_unnamed] = STATE(2033), - [sym__argument_value] = STATE(2035), - [sym_unary_operator] = STATE(1537), - [sym_binary_operator] = STATE(1537), - [sym_extract_operator] = STATE(1537), - [sym_namespace_operator] = STATE(1537), - [sym_integer] = STATE(1537), - [sym_complex] = STATE(1537), - [sym_float] = STATE(1537), - [sym__float_literal] = STATE(1632), - [sym_string] = STATE(1614), - [sym__single_quoted_string] = STATE(1633), - [sym__double_quoted_string] = STATE(1634), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2046), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2076), - [sym_na] = STATE(1537), - [sym__expression] = STATE(1537), - [sym__open_parenthesis] = STATE(1071), - [sym__open_brace] = STATE(376), - [sym__close_bracket2] = STATE(412), - [aux_sym_call_arguments_repeat1] = STATE(1842), - [sym_identifier] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_function] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), - [anon_sym_for] = ACTIONS(449), - [anon_sym_while] = ACTIONS(451), - [anon_sym_repeat] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(455), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(461), - [sym__hex_literal] = ACTIONS(463), - [sym__number_literal] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_DQUOTE] = ACTIONS(469), - [sym_dots] = ACTIONS(441), - [sym_dot_dot_i] = ACTIONS(471), - [sym_return] = ACTIONS(473), - [sym_next] = ACTIONS(473), - [sym_break] = ACTIONS(473), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [sym_inf] = ACTIONS(473), - [sym_nan] = ACTIONS(473), - [anon_sym_NA] = ACTIONS(475), - [anon_sym_NA_integer_] = ACTIONS(475), - [anon_sym_NA_real_] = ACTIONS(475), - [anon_sym_NA_complex_] = ACTIONS(475), - [anon_sym_NA_character_] = ACTIONS(475), + [sym_function_definition] = STATE(1344), + [sym_if_statement] = STATE(1344), + [sym_for_statement] = STATE(1344), + [sym_while_statement] = STATE(1344), + [sym_repeat_statement] = STATE(1344), + [sym_braced_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_call] = STATE(1344), + [sym_subset] = STATE(1344), + [sym_subset2] = STATE(1344), + [sym_argument] = STATE(2014), + [sym__argument_named] = STATE(2053), + [sym__argument_unnamed] = STATE(2030), + [sym__argument_value] = STATE(2031), + [sym_unary_operator] = STATE(1344), + [sym_binary_operator] = STATE(1344), + [sym_extract_operator] = STATE(1344), + [sym_namespace_operator] = STATE(1344), + [sym_integer] = STATE(1344), + [sym_complex] = STATE(1344), + [sym_float] = STATE(1344), + [sym__float_literal] = STATE(1628), + [sym_string] = STATE(1609), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1632), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2039), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2057), + [sym_na] = STATE(1344), + [sym__expression] = STATE(1344), + [sym__open_parenthesis] = STATE(1113), + [sym__open_brace] = STATE(331), + [sym__close_bracket2] = STATE(396), + [aux_sym_call_arguments_repeat1] = STATE(2008), + [sym_identifier] = ACTIONS(433), + [anon_sym_BSLASH] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_for] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_repeat] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [sym__hex_literal] = ACTIONS(455), + [sym__number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [sym_dots] = ACTIONS(433), + [sym_dot_dot_i] = ACTIONS(463), + [sym_return] = ACTIONS(465), + [sym_next] = ACTIONS(465), + [sym_break] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_inf] = ACTIONS(465), + [sym_nan] = ACTIONS(465), + [anon_sym_NA] = ACTIONS(467), + [anon_sym_NA_integer_] = ACTIONS(467), + [anon_sym_NA_real_] = ACTIONS(467), + [anon_sym_NA_complex_] = ACTIONS(467), + [anon_sym_NA_character_] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(477), - [sym__raw_string_literal] = ACTIONS(479), - [sym__external_open_parenthesis] = ACTIONS(481), - [sym__external_open_brace] = ACTIONS(483), - [sym__external_close_bracket2] = ACTIONS(485), + [sym_comma] = ACTIONS(469), + [sym__raw_string_literal] = ACTIONS(471), + [sym__external_open_parenthesis] = ACTIONS(473), + [sym__external_open_brace] = ACTIONS(475), + [sym__external_close_bracket2] = ACTIONS(479), }, [251] = { - [sym_string] = STATE(401), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(401), - [aux_sym_function_definition_repeat1] = STATE(386), - [sym_identifier] = ACTIONS(487), - [anon_sym_BSLASH] = ACTIONS(363), - [anon_sym_function] = ACTIONS(367), - [anon_sym_EQ] = ACTIONS(367), - [anon_sym_if] = ACTIONS(367), - [anon_sym_for] = ACTIONS(367), - [anon_sym_while] = ACTIONS(367), - [anon_sym_repeat] = ACTIONS(367), - [anon_sym_QMARK] = ACTIONS(363), - [anon_sym_TILDE] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(367), - [anon_sym_PLUS] = ACTIONS(363), - [anon_sym_DASH] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(363), - [anon_sym_LT_LT_DASH] = ACTIONS(363), - [anon_sym_COLON_EQ] = ACTIONS(363), - [anon_sym_DASH_GT] = ACTIONS(367), - [anon_sym_DASH_GT_GT] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(367), - [anon_sym_PIPE_PIPE] = ACTIONS(363), - [anon_sym_AMP_AMP] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(367), - [anon_sym_SLASH] = ACTIONS(363), - [anon_sym_STAR_STAR] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(363), - [aux_sym_binary_operator_token1] = ACTIONS(363), - [anon_sym_PIPE_GT] = ACTIONS(363), - [anon_sym_COLON] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_AT] = ACTIONS(363), - [sym__hex_literal] = ACTIONS(363), - [sym__number_literal] = ACTIONS(367), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(487), - [sym_dot_dot_i] = ACTIONS(493), - [sym_return] = ACTIONS(367), - [sym_next] = ACTIONS(367), - [sym_break] = ACTIONS(367), - [sym_true] = ACTIONS(367), - [sym_false] = ACTIONS(367), - [sym_null] = ACTIONS(367), - [sym_inf] = ACTIONS(367), - [sym_nan] = ACTIONS(367), - [anon_sym_NA] = ACTIONS(367), - [anon_sym_NA_integer_] = ACTIONS(367), - [anon_sym_NA_real_] = ACTIONS(367), - [anon_sym_NA_complex_] = ACTIONS(367), - [anon_sym_NA_character_] = ACTIONS(367), + [sym_function_definition] = STATE(1370), + [sym_if_statement] = STATE(1370), + [sym_for_statement] = STATE(1370), + [sym_while_statement] = STATE(1370), + [sym_repeat_statement] = STATE(1370), + [sym_braced_expression] = STATE(1370), + [sym_parenthesized_expression] = STATE(1370), + [sym_call] = STATE(1370), + [sym_subset] = STATE(1370), + [sym_subset2] = STATE(1370), + [sym_argument] = STATE(1998), + [sym__argument_named] = STATE(2043), + [sym__argument_unnamed] = STATE(2044), + [sym__argument_value] = STATE(2045), + [sym_unary_operator] = STATE(1370), + [sym_binary_operator] = STATE(1370), + [sym_extract_operator] = STATE(1370), + [sym_namespace_operator] = STATE(1370), + [sym_integer] = STATE(1370), + [sym_complex] = STATE(1370), + [sym_float] = STATE(1370), + [sym__float_literal] = STATE(1618), + [sym_string] = STATE(1610), + [sym__single_quoted_string] = STATE(1605), + [sym__double_quoted_string] = STATE(1619), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2027), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2056), + [sym_na] = STATE(1370), + [sym__expression] = STATE(1370), + [sym__open_parenthesis] = STATE(1057), + [sym__open_brace] = STATE(335), + [sym__close_bracket] = STATE(395), + [aux_sym_call_arguments_repeat1] = STATE(2010), + [sym_identifier] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_while] = ACTIONS(397), + [anon_sym_repeat] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [sym__hex_literal] = ACTIONS(409), + [sym__number_literal] = ACTIONS(411), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_dots] = ACTIONS(387), + [sym_dot_dot_i] = ACTIONS(417), + [sym_return] = ACTIONS(419), + [sym_next] = ACTIONS(419), + [sym_break] = ACTIONS(419), + [sym_true] = ACTIONS(419), + [sym_false] = ACTIONS(419), + [sym_null] = ACTIONS(419), + [sym_inf] = ACTIONS(419), + [sym_nan] = ACTIONS(419), + [anon_sym_NA] = ACTIONS(421), + [anon_sym_NA_integer_] = ACTIONS(421), + [anon_sym_NA_real_] = ACTIONS(421), + [anon_sym_NA_complex_] = ACTIONS(421), + [anon_sym_NA_character_] = ACTIONS(421), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - [sym__semicolon] = ACTIONS(363), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(363), - [sym__external_open_brace] = ACTIONS(363), - [sym__external_close_brace] = ACTIONS(363), - [sym__external_open_bracket] = ACTIONS(363), - [sym__external_open_bracket2] = ACTIONS(363), + [sym_comma] = ACTIONS(423), + [sym__raw_string_literal] = ACTIONS(425), + [sym__external_open_parenthesis] = ACTIONS(427), + [sym__external_open_brace] = ACTIONS(429), + [sym__external_close_bracket] = ACTIONS(481), }, [252] = { - [sym_string] = STATE(441), - [sym__single_quoted_string] = STATE(325), - [sym__double_quoted_string] = STATE(326), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(441), - [aux_sym_function_definition_repeat1] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(363), - [sym_identifier] = ACTIONS(497), - [anon_sym_BSLASH] = ACTIONS(363), - [anon_sym_function] = ACTIONS(367), - [anon_sym_EQ] = ACTIONS(367), - [anon_sym_if] = ACTIONS(367), - [anon_sym_for] = ACTIONS(367), - [anon_sym_while] = ACTIONS(367), - [anon_sym_repeat] = ACTIONS(367), - [anon_sym_QMARK] = ACTIONS(363), - [anon_sym_TILDE] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(367), - [anon_sym_PLUS] = ACTIONS(363), - [anon_sym_DASH] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(363), - [anon_sym_LT_LT_DASH] = ACTIONS(363), - [anon_sym_COLON_EQ] = ACTIONS(363), - [anon_sym_DASH_GT] = ACTIONS(367), - [anon_sym_DASH_GT_GT] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(367), - [anon_sym_PIPE_PIPE] = ACTIONS(363), - [anon_sym_AMP_AMP] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_LT_EQ] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(367), - [anon_sym_GT_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(367), - [anon_sym_SLASH] = ACTIONS(363), - [anon_sym_STAR_STAR] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(363), - [aux_sym_binary_operator_token1] = ACTIONS(363), - [anon_sym_PIPE_GT] = ACTIONS(363), - [anon_sym_COLON] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_AT] = ACTIONS(363), - [sym__hex_literal] = ACTIONS(363), - [sym__number_literal] = ACTIONS(367), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(501), - [sym_dots] = ACTIONS(497), - [sym_dot_dot_i] = ACTIONS(503), - [sym_return] = ACTIONS(367), - [sym_next] = ACTIONS(367), - [sym_break] = ACTIONS(367), - [sym_true] = ACTIONS(367), - [sym_false] = ACTIONS(367), - [sym_null] = ACTIONS(367), - [sym_inf] = ACTIONS(367), - [sym_nan] = ACTIONS(367), - [anon_sym_NA] = ACTIONS(367), - [anon_sym_NA_integer_] = ACTIONS(367), - [anon_sym_NA_real_] = ACTIONS(367), - [anon_sym_NA_complex_] = ACTIONS(367), - [anon_sym_NA_character_] = ACTIONS(367), + [sym_function_definition] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_repeat_statement] = STATE(1442), + [sym_braced_expression] = STATE(1442), + [sym_parenthesized_expression] = STATE(1442), + [sym_call] = STATE(1442), + [sym_subset] = STATE(1442), + [sym_subset2] = STATE(1442), + [sym_argument] = STATE(1822), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2048), + [sym__argument_value] = STATE(2041), + [sym_unary_operator] = STATE(1442), + [sym_binary_operator] = STATE(1442), + [sym_extract_operator] = STATE(1442), + [sym_namespace_operator] = STATE(1442), + [sym_integer] = STATE(1442), + [sym_complex] = STATE(1442), + [sym_float] = STATE(1442), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1614), + [sym__single_quoted_string] = STATE(1627), + [sym__double_quoted_string] = STATE(1616), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2042), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2062), + [sym_na] = STATE(1442), + [sym__expression] = STATE(1442), + [sym__open_parenthesis] = STATE(1097), + [sym__close_parenthesis] = STATE(393), + [sym__open_brace] = STATE(357), + [aux_sym_call_arguments_repeat1] = STATE(1823), + [sym_identifier] = ACTIONS(483), + [anon_sym_BSLASH] = ACTIONS(485), + [anon_sym_function] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_for] = ACTIONS(491), + [anon_sym_while] = ACTIONS(493), + [anon_sym_repeat] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [sym__hex_literal] = ACTIONS(505), + [sym__number_literal] = ACTIONS(507), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym_dots] = ACTIONS(483), + [sym_dot_dot_i] = ACTIONS(513), + [sym_return] = ACTIONS(515), + [sym_next] = ACTIONS(515), + [sym_break] = ACTIONS(515), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [sym_null] = ACTIONS(515), + [sym_inf] = ACTIONS(515), + [sym_nan] = ACTIONS(515), + [anon_sym_NA] = ACTIONS(517), + [anon_sym_NA_integer_] = ACTIONS(517), + [anon_sym_NA_real_] = ACTIONS(517), + [anon_sym_NA_complex_] = ACTIONS(517), + [anon_sym_NA_character_] = ACTIONS(517), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - [sym__semicolon] = ACTIONS(363), - [sym__raw_string_literal] = ACTIONS(505), - [sym__external_open_parenthesis] = ACTIONS(363), - [sym__external_open_brace] = ACTIONS(363), - [sym__external_open_bracket] = ACTIONS(363), - [sym__external_open_bracket2] = ACTIONS(363), + [sym_comma] = ACTIONS(519), + [sym__raw_string_literal] = ACTIONS(521), + [sym__external_open_parenthesis] = ACTIONS(523), + [sym__external_close_parenthesis] = ACTIONS(525), + [sym__external_open_brace] = ACTIONS(527), }, [253] = { - [sym_string] = STATE(367), - [sym__single_quoted_string] = STATE(301), - [sym__double_quoted_string] = STATE(302), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(367), - [ts_builtin_sym_end] = ACTIONS(389), - [sym_identifier] = ACTIONS(507), + [sym_function_definition] = STATE(1370), + [sym_if_statement] = STATE(1370), + [sym_for_statement] = STATE(1370), + [sym_while_statement] = STATE(1370), + [sym_repeat_statement] = STATE(1370), + [sym_braced_expression] = STATE(1370), + [sym_parenthesized_expression] = STATE(1370), + [sym_call] = STATE(1370), + [sym_subset] = STATE(1370), + [sym_subset2] = STATE(1370), + [sym_argument] = STATE(1914), + [sym__argument_named] = STATE(2043), + [sym__argument_unnamed] = STATE(2044), + [sym__argument_value] = STATE(2045), + [sym_unary_operator] = STATE(1370), + [sym_binary_operator] = STATE(1370), + [sym_extract_operator] = STATE(1370), + [sym_namespace_operator] = STATE(1370), + [sym_integer] = STATE(1370), + [sym_complex] = STATE(1370), + [sym_float] = STATE(1370), + [sym__float_literal] = STATE(1618), + [sym_string] = STATE(1610), + [sym__single_quoted_string] = STATE(1605), + [sym__double_quoted_string] = STATE(1619), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2027), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2056), + [sym_na] = STATE(1370), + [sym__expression] = STATE(1370), + [sym__open_parenthesis] = STATE(1057), + [sym__open_brace] = STATE(335), + [sym__close_bracket] = STATE(447), + [aux_sym_call_arguments_repeat1] = STATE(1912), + [sym_identifier] = ACTIONS(387), [anon_sym_BSLASH] = ACTIONS(389), [anon_sym_function] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_if] = ACTIONS(391), - [anon_sym_for] = ACTIONS(391), - [anon_sym_while] = ACTIONS(391), - [anon_sym_repeat] = ACTIONS(391), - [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_TILDE] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_LT_DASH] = ACTIONS(389), - [anon_sym_LT_LT_DASH] = ACTIONS(389), - [anon_sym_COLON_EQ] = ACTIONS(389), - [anon_sym_DASH_GT] = ACTIONS(391), - [anon_sym_DASH_GT_GT] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_STAR_STAR] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [aux_sym_binary_operator_token1] = ACTIONS(389), - [anon_sym_PIPE_GT] = ACTIONS(389), - [anon_sym_COLON] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(389), - [anon_sym_AT] = ACTIONS(389), - [sym__hex_literal] = ACTIONS(389), - [sym__number_literal] = ACTIONS(391), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_DQUOTE] = ACTIONS(349), - [sym_dots] = ACTIONS(507), - [sym_dot_dot_i] = ACTIONS(509), - [sym_return] = ACTIONS(391), - [sym_next] = ACTIONS(391), - [sym_break] = ACTIONS(391), - [sym_true] = ACTIONS(391), - [sym_false] = ACTIONS(391), - [sym_null] = ACTIONS(391), - [sym_inf] = ACTIONS(391), - [sym_nan] = ACTIONS(391), - [anon_sym_NA] = ACTIONS(391), - [anon_sym_NA_integer_] = ACTIONS(391), - [anon_sym_NA_real_] = ACTIONS(391), - [anon_sym_NA_complex_] = ACTIONS(391), - [anon_sym_NA_character_] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_while] = ACTIONS(397), + [anon_sym_repeat] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [sym__hex_literal] = ACTIONS(409), + [sym__number_literal] = ACTIONS(411), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_dots] = ACTIONS(387), + [sym_dot_dot_i] = ACTIONS(417), + [sym_return] = ACTIONS(419), + [sym_next] = ACTIONS(419), + [sym_break] = ACTIONS(419), + [sym_true] = ACTIONS(419), + [sym_false] = ACTIONS(419), + [sym_null] = ACTIONS(419), + [sym_inf] = ACTIONS(419), + [sym_nan] = ACTIONS(419), + [anon_sym_NA] = ACTIONS(421), + [anon_sym_NA_integer_] = ACTIONS(421), + [anon_sym_NA_real_] = ACTIONS(421), + [anon_sym_NA_complex_] = ACTIONS(421), + [anon_sym_NA_character_] = ACTIONS(421), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(389), - [sym__semicolon] = ACTIONS(389), - [sym__raw_string_literal] = ACTIONS(355), - [sym__external_else] = ACTIONS(389), - [sym__external_open_parenthesis] = ACTIONS(389), - [sym__external_open_brace] = ACTIONS(389), - [sym__external_open_bracket] = ACTIONS(389), - [sym__external_open_bracket2] = ACTIONS(389), + [sym_comma] = ACTIONS(423), + [sym__raw_string_literal] = ACTIONS(425), + [sym__external_open_parenthesis] = ACTIONS(427), + [sym__external_open_brace] = ACTIONS(429), + [sym__external_close_bracket] = ACTIONS(529), }, [254] = { - [sym_string] = STATE(406), - [sym__single_quoted_string] = STATE(325), - [sym__double_quoted_string] = STATE(326), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(406), - [aux_sym_function_definition_repeat1] = STATE(252), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_identifier] = ACTIONS(511), - [anon_sym_BSLASH] = ACTIONS(341), - [anon_sym_function] = ACTIONS(345), - [anon_sym_EQ] = ACTIONS(345), - [anon_sym_if] = ACTIONS(345), - [anon_sym_for] = ACTIONS(345), - [anon_sym_while] = ACTIONS(345), - [anon_sym_repeat] = ACTIONS(345), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(341), - [anon_sym_LT_LT_DASH] = ACTIONS(341), - [anon_sym_COLON_EQ] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(345), - [anon_sym_DASH_GT_GT] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(345), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(345), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT] = ACTIONS(345), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(345), - [anon_sym_SLASH] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_CARET] = ACTIONS(341), - [aux_sym_binary_operator_token1] = ACTIONS(341), - [anon_sym_PIPE_GT] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(345), - [anon_sym_DOLLAR] = ACTIONS(341), - [anon_sym_AT] = ACTIONS(341), - [sym__hex_literal] = ACTIONS(341), - [sym__number_literal] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(501), - [sym_dots] = ACTIONS(511), - [sym_dot_dot_i] = ACTIONS(513), - [sym_return] = ACTIONS(345), - [sym_next] = ACTIONS(345), - [sym_break] = ACTIONS(345), - [sym_true] = ACTIONS(345), - [sym_false] = ACTIONS(345), - [sym_null] = ACTIONS(345), - [sym_inf] = ACTIONS(345), - [sym_nan] = ACTIONS(345), - [anon_sym_NA] = ACTIONS(345), - [anon_sym_NA_integer_] = ACTIONS(345), - [anon_sym_NA_real_] = ACTIONS(345), - [anon_sym_NA_complex_] = ACTIONS(345), - [anon_sym_NA_character_] = ACTIONS(345), + [sym_function_definition] = STATE(1344), + [sym_if_statement] = STATE(1344), + [sym_for_statement] = STATE(1344), + [sym_while_statement] = STATE(1344), + [sym_repeat_statement] = STATE(1344), + [sym_braced_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_call] = STATE(1344), + [sym_subset] = STATE(1344), + [sym_subset2] = STATE(1344), + [sym_argument] = STATE(1906), + [sym__argument_named] = STATE(2053), + [sym__argument_unnamed] = STATE(2030), + [sym__argument_value] = STATE(2031), + [sym_unary_operator] = STATE(1344), + [sym_binary_operator] = STATE(1344), + [sym_extract_operator] = STATE(1344), + [sym_namespace_operator] = STATE(1344), + [sym_integer] = STATE(1344), + [sym_complex] = STATE(1344), + [sym_float] = STATE(1344), + [sym__float_literal] = STATE(1628), + [sym_string] = STATE(1609), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1632), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2039), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2057), + [sym_na] = STATE(1344), + [sym__expression] = STATE(1344), + [sym__open_parenthesis] = STATE(1113), + [sym__open_brace] = STATE(331), + [sym__close_bracket2] = STATE(445), + [aux_sym_call_arguments_repeat1] = STATE(1900), + [sym_identifier] = ACTIONS(433), + [anon_sym_BSLASH] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_for] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_repeat] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [sym__hex_literal] = ACTIONS(455), + [sym__number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [sym_dots] = ACTIONS(433), + [sym_dot_dot_i] = ACTIONS(463), + [sym_return] = ACTIONS(465), + [sym_next] = ACTIONS(465), + [sym_break] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_inf] = ACTIONS(465), + [sym_nan] = ACTIONS(465), + [anon_sym_NA] = ACTIONS(467), + [anon_sym_NA_integer_] = ACTIONS(467), + [anon_sym_NA_real_] = ACTIONS(467), + [anon_sym_NA_complex_] = ACTIONS(467), + [anon_sym_NA_character_] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(515), - [sym__semicolon] = ACTIONS(341), - [sym__raw_string_literal] = ACTIONS(505), - [sym__external_open_parenthesis] = ACTIONS(341), - [sym__external_open_brace] = ACTIONS(341), - [sym__external_open_bracket] = ACTIONS(341), - [sym__external_open_bracket2] = ACTIONS(341), + [sym_comma] = ACTIONS(469), + [sym__raw_string_literal] = ACTIONS(471), + [sym__external_open_parenthesis] = ACTIONS(473), + [sym__external_open_brace] = ACTIONS(475), + [sym__external_close_bracket2] = ACTIONS(531), }, [255] = { - [sym_function_definition] = STATE(1371), - [sym_if_statement] = STATE(1371), - [sym_for_statement] = STATE(1371), - [sym_while_statement] = STATE(1371), - [sym_repeat_statement] = STATE(1371), - [sym_braced_expression] = STATE(1371), - [sym_parenthesized_expression] = STATE(1371), - [sym_call] = STATE(1371), - [sym_subset] = STATE(1371), - [sym_subset2] = STATE(1371), - [sym_argument] = STATE(1903), + [sym_function_definition] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_repeat_statement] = STATE(1442), + [sym_braced_expression] = STATE(1442), + [sym_parenthesized_expression] = STATE(1442), + [sym_call] = STATE(1442), + [sym_subset] = STATE(1442), + [sym_subset2] = STATE(1442), + [sym_argument] = STATE(1898), [sym__argument_named] = STATE(2040), - [sym__argument_unnamed] = STATE(2028), - [sym__argument_value] = STATE(2042), - [sym_unary_operator] = STATE(1371), - [sym_binary_operator] = STATE(1371), - [sym_extract_operator] = STATE(1371), - [sym_namespace_operator] = STATE(1371), - [sym_integer] = STATE(1371), - [sym_complex] = STATE(1371), - [sym_float] = STATE(1371), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1624), - [sym__single_quoted_string] = STATE(1618), - [sym__double_quoted_string] = STATE(1621), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2054), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2065), - [sym_na] = STATE(1371), - [sym__expression] = STATE(1371), - [sym__open_parenthesis] = STATE(1057), - [sym__close_parenthesis] = STATE(1743), - [sym__open_brace] = STATE(370), - [aux_sym_call_arguments_repeat1] = STATE(1905), - [sym_identifier] = ACTIONS(517), - [anon_sym_BSLASH] = ACTIONS(519), - [anon_sym_function] = ACTIONS(521), - [anon_sym_if] = ACTIONS(523), - [anon_sym_for] = ACTIONS(525), - [anon_sym_while] = ACTIONS(527), - [anon_sym_repeat] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [sym__hex_literal] = ACTIONS(539), - [sym__number_literal] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_dots] = ACTIONS(517), - [sym_dot_dot_i] = ACTIONS(547), - [sym_return] = ACTIONS(549), - [sym_next] = ACTIONS(549), - [sym_break] = ACTIONS(549), - [sym_true] = ACTIONS(549), - [sym_false] = ACTIONS(549), - [sym_null] = ACTIONS(549), - [sym_inf] = ACTIONS(549), - [sym_nan] = ACTIONS(549), - [anon_sym_NA] = ACTIONS(551), - [anon_sym_NA_integer_] = ACTIONS(551), - [anon_sym_NA_real_] = ACTIONS(551), - [anon_sym_NA_complex_] = ACTIONS(551), - [anon_sym_NA_character_] = ACTIONS(551), + [sym__argument_unnamed] = STATE(2048), + [sym__argument_value] = STATE(2041), + [sym_unary_operator] = STATE(1442), + [sym_binary_operator] = STATE(1442), + [sym_extract_operator] = STATE(1442), + [sym_namespace_operator] = STATE(1442), + [sym_integer] = STATE(1442), + [sym_complex] = STATE(1442), + [sym_float] = STATE(1442), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1614), + [sym__single_quoted_string] = STATE(1627), + [sym__double_quoted_string] = STATE(1616), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2042), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2062), + [sym_na] = STATE(1442), + [sym__expression] = STATE(1442), + [sym__open_parenthesis] = STATE(1097), + [sym__close_parenthesis] = STATE(1691), + [sym__open_brace] = STATE(357), + [aux_sym_call_arguments_repeat1] = STATE(1899), + [sym_identifier] = ACTIONS(483), + [anon_sym_BSLASH] = ACTIONS(485), + [anon_sym_function] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_for] = ACTIONS(491), + [anon_sym_while] = ACTIONS(493), + [anon_sym_repeat] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [sym__hex_literal] = ACTIONS(505), + [sym__number_literal] = ACTIONS(507), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym_dots] = ACTIONS(483), + [sym_dot_dot_i] = ACTIONS(513), + [sym_return] = ACTIONS(515), + [sym_next] = ACTIONS(515), + [sym_break] = ACTIONS(515), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [sym_null] = ACTIONS(515), + [sym_inf] = ACTIONS(515), + [sym_nan] = ACTIONS(515), + [anon_sym_NA] = ACTIONS(517), + [anon_sym_NA_integer_] = ACTIONS(517), + [anon_sym_NA_real_] = ACTIONS(517), + [anon_sym_NA_complex_] = ACTIONS(517), + [anon_sym_NA_character_] = ACTIONS(517), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(553), - [sym__raw_string_literal] = ACTIONS(555), - [sym__external_open_parenthesis] = ACTIONS(557), - [sym__external_close_parenthesis] = ACTIONS(559), - [sym__external_open_brace] = ACTIONS(561), + [sym_comma] = ACTIONS(519), + [sym__raw_string_literal] = ACTIONS(521), + [sym__external_open_parenthesis] = ACTIONS(523), + [sym__external_close_parenthesis] = ACTIONS(533), + [sym__external_open_brace] = ACTIONS(527), }, [256] = { - [sym_function_definition] = STATE(1518), - [sym_if_statement] = STATE(1518), - [sym_for_statement] = STATE(1518), - [sym_while_statement] = STATE(1518), - [sym_repeat_statement] = STATE(1518), - [sym_braced_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_call] = STATE(1518), - [sym_subset] = STATE(1518), - [sym_subset2] = STATE(1518), - [sym_argument] = STATE(1860), - [sym__argument_named] = STATE(2039), - [sym__argument_unnamed] = STATE(2047), - [sym__argument_value] = STATE(2053), - [sym_unary_operator] = STATE(1518), - [sym_binary_operator] = STATE(1518), - [sym_extract_operator] = STATE(1518), - [sym_namespace_operator] = STATE(1518), - [sym_integer] = STATE(1518), - [sym_complex] = STATE(1518), - [sym_float] = STATE(1518), - [sym__float_literal] = STATE(1605), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1604), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2048), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2069), - [sym_na] = STATE(1518), - [sym__expression] = STATE(1518), - [sym__open_parenthesis] = STATE(1066), - [sym__open_brace] = STATE(373), - [sym__close_bracket] = STATE(1746), - [aux_sym_call_arguments_repeat1] = STATE(1863), - [sym_identifier] = ACTIONS(395), - [anon_sym_BSLASH] = ACTIONS(397), - [anon_sym_function] = ACTIONS(399), - [anon_sym_if] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_repeat] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [sym__hex_literal] = ACTIONS(417), - [sym__number_literal] = ACTIONS(419), - [anon_sym_SQUOTE] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [sym_dots] = ACTIONS(395), - [sym_dot_dot_i] = ACTIONS(425), - [sym_return] = ACTIONS(427), - [sym_next] = ACTIONS(427), - [sym_break] = ACTIONS(427), - [sym_true] = ACTIONS(427), - [sym_false] = ACTIONS(427), - [sym_null] = ACTIONS(427), - [sym_inf] = ACTIONS(427), - [sym_nan] = ACTIONS(427), - [anon_sym_NA] = ACTIONS(429), - [anon_sym_NA_integer_] = ACTIONS(429), - [anon_sym_NA_real_] = ACTIONS(429), - [anon_sym_NA_complex_] = ACTIONS(429), - [anon_sym_NA_character_] = ACTIONS(429), + [sym_function_definition] = STATE(1344), + [sym_if_statement] = STATE(1344), + [sym_for_statement] = STATE(1344), + [sym_while_statement] = STATE(1344), + [sym_repeat_statement] = STATE(1344), + [sym_braced_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_call] = STATE(1344), + [sym_subset] = STATE(1344), + [sym_subset2] = STATE(1344), + [sym_argument] = STATE(1809), + [sym__argument_named] = STATE(2053), + [sym__argument_unnamed] = STATE(2030), + [sym__argument_value] = STATE(2031), + [sym_unary_operator] = STATE(1344), + [sym_binary_operator] = STATE(1344), + [sym_extract_operator] = STATE(1344), + [sym_namespace_operator] = STATE(1344), + [sym_integer] = STATE(1344), + [sym_complex] = STATE(1344), + [sym_float] = STATE(1344), + [sym__float_literal] = STATE(1628), + [sym_string] = STATE(1609), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1632), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2039), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2057), + [sym_na] = STATE(1344), + [sym__expression] = STATE(1344), + [sym__open_parenthesis] = STATE(1113), + [sym__open_brace] = STATE(331), + [sym__close_bracket2] = STATE(1642), + [aux_sym_call_arguments_repeat1] = STATE(1810), + [sym_identifier] = ACTIONS(433), + [anon_sym_BSLASH] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_for] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_repeat] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [sym__hex_literal] = ACTIONS(455), + [sym__number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [sym_dots] = ACTIONS(433), + [sym_dot_dot_i] = ACTIONS(463), + [sym_return] = ACTIONS(465), + [sym_next] = ACTIONS(465), + [sym_break] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_inf] = ACTIONS(465), + [sym_nan] = ACTIONS(465), + [anon_sym_NA] = ACTIONS(467), + [anon_sym_NA_integer_] = ACTIONS(467), + [anon_sym_NA_real_] = ACTIONS(467), + [anon_sym_NA_complex_] = ACTIONS(467), + [anon_sym_NA_character_] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(431), - [sym__raw_string_literal] = ACTIONS(433), - [sym__external_open_parenthesis] = ACTIONS(435), - [sym__external_open_brace] = ACTIONS(437), - [sym__external_close_bracket] = ACTIONS(563), + [sym_comma] = ACTIONS(469), + [sym__raw_string_literal] = ACTIONS(471), + [sym__external_open_parenthesis] = ACTIONS(473), + [sym__external_open_brace] = ACTIONS(475), + [sym__external_close_bracket2] = ACTIONS(535), }, [257] = { - [sym_function_definition] = STATE(1537), - [sym_if_statement] = STATE(1537), - [sym_for_statement] = STATE(1537), - [sym_while_statement] = STATE(1537), - [sym_repeat_statement] = STATE(1537), - [sym_braced_expression] = STATE(1537), - [sym_parenthesized_expression] = STATE(1537), - [sym_call] = STATE(1537), - [sym_subset] = STATE(1537), - [sym_subset2] = STATE(1537), - [sym_argument] = STATE(1865), - [sym__argument_named] = STATE(2036), - [sym__argument_unnamed] = STATE(2033), - [sym__argument_value] = STATE(2035), - [sym_unary_operator] = STATE(1537), - [sym_binary_operator] = STATE(1537), - [sym_extract_operator] = STATE(1537), - [sym_namespace_operator] = STATE(1537), - [sym_integer] = STATE(1537), - [sym_complex] = STATE(1537), - [sym_float] = STATE(1537), - [sym__float_literal] = STATE(1632), - [sym_string] = STATE(1614), - [sym__single_quoted_string] = STATE(1633), - [sym__double_quoted_string] = STATE(1634), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2046), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2076), - [sym_na] = STATE(1537), - [sym__expression] = STATE(1537), - [sym__open_parenthesis] = STATE(1071), - [sym__open_brace] = STATE(376), - [sym__close_bracket2] = STATE(1749), - [aux_sym_call_arguments_repeat1] = STATE(1874), - [sym_identifier] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_function] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), - [anon_sym_for] = ACTIONS(449), - [anon_sym_while] = ACTIONS(451), - [anon_sym_repeat] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(455), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(461), - [sym__hex_literal] = ACTIONS(463), - [sym__number_literal] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_DQUOTE] = ACTIONS(469), - [sym_dots] = ACTIONS(441), - [sym_dot_dot_i] = ACTIONS(471), - [sym_return] = ACTIONS(473), - [sym_next] = ACTIONS(473), - [sym_break] = ACTIONS(473), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [sym_inf] = ACTIONS(473), - [sym_nan] = ACTIONS(473), - [anon_sym_NA] = ACTIONS(475), - [anon_sym_NA_integer_] = ACTIONS(475), - [anon_sym_NA_real_] = ACTIONS(475), - [anon_sym_NA_complex_] = ACTIONS(475), - [anon_sym_NA_character_] = ACTIONS(475), + [sym_string] = STATE(446), + [sym__single_quoted_string] = STATE(318), + [sym__double_quoted_string] = STATE(317), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(446), + [aux_sym_function_definition_repeat1] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(365), + [sym_identifier] = ACTIONS(537), + [anon_sym_BSLASH] = ACTIONS(365), + [anon_sym_function] = ACTIONS(369), + [anon_sym_EQ] = ACTIONS(369), + [anon_sym_if] = ACTIONS(369), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(369), + [anon_sym_repeat] = ACTIONS(369), + [anon_sym_QMARK] = ACTIONS(365), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_LT_DASH] = ACTIONS(365), + [anon_sym_LT_LT_DASH] = ACTIONS(365), + [anon_sym_COLON_EQ] = ACTIONS(365), + [anon_sym_DASH_GT] = ACTIONS(369), + [anon_sym_DASH_GT_GT] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(365), + [anon_sym_AMP_AMP] = ACTIONS(365), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(365), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_EQ] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(365), + [anon_sym_BANG_EQ] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(365), + [anon_sym_STAR_STAR] = ACTIONS(365), + [anon_sym_CARET] = ACTIONS(365), + [aux_sym_binary_operator_token1] = ACTIONS(365), + [anon_sym_PIPE_GT] = ACTIONS(365), + [anon_sym_COLON] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_AT] = ACTIONS(365), + [sym__hex_literal] = ACTIONS(365), + [sym__number_literal] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_DQUOTE] = ACTIONS(541), + [sym_dots] = ACTIONS(537), + [sym_dot_dot_i] = ACTIONS(543), + [sym_return] = ACTIONS(369), + [sym_next] = ACTIONS(369), + [sym_break] = ACTIONS(369), + [sym_true] = ACTIONS(369), + [sym_false] = ACTIONS(369), + [sym_null] = ACTIONS(369), + [sym_inf] = ACTIONS(369), + [sym_nan] = ACTIONS(369), + [anon_sym_NA] = ACTIONS(369), + [anon_sym_NA_integer_] = ACTIONS(369), + [anon_sym_NA_real_] = ACTIONS(369), + [anon_sym_NA_complex_] = ACTIONS(369), + [anon_sym_NA_character_] = ACTIONS(369), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(477), - [sym__raw_string_literal] = ACTIONS(479), - [sym__external_open_parenthesis] = ACTIONS(481), - [sym__external_open_brace] = ACTIONS(483), - [sym__external_close_bracket2] = ACTIONS(565), + [sym__newline] = ACTIONS(545), + [sym__semicolon] = ACTIONS(365), + [sym__raw_string_literal] = ACTIONS(547), + [sym__external_open_parenthesis] = ACTIONS(365), + [sym__external_open_brace] = ACTIONS(365), + [sym__external_open_bracket] = ACTIONS(365), + [sym__external_open_bracket2] = ACTIONS(365), }, [258] = { - [sym_string] = STATE(399), - [sym__single_quoted_string] = STATE(315), + [sym_string] = STATE(398), + [sym__single_quoted_string] = STATE(318), [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(399), - [aux_sym_function_definition_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(341), - [anon_sym_function] = ACTIONS(345), - [anon_sym_EQ] = ACTIONS(345), - [anon_sym_if] = ACTIONS(345), - [anon_sym_for] = ACTIONS(345), - [anon_sym_while] = ACTIONS(345), - [anon_sym_repeat] = ACTIONS(345), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(341), - [anon_sym_LT_LT_DASH] = ACTIONS(341), - [anon_sym_COLON_EQ] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(345), - [anon_sym_DASH_GT_GT] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(345), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(345), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT] = ACTIONS(345), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(345), - [anon_sym_SLASH] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_CARET] = ACTIONS(341), - [aux_sym_binary_operator_token1] = ACTIONS(341), - [anon_sym_PIPE_GT] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(345), - [anon_sym_DOLLAR] = ACTIONS(341), - [anon_sym_AT] = ACTIONS(341), - [sym__hex_literal] = ACTIONS(341), - [sym__number_literal] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(567), - [sym_dot_dot_i] = ACTIONS(569), - [sym_return] = ACTIONS(345), - [sym_next] = ACTIONS(345), - [sym_break] = ACTIONS(345), - [sym_true] = ACTIONS(345), - [sym_false] = ACTIONS(345), - [sym_null] = ACTIONS(345), - [sym_inf] = ACTIONS(345), - [sym_nan] = ACTIONS(345), - [anon_sym_NA] = ACTIONS(345), - [anon_sym_NA_integer_] = ACTIONS(345), - [anon_sym_NA_real_] = ACTIONS(345), - [anon_sym_NA_complex_] = ACTIONS(345), - [anon_sym_NA_character_] = ACTIONS(345), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(398), + [aux_sym_function_definition_repeat1] = STATE(374), + [ts_builtin_sym_end] = ACTIONS(335), + [sym_identifier] = ACTIONS(549), + [anon_sym_BSLASH] = ACTIONS(335), + [anon_sym_function] = ACTIONS(339), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_for] = ACTIONS(339), + [anon_sym_while] = ACTIONS(339), + [anon_sym_repeat] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(335), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_LT_DASH] = ACTIONS(335), + [anon_sym_LT_LT_DASH] = ACTIONS(335), + [anon_sym_COLON_EQ] = ACTIONS(335), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_DASH_GT_GT] = ACTIONS(335), + [anon_sym_PIPE] = ACTIONS(339), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_GT_EQ] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(335), + [anon_sym_BANG_EQ] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_SLASH] = ACTIONS(335), + [anon_sym_STAR_STAR] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [aux_sym_binary_operator_token1] = ACTIONS(335), + [anon_sym_PIPE_GT] = ACTIONS(335), + [anon_sym_COLON] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(335), + [sym__hex_literal] = ACTIONS(335), + [sym__number_literal] = ACTIONS(339), + [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_DQUOTE] = ACTIONS(541), + [sym_dots] = ACTIONS(549), + [sym_dot_dot_i] = ACTIONS(551), + [sym_return] = ACTIONS(339), + [sym_next] = ACTIONS(339), + [sym_break] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_null] = ACTIONS(339), + [sym_inf] = ACTIONS(339), + [sym_nan] = ACTIONS(339), + [anon_sym_NA] = ACTIONS(339), + [anon_sym_NA_integer_] = ACTIONS(339), + [anon_sym_NA_real_] = ACTIONS(339), + [anon_sym_NA_complex_] = ACTIONS(339), + [anon_sym_NA_character_] = ACTIONS(339), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(571), - [sym__semicolon] = ACTIONS(341), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(341), - [sym__external_open_brace] = ACTIONS(341), - [sym__external_close_brace] = ACTIONS(341), - [sym__external_open_bracket] = ACTIONS(341), - [sym__external_open_bracket2] = ACTIONS(341), + [sym__newline] = ACTIONS(335), + [sym__semicolon] = ACTIONS(335), + [sym__raw_string_literal] = ACTIONS(547), + [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_brace] = ACTIONS(335), + [sym__external_open_bracket] = ACTIONS(335), + [sym__external_open_bracket2] = ACTIONS(335), }, [259] = { - [sym_function_definition] = STATE(1371), - [sym_if_statement] = STATE(1371), - [sym_for_statement] = STATE(1371), - [sym_while_statement] = STATE(1371), - [sym_repeat_statement] = STATE(1371), - [sym_braced_expression] = STATE(1371), - [sym_parenthesized_expression] = STATE(1371), - [sym_call] = STATE(1371), - [sym_subset] = STATE(1371), - [sym_subset2] = STATE(1371), - [sym_argument] = STATE(1917), - [sym__argument_named] = STATE(2040), - [sym__argument_unnamed] = STATE(2028), - [sym__argument_value] = STATE(2042), - [sym_unary_operator] = STATE(1371), - [sym_binary_operator] = STATE(1371), - [sym_extract_operator] = STATE(1371), - [sym_namespace_operator] = STATE(1371), - [sym_integer] = STATE(1371), - [sym_complex] = STATE(1371), - [sym_float] = STATE(1371), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1624), - [sym__single_quoted_string] = STATE(1618), - [sym__double_quoted_string] = STATE(1621), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2054), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2065), - [sym_na] = STATE(1371), - [sym__expression] = STATE(1371), - [sym__open_parenthesis] = STATE(1057), - [sym__close_parenthesis] = STATE(428), - [sym__open_brace] = STATE(370), - [aux_sym_call_arguments_repeat1] = STATE(1923), - [sym_identifier] = ACTIONS(517), - [anon_sym_BSLASH] = ACTIONS(519), - [anon_sym_function] = ACTIONS(521), - [anon_sym_if] = ACTIONS(523), - [anon_sym_for] = ACTIONS(525), - [anon_sym_while] = ACTIONS(527), - [anon_sym_repeat] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [sym__hex_literal] = ACTIONS(539), - [sym__number_literal] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_dots] = ACTIONS(517), - [sym_dot_dot_i] = ACTIONS(547), - [sym_return] = ACTIONS(549), - [sym_next] = ACTIONS(549), - [sym_break] = ACTIONS(549), - [sym_true] = ACTIONS(549), - [sym_false] = ACTIONS(549), - [sym_null] = ACTIONS(549), - [sym_inf] = ACTIONS(549), - [sym_nan] = ACTIONS(549), - [anon_sym_NA] = ACTIONS(551), - [anon_sym_NA_integer_] = ACTIONS(551), - [anon_sym_NA_real_] = ACTIONS(551), - [anon_sym_NA_complex_] = ACTIONS(551), - [anon_sym_NA_character_] = ACTIONS(551), + [sym_string] = STATE(387), + [sym__single_quoted_string] = STATE(291), + [sym__double_quoted_string] = STATE(304), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(387), + [sym_identifier] = ACTIONS(553), + [anon_sym_BSLASH] = ACTIONS(555), + [anon_sym_function] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [anon_sym_repeat] = ACTIONS(557), + [anon_sym_QMARK] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_BANG] = ACTIONS(557), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_LT_DASH] = ACTIONS(555), + [anon_sym_LT_LT_DASH] = ACTIONS(555), + [anon_sym_COLON_EQ] = ACTIONS(555), + [anon_sym_DASH_GT] = ACTIONS(557), + [anon_sym_DASH_GT_GT] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(555), + [anon_sym_AMP_AMP] = ACTIONS(555), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(555), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_BANG_EQ] = ACTIONS(555), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(555), + [anon_sym_STAR_STAR] = ACTIONS(555), + [anon_sym_CARET] = ACTIONS(555), + [aux_sym_binary_operator_token1] = ACTIONS(555), + [anon_sym_PIPE_GT] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(557), + [anon_sym_DOLLAR] = ACTIONS(555), + [anon_sym_AT] = ACTIONS(555), + [sym__hex_literal] = ACTIONS(555), + [sym__number_literal] = ACTIONS(557), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [sym_dots] = ACTIONS(553), + [sym_dot_dot_i] = ACTIONS(559), + [sym_return] = ACTIONS(557), + [sym_next] = ACTIONS(557), + [sym_break] = ACTIONS(557), + [sym_true] = ACTIONS(557), + [sym_false] = ACTIONS(557), + [sym_null] = ACTIONS(557), + [sym_inf] = ACTIONS(557), + [sym_nan] = ACTIONS(557), + [anon_sym_NA] = ACTIONS(557), + [anon_sym_NA_integer_] = ACTIONS(557), + [anon_sym_NA_real_] = ACTIONS(557), + [anon_sym_NA_complex_] = ACTIONS(557), + [anon_sym_NA_character_] = ACTIONS(557), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(553), - [sym__raw_string_literal] = ACTIONS(555), - [sym__external_open_parenthesis] = ACTIONS(557), - [sym__external_close_parenthesis] = ACTIONS(573), - [sym__external_open_brace] = ACTIONS(561), + [sym__newline] = ACTIONS(555), + [sym__semicolon] = ACTIONS(555), + [sym__raw_string_literal] = ACTIONS(363), + [sym__external_else] = ACTIONS(555), + [sym__external_open_parenthesis] = ACTIONS(555), + [sym__external_open_brace] = ACTIONS(555), + [sym__external_close_brace] = ACTIONS(555), + [sym__external_open_bracket] = ACTIONS(555), + [sym__external_open_bracket2] = ACTIONS(555), }, [260] = { - [sym_function_definition] = STATE(1518), - [sym_if_statement] = STATE(1518), - [sym_for_statement] = STATE(1518), - [sym_while_statement] = STATE(1518), - [sym_repeat_statement] = STATE(1518), - [sym_braced_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_call] = STATE(1518), - [sym_subset] = STATE(1518), - [sym_subset2] = STATE(1518), - [sym_argument] = STATE(1893), - [sym__argument_named] = STATE(2039), - [sym__argument_unnamed] = STATE(2047), - [sym__argument_value] = STATE(2053), - [sym_unary_operator] = STATE(1518), - [sym_binary_operator] = STATE(1518), - [sym_extract_operator] = STATE(1518), - [sym_namespace_operator] = STATE(1518), - [sym_integer] = STATE(1518), - [sym_complex] = STATE(1518), - [sym_float] = STATE(1518), - [sym__float_literal] = STATE(1605), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1604), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2048), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2069), - [sym_na] = STATE(1518), - [sym__expression] = STATE(1518), - [sym__open_parenthesis] = STATE(1066), - [sym__open_brace] = STATE(373), - [sym__close_bracket] = STATE(434), - [aux_sym_call_arguments_repeat1] = STATE(1920), - [sym_identifier] = ACTIONS(395), - [anon_sym_BSLASH] = ACTIONS(397), - [anon_sym_function] = ACTIONS(399), - [anon_sym_if] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_repeat] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [sym__hex_literal] = ACTIONS(417), - [sym__number_literal] = ACTIONS(419), - [anon_sym_SQUOTE] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [sym_dots] = ACTIONS(395), - [sym_dot_dot_i] = ACTIONS(425), - [sym_return] = ACTIONS(427), - [sym_next] = ACTIONS(427), - [sym_break] = ACTIONS(427), - [sym_true] = ACTIONS(427), - [sym_false] = ACTIONS(427), - [sym_null] = ACTIONS(427), - [sym_inf] = ACTIONS(427), - [sym_nan] = ACTIONS(427), - [anon_sym_NA] = ACTIONS(429), - [anon_sym_NA_integer_] = ACTIONS(429), - [anon_sym_NA_real_] = ACTIONS(429), - [anon_sym_NA_complex_] = ACTIONS(429), - [anon_sym_NA_character_] = ACTIONS(429), + [sym_function_definition] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_repeat_statement] = STATE(1442), + [sym_braced_expression] = STATE(1442), + [sym_parenthesized_expression] = STATE(1442), + [sym_call] = STATE(1442), + [sym_subset] = STATE(1442), + [sym_subset2] = STATE(1442), + [sym_argument] = STATE(1936), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2048), + [sym__argument_value] = STATE(2041), + [sym_unary_operator] = STATE(1442), + [sym_binary_operator] = STATE(1442), + [sym_extract_operator] = STATE(1442), + [sym_namespace_operator] = STATE(1442), + [sym_integer] = STATE(1442), + [sym_complex] = STATE(1442), + [sym_float] = STATE(1442), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1614), + [sym__single_quoted_string] = STATE(1627), + [sym__double_quoted_string] = STATE(1616), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2042), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2062), + [sym_na] = STATE(1442), + [sym__expression] = STATE(1442), + [sym__open_parenthesis] = STATE(1097), + [sym__close_parenthesis] = STATE(1714), + [sym__open_brace] = STATE(357), + [aux_sym_call_arguments_repeat1] = STATE(1947), + [sym_identifier] = ACTIONS(483), + [anon_sym_BSLASH] = ACTIONS(485), + [anon_sym_function] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_for] = ACTIONS(491), + [anon_sym_while] = ACTIONS(493), + [anon_sym_repeat] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [sym__hex_literal] = ACTIONS(505), + [sym__number_literal] = ACTIONS(507), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym_dots] = ACTIONS(483), + [sym_dot_dot_i] = ACTIONS(513), + [sym_return] = ACTIONS(515), + [sym_next] = ACTIONS(515), + [sym_break] = ACTIONS(515), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [sym_null] = ACTIONS(515), + [sym_inf] = ACTIONS(515), + [sym_nan] = ACTIONS(515), + [anon_sym_NA] = ACTIONS(517), + [anon_sym_NA_integer_] = ACTIONS(517), + [anon_sym_NA_real_] = ACTIONS(517), + [anon_sym_NA_complex_] = ACTIONS(517), + [anon_sym_NA_character_] = ACTIONS(517), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(431), - [sym__raw_string_literal] = ACTIONS(433), - [sym__external_open_parenthesis] = ACTIONS(435), - [sym__external_open_brace] = ACTIONS(437), - [sym__external_close_bracket] = ACTIONS(575), + [sym_comma] = ACTIONS(519), + [sym__raw_string_literal] = ACTIONS(521), + [sym__external_open_parenthesis] = ACTIONS(523), + [sym__external_close_parenthesis] = ACTIONS(561), + [sym__external_open_brace] = ACTIONS(527), }, [261] = { - [sym_function_definition] = STATE(1537), - [sym_if_statement] = STATE(1537), - [sym_for_statement] = STATE(1537), - [sym_while_statement] = STATE(1537), - [sym_repeat_statement] = STATE(1537), - [sym_braced_expression] = STATE(1537), - [sym_parenthesized_expression] = STATE(1537), - [sym_call] = STATE(1537), - [sym_subset] = STATE(1537), - [sym_subset2] = STATE(1537), - [sym_argument] = STATE(1888), - [sym__argument_named] = STATE(2036), - [sym__argument_unnamed] = STATE(2033), - [sym__argument_value] = STATE(2035), - [sym_unary_operator] = STATE(1537), - [sym_binary_operator] = STATE(1537), - [sym_extract_operator] = STATE(1537), - [sym_namespace_operator] = STATE(1537), - [sym_integer] = STATE(1537), - [sym_complex] = STATE(1537), - [sym_float] = STATE(1537), - [sym__float_literal] = STATE(1632), - [sym_string] = STATE(1614), - [sym__single_quoted_string] = STATE(1633), - [sym__double_quoted_string] = STATE(1634), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2046), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2076), - [sym_na] = STATE(1537), - [sym__expression] = STATE(1537), - [sym__open_parenthesis] = STATE(1071), - [sym__open_brace] = STATE(376), - [sym__close_bracket2] = STATE(400), - [aux_sym_call_arguments_repeat1] = STATE(1822), - [sym_identifier] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_function] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), - [anon_sym_for] = ACTIONS(449), - [anon_sym_while] = ACTIONS(451), - [anon_sym_repeat] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(455), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(461), - [sym__hex_literal] = ACTIONS(463), - [sym__number_literal] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_DQUOTE] = ACTIONS(469), - [sym_dots] = ACTIONS(441), - [sym_dot_dot_i] = ACTIONS(471), - [sym_return] = ACTIONS(473), - [sym_next] = ACTIONS(473), - [sym_break] = ACTIONS(473), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [sym_inf] = ACTIONS(473), - [sym_nan] = ACTIONS(473), - [anon_sym_NA] = ACTIONS(475), - [anon_sym_NA_integer_] = ACTIONS(475), - [anon_sym_NA_real_] = ACTIONS(475), - [anon_sym_NA_complex_] = ACTIONS(475), - [anon_sym_NA_character_] = ACTIONS(475), + [sym_function_definition] = STATE(1370), + [sym_if_statement] = STATE(1370), + [sym_for_statement] = STATE(1370), + [sym_while_statement] = STATE(1370), + [sym_repeat_statement] = STATE(1370), + [sym_braced_expression] = STATE(1370), + [sym_parenthesized_expression] = STATE(1370), + [sym_call] = STATE(1370), + [sym_subset] = STATE(1370), + [sym_subset2] = STATE(1370), + [sym_argument] = STATE(1961), + [sym__argument_named] = STATE(2043), + [sym__argument_unnamed] = STATE(2044), + [sym__argument_value] = STATE(2045), + [sym_unary_operator] = STATE(1370), + [sym_binary_operator] = STATE(1370), + [sym_extract_operator] = STATE(1370), + [sym_namespace_operator] = STATE(1370), + [sym_integer] = STATE(1370), + [sym_complex] = STATE(1370), + [sym_float] = STATE(1370), + [sym__float_literal] = STATE(1618), + [sym_string] = STATE(1610), + [sym__single_quoted_string] = STATE(1605), + [sym__double_quoted_string] = STATE(1619), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2027), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2056), + [sym_na] = STATE(1370), + [sym__expression] = STATE(1370), + [sym__open_parenthesis] = STATE(1057), + [sym__open_brace] = STATE(335), + [sym__close_bracket] = STATE(1724), + [aux_sym_call_arguments_repeat1] = STATE(1950), + [sym_identifier] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_while] = ACTIONS(397), + [anon_sym_repeat] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [sym__hex_literal] = ACTIONS(409), + [sym__number_literal] = ACTIONS(411), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_dots] = ACTIONS(387), + [sym_dot_dot_i] = ACTIONS(417), + [sym_return] = ACTIONS(419), + [sym_next] = ACTIONS(419), + [sym_break] = ACTIONS(419), + [sym_true] = ACTIONS(419), + [sym_false] = ACTIONS(419), + [sym_null] = ACTIONS(419), + [sym_inf] = ACTIONS(419), + [sym_nan] = ACTIONS(419), + [anon_sym_NA] = ACTIONS(421), + [anon_sym_NA_integer_] = ACTIONS(421), + [anon_sym_NA_real_] = ACTIONS(421), + [anon_sym_NA_complex_] = ACTIONS(421), + [anon_sym_NA_character_] = ACTIONS(421), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(477), - [sym__raw_string_literal] = ACTIONS(479), - [sym__external_open_parenthesis] = ACTIONS(481), - [sym__external_open_brace] = ACTIONS(483), - [sym__external_close_bracket2] = ACTIONS(577), + [sym_comma] = ACTIONS(423), + [sym__raw_string_literal] = ACTIONS(425), + [sym__external_open_parenthesis] = ACTIONS(427), + [sym__external_open_brace] = ACTIONS(429), + [sym__external_close_bracket] = ACTIONS(563), }, [262] = { - [sym_function_definition] = STATE(1371), - [sym_if_statement] = STATE(1371), - [sym_for_statement] = STATE(1371), - [sym_while_statement] = STATE(1371), - [sym_repeat_statement] = STATE(1371), - [sym_braced_expression] = STATE(1371), - [sym_parenthesized_expression] = STATE(1371), - [sym_call] = STATE(1371), - [sym_subset] = STATE(1371), - [sym_subset2] = STATE(1371), - [sym_argument] = STATE(1852), - [sym__argument_named] = STATE(2040), - [sym__argument_unnamed] = STATE(2028), - [sym__argument_value] = STATE(2042), - [sym_unary_operator] = STATE(1371), - [sym_binary_operator] = STATE(1371), - [sym_extract_operator] = STATE(1371), - [sym_namespace_operator] = STATE(1371), - [sym_integer] = STATE(1371), - [sym_complex] = STATE(1371), - [sym_float] = STATE(1371), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1624), - [sym__single_quoted_string] = STATE(1618), - [sym__double_quoted_string] = STATE(1621), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2054), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2065), - [sym_na] = STATE(1371), - [sym__expression] = STATE(1371), - [sym__open_parenthesis] = STATE(1057), - [sym__close_parenthesis] = STATE(1768), - [sym__open_brace] = STATE(370), - [aux_sym_call_arguments_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(517), - [anon_sym_BSLASH] = ACTIONS(519), - [anon_sym_function] = ACTIONS(521), - [anon_sym_if] = ACTIONS(523), - [anon_sym_for] = ACTIONS(525), - [anon_sym_while] = ACTIONS(527), - [anon_sym_repeat] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [sym__hex_literal] = ACTIONS(539), - [sym__number_literal] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_dots] = ACTIONS(517), - [sym_dot_dot_i] = ACTIONS(547), - [sym_return] = ACTIONS(549), - [sym_next] = ACTIONS(549), - [sym_break] = ACTIONS(549), - [sym_true] = ACTIONS(549), - [sym_false] = ACTIONS(549), - [sym_null] = ACTIONS(549), - [sym_inf] = ACTIONS(549), - [sym_nan] = ACTIONS(549), - [anon_sym_NA] = ACTIONS(551), - [anon_sym_NA_integer_] = ACTIONS(551), - [anon_sym_NA_real_] = ACTIONS(551), - [anon_sym_NA_complex_] = ACTIONS(551), - [anon_sym_NA_character_] = ACTIONS(551), + [sym_function_definition] = STATE(1344), + [sym_if_statement] = STATE(1344), + [sym_for_statement] = STATE(1344), + [sym_while_statement] = STATE(1344), + [sym_repeat_statement] = STATE(1344), + [sym_braced_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_call] = STATE(1344), + [sym_subset] = STATE(1344), + [sym_subset2] = STATE(1344), + [sym_argument] = STATE(1948), + [sym__argument_named] = STATE(2053), + [sym__argument_unnamed] = STATE(2030), + [sym__argument_value] = STATE(2031), + [sym_unary_operator] = STATE(1344), + [sym_binary_operator] = STATE(1344), + [sym_extract_operator] = STATE(1344), + [sym_namespace_operator] = STATE(1344), + [sym_integer] = STATE(1344), + [sym_complex] = STATE(1344), + [sym_float] = STATE(1344), + [sym__float_literal] = STATE(1628), + [sym_string] = STATE(1609), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1632), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2039), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2057), + [sym_na] = STATE(1344), + [sym__expression] = STATE(1344), + [sym__open_parenthesis] = STATE(1113), + [sym__open_brace] = STATE(331), + [sym__close_bracket2] = STATE(1726), + [aux_sym_call_arguments_repeat1] = STATE(1945), + [sym_identifier] = ACTIONS(433), + [anon_sym_BSLASH] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_for] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_repeat] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [sym__hex_literal] = ACTIONS(455), + [sym__number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [sym_dots] = ACTIONS(433), + [sym_dot_dot_i] = ACTIONS(463), + [sym_return] = ACTIONS(465), + [sym_next] = ACTIONS(465), + [sym_break] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_inf] = ACTIONS(465), + [sym_nan] = ACTIONS(465), + [anon_sym_NA] = ACTIONS(467), + [anon_sym_NA_integer_] = ACTIONS(467), + [anon_sym_NA_real_] = ACTIONS(467), + [anon_sym_NA_complex_] = ACTIONS(467), + [anon_sym_NA_character_] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(553), - [sym__raw_string_literal] = ACTIONS(555), - [sym__external_open_parenthesis] = ACTIONS(557), - [sym__external_close_parenthesis] = ACTIONS(579), - [sym__external_open_brace] = ACTIONS(561), + [sym_comma] = ACTIONS(469), + [sym__raw_string_literal] = ACTIONS(471), + [sym__external_open_parenthesis] = ACTIONS(473), + [sym__external_open_brace] = ACTIONS(475), + [sym__external_close_bracket2] = ACTIONS(565), }, [263] = { - [sym_function_definition] = STATE(1518), - [sym_if_statement] = STATE(1518), - [sym_for_statement] = STATE(1518), - [sym_while_statement] = STATE(1518), - [sym_repeat_statement] = STATE(1518), - [sym_braced_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_call] = STATE(1518), - [sym_subset] = STATE(1518), - [sym_subset2] = STATE(1518), - [sym_argument] = STATE(1930), - [sym__argument_named] = STATE(2039), - [sym__argument_unnamed] = STATE(2047), - [sym__argument_value] = STATE(2053), - [sym_unary_operator] = STATE(1518), - [sym_binary_operator] = STATE(1518), - [sym_extract_operator] = STATE(1518), - [sym_namespace_operator] = STATE(1518), - [sym_integer] = STATE(1518), - [sym_complex] = STATE(1518), - [sym_float] = STATE(1518), - [sym__float_literal] = STATE(1605), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1604), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2048), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2069), - [sym_na] = STATE(1518), - [sym__expression] = STATE(1518), - [sym__open_parenthesis] = STATE(1066), - [sym__open_brace] = STATE(373), - [sym__close_bracket] = STATE(1775), - [aux_sym_call_arguments_repeat1] = STATE(1946), - [sym_identifier] = ACTIONS(395), - [anon_sym_BSLASH] = ACTIONS(397), - [anon_sym_function] = ACTIONS(399), - [anon_sym_if] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_repeat] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [sym__hex_literal] = ACTIONS(417), - [sym__number_literal] = ACTIONS(419), - [anon_sym_SQUOTE] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [sym_dots] = ACTIONS(395), - [sym_dot_dot_i] = ACTIONS(425), - [sym_return] = ACTIONS(427), - [sym_next] = ACTIONS(427), - [sym_break] = ACTIONS(427), - [sym_true] = ACTIONS(427), - [sym_false] = ACTIONS(427), - [sym_null] = ACTIONS(427), - [sym_inf] = ACTIONS(427), - [sym_nan] = ACTIONS(427), - [anon_sym_NA] = ACTIONS(429), - [anon_sym_NA_integer_] = ACTIONS(429), - [anon_sym_NA_real_] = ACTIONS(429), - [anon_sym_NA_complex_] = ACTIONS(429), - [anon_sym_NA_character_] = ACTIONS(429), + [sym_function_definition] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_repeat_statement] = STATE(1442), + [sym_braced_expression] = STATE(1442), + [sym_parenthesized_expression] = STATE(1442), + [sym_call] = STATE(1442), + [sym_subset] = STATE(1442), + [sym_subset2] = STATE(1442), + [sym_argument] = STATE(1928), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2048), + [sym__argument_value] = STATE(2041), + [sym_unary_operator] = STATE(1442), + [sym_binary_operator] = STATE(1442), + [sym_extract_operator] = STATE(1442), + [sym_namespace_operator] = STATE(1442), + [sym_integer] = STATE(1442), + [sym_complex] = STATE(1442), + [sym_float] = STATE(1442), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1614), + [sym__single_quoted_string] = STATE(1627), + [sym__double_quoted_string] = STATE(1616), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2042), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2062), + [sym_na] = STATE(1442), + [sym__expression] = STATE(1442), + [sym__open_parenthesis] = STATE(1097), + [sym__close_parenthesis] = STATE(434), + [sym__open_brace] = STATE(357), + [aux_sym_call_arguments_repeat1] = STATE(1916), + [sym_identifier] = ACTIONS(483), + [anon_sym_BSLASH] = ACTIONS(485), + [anon_sym_function] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_for] = ACTIONS(491), + [anon_sym_while] = ACTIONS(493), + [anon_sym_repeat] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [sym__hex_literal] = ACTIONS(505), + [sym__number_literal] = ACTIONS(507), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym_dots] = ACTIONS(483), + [sym_dot_dot_i] = ACTIONS(513), + [sym_return] = ACTIONS(515), + [sym_next] = ACTIONS(515), + [sym_break] = ACTIONS(515), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [sym_null] = ACTIONS(515), + [sym_inf] = ACTIONS(515), + [sym_nan] = ACTIONS(515), + [anon_sym_NA] = ACTIONS(517), + [anon_sym_NA_integer_] = ACTIONS(517), + [anon_sym_NA_real_] = ACTIONS(517), + [anon_sym_NA_complex_] = ACTIONS(517), + [anon_sym_NA_character_] = ACTIONS(517), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(431), - [sym__raw_string_literal] = ACTIONS(433), - [sym__external_open_parenthesis] = ACTIONS(435), - [sym__external_open_brace] = ACTIONS(437), - [sym__external_close_bracket] = ACTIONS(581), + [sym_comma] = ACTIONS(519), + [sym__raw_string_literal] = ACTIONS(521), + [sym__external_open_parenthesis] = ACTIONS(523), + [sym__external_close_parenthesis] = ACTIONS(567), + [sym__external_open_brace] = ACTIONS(527), }, [264] = { - [sym_function_definition] = STATE(1537), - [sym_if_statement] = STATE(1537), - [sym_for_statement] = STATE(1537), - [sym_while_statement] = STATE(1537), - [sym_repeat_statement] = STATE(1537), - [sym_braced_expression] = STATE(1537), - [sym_parenthesized_expression] = STATE(1537), - [sym_call] = STATE(1537), - [sym_subset] = STATE(1537), - [sym_subset2] = STATE(1537), - [sym_argument] = STATE(1952), - [sym__argument_named] = STATE(2036), - [sym__argument_unnamed] = STATE(2033), - [sym__argument_value] = STATE(2035), - [sym_unary_operator] = STATE(1537), - [sym_binary_operator] = STATE(1537), - [sym_extract_operator] = STATE(1537), - [sym_namespace_operator] = STATE(1537), - [sym_integer] = STATE(1537), - [sym_complex] = STATE(1537), - [sym_float] = STATE(1537), - [sym__float_literal] = STATE(1632), - [sym_string] = STATE(1614), - [sym__single_quoted_string] = STATE(1633), - [sym__double_quoted_string] = STATE(1634), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2046), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2076), - [sym_na] = STATE(1537), - [sym__expression] = STATE(1537), - [sym__open_parenthesis] = STATE(1071), - [sym__open_brace] = STATE(376), - [sym__close_bracket2] = STATE(1779), - [aux_sym_call_arguments_repeat1] = STATE(1963), - [sym_identifier] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_function] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), - [anon_sym_for] = ACTIONS(449), - [anon_sym_while] = ACTIONS(451), - [anon_sym_repeat] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(455), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(461), - [sym__hex_literal] = ACTIONS(463), - [sym__number_literal] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_DQUOTE] = ACTIONS(469), - [sym_dots] = ACTIONS(441), - [sym_dot_dot_i] = ACTIONS(471), - [sym_return] = ACTIONS(473), - [sym_next] = ACTIONS(473), - [sym_break] = ACTIONS(473), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [sym_inf] = ACTIONS(473), - [sym_nan] = ACTIONS(473), - [anon_sym_NA] = ACTIONS(475), - [anon_sym_NA_integer_] = ACTIONS(475), - [anon_sym_NA_real_] = ACTIONS(475), - [anon_sym_NA_complex_] = ACTIONS(475), - [anon_sym_NA_character_] = ACTIONS(475), + [sym_function_definition] = STATE(1370), + [sym_if_statement] = STATE(1370), + [sym_for_statement] = STATE(1370), + [sym_while_statement] = STATE(1370), + [sym_repeat_statement] = STATE(1370), + [sym_braced_expression] = STATE(1370), + [sym_parenthesized_expression] = STATE(1370), + [sym_call] = STATE(1370), + [sym_subset] = STATE(1370), + [sym_subset2] = STATE(1370), + [sym_argument] = STATE(1821), + [sym__argument_named] = STATE(2043), + [sym__argument_unnamed] = STATE(2044), + [sym__argument_value] = STATE(2045), + [sym_unary_operator] = STATE(1370), + [sym_binary_operator] = STATE(1370), + [sym_extract_operator] = STATE(1370), + [sym_namespace_operator] = STATE(1370), + [sym_integer] = STATE(1370), + [sym_complex] = STATE(1370), + [sym_float] = STATE(1370), + [sym__float_literal] = STATE(1618), + [sym_string] = STATE(1610), + [sym__single_quoted_string] = STATE(1605), + [sym__double_quoted_string] = STATE(1619), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2027), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2056), + [sym_na] = STATE(1370), + [sym__expression] = STATE(1370), + [sym__open_parenthesis] = STATE(1057), + [sym__open_brace] = STATE(335), + [sym__close_bracket] = STATE(1686), + [aux_sym_call_arguments_repeat1] = STATE(1820), + [sym_identifier] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_while] = ACTIONS(397), + [anon_sym_repeat] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [sym__hex_literal] = ACTIONS(409), + [sym__number_literal] = ACTIONS(411), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_dots] = ACTIONS(387), + [sym_dot_dot_i] = ACTIONS(417), + [sym_return] = ACTIONS(419), + [sym_next] = ACTIONS(419), + [sym_break] = ACTIONS(419), + [sym_true] = ACTIONS(419), + [sym_false] = ACTIONS(419), + [sym_null] = ACTIONS(419), + [sym_inf] = ACTIONS(419), + [sym_nan] = ACTIONS(419), + [anon_sym_NA] = ACTIONS(421), + [anon_sym_NA_integer_] = ACTIONS(421), + [anon_sym_NA_real_] = ACTIONS(421), + [anon_sym_NA_complex_] = ACTIONS(421), + [anon_sym_NA_character_] = ACTIONS(421), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(477), - [sym__raw_string_literal] = ACTIONS(479), - [sym__external_open_parenthesis] = ACTIONS(481), - [sym__external_open_brace] = ACTIONS(483), - [sym__external_close_bracket2] = ACTIONS(583), + [sym_comma] = ACTIONS(423), + [sym__raw_string_literal] = ACTIONS(425), + [sym__external_open_parenthesis] = ACTIONS(427), + [sym__external_open_brace] = ACTIONS(429), + [sym__external_close_bracket] = ACTIONS(569), }, [265] = { - [sym_function_definition] = STATE(1371), - [sym_if_statement] = STATE(1371), - [sym_for_statement] = STATE(1371), - [sym_while_statement] = STATE(1371), - [sym_repeat_statement] = STATE(1371), - [sym_braced_expression] = STATE(1371), - [sym_parenthesized_expression] = STATE(1371), - [sym_call] = STATE(1371), - [sym_subset] = STATE(1371), - [sym_subset2] = STATE(1371), - [sym_argument] = STATE(1899), - [sym__argument_named] = STATE(2040), - [sym__argument_unnamed] = STATE(2028), - [sym__argument_value] = STATE(2042), - [sym_unary_operator] = STATE(1371), - [sym_binary_operator] = STATE(1371), - [sym_extract_operator] = STATE(1371), - [sym_namespace_operator] = STATE(1371), - [sym_integer] = STATE(1371), - [sym_complex] = STATE(1371), - [sym_float] = STATE(1371), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1624), - [sym__single_quoted_string] = STATE(1618), - [sym__double_quoted_string] = STATE(1621), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2054), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2065), - [sym_na] = STATE(1371), - [sym__expression] = STATE(1371), - [sym__open_parenthesis] = STATE(1057), - [sym__close_parenthesis] = STATE(1736), - [sym__open_brace] = STATE(370), - [aux_sym_call_arguments_repeat1] = STATE(1906), - [sym_identifier] = ACTIONS(517), - [anon_sym_BSLASH] = ACTIONS(519), - [anon_sym_function] = ACTIONS(521), - [anon_sym_if] = ACTIONS(523), - [anon_sym_for] = ACTIONS(525), - [anon_sym_while] = ACTIONS(527), - [anon_sym_repeat] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [sym__hex_literal] = ACTIONS(539), - [sym__number_literal] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_dots] = ACTIONS(517), - [sym_dot_dot_i] = ACTIONS(547), - [sym_return] = ACTIONS(549), - [sym_next] = ACTIONS(549), - [sym_break] = ACTIONS(549), - [sym_true] = ACTIONS(549), - [sym_false] = ACTIONS(549), - [sym_null] = ACTIONS(549), - [sym_inf] = ACTIONS(549), - [sym_nan] = ACTIONS(549), - [anon_sym_NA] = ACTIONS(551), - [anon_sym_NA_integer_] = ACTIONS(551), - [anon_sym_NA_real_] = ACTIONS(551), - [anon_sym_NA_complex_] = ACTIONS(551), - [anon_sym_NA_character_] = ACTIONS(551), + [sym_function_definition] = STATE(1344), + [sym_if_statement] = STATE(1344), + [sym_for_statement] = STATE(1344), + [sym_while_statement] = STATE(1344), + [sym_repeat_statement] = STATE(1344), + [sym_braced_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_call] = STATE(1344), + [sym_subset] = STATE(1344), + [sym_subset2] = STATE(1344), + [sym_argument] = STATE(1804), + [sym__argument_named] = STATE(2053), + [sym__argument_unnamed] = STATE(2030), + [sym__argument_value] = STATE(2031), + [sym_unary_operator] = STATE(1344), + [sym_binary_operator] = STATE(1344), + [sym_extract_operator] = STATE(1344), + [sym_namespace_operator] = STATE(1344), + [sym_integer] = STATE(1344), + [sym_complex] = STATE(1344), + [sym_float] = STATE(1344), + [sym__float_literal] = STATE(1628), + [sym_string] = STATE(1609), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1632), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2039), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2057), + [sym_na] = STATE(1344), + [sym__expression] = STATE(1344), + [sym__open_parenthesis] = STATE(1113), + [sym__open_brace] = STATE(331), + [sym__close_bracket2] = STATE(1685), + [aux_sym_call_arguments_repeat1] = STATE(1811), + [sym_identifier] = ACTIONS(433), + [anon_sym_BSLASH] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_for] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_repeat] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [sym__hex_literal] = ACTIONS(455), + [sym__number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [sym_dots] = ACTIONS(433), + [sym_dot_dot_i] = ACTIONS(463), + [sym_return] = ACTIONS(465), + [sym_next] = ACTIONS(465), + [sym_break] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_inf] = ACTIONS(465), + [sym_nan] = ACTIONS(465), + [anon_sym_NA] = ACTIONS(467), + [anon_sym_NA_integer_] = ACTIONS(467), + [anon_sym_NA_real_] = ACTIONS(467), + [anon_sym_NA_complex_] = ACTIONS(467), + [anon_sym_NA_character_] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(553), - [sym__raw_string_literal] = ACTIONS(555), - [sym__external_open_parenthesis] = ACTIONS(557), - [sym__external_close_parenthesis] = ACTIONS(585), - [sym__external_open_brace] = ACTIONS(561), + [sym_comma] = ACTIONS(469), + [sym__raw_string_literal] = ACTIONS(471), + [sym__external_open_parenthesis] = ACTIONS(473), + [sym__external_open_brace] = ACTIONS(475), + [sym__external_close_bracket2] = ACTIONS(571), }, [266] = { - [sym_function_definition] = STATE(1518), - [sym_if_statement] = STATE(1518), - [sym_for_statement] = STATE(1518), - [sym_while_statement] = STATE(1518), - [sym_repeat_statement] = STATE(1518), - [sym_braced_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_call] = STATE(1518), - [sym_subset] = STATE(1518), - [sym_subset2] = STATE(1518), - [sym_argument] = STATE(1831), - [sym__argument_named] = STATE(2039), - [sym__argument_unnamed] = STATE(2047), - [sym__argument_value] = STATE(2053), - [sym_unary_operator] = STATE(1518), - [sym_binary_operator] = STATE(1518), - [sym_extract_operator] = STATE(1518), - [sym_namespace_operator] = STATE(1518), - [sym_integer] = STATE(1518), - [sym_complex] = STATE(1518), - [sym_float] = STATE(1518), - [sym__float_literal] = STATE(1605), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1604), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2048), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2069), - [sym_na] = STATE(1518), - [sym__expression] = STATE(1518), - [sym__open_parenthesis] = STATE(1066), - [sym__open_brace] = STATE(373), - [sym__close_bracket] = STATE(1737), - [aux_sym_call_arguments_repeat1] = STATE(1832), - [sym_identifier] = ACTIONS(395), - [anon_sym_BSLASH] = ACTIONS(397), - [anon_sym_function] = ACTIONS(399), - [anon_sym_if] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_repeat] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [sym__hex_literal] = ACTIONS(417), - [sym__number_literal] = ACTIONS(419), - [anon_sym_SQUOTE] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [sym_dots] = ACTIONS(395), - [sym_dot_dot_i] = ACTIONS(425), - [sym_return] = ACTIONS(427), - [sym_next] = ACTIONS(427), - [sym_break] = ACTIONS(427), - [sym_true] = ACTIONS(427), - [sym_false] = ACTIONS(427), - [sym_null] = ACTIONS(427), - [sym_inf] = ACTIONS(427), - [sym_nan] = ACTIONS(427), - [anon_sym_NA] = ACTIONS(429), - [anon_sym_NA_integer_] = ACTIONS(429), - [anon_sym_NA_real_] = ACTIONS(429), - [anon_sym_NA_complex_] = ACTIONS(429), - [anon_sym_NA_character_] = ACTIONS(429), + [sym_function_definition] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_repeat_statement] = STATE(1442), + [sym_braced_expression] = STATE(1442), + [sym_parenthesized_expression] = STATE(1442), + [sym_call] = STATE(1442), + [sym_subset] = STATE(1442), + [sym_subset2] = STATE(1442), + [sym_argument] = STATE(1852), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2048), + [sym__argument_value] = STATE(2041), + [sym_unary_operator] = STATE(1442), + [sym_binary_operator] = STATE(1442), + [sym_extract_operator] = STATE(1442), + [sym_namespace_operator] = STATE(1442), + [sym_integer] = STATE(1442), + [sym_complex] = STATE(1442), + [sym_float] = STATE(1442), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1614), + [sym__single_quoted_string] = STATE(1627), + [sym__double_quoted_string] = STATE(1616), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2042), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2062), + [sym_na] = STATE(1442), + [sym__expression] = STATE(1442), + [sym__open_parenthesis] = STATE(1097), + [sym__close_parenthesis] = STATE(377), + [sym__open_brace] = STATE(357), + [aux_sym_call_arguments_repeat1] = STATE(1853), + [sym_identifier] = ACTIONS(483), + [anon_sym_BSLASH] = ACTIONS(485), + [anon_sym_function] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_for] = ACTIONS(491), + [anon_sym_while] = ACTIONS(493), + [anon_sym_repeat] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [sym__hex_literal] = ACTIONS(505), + [sym__number_literal] = ACTIONS(507), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym_dots] = ACTIONS(483), + [sym_dot_dot_i] = ACTIONS(513), + [sym_return] = ACTIONS(515), + [sym_next] = ACTIONS(515), + [sym_break] = ACTIONS(515), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [sym_null] = ACTIONS(515), + [sym_inf] = ACTIONS(515), + [sym_nan] = ACTIONS(515), + [anon_sym_NA] = ACTIONS(517), + [anon_sym_NA_integer_] = ACTIONS(517), + [anon_sym_NA_real_] = ACTIONS(517), + [anon_sym_NA_complex_] = ACTIONS(517), + [anon_sym_NA_character_] = ACTIONS(517), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(431), - [sym__raw_string_literal] = ACTIONS(433), - [sym__external_open_parenthesis] = ACTIONS(435), - [sym__external_open_brace] = ACTIONS(437), - [sym__external_close_bracket] = ACTIONS(587), + [sym_comma] = ACTIONS(519), + [sym__raw_string_literal] = ACTIONS(521), + [sym__external_open_parenthesis] = ACTIONS(523), + [sym__external_close_parenthesis] = ACTIONS(573), + [sym__external_open_brace] = ACTIONS(527), }, [267] = { - [sym_function_definition] = STATE(1537), - [sym_if_statement] = STATE(1537), - [sym_for_statement] = STATE(1537), - [sym_while_statement] = STATE(1537), - [sym_repeat_statement] = STATE(1537), - [sym_braced_expression] = STATE(1537), - [sym_parenthesized_expression] = STATE(1537), - [sym_call] = STATE(1537), - [sym_subset] = STATE(1537), - [sym_subset2] = STATE(1537), - [sym_argument] = STATE(1841), - [sym__argument_named] = STATE(2036), - [sym__argument_unnamed] = STATE(2033), - [sym__argument_value] = STATE(2035), - [sym_unary_operator] = STATE(1537), - [sym_binary_operator] = STATE(1537), - [sym_extract_operator] = STATE(1537), - [sym_namespace_operator] = STATE(1537), - [sym_integer] = STATE(1537), - [sym_complex] = STATE(1537), - [sym_float] = STATE(1537), - [sym__float_literal] = STATE(1632), + [sym_function_definition] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_repeat_statement] = STATE(1442), + [sym_braced_expression] = STATE(1442), + [sym_parenthesized_expression] = STATE(1442), + [sym_call] = STATE(1442), + [sym_subset] = STATE(1442), + [sym_subset2] = STATE(1442), + [sym_argument] = STATE(1935), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2048), + [sym__argument_value] = STATE(2041), + [sym_unary_operator] = STATE(1442), + [sym_binary_operator] = STATE(1442), + [sym_extract_operator] = STATE(1442), + [sym_namespace_operator] = STATE(1442), + [sym_integer] = STATE(1442), + [sym_complex] = STATE(1442), + [sym_float] = STATE(1442), + [sym__float_literal] = STATE(1626), [sym_string] = STATE(1614), - [sym__single_quoted_string] = STATE(1633), - [sym__double_quoted_string] = STATE(1634), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2046), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2076), - [sym_na] = STATE(1537), - [sym__expression] = STATE(1537), - [sym__open_parenthesis] = STATE(1071), - [sym__open_brace] = STATE(376), - [sym__close_bracket2] = STATE(1781), - [aux_sym_call_arguments_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_function] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), - [anon_sym_for] = ACTIONS(449), - [anon_sym_while] = ACTIONS(451), - [anon_sym_repeat] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(455), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(461), - [sym__hex_literal] = ACTIONS(463), - [sym__number_literal] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_DQUOTE] = ACTIONS(469), - [sym_dots] = ACTIONS(441), - [sym_dot_dot_i] = ACTIONS(471), - [sym_return] = ACTIONS(473), - [sym_next] = ACTIONS(473), - [sym_break] = ACTIONS(473), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [sym_inf] = ACTIONS(473), - [sym_nan] = ACTIONS(473), - [anon_sym_NA] = ACTIONS(475), - [anon_sym_NA_integer_] = ACTIONS(475), - [anon_sym_NA_real_] = ACTIONS(475), - [anon_sym_NA_complex_] = ACTIONS(475), - [anon_sym_NA_character_] = ACTIONS(475), + [sym__single_quoted_string] = STATE(1627), + [sym__double_quoted_string] = STATE(1616), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2042), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2062), + [sym_na] = STATE(1442), + [sym__expression] = STATE(1442), + [sym__open_parenthesis] = STATE(1097), + [sym__close_parenthesis] = STATE(404), + [sym__open_brace] = STATE(357), + [aux_sym_call_arguments_repeat1] = STATE(1931), + [sym_identifier] = ACTIONS(483), + [anon_sym_BSLASH] = ACTIONS(485), + [anon_sym_function] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_for] = ACTIONS(491), + [anon_sym_while] = ACTIONS(493), + [anon_sym_repeat] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [sym__hex_literal] = ACTIONS(505), + [sym__number_literal] = ACTIONS(507), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym_dots] = ACTIONS(483), + [sym_dot_dot_i] = ACTIONS(513), + [sym_return] = ACTIONS(515), + [sym_next] = ACTIONS(515), + [sym_break] = ACTIONS(515), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [sym_null] = ACTIONS(515), + [sym_inf] = ACTIONS(515), + [sym_nan] = ACTIONS(515), + [anon_sym_NA] = ACTIONS(517), + [anon_sym_NA_integer_] = ACTIONS(517), + [anon_sym_NA_real_] = ACTIONS(517), + [anon_sym_NA_complex_] = ACTIONS(517), + [anon_sym_NA_character_] = ACTIONS(517), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(477), - [sym__raw_string_literal] = ACTIONS(479), - [sym__external_open_parenthesis] = ACTIONS(481), - [sym__external_open_brace] = ACTIONS(483), - [sym__external_close_bracket2] = ACTIONS(589), + [sym_comma] = ACTIONS(519), + [sym__raw_string_literal] = ACTIONS(521), + [sym__external_open_parenthesis] = ACTIONS(523), + [sym__external_close_parenthesis] = ACTIONS(575), + [sym__external_open_brace] = ACTIONS(527), }, [268] = { - [sym_function_definition] = STATE(1371), - [sym_if_statement] = STATE(1371), - [sym_for_statement] = STATE(1371), - [sym_while_statement] = STATE(1371), - [sym_repeat_statement] = STATE(1371), - [sym_braced_expression] = STATE(1371), - [sym_parenthesized_expression] = STATE(1371), - [sym_call] = STATE(1371), - [sym_subset] = STATE(1371), - [sym_subset2] = STATE(1371), - [sym_argument] = STATE(1805), - [sym__argument_named] = STATE(2040), - [sym__argument_unnamed] = STATE(2028), - [sym__argument_value] = STATE(2042), - [sym_unary_operator] = STATE(1371), - [sym_binary_operator] = STATE(1371), - [sym_extract_operator] = STATE(1371), - [sym_namespace_operator] = STATE(1371), - [sym_integer] = STATE(1371), - [sym_complex] = STATE(1371), - [sym_float] = STATE(1371), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1624), - [sym__single_quoted_string] = STATE(1618), - [sym__double_quoted_string] = STATE(1621), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2054), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2065), - [sym_na] = STATE(1371), - [sym__expression] = STATE(1371), + [sym_function_definition] = STATE(1370), + [sym_if_statement] = STATE(1370), + [sym_for_statement] = STATE(1370), + [sym_while_statement] = STATE(1370), + [sym_repeat_statement] = STATE(1370), + [sym_braced_expression] = STATE(1370), + [sym_parenthesized_expression] = STATE(1370), + [sym_call] = STATE(1370), + [sym_subset] = STATE(1370), + [sym_subset2] = STATE(1370), + [sym_argument] = STATE(1957), + [sym__argument_named] = STATE(2043), + [sym__argument_unnamed] = STATE(2044), + [sym__argument_value] = STATE(2045), + [sym_unary_operator] = STATE(1370), + [sym_binary_operator] = STATE(1370), + [sym_extract_operator] = STATE(1370), + [sym_namespace_operator] = STATE(1370), + [sym_integer] = STATE(1370), + [sym_complex] = STATE(1370), + [sym_float] = STATE(1370), + [sym__float_literal] = STATE(1618), + [sym_string] = STATE(1610), + [sym__single_quoted_string] = STATE(1605), + [sym__double_quoted_string] = STATE(1619), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2027), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2056), + [sym_na] = STATE(1370), + [sym__expression] = STATE(1370), [sym__open_parenthesis] = STATE(1057), - [sym__close_parenthesis] = STATE(379), - [sym__open_brace] = STATE(370), - [aux_sym_call_arguments_repeat1] = STATE(1806), - [sym_identifier] = ACTIONS(517), - [anon_sym_BSLASH] = ACTIONS(519), - [anon_sym_function] = ACTIONS(521), - [anon_sym_if] = ACTIONS(523), - [anon_sym_for] = ACTIONS(525), - [anon_sym_while] = ACTIONS(527), - [anon_sym_repeat] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [sym__hex_literal] = ACTIONS(539), - [sym__number_literal] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_dots] = ACTIONS(517), - [sym_dot_dot_i] = ACTIONS(547), - [sym_return] = ACTIONS(549), - [sym_next] = ACTIONS(549), - [sym_break] = ACTIONS(549), - [sym_true] = ACTIONS(549), - [sym_false] = ACTIONS(549), - [sym_null] = ACTIONS(549), - [sym_inf] = ACTIONS(549), - [sym_nan] = ACTIONS(549), - [anon_sym_NA] = ACTIONS(551), - [anon_sym_NA_integer_] = ACTIONS(551), - [anon_sym_NA_real_] = ACTIONS(551), - [anon_sym_NA_complex_] = ACTIONS(551), - [anon_sym_NA_character_] = ACTIONS(551), + [sym__open_brace] = STATE(335), + [sym__close_bracket] = STATE(1643), + [aux_sym_call_arguments_repeat1] = STATE(1942), + [sym_identifier] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_while] = ACTIONS(397), + [anon_sym_repeat] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [sym__hex_literal] = ACTIONS(409), + [sym__number_literal] = ACTIONS(411), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_dots] = ACTIONS(387), + [sym_dot_dot_i] = ACTIONS(417), + [sym_return] = ACTIONS(419), + [sym_next] = ACTIONS(419), + [sym_break] = ACTIONS(419), + [sym_true] = ACTIONS(419), + [sym_false] = ACTIONS(419), + [sym_null] = ACTIONS(419), + [sym_inf] = ACTIONS(419), + [sym_nan] = ACTIONS(419), + [anon_sym_NA] = ACTIONS(421), + [anon_sym_NA_integer_] = ACTIONS(421), + [anon_sym_NA_real_] = ACTIONS(421), + [anon_sym_NA_complex_] = ACTIONS(421), + [anon_sym_NA_character_] = ACTIONS(421), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(553), - [sym__raw_string_literal] = ACTIONS(555), - [sym__external_open_parenthesis] = ACTIONS(557), - [sym__external_close_parenthesis] = ACTIONS(591), - [sym__external_open_brace] = ACTIONS(561), + [sym_comma] = ACTIONS(423), + [sym__raw_string_literal] = ACTIONS(425), + [sym__external_open_parenthesis] = ACTIONS(427), + [sym__external_open_brace] = ACTIONS(429), + [sym__external_close_bracket] = ACTIONS(577), }, [269] = { - [sym_function_definition] = STATE(1518), - [sym_if_statement] = STATE(1518), - [sym_for_statement] = STATE(1518), - [sym_while_statement] = STATE(1518), - [sym_repeat_statement] = STATE(1518), - [sym_braced_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_call] = STATE(1518), - [sym_subset] = STATE(1518), - [sym_subset2] = STATE(1518), - [sym_argument] = STATE(1901), - [sym__argument_named] = STATE(2039), - [sym__argument_unnamed] = STATE(2047), - [sym__argument_value] = STATE(2053), - [sym_unary_operator] = STATE(1518), - [sym_binary_operator] = STATE(1518), - [sym_extract_operator] = STATE(1518), - [sym_namespace_operator] = STATE(1518), - [sym_integer] = STATE(1518), - [sym_complex] = STATE(1518), - [sym_float] = STATE(1518), - [sym__float_literal] = STATE(1605), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1604), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2048), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2069), - [sym_na] = STATE(1518), - [sym__expression] = STATE(1518), - [sym__open_parenthesis] = STATE(1066), - [sym__open_brace] = STATE(373), - [sym__close_bracket] = STATE(382), - [aux_sym_call_arguments_repeat1] = STATE(1916), - [sym_identifier] = ACTIONS(395), - [anon_sym_BSLASH] = ACTIONS(397), - [anon_sym_function] = ACTIONS(399), - [anon_sym_if] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_repeat] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [sym__hex_literal] = ACTIONS(417), - [sym__number_literal] = ACTIONS(419), - [anon_sym_SQUOTE] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [sym_dots] = ACTIONS(395), - [sym_dot_dot_i] = ACTIONS(425), - [sym_return] = ACTIONS(427), - [sym_next] = ACTIONS(427), - [sym_break] = ACTIONS(427), - [sym_true] = ACTIONS(427), - [sym_false] = ACTIONS(427), - [sym_null] = ACTIONS(427), - [sym_inf] = ACTIONS(427), - [sym_nan] = ACTIONS(427), - [anon_sym_NA] = ACTIONS(429), - [anon_sym_NA_integer_] = ACTIONS(429), - [anon_sym_NA_real_] = ACTIONS(429), - [anon_sym_NA_complex_] = ACTIONS(429), - [anon_sym_NA_character_] = ACTIONS(429), + [sym_function_definition] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_repeat_statement] = STATE(1442), + [sym_braced_expression] = STATE(1442), + [sym_parenthesized_expression] = STATE(1442), + [sym_call] = STATE(1442), + [sym_subset] = STATE(1442), + [sym_subset2] = STATE(1442), + [sym_argument] = STATE(1833), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2048), + [sym__argument_value] = STATE(2041), + [sym_unary_operator] = STATE(1442), + [sym_binary_operator] = STATE(1442), + [sym_extract_operator] = STATE(1442), + [sym_namespace_operator] = STATE(1442), + [sym_integer] = STATE(1442), + [sym_complex] = STATE(1442), + [sym_float] = STATE(1442), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1614), + [sym__single_quoted_string] = STATE(1627), + [sym__double_quoted_string] = STATE(1616), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2042), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2062), + [sym_na] = STATE(1442), + [sym__expression] = STATE(1442), + [sym__open_parenthesis] = STATE(1097), + [sym__close_parenthesis] = STATE(1652), + [sym__open_brace] = STATE(357), + [aux_sym_call_arguments_repeat1] = STATE(1834), + [sym_identifier] = ACTIONS(483), + [anon_sym_BSLASH] = ACTIONS(485), + [anon_sym_function] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_for] = ACTIONS(491), + [anon_sym_while] = ACTIONS(493), + [anon_sym_repeat] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [sym__hex_literal] = ACTIONS(505), + [sym__number_literal] = ACTIONS(507), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym_dots] = ACTIONS(483), + [sym_dot_dot_i] = ACTIONS(513), + [sym_return] = ACTIONS(515), + [sym_next] = ACTIONS(515), + [sym_break] = ACTIONS(515), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [sym_null] = ACTIONS(515), + [sym_inf] = ACTIONS(515), + [sym_nan] = ACTIONS(515), + [anon_sym_NA] = ACTIONS(517), + [anon_sym_NA_integer_] = ACTIONS(517), + [anon_sym_NA_real_] = ACTIONS(517), + [anon_sym_NA_complex_] = ACTIONS(517), + [anon_sym_NA_character_] = ACTIONS(517), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(431), - [sym__raw_string_literal] = ACTIONS(433), - [sym__external_open_parenthesis] = ACTIONS(435), - [sym__external_open_brace] = ACTIONS(437), - [sym__external_close_bracket] = ACTIONS(593), + [sym_comma] = ACTIONS(519), + [sym__raw_string_literal] = ACTIONS(521), + [sym__external_open_parenthesis] = ACTIONS(523), + [sym__external_close_parenthesis] = ACTIONS(579), + [sym__external_open_brace] = ACTIONS(527), }, [270] = { - [sym_function_definition] = STATE(1537), - [sym_if_statement] = STATE(1537), - [sym_for_statement] = STATE(1537), - [sym_while_statement] = STATE(1537), - [sym_repeat_statement] = STATE(1537), - [sym_braced_expression] = STATE(1537), - [sym_parenthesized_expression] = STATE(1537), - [sym_call] = STATE(1537), - [sym_subset] = STATE(1537), - [sym_subset2] = STATE(1537), - [sym_argument] = STATE(1833), - [sym__argument_named] = STATE(2036), - [sym__argument_unnamed] = STATE(2033), - [sym__argument_value] = STATE(2035), - [sym_unary_operator] = STATE(1537), - [sym_binary_operator] = STATE(1537), - [sym_extract_operator] = STATE(1537), - [sym_namespace_operator] = STATE(1537), - [sym_integer] = STATE(1537), - [sym_complex] = STATE(1537), - [sym_float] = STATE(1537), - [sym__float_literal] = STATE(1632), - [sym_string] = STATE(1614), - [sym__single_quoted_string] = STATE(1633), - [sym__double_quoted_string] = STATE(1634), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2046), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2076), - [sym_na] = STATE(1537), - [sym__expression] = STATE(1537), - [sym__open_parenthesis] = STATE(1071), - [sym__open_brace] = STATE(376), - [sym__close_bracket2] = STATE(383), - [aux_sym_call_arguments_repeat1] = STATE(1882), - [sym_identifier] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_function] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), - [anon_sym_for] = ACTIONS(449), - [anon_sym_while] = ACTIONS(451), - [anon_sym_repeat] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(455), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(461), - [sym__hex_literal] = ACTIONS(463), - [sym__number_literal] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_DQUOTE] = ACTIONS(469), - [sym_dots] = ACTIONS(441), - [sym_dot_dot_i] = ACTIONS(471), - [sym_return] = ACTIONS(473), - [sym_next] = ACTIONS(473), - [sym_break] = ACTIONS(473), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [sym_inf] = ACTIONS(473), - [sym_nan] = ACTIONS(473), - [anon_sym_NA] = ACTIONS(475), - [anon_sym_NA_integer_] = ACTIONS(475), - [anon_sym_NA_real_] = ACTIONS(475), - [anon_sym_NA_complex_] = ACTIONS(475), - [anon_sym_NA_character_] = ACTIONS(475), + [sym_function_definition] = STATE(1370), + [sym_if_statement] = STATE(1370), + [sym_for_statement] = STATE(1370), + [sym_while_statement] = STATE(1370), + [sym_repeat_statement] = STATE(1370), + [sym_braced_expression] = STATE(1370), + [sym_parenthesized_expression] = STATE(1370), + [sym_call] = STATE(1370), + [sym_subset] = STATE(1370), + [sym_subset2] = STATE(1370), + [sym_argument] = STATE(1884), + [sym__argument_named] = STATE(2043), + [sym__argument_unnamed] = STATE(2044), + [sym__argument_value] = STATE(2045), + [sym_unary_operator] = STATE(1370), + [sym_binary_operator] = STATE(1370), + [sym_extract_operator] = STATE(1370), + [sym_namespace_operator] = STATE(1370), + [sym_integer] = STATE(1370), + [sym_complex] = STATE(1370), + [sym_float] = STATE(1370), + [sym__float_literal] = STATE(1618), + [sym_string] = STATE(1610), + [sym__single_quoted_string] = STATE(1605), + [sym__double_quoted_string] = STATE(1619), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2027), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2056), + [sym_na] = STATE(1370), + [sym__expression] = STATE(1370), + [sym__open_parenthesis] = STATE(1057), + [sym__open_brace] = STATE(335), + [sym__close_bracket] = STATE(373), + [aux_sym_call_arguments_repeat1] = STATE(1897), + [sym_identifier] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_while] = ACTIONS(397), + [anon_sym_repeat] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [sym__hex_literal] = ACTIONS(409), + [sym__number_literal] = ACTIONS(411), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_dots] = ACTIONS(387), + [sym_dot_dot_i] = ACTIONS(417), + [sym_return] = ACTIONS(419), + [sym_next] = ACTIONS(419), + [sym_break] = ACTIONS(419), + [sym_true] = ACTIONS(419), + [sym_false] = ACTIONS(419), + [sym_null] = ACTIONS(419), + [sym_inf] = ACTIONS(419), + [sym_nan] = ACTIONS(419), + [anon_sym_NA] = ACTIONS(421), + [anon_sym_NA_integer_] = ACTIONS(421), + [anon_sym_NA_real_] = ACTIONS(421), + [anon_sym_NA_complex_] = ACTIONS(421), + [anon_sym_NA_character_] = ACTIONS(421), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(477), - [sym__raw_string_literal] = ACTIONS(479), - [sym__external_open_parenthesis] = ACTIONS(481), - [sym__external_open_brace] = ACTIONS(483), - [sym__external_close_bracket2] = ACTIONS(595), + [sym_comma] = ACTIONS(423), + [sym__raw_string_literal] = ACTIONS(425), + [sym__external_open_parenthesis] = ACTIONS(427), + [sym__external_open_brace] = ACTIONS(429), + [sym__external_close_bracket] = ACTIONS(581), }, [271] = { - [sym_function_definition] = STATE(1371), - [sym_if_statement] = STATE(1371), - [sym_for_statement] = STATE(1371), - [sym_while_statement] = STATE(1371), - [sym_repeat_statement] = STATE(1371), - [sym_braced_expression] = STATE(1371), - [sym_parenthesized_expression] = STATE(1371), - [sym_call] = STATE(1371), - [sym_subset] = STATE(1371), - [sym_subset2] = STATE(1371), - [sym_argument] = STATE(1825), - [sym__argument_named] = STATE(2040), - [sym__argument_unnamed] = STATE(2028), - [sym__argument_value] = STATE(2042), - [sym_unary_operator] = STATE(1371), - [sym_binary_operator] = STATE(1371), - [sym_extract_operator] = STATE(1371), - [sym_namespace_operator] = STATE(1371), - [sym_integer] = STATE(1371), - [sym_complex] = STATE(1371), - [sym_float] = STATE(1371), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1624), - [sym__single_quoted_string] = STATE(1618), - [sym__double_quoted_string] = STATE(1621), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2054), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2065), - [sym_na] = STATE(1371), - [sym__expression] = STATE(1371), - [sym__open_parenthesis] = STATE(1057), - [sym__close_parenthesis] = STATE(1665), - [sym__open_brace] = STATE(370), - [aux_sym_call_arguments_repeat1] = STATE(1826), - [sym_identifier] = ACTIONS(517), - [anon_sym_BSLASH] = ACTIONS(519), - [anon_sym_function] = ACTIONS(521), - [anon_sym_if] = ACTIONS(523), - [anon_sym_for] = ACTIONS(525), - [anon_sym_while] = ACTIONS(527), - [anon_sym_repeat] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [sym__hex_literal] = ACTIONS(539), - [sym__number_literal] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_dots] = ACTIONS(517), - [sym_dot_dot_i] = ACTIONS(547), - [sym_return] = ACTIONS(549), - [sym_next] = ACTIONS(549), - [sym_break] = ACTIONS(549), - [sym_true] = ACTIONS(549), - [sym_false] = ACTIONS(549), - [sym_null] = ACTIONS(549), - [sym_inf] = ACTIONS(549), - [sym_nan] = ACTIONS(549), - [anon_sym_NA] = ACTIONS(551), - [anon_sym_NA_integer_] = ACTIONS(551), - [anon_sym_NA_real_] = ACTIONS(551), - [anon_sym_NA_complex_] = ACTIONS(551), - [anon_sym_NA_character_] = ACTIONS(551), + [sym_function_definition] = STATE(1344), + [sym_if_statement] = STATE(1344), + [sym_for_statement] = STATE(1344), + [sym_while_statement] = STATE(1344), + [sym_repeat_statement] = STATE(1344), + [sym_braced_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_call] = STATE(1344), + [sym_subset] = STATE(1344), + [sym_subset2] = STATE(1344), + [sym_argument] = STATE(1838), + [sym__argument_named] = STATE(2053), + [sym__argument_unnamed] = STATE(2030), + [sym__argument_value] = STATE(2031), + [sym_unary_operator] = STATE(1344), + [sym_binary_operator] = STATE(1344), + [sym_extract_operator] = STATE(1344), + [sym_namespace_operator] = STATE(1344), + [sym_integer] = STATE(1344), + [sym_complex] = STATE(1344), + [sym_float] = STATE(1344), + [sym__float_literal] = STATE(1628), + [sym_string] = STATE(1609), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1632), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2039), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2057), + [sym_na] = STATE(1344), + [sym__expression] = STATE(1344), + [sym__open_parenthesis] = STATE(1113), + [sym__open_brace] = STATE(331), + [sym__close_bracket2] = STATE(1773), + [aux_sym_call_arguments_repeat1] = STATE(1933), + [sym_identifier] = ACTIONS(433), + [anon_sym_BSLASH] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_for] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_repeat] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [sym__hex_literal] = ACTIONS(455), + [sym__number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [sym_dots] = ACTIONS(433), + [sym_dot_dot_i] = ACTIONS(463), + [sym_return] = ACTIONS(465), + [sym_next] = ACTIONS(465), + [sym_break] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_inf] = ACTIONS(465), + [sym_nan] = ACTIONS(465), + [anon_sym_NA] = ACTIONS(467), + [anon_sym_NA_integer_] = ACTIONS(467), + [anon_sym_NA_real_] = ACTIONS(467), + [anon_sym_NA_complex_] = ACTIONS(467), + [anon_sym_NA_character_] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(553), - [sym__raw_string_literal] = ACTIONS(555), - [sym__external_open_parenthesis] = ACTIONS(557), - [sym__external_close_parenthesis] = ACTIONS(597), - [sym__external_open_brace] = ACTIONS(561), + [sym_comma] = ACTIONS(469), + [sym__raw_string_literal] = ACTIONS(471), + [sym__external_open_parenthesis] = ACTIONS(473), + [sym__external_open_brace] = ACTIONS(475), + [sym__external_close_bracket2] = ACTIONS(583), }, [272] = { - [sym_function_definition] = STATE(1518), - [sym_if_statement] = STATE(1518), - [sym_for_statement] = STATE(1518), - [sym_while_statement] = STATE(1518), - [sym_repeat_statement] = STATE(1518), - [sym_braced_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_call] = STATE(1518), - [sym_subset] = STATE(1518), - [sym_subset2] = STATE(1518), - [sym_argument] = STATE(1919), - [sym__argument_named] = STATE(2039), - [sym__argument_unnamed] = STATE(2047), - [sym__argument_value] = STATE(2053), - [sym_unary_operator] = STATE(1518), - [sym_binary_operator] = STATE(1518), - [sym_extract_operator] = STATE(1518), - [sym_namespace_operator] = STATE(1518), - [sym_integer] = STATE(1518), - [sym_complex] = STATE(1518), - [sym_float] = STATE(1518), - [sym__float_literal] = STATE(1605), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1604), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2048), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2069), - [sym_na] = STATE(1518), - [sym__expression] = STATE(1518), - [sym__open_parenthesis] = STATE(1066), - [sym__open_brace] = STATE(373), - [sym__close_bracket] = STATE(1666), - [aux_sym_call_arguments_repeat1] = STATE(1921), - [sym_identifier] = ACTIONS(395), - [anon_sym_BSLASH] = ACTIONS(397), - [anon_sym_function] = ACTIONS(399), - [anon_sym_if] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_repeat] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [sym__hex_literal] = ACTIONS(417), - [sym__number_literal] = ACTIONS(419), - [anon_sym_SQUOTE] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [sym_dots] = ACTIONS(395), - [sym_dot_dot_i] = ACTIONS(425), - [sym_return] = ACTIONS(427), - [sym_next] = ACTIONS(427), - [sym_break] = ACTIONS(427), - [sym_true] = ACTIONS(427), - [sym_false] = ACTIONS(427), - [sym_null] = ACTIONS(427), - [sym_inf] = ACTIONS(427), - [sym_nan] = ACTIONS(427), - [anon_sym_NA] = ACTIONS(429), - [anon_sym_NA_integer_] = ACTIONS(429), - [anon_sym_NA_real_] = ACTIONS(429), - [anon_sym_NA_complex_] = ACTIONS(429), - [anon_sym_NA_character_] = ACTIONS(429), + [sym_function_definition] = STATE(1370), + [sym_if_statement] = STATE(1370), + [sym_for_statement] = STATE(1370), + [sym_while_statement] = STATE(1370), + [sym_repeat_statement] = STATE(1370), + [sym_braced_expression] = STATE(1370), + [sym_parenthesized_expression] = STATE(1370), + [sym_call] = STATE(1370), + [sym_subset] = STATE(1370), + [sym_subset2] = STATE(1370), + [sym_argument] = STATE(1996), + [sym__argument_named] = STATE(2043), + [sym__argument_unnamed] = STATE(2044), + [sym__argument_value] = STATE(2045), + [sym_unary_operator] = STATE(1370), + [sym_binary_operator] = STATE(1370), + [sym_extract_operator] = STATE(1370), + [sym_namespace_operator] = STATE(1370), + [sym_integer] = STATE(1370), + [sym_complex] = STATE(1370), + [sym_float] = STATE(1370), + [sym__float_literal] = STATE(1618), + [sym_string] = STATE(1610), + [sym__single_quoted_string] = STATE(1605), + [sym__double_quoted_string] = STATE(1619), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2027), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2056), + [sym_na] = STATE(1370), + [sym__expression] = STATE(1370), + [sym__open_parenthesis] = STATE(1057), + [sym__open_brace] = STATE(335), + [sym__close_bracket] = STATE(403), + [aux_sym_call_arguments_repeat1] = STATE(1990), + [sym_identifier] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_while] = ACTIONS(397), + [anon_sym_repeat] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [sym__hex_literal] = ACTIONS(409), + [sym__number_literal] = ACTIONS(411), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_dots] = ACTIONS(387), + [sym_dot_dot_i] = ACTIONS(417), + [sym_return] = ACTIONS(419), + [sym_next] = ACTIONS(419), + [sym_break] = ACTIONS(419), + [sym_true] = ACTIONS(419), + [sym_false] = ACTIONS(419), + [sym_null] = ACTIONS(419), + [sym_inf] = ACTIONS(419), + [sym_nan] = ACTIONS(419), + [anon_sym_NA] = ACTIONS(421), + [anon_sym_NA_integer_] = ACTIONS(421), + [anon_sym_NA_real_] = ACTIONS(421), + [anon_sym_NA_complex_] = ACTIONS(421), + [anon_sym_NA_character_] = ACTIONS(421), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(431), - [sym__raw_string_literal] = ACTIONS(433), - [sym__external_open_parenthesis] = ACTIONS(435), - [sym__external_open_brace] = ACTIONS(437), - [sym__external_close_bracket] = ACTIONS(599), + [sym_comma] = ACTIONS(423), + [sym__raw_string_literal] = ACTIONS(425), + [sym__external_open_parenthesis] = ACTIONS(427), + [sym__external_open_brace] = ACTIONS(429), + [sym__external_close_bracket] = ACTIONS(585), }, [273] = { - [sym_function_definition] = STATE(1537), - [sym_if_statement] = STATE(1537), - [sym_for_statement] = STATE(1537), - [sym_while_statement] = STATE(1537), - [sym_repeat_statement] = STATE(1537), - [sym_braced_expression] = STATE(1537), - [sym_parenthesized_expression] = STATE(1537), - [sym_call] = STATE(1537), - [sym_subset] = STATE(1537), - [sym_subset2] = STATE(1537), - [sym_argument] = STATE(1932), - [sym__argument_named] = STATE(2036), - [sym__argument_unnamed] = STATE(2033), - [sym__argument_value] = STATE(2035), - [sym_unary_operator] = STATE(1537), - [sym_binary_operator] = STATE(1537), - [sym_extract_operator] = STATE(1537), - [sym_namespace_operator] = STATE(1537), - [sym_integer] = STATE(1537), - [sym_complex] = STATE(1537), - [sym_float] = STATE(1537), - [sym__float_literal] = STATE(1632), - [sym_string] = STATE(1614), - [sym__single_quoted_string] = STATE(1633), - [sym__double_quoted_string] = STATE(1634), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2046), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2076), - [sym_na] = STATE(1537), - [sym__expression] = STATE(1537), - [sym__open_parenthesis] = STATE(1071), - [sym__open_brace] = STATE(376), - [sym__close_bracket2] = STATE(1667), - [aux_sym_call_arguments_repeat1] = STATE(1957), - [sym_identifier] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_function] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), - [anon_sym_for] = ACTIONS(449), - [anon_sym_while] = ACTIONS(451), - [anon_sym_repeat] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(455), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(461), - [sym__hex_literal] = ACTIONS(463), - [sym__number_literal] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_DQUOTE] = ACTIONS(469), - [sym_dots] = ACTIONS(441), - [sym_dot_dot_i] = ACTIONS(471), - [sym_return] = ACTIONS(473), - [sym_next] = ACTIONS(473), - [sym_break] = ACTIONS(473), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [sym_inf] = ACTIONS(473), - [sym_nan] = ACTIONS(473), - [anon_sym_NA] = ACTIONS(475), - [anon_sym_NA_integer_] = ACTIONS(475), - [anon_sym_NA_real_] = ACTIONS(475), - [anon_sym_NA_complex_] = ACTIONS(475), - [anon_sym_NA_character_] = ACTIONS(475), + [sym_function_definition] = STATE(1344), + [sym_if_statement] = STATE(1344), + [sym_for_statement] = STATE(1344), + [sym_while_statement] = STATE(1344), + [sym_repeat_statement] = STATE(1344), + [sym_braced_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_call] = STATE(1344), + [sym_subset] = STATE(1344), + [sym_subset2] = STATE(1344), + [sym_argument] = STATE(1986), + [sym__argument_named] = STATE(2053), + [sym__argument_unnamed] = STATE(2030), + [sym__argument_value] = STATE(2031), + [sym_unary_operator] = STATE(1344), + [sym_binary_operator] = STATE(1344), + [sym_extract_operator] = STATE(1344), + [sym_namespace_operator] = STATE(1344), + [sym_integer] = STATE(1344), + [sym_complex] = STATE(1344), + [sym_float] = STATE(1344), + [sym__float_literal] = STATE(1628), + [sym_string] = STATE(1609), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1632), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2039), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2057), + [sym_na] = STATE(1344), + [sym__expression] = STATE(1344), + [sym__open_parenthesis] = STATE(1113), + [sym__open_brace] = STATE(331), + [sym__close_bracket2] = STATE(402), + [aux_sym_call_arguments_repeat1] = STATE(1980), + [sym_identifier] = ACTIONS(433), + [anon_sym_BSLASH] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_for] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_repeat] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [sym__hex_literal] = ACTIONS(455), + [sym__number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [sym_dots] = ACTIONS(433), + [sym_dot_dot_i] = ACTIONS(463), + [sym_return] = ACTIONS(465), + [sym_next] = ACTIONS(465), + [sym_break] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_inf] = ACTIONS(465), + [sym_nan] = ACTIONS(465), + [anon_sym_NA] = ACTIONS(467), + [anon_sym_NA_integer_] = ACTIONS(467), + [anon_sym_NA_real_] = ACTIONS(467), + [anon_sym_NA_complex_] = ACTIONS(467), + [anon_sym_NA_character_] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(477), - [sym__raw_string_literal] = ACTIONS(479), - [sym__external_open_parenthesis] = ACTIONS(481), - [sym__external_open_brace] = ACTIONS(483), - [sym__external_close_bracket2] = ACTIONS(601), + [sym_comma] = ACTIONS(469), + [sym__raw_string_literal] = ACTIONS(471), + [sym__external_open_parenthesis] = ACTIONS(473), + [sym__external_open_brace] = ACTIONS(475), + [sym__external_close_bracket2] = ACTIONS(587), }, [274] = { - [sym_function_definition] = STATE(1371), - [sym_if_statement] = STATE(1371), - [sym_for_statement] = STATE(1371), - [sym_while_statement] = STATE(1371), - [sym_repeat_statement] = STATE(1371), - [sym_braced_expression] = STATE(1371), - [sym_parenthesized_expression] = STATE(1371), - [sym_call] = STATE(1371), - [sym_subset] = STATE(1371), - [sym_subset2] = STATE(1371), - [sym_argument] = STATE(1843), - [sym__argument_named] = STATE(2040), - [sym__argument_unnamed] = STATE(2028), - [sym__argument_value] = STATE(2042), - [sym_unary_operator] = STATE(1371), - [sym_binary_operator] = STATE(1371), - [sym_extract_operator] = STATE(1371), - [sym_namespace_operator] = STATE(1371), - [sym_integer] = STATE(1371), - [sym_complex] = STATE(1371), - [sym_float] = STATE(1371), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1624), - [sym__single_quoted_string] = STATE(1618), - [sym__double_quoted_string] = STATE(1621), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2054), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2065), - [sym_na] = STATE(1371), - [sym__expression] = STATE(1371), + [sym_function_definition] = STATE(1370), + [sym_if_statement] = STATE(1370), + [sym_for_statement] = STATE(1370), + [sym_while_statement] = STATE(1370), + [sym_repeat_statement] = STATE(1370), + [sym_braced_expression] = STATE(1370), + [sym_parenthesized_expression] = STATE(1370), + [sym_call] = STATE(1370), + [sym_subset] = STATE(1370), + [sym_subset2] = STATE(1370), + [sym_argument] = STATE(1835), + [sym__argument_named] = STATE(2043), + [sym__argument_unnamed] = STATE(2044), + [sym__argument_value] = STATE(2045), + [sym_unary_operator] = STATE(1370), + [sym_binary_operator] = STATE(1370), + [sym_extract_operator] = STATE(1370), + [sym_namespace_operator] = STATE(1370), + [sym_integer] = STATE(1370), + [sym_complex] = STATE(1370), + [sym_float] = STATE(1370), + [sym__float_literal] = STATE(1618), + [sym_string] = STATE(1610), + [sym__single_quoted_string] = STATE(1605), + [sym__double_quoted_string] = STATE(1619), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2027), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2056), + [sym_na] = STATE(1370), + [sym__expression] = STATE(1370), [sym__open_parenthesis] = STATE(1057), - [sym__close_parenthesis] = STATE(335), - [sym__open_brace] = STATE(370), - [aux_sym_call_arguments_repeat1] = STATE(1844), - [sym_identifier] = ACTIONS(517), - [anon_sym_BSLASH] = ACTIONS(519), - [anon_sym_function] = ACTIONS(521), - [anon_sym_if] = ACTIONS(523), - [anon_sym_for] = ACTIONS(525), - [anon_sym_while] = ACTIONS(527), - [anon_sym_repeat] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [sym__hex_literal] = ACTIONS(539), - [sym__number_literal] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_dots] = ACTIONS(517), - [sym_dot_dot_i] = ACTIONS(547), - [sym_return] = ACTIONS(549), - [sym_next] = ACTIONS(549), - [sym_break] = ACTIONS(549), - [sym_true] = ACTIONS(549), - [sym_false] = ACTIONS(549), - [sym_null] = ACTIONS(549), - [sym_inf] = ACTIONS(549), - [sym_nan] = ACTIONS(549), - [anon_sym_NA] = ACTIONS(551), - [anon_sym_NA_integer_] = ACTIONS(551), - [anon_sym_NA_real_] = ACTIONS(551), - [anon_sym_NA_complex_] = ACTIONS(551), - [anon_sym_NA_character_] = ACTIONS(551), + [sym__open_brace] = STATE(335), + [sym__close_bracket] = STATE(1747), + [aux_sym_call_arguments_repeat1] = STATE(1837), + [sym_identifier] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_while] = ACTIONS(397), + [anon_sym_repeat] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [sym__hex_literal] = ACTIONS(409), + [sym__number_literal] = ACTIONS(411), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_dots] = ACTIONS(387), + [sym_dot_dot_i] = ACTIONS(417), + [sym_return] = ACTIONS(419), + [sym_next] = ACTIONS(419), + [sym_break] = ACTIONS(419), + [sym_true] = ACTIONS(419), + [sym_false] = ACTIONS(419), + [sym_null] = ACTIONS(419), + [sym_inf] = ACTIONS(419), + [sym_nan] = ACTIONS(419), + [anon_sym_NA] = ACTIONS(421), + [anon_sym_NA_integer_] = ACTIONS(421), + [anon_sym_NA_real_] = ACTIONS(421), + [anon_sym_NA_complex_] = ACTIONS(421), + [anon_sym_NA_character_] = ACTIONS(421), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(553), - [sym__raw_string_literal] = ACTIONS(555), - [sym__external_open_parenthesis] = ACTIONS(557), - [sym__external_close_parenthesis] = ACTIONS(603), - [sym__external_open_brace] = ACTIONS(561), + [sym_comma] = ACTIONS(423), + [sym__raw_string_literal] = ACTIONS(425), + [sym__external_open_parenthesis] = ACTIONS(427), + [sym__external_open_brace] = ACTIONS(429), + [sym__external_close_bracket] = ACTIONS(589), }, [275] = { - [sym_function_definition] = STATE(1518), - [sym_if_statement] = STATE(1518), - [sym_for_statement] = STATE(1518), - [sym_while_statement] = STATE(1518), - [sym_repeat_statement] = STATE(1518), - [sym_braced_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_call] = STATE(1518), - [sym_subset] = STATE(1518), - [sym_subset2] = STATE(1518), - [sym_argument] = STATE(1910), - [sym__argument_named] = STATE(2039), - [sym__argument_unnamed] = STATE(2047), - [sym__argument_value] = STATE(2053), - [sym_unary_operator] = STATE(1518), - [sym_binary_operator] = STATE(1518), - [sym_extract_operator] = STATE(1518), - [sym_namespace_operator] = STATE(1518), - [sym_integer] = STATE(1518), - [sym_complex] = STATE(1518), - [sym_float] = STATE(1518), - [sym__float_literal] = STATE(1605), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1604), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2048), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2069), - [sym_na] = STATE(1518), - [sym__expression] = STATE(1518), - [sym__open_parenthesis] = STATE(1066), - [sym__open_brace] = STATE(373), - [sym__close_bracket] = STATE(336), - [aux_sym_call_arguments_repeat1] = STATE(1913), - [sym_identifier] = ACTIONS(395), - [anon_sym_BSLASH] = ACTIONS(397), - [anon_sym_function] = ACTIONS(399), - [anon_sym_if] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_repeat] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [sym__hex_literal] = ACTIONS(417), - [sym__number_literal] = ACTIONS(419), - [anon_sym_SQUOTE] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [sym_dots] = ACTIONS(395), - [sym_dot_dot_i] = ACTIONS(425), - [sym_return] = ACTIONS(427), - [sym_next] = ACTIONS(427), - [sym_break] = ACTIONS(427), - [sym_true] = ACTIONS(427), - [sym_false] = ACTIONS(427), - [sym_null] = ACTIONS(427), - [sym_inf] = ACTIONS(427), - [sym_nan] = ACTIONS(427), - [anon_sym_NA] = ACTIONS(429), - [anon_sym_NA_integer_] = ACTIONS(429), - [anon_sym_NA_real_] = ACTIONS(429), - [anon_sym_NA_complex_] = ACTIONS(429), - [anon_sym_NA_character_] = ACTIONS(429), + [sym_function_definition] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_repeat_statement] = STATE(1442), + [sym_braced_expression] = STATE(1442), + [sym_parenthesized_expression] = STATE(1442), + [sym_call] = STATE(1442), + [sym_subset] = STATE(1442), + [sym_subset2] = STATE(1442), + [sym_argument] = STATE(1855), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2048), + [sym__argument_value] = STATE(2041), + [sym_unary_operator] = STATE(1442), + [sym_binary_operator] = STATE(1442), + [sym_extract_operator] = STATE(1442), + [sym_namespace_operator] = STATE(1442), + [sym_integer] = STATE(1442), + [sym_complex] = STATE(1442), + [sym_float] = STATE(1442), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1614), + [sym__single_quoted_string] = STATE(1627), + [sym__double_quoted_string] = STATE(1616), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2042), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2062), + [sym_na] = STATE(1442), + [sym__expression] = STATE(1442), + [sym__open_parenthesis] = STATE(1097), + [sym__close_parenthesis] = STATE(1723), + [sym__open_brace] = STATE(357), + [aux_sym_call_arguments_repeat1] = STATE(1844), + [sym_identifier] = ACTIONS(483), + [anon_sym_BSLASH] = ACTIONS(485), + [anon_sym_function] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_for] = ACTIONS(491), + [anon_sym_while] = ACTIONS(493), + [anon_sym_repeat] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [sym__hex_literal] = ACTIONS(505), + [sym__number_literal] = ACTIONS(507), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym_dots] = ACTIONS(483), + [sym_dot_dot_i] = ACTIONS(513), + [sym_return] = ACTIONS(515), + [sym_next] = ACTIONS(515), + [sym_break] = ACTIONS(515), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [sym_null] = ACTIONS(515), + [sym_inf] = ACTIONS(515), + [sym_nan] = ACTIONS(515), + [anon_sym_NA] = ACTIONS(517), + [anon_sym_NA_integer_] = ACTIONS(517), + [anon_sym_NA_real_] = ACTIONS(517), + [anon_sym_NA_complex_] = ACTIONS(517), + [anon_sym_NA_character_] = ACTIONS(517), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(431), - [sym__raw_string_literal] = ACTIONS(433), - [sym__external_open_parenthesis] = ACTIONS(435), - [sym__external_open_brace] = ACTIONS(437), - [sym__external_close_bracket] = ACTIONS(605), + [sym_comma] = ACTIONS(519), + [sym__raw_string_literal] = ACTIONS(521), + [sym__external_open_parenthesis] = ACTIONS(523), + [sym__external_close_parenthesis] = ACTIONS(591), + [sym__external_open_brace] = ACTIONS(527), }, [276] = { - [sym_function_definition] = STATE(1537), - [sym_if_statement] = STATE(1537), - [sym_for_statement] = STATE(1537), - [sym_while_statement] = STATE(1537), - [sym_repeat_statement] = STATE(1537), - [sym_braced_expression] = STATE(1537), - [sym_parenthesized_expression] = STATE(1537), - [sym_call] = STATE(1537), - [sym_subset] = STATE(1537), - [sym_subset2] = STATE(1537), - [sym_argument] = STATE(1914), - [sym__argument_named] = STATE(2036), - [sym__argument_unnamed] = STATE(2033), - [sym__argument_value] = STATE(2035), - [sym_unary_operator] = STATE(1537), - [sym_binary_operator] = STATE(1537), - [sym_extract_operator] = STATE(1537), - [sym_namespace_operator] = STATE(1537), - [sym_integer] = STATE(1537), - [sym_complex] = STATE(1537), - [sym_float] = STATE(1537), - [sym__float_literal] = STATE(1632), + [sym_function_definition] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_repeat_statement] = STATE(1442), + [sym_braced_expression] = STATE(1442), + [sym_parenthesized_expression] = STATE(1442), + [sym_call] = STATE(1442), + [sym_subset] = STATE(1442), + [sym_subset2] = STATE(1442), + [sym_argument] = STATE(1875), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2048), + [sym__argument_value] = STATE(2041), + [sym_unary_operator] = STATE(1442), + [sym_binary_operator] = STATE(1442), + [sym_extract_operator] = STATE(1442), + [sym_namespace_operator] = STATE(1442), + [sym_integer] = STATE(1442), + [sym_complex] = STATE(1442), + [sym_float] = STATE(1442), + [sym__float_literal] = STATE(1626), [sym_string] = STATE(1614), - [sym__single_quoted_string] = STATE(1633), - [sym__double_quoted_string] = STATE(1634), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2046), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2076), - [sym_na] = STATE(1537), - [sym__expression] = STATE(1537), - [sym__open_parenthesis] = STATE(1071), - [sym__open_brace] = STATE(376), - [sym__close_bracket2] = STATE(337), - [aux_sym_call_arguments_repeat1] = STATE(1915), - [sym_identifier] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_function] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), - [anon_sym_for] = ACTIONS(449), - [anon_sym_while] = ACTIONS(451), - [anon_sym_repeat] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(455), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(461), - [sym__hex_literal] = ACTIONS(463), - [sym__number_literal] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_DQUOTE] = ACTIONS(469), - [sym_dots] = ACTIONS(441), - [sym_dot_dot_i] = ACTIONS(471), - [sym_return] = ACTIONS(473), - [sym_next] = ACTIONS(473), - [sym_break] = ACTIONS(473), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [sym_inf] = ACTIONS(473), - [sym_nan] = ACTIONS(473), - [anon_sym_NA] = ACTIONS(475), - [anon_sym_NA_integer_] = ACTIONS(475), - [anon_sym_NA_real_] = ACTIONS(475), - [anon_sym_NA_complex_] = ACTIONS(475), - [anon_sym_NA_character_] = ACTIONS(475), + [sym__single_quoted_string] = STATE(1627), + [sym__double_quoted_string] = STATE(1616), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2042), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2062), + [sym_na] = STATE(1442), + [sym__expression] = STATE(1442), + [sym__open_parenthesis] = STATE(1097), + [sym__close_parenthesis] = STATE(1680), + [sym__open_brace] = STATE(357), + [aux_sym_call_arguments_repeat1] = STATE(1876), + [sym_identifier] = ACTIONS(483), + [anon_sym_BSLASH] = ACTIONS(485), + [anon_sym_function] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_for] = ACTIONS(491), + [anon_sym_while] = ACTIONS(493), + [anon_sym_repeat] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [sym__hex_literal] = ACTIONS(505), + [sym__number_literal] = ACTIONS(507), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym_dots] = ACTIONS(483), + [sym_dot_dot_i] = ACTIONS(513), + [sym_return] = ACTIONS(515), + [sym_next] = ACTIONS(515), + [sym_break] = ACTIONS(515), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [sym_null] = ACTIONS(515), + [sym_inf] = ACTIONS(515), + [sym_nan] = ACTIONS(515), + [anon_sym_NA] = ACTIONS(517), + [anon_sym_NA_integer_] = ACTIONS(517), + [anon_sym_NA_real_] = ACTIONS(517), + [anon_sym_NA_complex_] = ACTIONS(517), + [anon_sym_NA_character_] = ACTIONS(517), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(477), - [sym__raw_string_literal] = ACTIONS(479), - [sym__external_open_parenthesis] = ACTIONS(481), - [sym__external_open_brace] = ACTIONS(483), - [sym__external_close_bracket2] = ACTIONS(607), + [sym_comma] = ACTIONS(519), + [sym__raw_string_literal] = ACTIONS(521), + [sym__external_open_parenthesis] = ACTIONS(523), + [sym__external_close_parenthesis] = ACTIONS(593), + [sym__external_open_brace] = ACTIONS(527), }, [277] = { - [sym_function_definition] = STATE(1371), - [sym_if_statement] = STATE(1371), - [sym_for_statement] = STATE(1371), - [sym_while_statement] = STATE(1371), - [sym_repeat_statement] = STATE(1371), - [sym_braced_expression] = STATE(1371), - [sym_parenthesized_expression] = STATE(1371), - [sym_call] = STATE(1371), - [sym_subset] = STATE(1371), - [sym_subset2] = STATE(1371), - [sym_argument] = STATE(1858), - [sym__argument_named] = STATE(2040), - [sym__argument_unnamed] = STATE(2028), - [sym__argument_value] = STATE(2042), - [sym_unary_operator] = STATE(1371), - [sym_binary_operator] = STATE(1371), - [sym_extract_operator] = STATE(1371), - [sym_namespace_operator] = STATE(1371), - [sym_integer] = STATE(1371), - [sym_complex] = STATE(1371), - [sym_float] = STATE(1371), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1624), - [sym__single_quoted_string] = STATE(1618), - [sym__double_quoted_string] = STATE(1621), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2054), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2065), - [sym_na] = STATE(1371), - [sym__expression] = STATE(1371), - [sym__open_parenthesis] = STATE(1057), - [sym__close_parenthesis] = STATE(1701), - [sym__open_brace] = STATE(370), - [aux_sym_call_arguments_repeat1] = STATE(1859), - [sym_identifier] = ACTIONS(517), - [anon_sym_BSLASH] = ACTIONS(519), - [anon_sym_function] = ACTIONS(521), - [anon_sym_if] = ACTIONS(523), - [anon_sym_for] = ACTIONS(525), - [anon_sym_while] = ACTIONS(527), - [anon_sym_repeat] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [sym__hex_literal] = ACTIONS(539), - [sym__number_literal] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_dots] = ACTIONS(517), - [sym_dot_dot_i] = ACTIONS(547), - [sym_return] = ACTIONS(549), - [sym_next] = ACTIONS(549), - [sym_break] = ACTIONS(549), - [sym_true] = ACTIONS(549), - [sym_false] = ACTIONS(549), - [sym_null] = ACTIONS(549), - [sym_inf] = ACTIONS(549), - [sym_nan] = ACTIONS(549), - [anon_sym_NA] = ACTIONS(551), - [anon_sym_NA_integer_] = ACTIONS(551), - [anon_sym_NA_real_] = ACTIONS(551), - [anon_sym_NA_complex_] = ACTIONS(551), - [anon_sym_NA_character_] = ACTIONS(551), + [sym_string] = STATE(407), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(407), + [aux_sym_function_definition_repeat1] = STATE(282), + [sym_identifier] = ACTIONS(595), + [anon_sym_BSLASH] = ACTIONS(365), + [anon_sym_function] = ACTIONS(369), + [anon_sym_EQ] = ACTIONS(369), + [anon_sym_if] = ACTIONS(369), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(369), + [anon_sym_repeat] = ACTIONS(369), + [anon_sym_QMARK] = ACTIONS(365), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_LT_DASH] = ACTIONS(365), + [anon_sym_LT_LT_DASH] = ACTIONS(365), + [anon_sym_COLON_EQ] = ACTIONS(365), + [anon_sym_DASH_GT] = ACTIONS(369), + [anon_sym_DASH_GT_GT] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(365), + [anon_sym_AMP_AMP] = ACTIONS(365), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(365), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_EQ] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(365), + [anon_sym_BANG_EQ] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(365), + [anon_sym_STAR_STAR] = ACTIONS(365), + [anon_sym_CARET] = ACTIONS(365), + [aux_sym_binary_operator_token1] = ACTIONS(365), + [anon_sym_PIPE_GT] = ACTIONS(365), + [anon_sym_COLON] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(365), + [anon_sym_AT] = ACTIONS(365), + [sym__hex_literal] = ACTIONS(365), + [sym__number_literal] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(595), + [sym_dot_dot_i] = ACTIONS(601), + [sym_return] = ACTIONS(369), + [sym_next] = ACTIONS(369), + [sym_break] = ACTIONS(369), + [sym_true] = ACTIONS(369), + [sym_false] = ACTIONS(369), + [sym_null] = ACTIONS(369), + [sym_inf] = ACTIONS(369), + [sym_nan] = ACTIONS(369), + [anon_sym_NA] = ACTIONS(369), + [anon_sym_NA_integer_] = ACTIONS(369), + [anon_sym_NA_real_] = ACTIONS(369), + [anon_sym_NA_complex_] = ACTIONS(369), + [anon_sym_NA_character_] = ACTIONS(369), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(553), - [sym__raw_string_literal] = ACTIONS(555), - [sym__external_open_parenthesis] = ACTIONS(557), - [sym__external_close_parenthesis] = ACTIONS(609), - [sym__external_open_brace] = ACTIONS(561), + [sym__newline] = ACTIONS(603), + [sym__semicolon] = ACTIONS(365), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(365), + [sym__external_open_brace] = ACTIONS(365), + [sym__external_close_brace] = ACTIONS(365), + [sym__external_open_bracket] = ACTIONS(365), + [sym__external_open_bracket2] = ACTIONS(365), }, [278] = { - [sym_function_definition] = STATE(1518), - [sym_if_statement] = STATE(1518), - [sym_for_statement] = STATE(1518), - [sym_while_statement] = STATE(1518), - [sym_repeat_statement] = STATE(1518), - [sym_braced_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_call] = STATE(1518), - [sym_subset] = STATE(1518), - [sym_subset2] = STATE(1518), - [sym_argument] = STATE(1902), - [sym__argument_named] = STATE(2039), - [sym__argument_unnamed] = STATE(2047), - [sym__argument_value] = STATE(2053), - [sym_unary_operator] = STATE(1518), - [sym_binary_operator] = STATE(1518), - [sym_extract_operator] = STATE(1518), - [sym_namespace_operator] = STATE(1518), - [sym_integer] = STATE(1518), - [sym_complex] = STATE(1518), - [sym_float] = STATE(1518), - [sym__float_literal] = STATE(1605), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1604), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2048), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2069), - [sym_na] = STATE(1518), - [sym__expression] = STATE(1518), - [sym__open_parenthesis] = STATE(1066), - [sym__open_brace] = STATE(373), - [sym__close_bracket] = STATE(1702), - [aux_sym_call_arguments_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(395), - [anon_sym_BSLASH] = ACTIONS(397), - [anon_sym_function] = ACTIONS(399), - [anon_sym_if] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_repeat] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [sym__hex_literal] = ACTIONS(417), - [sym__number_literal] = ACTIONS(419), - [anon_sym_SQUOTE] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [sym_dots] = ACTIONS(395), - [sym_dot_dot_i] = ACTIONS(425), - [sym_return] = ACTIONS(427), - [sym_next] = ACTIONS(427), - [sym_break] = ACTIONS(427), - [sym_true] = ACTIONS(427), - [sym_false] = ACTIONS(427), - [sym_null] = ACTIONS(427), - [sym_inf] = ACTIONS(427), - [sym_nan] = ACTIONS(427), - [anon_sym_NA] = ACTIONS(429), - [anon_sym_NA_integer_] = ACTIONS(429), - [anon_sym_NA_real_] = ACTIONS(429), - [anon_sym_NA_complex_] = ACTIONS(429), - [anon_sym_NA_character_] = ACTIONS(429), + [sym_function_definition] = STATE(1344), + [sym_if_statement] = STATE(1344), + [sym_for_statement] = STATE(1344), + [sym_while_statement] = STATE(1344), + [sym_repeat_statement] = STATE(1344), + [sym_braced_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_call] = STATE(1344), + [sym_subset] = STATE(1344), + [sym_subset2] = STATE(1344), + [sym_argument] = STATE(1908), + [sym__argument_named] = STATE(2053), + [sym__argument_unnamed] = STATE(2030), + [sym__argument_value] = STATE(2031), + [sym_unary_operator] = STATE(1344), + [sym_binary_operator] = STATE(1344), + [sym_extract_operator] = STATE(1344), + [sym_namespace_operator] = STATE(1344), + [sym_integer] = STATE(1344), + [sym_complex] = STATE(1344), + [sym_float] = STATE(1344), + [sym__float_literal] = STATE(1628), + [sym_string] = STATE(1609), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1632), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2039), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2057), + [sym_na] = STATE(1344), + [sym__expression] = STATE(1344), + [sym__open_parenthesis] = STATE(1113), + [sym__open_brace] = STATE(331), + [sym__close_bracket2] = STATE(1677), + [aux_sym_call_arguments_repeat1] = STATE(1907), + [sym_identifier] = ACTIONS(433), + [anon_sym_BSLASH] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_for] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_repeat] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [sym__hex_literal] = ACTIONS(455), + [sym__number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [sym_dots] = ACTIONS(433), + [sym_dot_dot_i] = ACTIONS(463), + [sym_return] = ACTIONS(465), + [sym_next] = ACTIONS(465), + [sym_break] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_inf] = ACTIONS(465), + [sym_nan] = ACTIONS(465), + [anon_sym_NA] = ACTIONS(467), + [anon_sym_NA_integer_] = ACTIONS(467), + [anon_sym_NA_real_] = ACTIONS(467), + [anon_sym_NA_complex_] = ACTIONS(467), + [anon_sym_NA_character_] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(431), - [sym__raw_string_literal] = ACTIONS(433), - [sym__external_open_parenthesis] = ACTIONS(435), - [sym__external_open_brace] = ACTIONS(437), - [sym__external_close_bracket] = ACTIONS(611), + [sym_comma] = ACTIONS(469), + [sym__raw_string_literal] = ACTIONS(471), + [sym__external_open_parenthesis] = ACTIONS(473), + [sym__external_open_brace] = ACTIONS(475), + [sym__external_close_bracket2] = ACTIONS(607), }, [279] = { - [sym_function_definition] = STATE(1537), - [sym_if_statement] = STATE(1537), - [sym_for_statement] = STATE(1537), - [sym_while_statement] = STATE(1537), - [sym_repeat_statement] = STATE(1537), - [sym_braced_expression] = STATE(1537), - [sym_parenthesized_expression] = STATE(1537), - [sym_call] = STATE(1537), - [sym_subset] = STATE(1537), - [sym_subset2] = STATE(1537), - [sym_argument] = STATE(1909), - [sym__argument_named] = STATE(2036), - [sym__argument_unnamed] = STATE(2033), - [sym__argument_value] = STATE(2035), - [sym_unary_operator] = STATE(1537), - [sym_binary_operator] = STATE(1537), - [sym_extract_operator] = STATE(1537), - [sym_namespace_operator] = STATE(1537), - [sym_integer] = STATE(1537), - [sym_complex] = STATE(1537), - [sym_float] = STATE(1537), - [sym__float_literal] = STATE(1632), - [sym_string] = STATE(1614), - [sym__single_quoted_string] = STATE(1633), - [sym__double_quoted_string] = STATE(1634), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2046), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2076), - [sym_na] = STATE(1537), - [sym__expression] = STATE(1537), - [sym__open_parenthesis] = STATE(1071), - [sym__open_brace] = STATE(376), - [sym__close_bracket2] = STATE(1705), - [aux_sym_call_arguments_repeat1] = STATE(1959), - [sym_identifier] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_function] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), - [anon_sym_for] = ACTIONS(449), - [anon_sym_while] = ACTIONS(451), - [anon_sym_repeat] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(455), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(461), - [sym__hex_literal] = ACTIONS(463), - [sym__number_literal] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_DQUOTE] = ACTIONS(469), - [sym_dots] = ACTIONS(441), - [sym_dot_dot_i] = ACTIONS(471), - [sym_return] = ACTIONS(473), - [sym_next] = ACTIONS(473), - [sym_break] = ACTIONS(473), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [sym_inf] = ACTIONS(473), - [sym_nan] = ACTIONS(473), - [anon_sym_NA] = ACTIONS(475), - [anon_sym_NA_integer_] = ACTIONS(475), - [anon_sym_NA_real_] = ACTIONS(475), - [anon_sym_NA_complex_] = ACTIONS(475), - [anon_sym_NA_character_] = ACTIONS(475), + [sym_function_definition] = STATE(1344), + [sym_if_statement] = STATE(1344), + [sym_for_statement] = STATE(1344), + [sym_while_statement] = STATE(1344), + [sym_repeat_statement] = STATE(1344), + [sym_braced_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_call] = STATE(1344), + [sym_subset] = STATE(1344), + [sym_subset2] = STATE(1344), + [sym_argument] = STATE(1885), + [sym__argument_named] = STATE(2053), + [sym__argument_unnamed] = STATE(2030), + [sym__argument_value] = STATE(2031), + [sym_unary_operator] = STATE(1344), + [sym_binary_operator] = STATE(1344), + [sym_extract_operator] = STATE(1344), + [sym_namespace_operator] = STATE(1344), + [sym_integer] = STATE(1344), + [sym_complex] = STATE(1344), + [sym_float] = STATE(1344), + [sym__float_literal] = STATE(1628), + [sym_string] = STATE(1609), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1632), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2039), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2057), + [sym_na] = STATE(1344), + [sym__expression] = STATE(1344), + [sym__open_parenthesis] = STATE(1113), + [sym__open_brace] = STATE(331), + [sym__close_bracket2] = STATE(1711), + [aux_sym_call_arguments_repeat1] = STATE(1904), + [sym_identifier] = ACTIONS(433), + [anon_sym_BSLASH] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_for] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_repeat] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [sym__hex_literal] = ACTIONS(455), + [sym__number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [sym_dots] = ACTIONS(433), + [sym_dot_dot_i] = ACTIONS(463), + [sym_return] = ACTIONS(465), + [sym_next] = ACTIONS(465), + [sym_break] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_inf] = ACTIONS(465), + [sym_nan] = ACTIONS(465), + [anon_sym_NA] = ACTIONS(467), + [anon_sym_NA_integer_] = ACTIONS(467), + [anon_sym_NA_real_] = ACTIONS(467), + [anon_sym_NA_complex_] = ACTIONS(467), + [anon_sym_NA_character_] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(477), - [sym__raw_string_literal] = ACTIONS(479), - [sym__external_open_parenthesis] = ACTIONS(481), - [sym__external_open_brace] = ACTIONS(483), - [sym__external_close_bracket2] = ACTIONS(613), + [sym_comma] = ACTIONS(469), + [sym__raw_string_literal] = ACTIONS(471), + [sym__external_open_parenthesis] = ACTIONS(473), + [sym__external_open_brace] = ACTIONS(475), + [sym__external_close_bracket2] = ACTIONS(609), }, [280] = { - [sym_function_definition] = STATE(1371), - [sym_if_statement] = STATE(1371), - [sym_for_statement] = STATE(1371), - [sym_while_statement] = STATE(1371), - [sym_repeat_statement] = STATE(1371), - [sym_braced_expression] = STATE(1371), - [sym_parenthesized_expression] = STATE(1371), - [sym_call] = STATE(1371), - [sym_subset] = STATE(1371), - [sym_subset2] = STATE(1371), - [sym_argument] = STATE(1878), - [sym__argument_named] = STATE(2040), - [sym__argument_unnamed] = STATE(2028), - [sym__argument_value] = STATE(2042), - [sym_unary_operator] = STATE(1371), - [sym_binary_operator] = STATE(1371), - [sym_extract_operator] = STATE(1371), - [sym_namespace_operator] = STATE(1371), - [sym_integer] = STATE(1371), - [sym_complex] = STATE(1371), - [sym_float] = STATE(1371), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1624), - [sym__single_quoted_string] = STATE(1618), - [sym__double_quoted_string] = STATE(1621), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2054), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2065), - [sym_na] = STATE(1371), - [sym__expression] = STATE(1371), + [sym_function_definition] = STATE(1370), + [sym_if_statement] = STATE(1370), + [sym_for_statement] = STATE(1370), + [sym_while_statement] = STATE(1370), + [sym_repeat_statement] = STATE(1370), + [sym_braced_expression] = STATE(1370), + [sym_parenthesized_expression] = STATE(1370), + [sym_call] = STATE(1370), + [sym_subset] = STATE(1370), + [sym_subset2] = STATE(1370), + [sym_argument] = STATE(1877), + [sym__argument_named] = STATE(2043), + [sym__argument_unnamed] = STATE(2044), + [sym__argument_value] = STATE(2045), + [sym_unary_operator] = STATE(1370), + [sym_binary_operator] = STATE(1370), + [sym_extract_operator] = STATE(1370), + [sym_namespace_operator] = STATE(1370), + [sym_integer] = STATE(1370), + [sym_complex] = STATE(1370), + [sym_float] = STATE(1370), + [sym__float_literal] = STATE(1618), + [sym_string] = STATE(1610), + [sym__single_quoted_string] = STATE(1605), + [sym__double_quoted_string] = STATE(1619), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2027), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2056), + [sym_na] = STATE(1370), + [sym__expression] = STATE(1370), [sym__open_parenthesis] = STATE(1057), - [sym__close_parenthesis] = STATE(1658), - [sym__open_brace] = STATE(370), - [aux_sym_call_arguments_repeat1] = STATE(1879), - [sym_identifier] = ACTIONS(517), - [anon_sym_BSLASH] = ACTIONS(519), - [anon_sym_function] = ACTIONS(521), - [anon_sym_if] = ACTIONS(523), - [anon_sym_for] = ACTIONS(525), - [anon_sym_while] = ACTIONS(527), - [anon_sym_repeat] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [sym__hex_literal] = ACTIONS(539), - [sym__number_literal] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_dots] = ACTIONS(517), - [sym_dot_dot_i] = ACTIONS(547), - [sym_return] = ACTIONS(549), - [sym_next] = ACTIONS(549), - [sym_break] = ACTIONS(549), - [sym_true] = ACTIONS(549), - [sym_false] = ACTIONS(549), - [sym_null] = ACTIONS(549), - [sym_inf] = ACTIONS(549), - [sym_nan] = ACTIONS(549), - [anon_sym_NA] = ACTIONS(551), - [anon_sym_NA_integer_] = ACTIONS(551), - [anon_sym_NA_real_] = ACTIONS(551), - [anon_sym_NA_complex_] = ACTIONS(551), - [anon_sym_NA_character_] = ACTIONS(551), + [sym__open_brace] = STATE(335), + [sym__close_bracket] = STATE(1766), + [aux_sym_call_arguments_repeat1] = STATE(1881), + [sym_identifier] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_while] = ACTIONS(397), + [anon_sym_repeat] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [sym__hex_literal] = ACTIONS(409), + [sym__number_literal] = ACTIONS(411), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_dots] = ACTIONS(387), + [sym_dot_dot_i] = ACTIONS(417), + [sym_return] = ACTIONS(419), + [sym_next] = ACTIONS(419), + [sym_break] = ACTIONS(419), + [sym_true] = ACTIONS(419), + [sym_false] = ACTIONS(419), + [sym_null] = ACTIONS(419), + [sym_inf] = ACTIONS(419), + [sym_nan] = ACTIONS(419), + [anon_sym_NA] = ACTIONS(421), + [anon_sym_NA_integer_] = ACTIONS(421), + [anon_sym_NA_real_] = ACTIONS(421), + [anon_sym_NA_complex_] = ACTIONS(421), + [anon_sym_NA_character_] = ACTIONS(421), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(553), - [sym__raw_string_literal] = ACTIONS(555), - [sym__external_open_parenthesis] = ACTIONS(557), - [sym__external_close_parenthesis] = ACTIONS(615), - [sym__external_open_brace] = ACTIONS(561), + [sym_comma] = ACTIONS(423), + [sym__raw_string_literal] = ACTIONS(425), + [sym__external_open_parenthesis] = ACTIONS(427), + [sym__external_open_brace] = ACTIONS(429), + [sym__external_close_bracket] = ACTIONS(611), }, [281] = { - [sym_function_definition] = STATE(1518), - [sym_if_statement] = STATE(1518), - [sym_for_statement] = STATE(1518), - [sym_while_statement] = STATE(1518), - [sym_repeat_statement] = STATE(1518), - [sym_braced_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_call] = STATE(1518), - [sym_subset] = STATE(1518), - [sym_subset2] = STATE(1518), - [sym_argument] = STATE(1866), - [sym__argument_named] = STATE(2039), - [sym__argument_unnamed] = STATE(2047), - [sym__argument_value] = STATE(2053), - [sym_unary_operator] = STATE(1518), - [sym_binary_operator] = STATE(1518), - [sym_extract_operator] = STATE(1518), - [sym_namespace_operator] = STATE(1518), - [sym_integer] = STATE(1518), - [sym_complex] = STATE(1518), - [sym_float] = STATE(1518), - [sym__float_literal] = STATE(1605), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1604), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2048), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2069), - [sym_na] = STATE(1518), - [sym__expression] = STATE(1518), - [sym__open_parenthesis] = STATE(1066), - [sym__open_brace] = STATE(373), - [sym__close_bracket] = STATE(1659), - [aux_sym_call_arguments_repeat1] = STATE(1870), - [sym_identifier] = ACTIONS(395), - [anon_sym_BSLASH] = ACTIONS(397), - [anon_sym_function] = ACTIONS(399), - [anon_sym_if] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_repeat] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [sym__hex_literal] = ACTIONS(417), - [sym__number_literal] = ACTIONS(419), - [anon_sym_SQUOTE] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [sym_dots] = ACTIONS(395), - [sym_dot_dot_i] = ACTIONS(425), - [sym_return] = ACTIONS(427), - [sym_next] = ACTIONS(427), - [sym_break] = ACTIONS(427), - [sym_true] = ACTIONS(427), - [sym_false] = ACTIONS(427), - [sym_null] = ACTIONS(427), - [sym_inf] = ACTIONS(427), - [sym_nan] = ACTIONS(427), - [anon_sym_NA] = ACTIONS(429), - [anon_sym_NA_integer_] = ACTIONS(429), - [anon_sym_NA_real_] = ACTIONS(429), - [anon_sym_NA_complex_] = ACTIONS(429), - [anon_sym_NA_character_] = ACTIONS(429), + [sym_string] = STATE(328), + [sym__single_quoted_string] = STATE(290), + [sym__double_quoted_string] = STATE(294), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(555), + [sym_identifier] = ACTIONS(613), + [anon_sym_BSLASH] = ACTIONS(555), + [anon_sym_function] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [anon_sym_repeat] = ACTIONS(557), + [anon_sym_QMARK] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_BANG] = ACTIONS(557), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_LT_DASH] = ACTIONS(555), + [anon_sym_LT_LT_DASH] = ACTIONS(555), + [anon_sym_COLON_EQ] = ACTIONS(555), + [anon_sym_DASH_GT] = ACTIONS(557), + [anon_sym_DASH_GT_GT] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(555), + [anon_sym_AMP_AMP] = ACTIONS(555), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(555), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_BANG_EQ] = ACTIONS(555), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(555), + [anon_sym_STAR_STAR] = ACTIONS(555), + [anon_sym_CARET] = ACTIONS(555), + [aux_sym_binary_operator_token1] = ACTIONS(555), + [anon_sym_PIPE_GT] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(557), + [anon_sym_DOLLAR] = ACTIONS(555), + [anon_sym_AT] = ACTIONS(555), + [sym__hex_literal] = ACTIONS(555), + [sym__number_literal] = ACTIONS(557), + [anon_sym_SQUOTE] = ACTIONS(341), + [anon_sym_DQUOTE] = ACTIONS(343), + [sym_dots] = ACTIONS(613), + [sym_dot_dot_i] = ACTIONS(615), + [sym_return] = ACTIONS(557), + [sym_next] = ACTIONS(557), + [sym_break] = ACTIONS(557), + [sym_true] = ACTIONS(557), + [sym_false] = ACTIONS(557), + [sym_null] = ACTIONS(557), + [sym_inf] = ACTIONS(557), + [sym_nan] = ACTIONS(557), + [anon_sym_NA] = ACTIONS(557), + [anon_sym_NA_integer_] = ACTIONS(557), + [anon_sym_NA_real_] = ACTIONS(557), + [anon_sym_NA_complex_] = ACTIONS(557), + [anon_sym_NA_character_] = ACTIONS(557), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(431), - [sym__raw_string_literal] = ACTIONS(433), - [sym__external_open_parenthesis] = ACTIONS(435), - [sym__external_open_brace] = ACTIONS(437), - [sym__external_close_bracket] = ACTIONS(617), + [sym__newline] = ACTIONS(555), + [sym__semicolon] = ACTIONS(555), + [sym__raw_string_literal] = ACTIONS(347), + [sym__external_else] = ACTIONS(555), + [sym__external_open_parenthesis] = ACTIONS(555), + [sym__external_open_brace] = ACTIONS(555), + [sym__external_open_bracket] = ACTIONS(555), + [sym__external_open_bracket2] = ACTIONS(555), }, [282] = { - [sym_function_definition] = STATE(1537), - [sym_if_statement] = STATE(1537), - [sym_for_statement] = STATE(1537), - [sym_while_statement] = STATE(1537), - [sym_repeat_statement] = STATE(1537), - [sym_braced_expression] = STATE(1537), - [sym_parenthesized_expression] = STATE(1537), - [sym_call] = STATE(1537), - [sym_subset] = STATE(1537), - [sym_subset2] = STATE(1537), - [sym_argument] = STATE(1871), - [sym__argument_named] = STATE(2036), - [sym__argument_unnamed] = STATE(2033), - [sym__argument_value] = STATE(2035), - [sym_unary_operator] = STATE(1537), - [sym_binary_operator] = STATE(1537), - [sym_extract_operator] = STATE(1537), - [sym_namespace_operator] = STATE(1537), - [sym_integer] = STATE(1537), - [sym_complex] = STATE(1537), - [sym_float] = STATE(1537), - [sym__float_literal] = STATE(1632), - [sym_string] = STATE(1614), - [sym__single_quoted_string] = STATE(1633), - [sym__double_quoted_string] = STATE(1634), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2046), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2076), - [sym_na] = STATE(1537), - [sym__expression] = STATE(1537), - [sym__open_parenthesis] = STATE(1071), - [sym__open_brace] = STATE(376), - [sym__close_bracket2] = STATE(1660), - [aux_sym_call_arguments_repeat1] = STATE(1889), - [sym_identifier] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_function] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), - [anon_sym_for] = ACTIONS(449), - [anon_sym_while] = ACTIONS(451), - [anon_sym_repeat] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(455), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(461), - [sym__hex_literal] = ACTIONS(463), - [sym__number_literal] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_DQUOTE] = ACTIONS(469), - [sym_dots] = ACTIONS(441), - [sym_dot_dot_i] = ACTIONS(471), - [sym_return] = ACTIONS(473), - [sym_next] = ACTIONS(473), - [sym_break] = ACTIONS(473), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [sym_inf] = ACTIONS(473), - [sym_nan] = ACTIONS(473), - [anon_sym_NA] = ACTIONS(475), - [anon_sym_NA_integer_] = ACTIONS(475), - [anon_sym_NA_real_] = ACTIONS(475), - [anon_sym_NA_complex_] = ACTIONS(475), - [anon_sym_NA_character_] = ACTIONS(475), + [sym_string] = STATE(417), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(417), + [aux_sym_function_definition_repeat1] = STATE(350), + [sym_identifier] = ACTIONS(617), + [anon_sym_BSLASH] = ACTIONS(335), + [anon_sym_function] = ACTIONS(339), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_for] = ACTIONS(339), + [anon_sym_while] = ACTIONS(339), + [anon_sym_repeat] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(335), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_LT_DASH] = ACTIONS(335), + [anon_sym_LT_LT_DASH] = ACTIONS(335), + [anon_sym_COLON_EQ] = ACTIONS(335), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_DASH_GT_GT] = ACTIONS(335), + [anon_sym_PIPE] = ACTIONS(339), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_GT_EQ] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(335), + [anon_sym_BANG_EQ] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_SLASH] = ACTIONS(335), + [anon_sym_STAR_STAR] = ACTIONS(335), + [anon_sym_CARET] = ACTIONS(335), + [aux_sym_binary_operator_token1] = ACTIONS(335), + [anon_sym_PIPE_GT] = ACTIONS(335), + [anon_sym_COLON] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(335), + [sym__hex_literal] = ACTIONS(335), + [sym__number_literal] = ACTIONS(339), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(617), + [sym_dot_dot_i] = ACTIONS(619), + [sym_return] = ACTIONS(339), + [sym_next] = ACTIONS(339), + [sym_break] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_null] = ACTIONS(339), + [sym_inf] = ACTIONS(339), + [sym_nan] = ACTIONS(339), + [anon_sym_NA] = ACTIONS(339), + [anon_sym_NA_integer_] = ACTIONS(339), + [anon_sym_NA_real_] = ACTIONS(339), + [anon_sym_NA_complex_] = ACTIONS(339), + [anon_sym_NA_character_] = ACTIONS(339), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(477), - [sym__raw_string_literal] = ACTIONS(479), - [sym__external_open_parenthesis] = ACTIONS(481), - [sym__external_open_brace] = ACTIONS(483), - [sym__external_close_bracket2] = ACTIONS(619), + [sym__newline] = ACTIONS(335), + [sym__semicolon] = ACTIONS(335), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_brace] = ACTIONS(335), + [sym__external_close_brace] = ACTIONS(335), + [sym__external_open_bracket] = ACTIONS(335), + [sym__external_open_bracket2] = ACTIONS(335), }, [283] = { - [sym_function_definition] = STATE(1371), - [sym_if_statement] = STATE(1371), - [sym_for_statement] = STATE(1371), - [sym_while_statement] = STATE(1371), - [sym_repeat_statement] = STATE(1371), - [sym_braced_expression] = STATE(1371), - [sym_parenthesized_expression] = STATE(1371), - [sym_call] = STATE(1371), - [sym_subset] = STATE(1371), - [sym_subset2] = STATE(1371), + [sym_function_definition] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_repeat_statement] = STATE(1442), + [sym_braced_expression] = STATE(1442), + [sym_parenthesized_expression] = STATE(1442), + [sym_call] = STATE(1442), + [sym_subset] = STATE(1442), + [sym_subset2] = STATE(1442), [sym_argument] = STATE(1895), [sym__argument_named] = STATE(2040), - [sym__argument_unnamed] = STATE(2028), - [sym__argument_value] = STATE(2042), - [sym_unary_operator] = STATE(1371), - [sym_binary_operator] = STATE(1371), - [sym_extract_operator] = STATE(1371), - [sym_namespace_operator] = STATE(1371), - [sym_integer] = STATE(1371), - [sym_complex] = STATE(1371), - [sym_float] = STATE(1371), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1624), - [sym__single_quoted_string] = STATE(1618), - [sym__double_quoted_string] = STATE(1621), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2054), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2065), - [sym_na] = STATE(1371), - [sym__expression] = STATE(1371), - [sym__open_parenthesis] = STATE(1057), - [sym__close_parenthesis] = STATE(409), - [sym__open_brace] = STATE(370), - [aux_sym_call_arguments_repeat1] = STATE(1867), - [sym_identifier] = ACTIONS(517), - [anon_sym_BSLASH] = ACTIONS(519), - [anon_sym_function] = ACTIONS(521), - [anon_sym_if] = ACTIONS(523), - [anon_sym_for] = ACTIONS(525), - [anon_sym_while] = ACTIONS(527), - [anon_sym_repeat] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [sym__hex_literal] = ACTIONS(539), - [sym__number_literal] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_dots] = ACTIONS(517), - [sym_dot_dot_i] = ACTIONS(547), - [sym_return] = ACTIONS(549), - [sym_next] = ACTIONS(549), - [sym_break] = ACTIONS(549), - [sym_true] = ACTIONS(549), - [sym_false] = ACTIONS(549), - [sym_null] = ACTIONS(549), - [sym_inf] = ACTIONS(549), - [sym_nan] = ACTIONS(549), - [anon_sym_NA] = ACTIONS(551), - [anon_sym_NA_integer_] = ACTIONS(551), - [anon_sym_NA_real_] = ACTIONS(551), - [anon_sym_NA_complex_] = ACTIONS(551), - [anon_sym_NA_character_] = ACTIONS(551), + [sym__argument_unnamed] = STATE(2048), + [sym__argument_value] = STATE(2041), + [sym_unary_operator] = STATE(1442), + [sym_binary_operator] = STATE(1442), + [sym_extract_operator] = STATE(1442), + [sym_namespace_operator] = STATE(1442), + [sym_integer] = STATE(1442), + [sym_complex] = STATE(1442), + [sym_float] = STATE(1442), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1614), + [sym__single_quoted_string] = STATE(1627), + [sym__double_quoted_string] = STATE(1616), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2042), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2062), + [sym_na] = STATE(1442), + [sym__expression] = STATE(1442), + [sym__open_parenthesis] = STATE(1097), + [sym__close_parenthesis] = STATE(1769), + [sym__open_brace] = STATE(357), + [aux_sym_call_arguments_repeat1] = STATE(1890), + [sym_identifier] = ACTIONS(483), + [anon_sym_BSLASH] = ACTIONS(485), + [anon_sym_function] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_for] = ACTIONS(491), + [anon_sym_while] = ACTIONS(493), + [anon_sym_repeat] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [sym__hex_literal] = ACTIONS(505), + [sym__number_literal] = ACTIONS(507), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym_dots] = ACTIONS(483), + [sym_dot_dot_i] = ACTIONS(513), + [sym_return] = ACTIONS(515), + [sym_next] = ACTIONS(515), + [sym_break] = ACTIONS(515), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [sym_null] = ACTIONS(515), + [sym_inf] = ACTIONS(515), + [sym_nan] = ACTIONS(515), + [anon_sym_NA] = ACTIONS(517), + [anon_sym_NA_integer_] = ACTIONS(517), + [anon_sym_NA_real_] = ACTIONS(517), + [anon_sym_NA_complex_] = ACTIONS(517), + [anon_sym_NA_character_] = ACTIONS(517), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(553), - [sym__raw_string_literal] = ACTIONS(555), - [sym__external_open_parenthesis] = ACTIONS(557), + [sym_comma] = ACTIONS(519), + [sym__raw_string_literal] = ACTIONS(521), + [sym__external_open_parenthesis] = ACTIONS(523), [sym__external_close_parenthesis] = ACTIONS(621), - [sym__external_open_brace] = ACTIONS(561), + [sym__external_open_brace] = ACTIONS(527), }, [284] = { - [sym_string] = STATE(447), - [sym__single_quoted_string] = STATE(325), - [sym__double_quoted_string] = STATE(326), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(447), - [ts_builtin_sym_end] = ACTIONS(389), + [sym_string] = STATE(444), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(444), [sym_identifier] = ACTIONS(623), - [anon_sym_BSLASH] = ACTIONS(389), - [anon_sym_function] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_if] = ACTIONS(391), - [anon_sym_for] = ACTIONS(391), - [anon_sym_while] = ACTIONS(391), - [anon_sym_repeat] = ACTIONS(391), - [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_TILDE] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_LT_DASH] = ACTIONS(389), - [anon_sym_LT_LT_DASH] = ACTIONS(389), - [anon_sym_COLON_EQ] = ACTIONS(389), - [anon_sym_DASH_GT] = ACTIONS(391), - [anon_sym_DASH_GT_GT] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_STAR_STAR] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [aux_sym_binary_operator_token1] = ACTIONS(389), - [anon_sym_PIPE_GT] = ACTIONS(389), - [anon_sym_COLON] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(389), - [anon_sym_AT] = ACTIONS(389), - [sym__hex_literal] = ACTIONS(389), - [sym__number_literal] = ACTIONS(391), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_BSLASH] = ACTIONS(555), + [anon_sym_function] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [anon_sym_repeat] = ACTIONS(557), + [anon_sym_QMARK] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_BANG] = ACTIONS(557), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_LT_DASH] = ACTIONS(555), + [anon_sym_LT_LT_DASH] = ACTIONS(555), + [anon_sym_COLON_EQ] = ACTIONS(555), + [anon_sym_DASH_GT] = ACTIONS(557), + [anon_sym_DASH_GT_GT] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(555), + [anon_sym_AMP_AMP] = ACTIONS(555), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(555), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_BANG_EQ] = ACTIONS(555), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(555), + [anon_sym_STAR_STAR] = ACTIONS(555), + [anon_sym_CARET] = ACTIONS(555), + [aux_sym_binary_operator_token1] = ACTIONS(555), + [anon_sym_PIPE_GT] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(557), + [anon_sym_DOLLAR] = ACTIONS(555), + [anon_sym_AT] = ACTIONS(555), + [sym__hex_literal] = ACTIONS(555), + [sym__number_literal] = ACTIONS(557), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), [sym_dots] = ACTIONS(623), [sym_dot_dot_i] = ACTIONS(625), - [sym_return] = ACTIONS(391), - [sym_next] = ACTIONS(391), - [sym_break] = ACTIONS(391), - [sym_true] = ACTIONS(391), - [sym_false] = ACTIONS(391), - [sym_null] = ACTIONS(391), - [sym_inf] = ACTIONS(391), - [sym_nan] = ACTIONS(391), - [anon_sym_NA] = ACTIONS(391), - [anon_sym_NA_integer_] = ACTIONS(391), - [anon_sym_NA_real_] = ACTIONS(391), - [anon_sym_NA_complex_] = ACTIONS(391), - [anon_sym_NA_character_] = ACTIONS(391), + [sym_return] = ACTIONS(557), + [sym_next] = ACTIONS(557), + [sym_break] = ACTIONS(557), + [sym_true] = ACTIONS(557), + [sym_false] = ACTIONS(557), + [sym_null] = ACTIONS(557), + [sym_inf] = ACTIONS(557), + [sym_nan] = ACTIONS(557), + [anon_sym_NA] = ACTIONS(557), + [anon_sym_NA_integer_] = ACTIONS(557), + [anon_sym_NA_real_] = ACTIONS(557), + [anon_sym_NA_complex_] = ACTIONS(557), + [anon_sym_NA_character_] = ACTIONS(557), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(389), - [sym__semicolon] = ACTIONS(389), - [sym__raw_string_literal] = ACTIONS(505), - [sym__external_open_parenthesis] = ACTIONS(389), - [sym__external_open_brace] = ACTIONS(389), - [sym__external_open_bracket] = ACTIONS(389), - [sym__external_open_bracket2] = ACTIONS(389), + [sym__newline] = ACTIONS(555), + [sym__semicolon] = ACTIONS(555), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(555), + [sym__external_open_brace] = ACTIONS(555), + [sym__external_close_brace] = ACTIONS(555), + [sym__external_open_bracket] = ACTIONS(555), + [sym__external_open_bracket2] = ACTIONS(555), }, [285] = { - [sym_string] = STATE(404), - [sym__single_quoted_string] = STATE(315), + [sym_string] = STATE(424), + [sym__single_quoted_string] = STATE(318), [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(404), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(555), [sym_identifier] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(389), - [anon_sym_function] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_if] = ACTIONS(391), - [anon_sym_for] = ACTIONS(391), - [anon_sym_while] = ACTIONS(391), - [anon_sym_repeat] = ACTIONS(391), - [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_TILDE] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_LT_DASH] = ACTIONS(389), - [anon_sym_LT_LT_DASH] = ACTIONS(389), - [anon_sym_COLON_EQ] = ACTIONS(389), - [anon_sym_DASH_GT] = ACTIONS(391), - [anon_sym_DASH_GT_GT] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_STAR_STAR] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [aux_sym_binary_operator_token1] = ACTIONS(389), - [anon_sym_PIPE_GT] = ACTIONS(389), - [anon_sym_COLON] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(389), - [anon_sym_AT] = ACTIONS(389), - [sym__hex_literal] = ACTIONS(389), - [sym__number_literal] = ACTIONS(391), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym_BSLASH] = ACTIONS(555), + [anon_sym_function] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [anon_sym_repeat] = ACTIONS(557), + [anon_sym_QMARK] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_BANG] = ACTIONS(557), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_LT_DASH] = ACTIONS(555), + [anon_sym_LT_LT_DASH] = ACTIONS(555), + [anon_sym_COLON_EQ] = ACTIONS(555), + [anon_sym_DASH_GT] = ACTIONS(557), + [anon_sym_DASH_GT_GT] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(555), + [anon_sym_AMP_AMP] = ACTIONS(555), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(555), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_BANG_EQ] = ACTIONS(555), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(555), + [anon_sym_STAR_STAR] = ACTIONS(555), + [anon_sym_CARET] = ACTIONS(555), + [aux_sym_binary_operator_token1] = ACTIONS(555), + [anon_sym_PIPE_GT] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(557), + [anon_sym_DOLLAR] = ACTIONS(555), + [anon_sym_AT] = ACTIONS(555), + [sym__hex_literal] = ACTIONS(555), + [sym__number_literal] = ACTIONS(557), + [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_DQUOTE] = ACTIONS(541), [sym_dots] = ACTIONS(627), [sym_dot_dot_i] = ACTIONS(629), - [sym_return] = ACTIONS(391), - [sym_next] = ACTIONS(391), - [sym_break] = ACTIONS(391), - [sym_true] = ACTIONS(391), - [sym_false] = ACTIONS(391), - [sym_null] = ACTIONS(391), - [sym_inf] = ACTIONS(391), - [sym_nan] = ACTIONS(391), - [anon_sym_NA] = ACTIONS(391), - [anon_sym_NA_integer_] = ACTIONS(391), - [anon_sym_NA_real_] = ACTIONS(391), - [anon_sym_NA_complex_] = ACTIONS(391), - [anon_sym_NA_character_] = ACTIONS(391), + [sym_return] = ACTIONS(557), + [sym_next] = ACTIONS(557), + [sym_break] = ACTIONS(557), + [sym_true] = ACTIONS(557), + [sym_false] = ACTIONS(557), + [sym_null] = ACTIONS(557), + [sym_inf] = ACTIONS(557), + [sym_nan] = ACTIONS(557), + [anon_sym_NA] = ACTIONS(557), + [anon_sym_NA_integer_] = ACTIONS(557), + [anon_sym_NA_real_] = ACTIONS(557), + [anon_sym_NA_complex_] = ACTIONS(557), + [anon_sym_NA_character_] = ACTIONS(557), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(389), - [sym__semicolon] = ACTIONS(389), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(389), - [sym__external_open_brace] = ACTIONS(389), - [sym__external_close_brace] = ACTIONS(389), - [sym__external_open_bracket] = ACTIONS(389), - [sym__external_open_bracket2] = ACTIONS(389), + [sym__newline] = ACTIONS(555), + [sym__semicolon] = ACTIONS(555), + [sym__raw_string_literal] = ACTIONS(547), + [sym__external_open_parenthesis] = ACTIONS(555), + [sym__external_open_brace] = ACTIONS(555), + [sym__external_open_bracket] = ACTIONS(555), + [sym__external_open_bracket2] = ACTIONS(555), }, [286] = { - [sym_function_definition] = STATE(1518), - [sym_if_statement] = STATE(1518), - [sym_for_statement] = STATE(1518), - [sym_while_statement] = STATE(1518), - [sym_repeat_statement] = STATE(1518), - [sym_braced_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_call] = STATE(1518), - [sym_subset] = STATE(1518), - [sym_subset2] = STATE(1518), - [sym_argument] = STATE(2045), - [sym__argument_named] = STATE(2039), - [sym__argument_unnamed] = STATE(2047), - [sym__argument_value] = STATE(2053), - [sym_unary_operator] = STATE(1518), - [sym_binary_operator] = STATE(1518), - [sym_extract_operator] = STATE(1518), - [sym_namespace_operator] = STATE(1518), - [sym_integer] = STATE(1518), - [sym_complex] = STATE(1518), - [sym_float] = STATE(1518), - [sym__float_literal] = STATE(1605), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1604), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2048), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2069), - [sym_na] = STATE(1518), - [sym__expression] = STATE(1518), - [sym__open_parenthesis] = STATE(1066), - [sym__open_brace] = STATE(373), - [sym_identifier] = ACTIONS(395), - [anon_sym_BSLASH] = ACTIONS(397), - [anon_sym_function] = ACTIONS(399), - [anon_sym_if] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_repeat] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [sym__hex_literal] = ACTIONS(417), - [sym__number_literal] = ACTIONS(419), - [anon_sym_SQUOTE] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [sym_dots] = ACTIONS(395), - [sym_dot_dot_i] = ACTIONS(425), - [sym_return] = ACTIONS(427), - [sym_next] = ACTIONS(427), - [sym_break] = ACTIONS(427), - [sym_true] = ACTIONS(427), - [sym_false] = ACTIONS(427), - [sym_null] = ACTIONS(427), - [sym_inf] = ACTIONS(427), - [sym_nan] = ACTIONS(427), - [anon_sym_NA] = ACTIONS(429), - [anon_sym_NA_integer_] = ACTIONS(429), - [anon_sym_NA_real_] = ACTIONS(429), - [anon_sym_NA_complex_] = ACTIONS(429), - [anon_sym_NA_character_] = ACTIONS(429), + [ts_builtin_sym_end] = ACTIONS(631), + [sym_identifier] = ACTIONS(633), + [anon_sym_BSLASH] = ACTIONS(631), + [anon_sym_function] = ACTIONS(633), + [anon_sym_EQ] = ACTIONS(633), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(633), + [anon_sym_while] = ACTIONS(633), + [anon_sym_repeat] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_BANG] = ACTIONS(633), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_LT_DASH] = ACTIONS(631), + [anon_sym_LT_LT_DASH] = ACTIONS(631), + [anon_sym_COLON_EQ] = ACTIONS(631), + [anon_sym_DASH_GT] = ACTIONS(633), + [anon_sym_DASH_GT_GT] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(633), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(633), + [anon_sym_LT_EQ] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(633), + [anon_sym_GT_EQ] = ACTIONS(631), + [anon_sym_EQ_EQ] = ACTIONS(631), + [anon_sym_BANG_EQ] = ACTIONS(631), + [anon_sym_STAR] = ACTIONS(633), + [anon_sym_SLASH] = ACTIONS(631), + [anon_sym_STAR_STAR] = ACTIONS(631), + [anon_sym_CARET] = ACTIONS(631), + [aux_sym_binary_operator_token1] = ACTIONS(631), + [anon_sym_PIPE_GT] = ACTIONS(631), + [anon_sym_COLON] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(631), + [anon_sym_AT] = ACTIONS(631), + [anon_sym_COLON_COLON] = ACTIONS(633), + [anon_sym_COLON_COLON_COLON] = ACTIONS(631), + [sym__hex_literal] = ACTIONS(631), + [sym__number_literal] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(631), + [anon_sym_DQUOTE] = ACTIONS(631), + [sym_dots] = ACTIONS(633), + [sym_dot_dot_i] = ACTIONS(631), + [sym_return] = ACTIONS(633), + [sym_next] = ACTIONS(633), + [sym_break] = ACTIONS(633), + [sym_true] = ACTIONS(633), + [sym_false] = ACTIONS(633), + [sym_null] = ACTIONS(633), + [sym_inf] = ACTIONS(633), + [sym_nan] = ACTIONS(633), + [anon_sym_NA] = ACTIONS(633), + [anon_sym_NA_integer_] = ACTIONS(633), + [anon_sym_NA_real_] = ACTIONS(633), + [anon_sym_NA_complex_] = ACTIONS(633), + [anon_sym_NA_character_] = ACTIONS(633), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(631), - [sym__raw_string_literal] = ACTIONS(433), - [sym__external_open_parenthesis] = ACTIONS(435), - [sym__external_open_brace] = ACTIONS(437), - [sym__external_close_bracket] = ACTIONS(631), + [sym__newline] = ACTIONS(631), + [sym__semicolon] = ACTIONS(631), + [sym__raw_string_literal] = ACTIONS(631), + [sym__external_else] = ACTIONS(631), + [sym__external_open_parenthesis] = ACTIONS(631), + [sym__external_open_brace] = ACTIONS(631), + [sym__external_open_bracket] = ACTIONS(631), + [sym__external_open_bracket2] = ACTIONS(631), }, [287] = { - [ts_builtin_sym_end] = ACTIONS(633), - [sym_identifier] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(633), - [anon_sym_function] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(635), - [anon_sym_if] = ACTIONS(635), - [anon_sym_for] = ACTIONS(635), - [anon_sym_while] = ACTIONS(635), - [anon_sym_repeat] = ACTIONS(635), - [anon_sym_QMARK] = ACTIONS(633), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(633), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_LT_DASH] = ACTIONS(633), - [anon_sym_LT_LT_DASH] = ACTIONS(633), - [anon_sym_COLON_EQ] = ACTIONS(633), - [anon_sym_DASH_GT] = ACTIONS(635), - [anon_sym_DASH_GT_GT] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_AMP] = ACTIONS(635), - [anon_sym_PIPE_PIPE] = ACTIONS(633), - [anon_sym_AMP_AMP] = ACTIONS(633), - [anon_sym_LT] = ACTIONS(635), - [anon_sym_LT_EQ] = ACTIONS(633), - [anon_sym_GT] = ACTIONS(635), - [anon_sym_GT_EQ] = ACTIONS(633), - [anon_sym_EQ_EQ] = ACTIONS(633), - [anon_sym_BANG_EQ] = ACTIONS(633), - [anon_sym_STAR] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(633), - [anon_sym_STAR_STAR] = ACTIONS(633), - [anon_sym_CARET] = ACTIONS(633), - [aux_sym_binary_operator_token1] = ACTIONS(633), - [anon_sym_PIPE_GT] = ACTIONS(633), - [anon_sym_COLON] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(633), - [anon_sym_COLON_COLON] = ACTIONS(635), - [anon_sym_COLON_COLON_COLON] = ACTIONS(633), - [sym__hex_literal] = ACTIONS(633), - [sym__number_literal] = ACTIONS(635), - [anon_sym_SQUOTE] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(633), - [sym_dots] = ACTIONS(635), - [sym_dot_dot_i] = ACTIONS(633), - [sym_return] = ACTIONS(635), - [sym_next] = ACTIONS(635), - [sym_break] = ACTIONS(635), - [sym_true] = ACTIONS(635), - [sym_false] = ACTIONS(635), - [sym_null] = ACTIONS(635), - [sym_inf] = ACTIONS(635), - [sym_nan] = ACTIONS(635), - [anon_sym_NA] = ACTIONS(635), - [anon_sym_NA_integer_] = ACTIONS(635), - [anon_sym_NA_real_] = ACTIONS(635), - [anon_sym_NA_complex_] = ACTIONS(635), - [anon_sym_NA_character_] = ACTIONS(635), + [ts_builtin_sym_end] = ACTIONS(635), + [sym_identifier] = ACTIONS(637), + [anon_sym_BSLASH] = ACTIONS(635), + [anon_sym_function] = ACTIONS(637), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_if] = ACTIONS(637), + [anon_sym_for] = ACTIONS(637), + [anon_sym_while] = ACTIONS(637), + [anon_sym_repeat] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(635), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_LT_DASH] = ACTIONS(635), + [anon_sym_LT_LT_DASH] = ACTIONS(635), + [anon_sym_COLON_EQ] = ACTIONS(635), + [anon_sym_DASH_GT] = ACTIONS(637), + [anon_sym_DASH_GT_GT] = ACTIONS(635), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(635), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_GT_EQ] = ACTIONS(635), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(635), + [anon_sym_STAR_STAR] = ACTIONS(635), + [anon_sym_CARET] = ACTIONS(635), + [aux_sym_binary_operator_token1] = ACTIONS(635), + [anon_sym_PIPE_GT] = ACTIONS(635), + [anon_sym_COLON] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(635), + [anon_sym_COLON_COLON] = ACTIONS(637), + [anon_sym_COLON_COLON_COLON] = ACTIONS(635), + [sym__hex_literal] = ACTIONS(635), + [sym__number_literal] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_dots] = ACTIONS(637), + [sym_dot_dot_i] = ACTIONS(635), + [sym_return] = ACTIONS(637), + [sym_next] = ACTIONS(637), + [sym_break] = ACTIONS(637), + [sym_true] = ACTIONS(637), + [sym_false] = ACTIONS(637), + [sym_null] = ACTIONS(637), + [sym_inf] = ACTIONS(637), + [sym_nan] = ACTIONS(637), + [anon_sym_NA] = ACTIONS(637), + [anon_sym_NA_integer_] = ACTIONS(637), + [anon_sym_NA_real_] = ACTIONS(637), + [anon_sym_NA_complex_] = ACTIONS(637), + [anon_sym_NA_character_] = ACTIONS(637), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(633), - [sym__semicolon] = ACTIONS(633), - [sym__raw_string_literal] = ACTIONS(633), - [sym__external_else] = ACTIONS(633), - [sym__external_open_parenthesis] = ACTIONS(633), - [sym__external_open_brace] = ACTIONS(633), - [sym__external_open_bracket] = ACTIONS(633), - [sym__external_open_bracket2] = ACTIONS(633), + [sym__newline] = ACTIONS(635), + [sym__semicolon] = ACTIONS(635), + [sym__raw_string_literal] = ACTIONS(635), + [sym__external_else] = ACTIONS(635), + [sym__external_open_parenthesis] = ACTIONS(635), + [sym__external_open_brace] = ACTIONS(635), + [sym__external_open_bracket] = ACTIONS(635), + [sym__external_open_bracket2] = ACTIONS(635), }, [288] = { - [sym_function_definition] = STATE(1537), - [sym_if_statement] = STATE(1537), - [sym_for_statement] = STATE(1537), - [sym_while_statement] = STATE(1537), - [sym_repeat_statement] = STATE(1537), - [sym_braced_expression] = STATE(1537), - [sym_parenthesized_expression] = STATE(1537), - [sym_call] = STATE(1537), - [sym_subset] = STATE(1537), - [sym_subset2] = STATE(1537), - [sym_argument] = STATE(2031), - [sym__argument_named] = STATE(2036), - [sym__argument_unnamed] = STATE(2033), - [sym__argument_value] = STATE(2035), - [sym_unary_operator] = STATE(1537), - [sym_binary_operator] = STATE(1537), - [sym_extract_operator] = STATE(1537), - [sym_namespace_operator] = STATE(1537), - [sym_integer] = STATE(1537), - [sym_complex] = STATE(1537), - [sym_float] = STATE(1537), - [sym__float_literal] = STATE(1632), - [sym_string] = STATE(1614), - [sym__single_quoted_string] = STATE(1633), - [sym__double_quoted_string] = STATE(1634), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2046), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2076), - [sym_na] = STATE(1537), - [sym__expression] = STATE(1537), - [sym__open_parenthesis] = STATE(1071), - [sym__open_brace] = STATE(376), - [sym_identifier] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_function] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), - [anon_sym_for] = ACTIONS(449), - [anon_sym_while] = ACTIONS(451), - [anon_sym_repeat] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(455), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(461), - [sym__hex_literal] = ACTIONS(463), - [sym__number_literal] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_DQUOTE] = ACTIONS(469), - [sym_dots] = ACTIONS(441), - [sym_dot_dot_i] = ACTIONS(471), - [sym_return] = ACTIONS(473), - [sym_next] = ACTIONS(473), - [sym_break] = ACTIONS(473), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [sym_inf] = ACTIONS(473), - [sym_nan] = ACTIONS(473), - [anon_sym_NA] = ACTIONS(475), - [anon_sym_NA_integer_] = ACTIONS(475), - [anon_sym_NA_real_] = ACTIONS(475), - [anon_sym_NA_complex_] = ACTIONS(475), - [anon_sym_NA_character_] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(631), - [sym__raw_string_literal] = ACTIONS(479), - [sym__external_open_parenthesis] = ACTIONS(481), - [sym__external_open_brace] = ACTIONS(483), - [sym__external_close_bracket2] = ACTIONS(631), - }, - [289] = { - [ts_builtin_sym_end] = ACTIONS(637), - [sym_identifier] = ACTIONS(639), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_function] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_repeat] = ACTIONS(639), - [anon_sym_QMARK] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_LT_DASH] = ACTIONS(637), - [anon_sym_LT_LT_DASH] = ACTIONS(637), - [anon_sym_COLON_EQ] = ACTIONS(637), - [anon_sym_DASH_GT] = ACTIONS(639), - [anon_sym_DASH_GT_GT] = ACTIONS(637), - [anon_sym_PIPE] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(637), - [anon_sym_AMP_AMP] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_LT_EQ] = ACTIONS(637), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_EQ] = ACTIONS(637), - [anon_sym_EQ_EQ] = ACTIONS(637), - [anon_sym_BANG_EQ] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_SLASH] = ACTIONS(637), - [anon_sym_STAR_STAR] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [aux_sym_binary_operator_token1] = ACTIONS(637), - [anon_sym_PIPE_GT] = ACTIONS(637), - [anon_sym_COLON] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(637), - [anon_sym_COLON_COLON] = ACTIONS(639), - [anon_sym_COLON_COLON_COLON] = ACTIONS(637), - [sym__hex_literal] = ACTIONS(637), - [sym__number_literal] = ACTIONS(639), - [anon_sym_SQUOTE] = ACTIONS(637), - [anon_sym_DQUOTE] = ACTIONS(637), - [sym_dots] = ACTIONS(639), - [sym_dot_dot_i] = ACTIONS(637), - [sym_return] = ACTIONS(639), - [sym_next] = ACTIONS(639), - [sym_break] = ACTIONS(639), - [sym_true] = ACTIONS(639), - [sym_false] = ACTIONS(639), - [sym_null] = ACTIONS(639), - [sym_inf] = ACTIONS(639), - [sym_nan] = ACTIONS(639), - [anon_sym_NA] = ACTIONS(639), - [anon_sym_NA_integer_] = ACTIONS(639), - [anon_sym_NA_real_] = ACTIONS(639), - [anon_sym_NA_complex_] = ACTIONS(639), - [anon_sym_NA_character_] = ACTIONS(639), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(637), - [sym__semicolon] = ACTIONS(637), - [sym__raw_string_literal] = ACTIONS(637), - [sym__external_else] = ACTIONS(637), - [sym__external_open_parenthesis] = ACTIONS(637), - [sym__external_open_brace] = ACTIONS(637), - [sym__external_open_bracket] = ACTIONS(637), - [sym__external_open_bracket2] = ACTIONS(637), - }, - [290] = { - [sym_function_definition] = STATE(1371), - [sym_if_statement] = STATE(1371), - [sym_for_statement] = STATE(1371), - [sym_while_statement] = STATE(1371), - [sym_repeat_statement] = STATE(1371), - [sym_braced_expression] = STATE(1371), - [sym_parenthesized_expression] = STATE(1371), - [sym_call] = STATE(1371), - [sym_subset] = STATE(1371), - [sym_subset2] = STATE(1371), - [sym_argument] = STATE(2030), - [sym__argument_named] = STATE(2040), - [sym__argument_unnamed] = STATE(2028), - [sym__argument_value] = STATE(2042), - [sym_unary_operator] = STATE(1371), - [sym_binary_operator] = STATE(1371), - [sym_extract_operator] = STATE(1371), - [sym_namespace_operator] = STATE(1371), - [sym_integer] = STATE(1371), - [sym_complex] = STATE(1371), - [sym_float] = STATE(1371), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1624), - [sym__single_quoted_string] = STATE(1618), - [sym__double_quoted_string] = STATE(1621), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2054), - [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2065), - [sym_na] = STATE(1371), - [sym__expression] = STATE(1371), + [sym_function_definition] = STATE(1370), + [sym_if_statement] = STATE(1370), + [sym_for_statement] = STATE(1370), + [sym_while_statement] = STATE(1370), + [sym_repeat_statement] = STATE(1370), + [sym_braced_expression] = STATE(1370), + [sym_parenthesized_expression] = STATE(1370), + [sym_call] = STATE(1370), + [sym_subset] = STATE(1370), + [sym_subset2] = STATE(1370), + [sym_argument] = STATE(2054), + [sym__argument_named] = STATE(2043), + [sym__argument_unnamed] = STATE(2044), + [sym__argument_value] = STATE(2045), + [sym_unary_operator] = STATE(1370), + [sym_binary_operator] = STATE(1370), + [sym_extract_operator] = STATE(1370), + [sym_namespace_operator] = STATE(1370), + [sym_integer] = STATE(1370), + [sym_complex] = STATE(1370), + [sym_float] = STATE(1370), + [sym__float_literal] = STATE(1618), + [sym_string] = STATE(1610), + [sym__single_quoted_string] = STATE(1605), + [sym__double_quoted_string] = STATE(1619), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2027), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2056), + [sym_na] = STATE(1370), + [sym__expression] = STATE(1370), [sym__open_parenthesis] = STATE(1057), - [sym__open_brace] = STATE(370), - [sym_identifier] = ACTIONS(517), - [anon_sym_BSLASH] = ACTIONS(519), - [anon_sym_function] = ACTIONS(521), - [anon_sym_if] = ACTIONS(523), - [anon_sym_for] = ACTIONS(525), - [anon_sym_while] = ACTIONS(527), - [anon_sym_repeat] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [sym__hex_literal] = ACTIONS(539), - [sym__number_literal] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_dots] = ACTIONS(517), - [sym_dot_dot_i] = ACTIONS(547), - [sym_return] = ACTIONS(549), - [sym_next] = ACTIONS(549), - [sym_break] = ACTIONS(549), - [sym_true] = ACTIONS(549), - [sym_false] = ACTIONS(549), - [sym_null] = ACTIONS(549), - [sym_inf] = ACTIONS(549), - [sym_nan] = ACTIONS(549), - [anon_sym_NA] = ACTIONS(551), - [anon_sym_NA_integer_] = ACTIONS(551), - [anon_sym_NA_real_] = ACTIONS(551), - [anon_sym_NA_complex_] = ACTIONS(551), - [anon_sym_NA_character_] = ACTIONS(551), + [sym__open_brace] = STATE(335), + [sym_identifier] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(389), + [anon_sym_function] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_while] = ACTIONS(397), + [anon_sym_repeat] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [sym__hex_literal] = ACTIONS(409), + [sym__number_literal] = ACTIONS(411), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_dots] = ACTIONS(387), + [sym_dot_dot_i] = ACTIONS(417), + [sym_return] = ACTIONS(419), + [sym_next] = ACTIONS(419), + [sym_break] = ACTIONS(419), + [sym_true] = ACTIONS(419), + [sym_false] = ACTIONS(419), + [sym_null] = ACTIONS(419), + [sym_inf] = ACTIONS(419), + [sym_nan] = ACTIONS(419), + [anon_sym_NA] = ACTIONS(421), + [anon_sym_NA_integer_] = ACTIONS(421), + [anon_sym_NA_real_] = ACTIONS(421), + [anon_sym_NA_complex_] = ACTIONS(421), + [anon_sym_NA_character_] = ACTIONS(421), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(631), - [sym__raw_string_literal] = ACTIONS(555), - [sym__external_open_parenthesis] = ACTIONS(557), - [sym__external_close_parenthesis] = ACTIONS(631), - [sym__external_open_brace] = ACTIONS(561), + [sym_comma] = ACTIONS(639), + [sym__raw_string_literal] = ACTIONS(425), + [sym__external_open_parenthesis] = ACTIONS(427), + [sym__external_open_brace] = ACTIONS(429), + [sym__external_close_bracket] = ACTIONS(639), }, - [291] = { + [289] = { [sym_identifier] = ACTIONS(641), [anon_sym_BSLASH] = ACTIONS(643), [anon_sym_function] = ACTIONS(641), @@ -27840,8 +27703,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(641), [anon_sym_DOLLAR] = ACTIONS(643), [anon_sym_AT] = ACTIONS(643), - [anon_sym_COLON_COLON] = ACTIONS(641), - [anon_sym_COLON_COLON_COLON] = ACTIONS(643), + [anon_sym_L] = ACTIONS(645), + [anon_sym_i] = ACTIONS(647), [sym__hex_literal] = ACTIONS(643), [sym__number_literal] = ACTIONS(641), [anon_sym_SQUOTE] = ACTIONS(643), @@ -27872,287 +27735,637 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(643), [sym__external_open_bracket2] = ACTIONS(643), }, + [290] = { + [ts_builtin_sym_end] = ACTIONS(649), + [sym_identifier] = ACTIONS(651), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_function] = ACTIONS(651), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_if] = ACTIONS(651), + [anon_sym_for] = ACTIONS(651), + [anon_sym_while] = ACTIONS(651), + [anon_sym_repeat] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_PLUS] = ACTIONS(649), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_LT_DASH] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(649), + [anon_sym_COLON_EQ] = ACTIONS(649), + [anon_sym_DASH_GT] = ACTIONS(651), + [anon_sym_DASH_GT_GT] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(649), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(649), + [anon_sym_EQ_EQ] = ACTIONS(649), + [anon_sym_BANG_EQ] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_STAR_STAR] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(649), + [aux_sym_binary_operator_token1] = ACTIONS(649), + [anon_sym_PIPE_GT] = ACTIONS(649), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_DOLLAR] = ACTIONS(649), + [anon_sym_AT] = ACTIONS(649), + [anon_sym_COLON_COLON] = ACTIONS(651), + [anon_sym_COLON_COLON_COLON] = ACTIONS(649), + [sym__hex_literal] = ACTIONS(649), + [sym__number_literal] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(649), + [sym_dots] = ACTIONS(651), + [sym_dot_dot_i] = ACTIONS(649), + [sym_return] = ACTIONS(651), + [sym_next] = ACTIONS(651), + [sym_break] = ACTIONS(651), + [sym_true] = ACTIONS(651), + [sym_false] = ACTIONS(651), + [sym_null] = ACTIONS(651), + [sym_inf] = ACTIONS(651), + [sym_nan] = ACTIONS(651), + [anon_sym_NA] = ACTIONS(651), + [anon_sym_NA_integer_] = ACTIONS(651), + [anon_sym_NA_real_] = ACTIONS(651), + [anon_sym_NA_complex_] = ACTIONS(651), + [anon_sym_NA_character_] = ACTIONS(651), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(649), + [sym__semicolon] = ACTIONS(649), + [sym__raw_string_literal] = ACTIONS(649), + [sym__external_else] = ACTIONS(649), + [sym__external_open_parenthesis] = ACTIONS(649), + [sym__external_open_brace] = ACTIONS(649), + [sym__external_open_bracket] = ACTIONS(649), + [sym__external_open_bracket2] = ACTIONS(649), + }, + [291] = { + [sym_identifier] = ACTIONS(651), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_function] = ACTIONS(651), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_if] = ACTIONS(651), + [anon_sym_for] = ACTIONS(651), + [anon_sym_while] = ACTIONS(651), + [anon_sym_repeat] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_PLUS] = ACTIONS(649), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_LT_DASH] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(649), + [anon_sym_COLON_EQ] = ACTIONS(649), + [anon_sym_DASH_GT] = ACTIONS(651), + [anon_sym_DASH_GT_GT] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(649), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(649), + [anon_sym_EQ_EQ] = ACTIONS(649), + [anon_sym_BANG_EQ] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_STAR_STAR] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(649), + [aux_sym_binary_operator_token1] = ACTIONS(649), + [anon_sym_PIPE_GT] = ACTIONS(649), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_DOLLAR] = ACTIONS(649), + [anon_sym_AT] = ACTIONS(649), + [anon_sym_COLON_COLON] = ACTIONS(651), + [anon_sym_COLON_COLON_COLON] = ACTIONS(649), + [sym__hex_literal] = ACTIONS(649), + [sym__number_literal] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(649), + [sym_dots] = ACTIONS(651), + [sym_dot_dot_i] = ACTIONS(649), + [sym_return] = ACTIONS(651), + [sym_next] = ACTIONS(651), + [sym_break] = ACTIONS(651), + [sym_true] = ACTIONS(651), + [sym_false] = ACTIONS(651), + [sym_null] = ACTIONS(651), + [sym_inf] = ACTIONS(651), + [sym_nan] = ACTIONS(651), + [anon_sym_NA] = ACTIONS(651), + [anon_sym_NA_integer_] = ACTIONS(651), + [anon_sym_NA_real_] = ACTIONS(651), + [anon_sym_NA_complex_] = ACTIONS(651), + [anon_sym_NA_character_] = ACTIONS(651), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(649), + [sym__semicolon] = ACTIONS(649), + [sym__raw_string_literal] = ACTIONS(649), + [sym__external_else] = ACTIONS(649), + [sym__external_open_parenthesis] = ACTIONS(649), + [sym__external_open_brace] = ACTIONS(649), + [sym__external_close_brace] = ACTIONS(649), + [sym__external_open_bracket] = ACTIONS(649), + [sym__external_open_bracket2] = ACTIONS(649), + }, [292] = { - [sym_identifier] = ACTIONS(645), - [anon_sym_BSLASH] = ACTIONS(647), - [anon_sym_function] = ACTIONS(645), - [anon_sym_EQ] = ACTIONS(645), - [anon_sym_if] = ACTIONS(645), - [anon_sym_for] = ACTIONS(645), - [anon_sym_while] = ACTIONS(645), - [anon_sym_repeat] = ACTIONS(645), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [anon_sym_COLON_EQ] = ACTIONS(647), - [anon_sym_DASH_GT] = ACTIONS(645), - [anon_sym_DASH_GT_GT] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_EQ] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_GT_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [aux_sym_binary_operator_token1] = ACTIONS(647), - [anon_sym_PIPE_GT] = ACTIONS(647), - [anon_sym_COLON] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_AT] = ACTIONS(647), - [anon_sym_COLON_COLON] = ACTIONS(649), - [anon_sym_COLON_COLON_COLON] = ACTIONS(651), - [sym__hex_literal] = ACTIONS(647), - [sym__number_literal] = ACTIONS(645), - [anon_sym_SQUOTE] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [sym_dots] = ACTIONS(645), - [sym_dot_dot_i] = ACTIONS(647), - [sym_return] = ACTIONS(645), - [sym_next] = ACTIONS(645), - [sym_break] = ACTIONS(645), - [sym_true] = ACTIONS(645), - [sym_false] = ACTIONS(645), - [sym_null] = ACTIONS(645), - [sym_inf] = ACTIONS(645), - [sym_nan] = ACTIONS(645), - [anon_sym_NA] = ACTIONS(645), - [anon_sym_NA_integer_] = ACTIONS(645), - [anon_sym_NA_real_] = ACTIONS(645), - [anon_sym_NA_complex_] = ACTIONS(645), - [anon_sym_NA_character_] = ACTIONS(645), + [sym_function_definition] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_repeat_statement] = STATE(1442), + [sym_braced_expression] = STATE(1442), + [sym_parenthesized_expression] = STATE(1442), + [sym_call] = STATE(1442), + [sym_subset] = STATE(1442), + [sym_subset2] = STATE(1442), + [sym_argument] = STATE(2037), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2048), + [sym__argument_value] = STATE(2041), + [sym_unary_operator] = STATE(1442), + [sym_binary_operator] = STATE(1442), + [sym_extract_operator] = STATE(1442), + [sym_namespace_operator] = STATE(1442), + [sym_integer] = STATE(1442), + [sym_complex] = STATE(1442), + [sym_float] = STATE(1442), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1614), + [sym__single_quoted_string] = STATE(1627), + [sym__double_quoted_string] = STATE(1616), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2042), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2062), + [sym_na] = STATE(1442), + [sym__expression] = STATE(1442), + [sym__open_parenthesis] = STATE(1097), + [sym__open_brace] = STATE(357), + [sym_identifier] = ACTIONS(483), + [anon_sym_BSLASH] = ACTIONS(485), + [anon_sym_function] = ACTIONS(487), + [anon_sym_if] = ACTIONS(489), + [anon_sym_for] = ACTIONS(491), + [anon_sym_while] = ACTIONS(493), + [anon_sym_repeat] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_TILDE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [sym__hex_literal] = ACTIONS(505), + [sym__number_literal] = ACTIONS(507), + [anon_sym_SQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym_dots] = ACTIONS(483), + [sym_dot_dot_i] = ACTIONS(513), + [sym_return] = ACTIONS(515), + [sym_next] = ACTIONS(515), + [sym_break] = ACTIONS(515), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [sym_null] = ACTIONS(515), + [sym_inf] = ACTIONS(515), + [sym_nan] = ACTIONS(515), + [anon_sym_NA] = ACTIONS(517), + [anon_sym_NA_integer_] = ACTIONS(517), + [anon_sym_NA_real_] = ACTIONS(517), + [anon_sym_NA_complex_] = ACTIONS(517), + [anon_sym_NA_character_] = ACTIONS(517), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(647), - [sym__semicolon] = ACTIONS(647), - [sym__raw_string_literal] = ACTIONS(647), - [sym__external_else] = ACTIONS(647), - [sym__external_open_parenthesis] = ACTIONS(647), - [sym__external_open_brace] = ACTIONS(647), - [sym__external_close_brace] = ACTIONS(647), - [sym__external_open_bracket] = ACTIONS(647), - [sym__external_open_bracket2] = ACTIONS(647), + [sym_comma] = ACTIONS(639), + [sym__raw_string_literal] = ACTIONS(521), + [sym__external_open_parenthesis] = ACTIONS(523), + [sym__external_close_parenthesis] = ACTIONS(639), + [sym__external_open_brace] = ACTIONS(527), }, [293] = { - [sym_identifier] = ACTIONS(653), - [anon_sym_BSLASH] = ACTIONS(655), - [anon_sym_function] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(653), - [anon_sym_if] = ACTIONS(653), - [anon_sym_for] = ACTIONS(653), - [anon_sym_while] = ACTIONS(653), - [anon_sym_repeat] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(655), - [anon_sym_TILDE] = ACTIONS(655), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(655), - [anon_sym_COLON_EQ] = ACTIONS(655), - [anon_sym_DASH_GT] = ACTIONS(653), - [anon_sym_DASH_GT_GT] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PIPE_PIPE] = ACTIONS(655), - [anon_sym_AMP_AMP] = ACTIONS(655), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_LT_EQ] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_GT_EQ] = ACTIONS(655), - [anon_sym_EQ_EQ] = ACTIONS(655), - [anon_sym_BANG_EQ] = ACTIONS(655), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(655), - [anon_sym_STAR_STAR] = ACTIONS(655), - [anon_sym_CARET] = ACTIONS(655), - [aux_sym_binary_operator_token1] = ACTIONS(655), - [anon_sym_PIPE_GT] = ACTIONS(655), - [anon_sym_COLON] = ACTIONS(653), - [anon_sym_DOLLAR] = ACTIONS(655), - [anon_sym_AT] = ACTIONS(655), - [anon_sym_L] = ACTIONS(657), - [anon_sym_i] = ACTIONS(659), - [sym__hex_literal] = ACTIONS(655), - [sym__number_literal] = ACTIONS(653), - [anon_sym_SQUOTE] = ACTIONS(655), - [anon_sym_DQUOTE] = ACTIONS(655), - [sym_dots] = ACTIONS(653), - [sym_dot_dot_i] = ACTIONS(655), - [sym_return] = ACTIONS(653), - [sym_next] = ACTIONS(653), - [sym_break] = ACTIONS(653), - [sym_true] = ACTIONS(653), - [sym_false] = ACTIONS(653), - [sym_null] = ACTIONS(653), - [sym_inf] = ACTIONS(653), - [sym_nan] = ACTIONS(653), - [anon_sym_NA] = ACTIONS(653), - [anon_sym_NA_integer_] = ACTIONS(653), - [anon_sym_NA_real_] = ACTIONS(653), - [anon_sym_NA_complex_] = ACTIONS(653), - [anon_sym_NA_character_] = ACTIONS(653), + [sym_function_definition] = STATE(1344), + [sym_if_statement] = STATE(1344), + [sym_for_statement] = STATE(1344), + [sym_while_statement] = STATE(1344), + [sym_repeat_statement] = STATE(1344), + [sym_braced_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_call] = STATE(1344), + [sym_subset] = STATE(1344), + [sym_subset2] = STATE(1344), + [sym_argument] = STATE(2047), + [sym__argument_named] = STATE(2053), + [sym__argument_unnamed] = STATE(2030), + [sym__argument_value] = STATE(2031), + [sym_unary_operator] = STATE(1344), + [sym_binary_operator] = STATE(1344), + [sym_extract_operator] = STATE(1344), + [sym_namespace_operator] = STATE(1344), + [sym_integer] = STATE(1344), + [sym_complex] = STATE(1344), + [sym_float] = STATE(1344), + [sym__float_literal] = STATE(1628), + [sym_string] = STATE(1609), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1632), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2039), + [sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i] = STATE(2057), + [sym_na] = STATE(1344), + [sym__expression] = STATE(1344), + [sym__open_parenthesis] = STATE(1113), + [sym__open_brace] = STATE(331), + [sym_identifier] = ACTIONS(433), + [anon_sym_BSLASH] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_for] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_repeat] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [sym__hex_literal] = ACTIONS(455), + [sym__number_literal] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [sym_dots] = ACTIONS(433), + [sym_dot_dot_i] = ACTIONS(463), + [sym_return] = ACTIONS(465), + [sym_next] = ACTIONS(465), + [sym_break] = ACTIONS(465), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [sym_inf] = ACTIONS(465), + [sym_nan] = ACTIONS(465), + [anon_sym_NA] = ACTIONS(467), + [anon_sym_NA_integer_] = ACTIONS(467), + [anon_sym_NA_real_] = ACTIONS(467), + [anon_sym_NA_complex_] = ACTIONS(467), + [anon_sym_NA_character_] = ACTIONS(467), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(655), - [sym__semicolon] = ACTIONS(655), - [sym__raw_string_literal] = ACTIONS(655), - [sym__external_else] = ACTIONS(655), - [sym__external_open_parenthesis] = ACTIONS(655), - [sym__external_open_brace] = ACTIONS(655), - [sym__external_close_brace] = ACTIONS(655), - [sym__external_open_bracket] = ACTIONS(655), - [sym__external_open_bracket2] = ACTIONS(655), + [sym_comma] = ACTIONS(639), + [sym__raw_string_literal] = ACTIONS(471), + [sym__external_open_parenthesis] = ACTIONS(473), + [sym__external_open_brace] = ACTIONS(475), + [sym__external_close_bracket2] = ACTIONS(639), }, [294] = { - [sym_identifier] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_function] = ACTIONS(661), - [anon_sym_EQ] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [anon_sym_LT_LT_DASH] = ACTIONS(663), - [anon_sym_COLON_EQ] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(661), - [anon_sym_DASH_GT_GT] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(661), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_STAR] = ACTIONS(661), - [anon_sym_SLASH] = ACTIONS(663), - [anon_sym_STAR_STAR] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(663), - [aux_sym_binary_operator_token1] = ACTIONS(663), - [anon_sym_PIPE_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(661), - [anon_sym_COLON_COLON_COLON] = ACTIONS(663), - [sym__hex_literal] = ACTIONS(663), - [sym__number_literal] = ACTIONS(661), - [anon_sym_SQUOTE] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [sym_dots] = ACTIONS(661), - [sym_dot_dot_i] = ACTIONS(663), - [sym_return] = ACTIONS(661), - [sym_next] = ACTIONS(661), - [sym_break] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_inf] = ACTIONS(661), - [sym_nan] = ACTIONS(661), - [anon_sym_NA] = ACTIONS(661), - [anon_sym_NA_integer_] = ACTIONS(661), - [anon_sym_NA_real_] = ACTIONS(661), - [anon_sym_NA_complex_] = ACTIONS(661), - [anon_sym_NA_character_] = ACTIONS(661), + [ts_builtin_sym_end] = ACTIONS(649), + [sym_identifier] = ACTIONS(651), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_function] = ACTIONS(651), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_if] = ACTIONS(651), + [anon_sym_for] = ACTIONS(651), + [anon_sym_while] = ACTIONS(651), + [anon_sym_repeat] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_PLUS] = ACTIONS(649), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_LT_DASH] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(649), + [anon_sym_COLON_EQ] = ACTIONS(649), + [anon_sym_DASH_GT] = ACTIONS(651), + [anon_sym_DASH_GT_GT] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(649), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(649), + [anon_sym_EQ_EQ] = ACTIONS(649), + [anon_sym_BANG_EQ] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_STAR_STAR] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(649), + [aux_sym_binary_operator_token1] = ACTIONS(649), + [anon_sym_PIPE_GT] = ACTIONS(649), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_DOLLAR] = ACTIONS(649), + [anon_sym_AT] = ACTIONS(649), + [anon_sym_COLON_COLON] = ACTIONS(651), + [anon_sym_COLON_COLON_COLON] = ACTIONS(649), + [sym__hex_literal] = ACTIONS(649), + [sym__number_literal] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(649), + [sym_dots] = ACTIONS(651), + [sym_dot_dot_i] = ACTIONS(649), + [sym_return] = ACTIONS(651), + [sym_next] = ACTIONS(651), + [sym_break] = ACTIONS(651), + [sym_true] = ACTIONS(651), + [sym_false] = ACTIONS(651), + [sym_null] = ACTIONS(651), + [sym_inf] = ACTIONS(651), + [sym_nan] = ACTIONS(651), + [anon_sym_NA] = ACTIONS(651), + [anon_sym_NA_integer_] = ACTIONS(651), + [anon_sym_NA_real_] = ACTIONS(651), + [anon_sym_NA_complex_] = ACTIONS(651), + [anon_sym_NA_character_] = ACTIONS(651), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(663), - [sym__semicolon] = ACTIONS(663), - [sym__raw_string_literal] = ACTIONS(663), - [sym__external_else] = ACTIONS(663), - [sym__external_open_parenthesis] = ACTIONS(663), - [sym__external_open_brace] = ACTIONS(663), - [sym__external_close_brace] = ACTIONS(663), - [sym__external_open_bracket] = ACTIONS(663), - [sym__external_open_bracket2] = ACTIONS(663), + [sym__newline] = ACTIONS(649), + [sym__semicolon] = ACTIONS(649), + [sym__raw_string_literal] = ACTIONS(649), + [sym__external_else] = ACTIONS(649), + [sym__external_open_parenthesis] = ACTIONS(649), + [sym__external_open_brace] = ACTIONS(649), + [sym__external_open_bracket] = ACTIONS(649), + [sym__external_open_bracket2] = ACTIONS(649), }, [295] = { - [sym_identifier] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_function] = ACTIONS(661), - [anon_sym_EQ] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [anon_sym_LT_LT_DASH] = ACTIONS(663), - [anon_sym_COLON_EQ] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(661), - [anon_sym_DASH_GT_GT] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(661), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_STAR] = ACTIONS(661), - [anon_sym_SLASH] = ACTIONS(663), - [anon_sym_STAR_STAR] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(663), - [aux_sym_binary_operator_token1] = ACTIONS(663), - [anon_sym_PIPE_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), + [ts_builtin_sym_end] = ACTIONS(653), + [sym_identifier] = ACTIONS(655), + [anon_sym_BSLASH] = ACTIONS(653), + [anon_sym_function] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_if] = ACTIONS(655), + [anon_sym_for] = ACTIONS(655), + [anon_sym_while] = ACTIONS(655), + [anon_sym_repeat] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_LT_DASH] = ACTIONS(653), + [anon_sym_LT_LT_DASH] = ACTIONS(653), + [anon_sym_COLON_EQ] = ACTIONS(653), + [anon_sym_DASH_GT] = ACTIONS(655), + [anon_sym_DASH_GT_GT] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(655), + [anon_sym_LT_EQ] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(653), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(655), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_STAR_STAR] = ACTIONS(653), + [anon_sym_CARET] = ACTIONS(653), + [aux_sym_binary_operator_token1] = ACTIONS(653), + [anon_sym_PIPE_GT] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_COLON_COLON] = ACTIONS(655), + [anon_sym_COLON_COLON_COLON] = ACTIONS(653), + [sym__hex_literal] = ACTIONS(653), + [sym__number_literal] = ACTIONS(655), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_DQUOTE] = ACTIONS(653), + [sym_dots] = ACTIONS(655), + [sym_dot_dot_i] = ACTIONS(653), + [sym_return] = ACTIONS(655), + [sym_next] = ACTIONS(655), + [sym_break] = ACTIONS(655), + [sym_true] = ACTIONS(655), + [sym_false] = ACTIONS(655), + [sym_null] = ACTIONS(655), + [sym_inf] = ACTIONS(655), + [sym_nan] = ACTIONS(655), + [anon_sym_NA] = ACTIONS(655), + [anon_sym_NA_integer_] = ACTIONS(655), + [anon_sym_NA_real_] = ACTIONS(655), + [anon_sym_NA_complex_] = ACTIONS(655), + [anon_sym_NA_character_] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(653), + [sym__semicolon] = ACTIONS(653), + [sym__raw_string_literal] = ACTIONS(653), + [sym__external_else] = ACTIONS(653), + [sym__external_open_parenthesis] = ACTIONS(653), + [sym__external_open_brace] = ACTIONS(653), + [sym__external_open_bracket] = ACTIONS(653), + [sym__external_open_bracket2] = ACTIONS(653), + }, + [296] = { + [ts_builtin_sym_end] = ACTIONS(657), + [sym_identifier] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(657), + [anon_sym_function] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(659), + [anon_sym_if] = ACTIONS(659), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(659), + [anon_sym_repeat] = ACTIONS(659), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_PLUS] = ACTIONS(657), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(657), + [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_COLON_EQ] = ACTIONS(657), + [anon_sym_DASH_GT] = ACTIONS(659), + [anon_sym_DASH_GT_GT] = ACTIONS(657), + [anon_sym_PIPE] = ACTIONS(659), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_AMP_AMP] = ACTIONS(657), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_LT_EQ] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(659), + [anon_sym_GT_EQ] = ACTIONS(657), + [anon_sym_EQ_EQ] = ACTIONS(657), + [anon_sym_BANG_EQ] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(657), + [anon_sym_STAR_STAR] = ACTIONS(657), + [anon_sym_CARET] = ACTIONS(657), + [aux_sym_binary_operator_token1] = ACTIONS(657), + [anon_sym_PIPE_GT] = ACTIONS(657), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(657), + [anon_sym_AT] = ACTIONS(657), [anon_sym_COLON_COLON] = ACTIONS(661), [anon_sym_COLON_COLON_COLON] = ACTIONS(663), - [sym__hex_literal] = ACTIONS(663), - [sym__number_literal] = ACTIONS(661), - [anon_sym_SQUOTE] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [sym_dots] = ACTIONS(661), - [sym_dot_dot_i] = ACTIONS(663), - [sym_return] = ACTIONS(661), - [sym_next] = ACTIONS(661), - [sym_break] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_inf] = ACTIONS(661), - [sym_nan] = ACTIONS(661), - [anon_sym_NA] = ACTIONS(661), - [anon_sym_NA_integer_] = ACTIONS(661), - [anon_sym_NA_real_] = ACTIONS(661), - [anon_sym_NA_complex_] = ACTIONS(661), - [anon_sym_NA_character_] = ACTIONS(661), + [sym__hex_literal] = ACTIONS(657), + [sym__number_literal] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(657), + [sym_dots] = ACTIONS(659), + [sym_dot_dot_i] = ACTIONS(657), + [sym_return] = ACTIONS(659), + [sym_next] = ACTIONS(659), + [sym_break] = ACTIONS(659), + [sym_true] = ACTIONS(659), + [sym_false] = ACTIONS(659), + [sym_null] = ACTIONS(659), + [sym_inf] = ACTIONS(659), + [sym_nan] = ACTIONS(659), + [anon_sym_NA] = ACTIONS(659), + [anon_sym_NA_integer_] = ACTIONS(659), + [anon_sym_NA_real_] = ACTIONS(659), + [anon_sym_NA_complex_] = ACTIONS(659), + [anon_sym_NA_character_] = ACTIONS(659), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(663), - [sym__semicolon] = ACTIONS(663), - [sym__raw_string_literal] = ACTIONS(663), - [sym__external_else] = ACTIONS(663), - [sym__external_open_parenthesis] = ACTIONS(663), - [sym__external_open_brace] = ACTIONS(663), - [sym__external_close_brace] = ACTIONS(663), - [sym__external_open_bracket] = ACTIONS(663), - [sym__external_open_bracket2] = ACTIONS(663), + [sym__newline] = ACTIONS(657), + [sym__semicolon] = ACTIONS(657), + [sym__raw_string_literal] = ACTIONS(657), + [sym__external_else] = ACTIONS(657), + [sym__external_open_parenthesis] = ACTIONS(657), + [sym__external_open_brace] = ACTIONS(657), + [sym__external_open_bracket] = ACTIONS(657), + [sym__external_open_bracket2] = ACTIONS(657), }, - [296] = { + [297] = { + [ts_builtin_sym_end] = ACTIONS(665), + [sym_identifier] = ACTIONS(667), + [anon_sym_BSLASH] = ACTIONS(665), + [anon_sym_function] = ACTIONS(667), + [anon_sym_EQ] = ACTIONS(667), + [anon_sym_if] = ACTIONS(667), + [anon_sym_for] = ACTIONS(667), + [anon_sym_while] = ACTIONS(667), + [anon_sym_repeat] = ACTIONS(667), + [anon_sym_QMARK] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_LT_DASH] = ACTIONS(665), + [anon_sym_LT_LT_DASH] = ACTIONS(665), + [anon_sym_COLON_EQ] = ACTIONS(665), + [anon_sym_DASH_GT] = ACTIONS(667), + [anon_sym_DASH_GT_GT] = ACTIONS(665), + [anon_sym_PIPE] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_PIPE_PIPE] = ACTIONS(665), + [anon_sym_AMP_AMP] = ACTIONS(665), + [anon_sym_LT] = ACTIONS(667), + [anon_sym_LT_EQ] = ACTIONS(665), + [anon_sym_GT] = ACTIONS(667), + [anon_sym_GT_EQ] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(665), + [anon_sym_BANG_EQ] = ACTIONS(665), + [anon_sym_STAR] = ACTIONS(667), + [anon_sym_SLASH] = ACTIONS(665), + [anon_sym_STAR_STAR] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(665), + [aux_sym_binary_operator_token1] = ACTIONS(665), + [anon_sym_PIPE_GT] = ACTIONS(665), + [anon_sym_COLON] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(665), + [anon_sym_COLON_COLON] = ACTIONS(667), + [anon_sym_COLON_COLON_COLON] = ACTIONS(665), + [sym__hex_literal] = ACTIONS(665), + [sym__number_literal] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym_dots] = ACTIONS(667), + [sym_dot_dot_i] = ACTIONS(665), + [sym_return] = ACTIONS(667), + [sym_next] = ACTIONS(667), + [sym_break] = ACTIONS(667), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [sym_null] = ACTIONS(667), + [sym_inf] = ACTIONS(667), + [sym_nan] = ACTIONS(667), + [anon_sym_NA] = ACTIONS(667), + [anon_sym_NA_integer_] = ACTIONS(667), + [anon_sym_NA_real_] = ACTIONS(667), + [anon_sym_NA_complex_] = ACTIONS(667), + [anon_sym_NA_character_] = ACTIONS(667), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(665), + [sym__semicolon] = ACTIONS(665), + [sym__raw_string_literal] = ACTIONS(665), + [sym__external_else] = ACTIONS(665), + [sym__external_open_parenthesis] = ACTIONS(665), + [sym__external_open_brace] = ACTIONS(665), + [sym__external_open_bracket] = ACTIONS(665), + [sym__external_open_bracket2] = ACTIONS(665), + }, + [298] = { + [ts_builtin_sym_end] = ACTIONS(669), + [sym_identifier] = ACTIONS(671), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_function] = ACTIONS(671), + [anon_sym_EQ] = ACTIONS(671), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(671), + [anon_sym_while] = ACTIONS(671), + [anon_sym_repeat] = ACTIONS(671), + [anon_sym_QMARK] = ACTIONS(669), + [anon_sym_TILDE] = ACTIONS(669), + [anon_sym_BANG] = ACTIONS(671), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_COLON_EQ] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(671), + [anon_sym_DASH_GT_GT] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(671), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(671), + [anon_sym_LT_EQ] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(669), + [anon_sym_EQ_EQ] = ACTIONS(669), + [anon_sym_BANG_EQ] = ACTIONS(669), + [anon_sym_STAR] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(669), + [anon_sym_STAR_STAR] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(669), + [aux_sym_binary_operator_token1] = ACTIONS(669), + [anon_sym_PIPE_GT] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_AT] = ACTIONS(669), + [anon_sym_COLON_COLON] = ACTIONS(671), + [anon_sym_COLON_COLON_COLON] = ACTIONS(669), + [sym__hex_literal] = ACTIONS(669), + [sym__number_literal] = ACTIONS(671), + [anon_sym_SQUOTE] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(669), + [sym_dots] = ACTIONS(671), + [sym_dot_dot_i] = ACTIONS(669), + [sym_return] = ACTIONS(671), + [sym_next] = ACTIONS(671), + [sym_break] = ACTIONS(671), + [sym_true] = ACTIONS(671), + [sym_false] = ACTIONS(671), + [sym_null] = ACTIONS(671), + [sym_inf] = ACTIONS(671), + [sym_nan] = ACTIONS(671), + [anon_sym_NA] = ACTIONS(671), + [anon_sym_NA_integer_] = ACTIONS(671), + [anon_sym_NA_real_] = ACTIONS(671), + [anon_sym_NA_complex_] = ACTIONS(671), + [anon_sym_NA_character_] = ACTIONS(671), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(669), + [sym__semicolon] = ACTIONS(669), + [sym__raw_string_literal] = ACTIONS(669), + [sym__external_else] = ACTIONS(669), + [sym__external_open_parenthesis] = ACTIONS(669), + [sym__external_open_brace] = ACTIONS(669), + [sym__external_open_bracket] = ACTIONS(669), + [sym__external_open_bracket2] = ACTIONS(669), + }, + [299] = { [ts_builtin_sym_end] = ACTIONS(643), [sym_identifier] = ACTIONS(641), [anon_sym_BSLASH] = ACTIONS(643), @@ -28191,8 +28404,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(641), [anon_sym_DOLLAR] = ACTIONS(643), [anon_sym_AT] = ACTIONS(643), - [anon_sym_COLON_COLON] = ACTIONS(641), - [anon_sym_COLON_COLON_COLON] = ACTIONS(643), + [anon_sym_L] = ACTIONS(673), + [anon_sym_i] = ACTIONS(675), [sym__hex_literal] = ACTIONS(643), [sym__number_literal] = ACTIONS(641), [anon_sym_SQUOTE] = ACTIONS(643), @@ -28222,915 +28435,635 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(643), [sym__external_open_bracket2] = ACTIONS(643), }, - [297] = { - [ts_builtin_sym_end] = ACTIONS(647), - [sym_identifier] = ACTIONS(645), - [anon_sym_BSLASH] = ACTIONS(647), - [anon_sym_function] = ACTIONS(645), - [anon_sym_EQ] = ACTIONS(645), - [anon_sym_if] = ACTIONS(645), - [anon_sym_for] = ACTIONS(645), - [anon_sym_while] = ACTIONS(645), - [anon_sym_repeat] = ACTIONS(645), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [anon_sym_COLON_EQ] = ACTIONS(647), - [anon_sym_DASH_GT] = ACTIONS(645), - [anon_sym_DASH_GT_GT] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_EQ] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_GT_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [aux_sym_binary_operator_token1] = ACTIONS(647), - [anon_sym_PIPE_GT] = ACTIONS(647), - [anon_sym_COLON] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_AT] = ACTIONS(647), - [anon_sym_COLON_COLON] = ACTIONS(649), - [anon_sym_COLON_COLON_COLON] = ACTIONS(651), - [sym__hex_literal] = ACTIONS(647), - [sym__number_literal] = ACTIONS(645), - [anon_sym_SQUOTE] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [sym_dots] = ACTIONS(645), - [sym_dot_dot_i] = ACTIONS(647), - [sym_return] = ACTIONS(645), - [sym_next] = ACTIONS(645), - [sym_break] = ACTIONS(645), - [sym_true] = ACTIONS(645), - [sym_false] = ACTIONS(645), - [sym_null] = ACTIONS(645), - [sym_inf] = ACTIONS(645), - [sym_nan] = ACTIONS(645), - [anon_sym_NA] = ACTIONS(645), - [anon_sym_NA_integer_] = ACTIONS(645), - [anon_sym_NA_real_] = ACTIONS(645), - [anon_sym_NA_complex_] = ACTIONS(645), - [anon_sym_NA_character_] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(647), - [sym__semicolon] = ACTIONS(647), - [sym__raw_string_literal] = ACTIONS(647), - [sym__external_else] = ACTIONS(647), - [sym__external_open_parenthesis] = ACTIONS(647), - [sym__external_open_brace] = ACTIONS(647), - [sym__external_open_bracket] = ACTIONS(647), - [sym__external_open_bracket2] = ACTIONS(647), - }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(655), - [sym_identifier] = ACTIONS(653), - [anon_sym_BSLASH] = ACTIONS(655), - [anon_sym_function] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(653), - [anon_sym_if] = ACTIONS(653), - [anon_sym_for] = ACTIONS(653), - [anon_sym_while] = ACTIONS(653), - [anon_sym_repeat] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(655), - [anon_sym_TILDE] = ACTIONS(655), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(655), - [anon_sym_COLON_EQ] = ACTIONS(655), - [anon_sym_DASH_GT] = ACTIONS(653), - [anon_sym_DASH_GT_GT] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PIPE_PIPE] = ACTIONS(655), - [anon_sym_AMP_AMP] = ACTIONS(655), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_LT_EQ] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_GT_EQ] = ACTIONS(655), - [anon_sym_EQ_EQ] = ACTIONS(655), - [anon_sym_BANG_EQ] = ACTIONS(655), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(655), - [anon_sym_STAR_STAR] = ACTIONS(655), - [anon_sym_CARET] = ACTIONS(655), - [aux_sym_binary_operator_token1] = ACTIONS(655), - [anon_sym_PIPE_GT] = ACTIONS(655), - [anon_sym_COLON] = ACTIONS(653), - [anon_sym_DOLLAR] = ACTIONS(655), - [anon_sym_AT] = ACTIONS(655), - [anon_sym_L] = ACTIONS(665), - [anon_sym_i] = ACTIONS(667), - [sym__hex_literal] = ACTIONS(655), - [sym__number_literal] = ACTIONS(653), - [anon_sym_SQUOTE] = ACTIONS(655), - [anon_sym_DQUOTE] = ACTIONS(655), - [sym_dots] = ACTIONS(653), - [sym_dot_dot_i] = ACTIONS(655), - [sym_return] = ACTIONS(653), - [sym_next] = ACTIONS(653), - [sym_break] = ACTIONS(653), - [sym_true] = ACTIONS(653), - [sym_false] = ACTIONS(653), - [sym_null] = ACTIONS(653), - [sym_inf] = ACTIONS(653), - [sym_nan] = ACTIONS(653), - [anon_sym_NA] = ACTIONS(653), - [anon_sym_NA_integer_] = ACTIONS(653), - [anon_sym_NA_real_] = ACTIONS(653), - [anon_sym_NA_complex_] = ACTIONS(653), - [anon_sym_NA_character_] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(655), - [sym__semicolon] = ACTIONS(655), - [sym__raw_string_literal] = ACTIONS(655), - [sym__external_else] = ACTIONS(655), - [sym__external_open_parenthesis] = ACTIONS(655), - [sym__external_open_brace] = ACTIONS(655), - [sym__external_open_bracket] = ACTIONS(655), - [sym__external_open_bracket2] = ACTIONS(655), - }, - [299] = { - [sym_identifier] = ACTIONS(669), - [anon_sym_BSLASH] = ACTIONS(671), - [anon_sym_function] = ACTIONS(669), - [anon_sym_EQ] = ACTIONS(669), - [anon_sym_if] = ACTIONS(669), - [anon_sym_for] = ACTIONS(669), - [anon_sym_while] = ACTIONS(669), - [anon_sym_repeat] = ACTIONS(669), - [anon_sym_QMARK] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(671), - [anon_sym_BANG] = ACTIONS(669), - [anon_sym_PLUS] = ACTIONS(671), - [anon_sym_DASH] = ACTIONS(669), - [anon_sym_LT_DASH] = ACTIONS(671), - [anon_sym_LT_LT_DASH] = ACTIONS(671), - [anon_sym_COLON_EQ] = ACTIONS(671), - [anon_sym_DASH_GT] = ACTIONS(669), - [anon_sym_DASH_GT_GT] = ACTIONS(671), - [anon_sym_PIPE] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_PIPE_PIPE] = ACTIONS(671), - [anon_sym_AMP_AMP] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_LT_EQ] = ACTIONS(671), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_EQ] = ACTIONS(671), - [anon_sym_EQ_EQ] = ACTIONS(671), - [anon_sym_BANG_EQ] = ACTIONS(671), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_SLASH] = ACTIONS(671), - [anon_sym_STAR_STAR] = ACTIONS(671), - [anon_sym_CARET] = ACTIONS(671), - [aux_sym_binary_operator_token1] = ACTIONS(671), - [anon_sym_PIPE_GT] = ACTIONS(671), - [anon_sym_COLON] = ACTIONS(669), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(671), - [anon_sym_COLON_COLON] = ACTIONS(669), - [anon_sym_COLON_COLON_COLON] = ACTIONS(671), - [sym__hex_literal] = ACTIONS(671), - [sym__number_literal] = ACTIONS(669), - [anon_sym_SQUOTE] = ACTIONS(671), - [anon_sym_DQUOTE] = ACTIONS(671), - [sym_dots] = ACTIONS(669), - [sym_dot_dot_i] = ACTIONS(671), - [sym_return] = ACTIONS(669), - [sym_next] = ACTIONS(669), - [sym_break] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_null] = ACTIONS(669), - [sym_inf] = ACTIONS(669), - [sym_nan] = ACTIONS(669), - [anon_sym_NA] = ACTIONS(669), - [anon_sym_NA_integer_] = ACTIONS(669), - [anon_sym_NA_real_] = ACTIONS(669), - [anon_sym_NA_complex_] = ACTIONS(669), - [anon_sym_NA_character_] = ACTIONS(669), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(671), - [sym__semicolon] = ACTIONS(671), - [sym__raw_string_literal] = ACTIONS(671), - [sym__external_else] = ACTIONS(671), - [sym__external_open_parenthesis] = ACTIONS(671), - [sym__external_open_brace] = ACTIONS(671), - [sym__external_close_brace] = ACTIONS(671), - [sym__external_open_bracket] = ACTIONS(671), - [sym__external_open_bracket2] = ACTIONS(671), - }, [300] = { - [sym_identifier] = ACTIONS(673), - [anon_sym_BSLASH] = ACTIONS(675), - [anon_sym_function] = ACTIONS(673), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_if] = ACTIONS(673), - [anon_sym_for] = ACTIONS(673), - [anon_sym_while] = ACTIONS(673), - [anon_sym_repeat] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(675), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_LT_DASH] = ACTIONS(675), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [anon_sym_COLON_EQ] = ACTIONS(675), - [anon_sym_DASH_GT] = ACTIONS(673), - [anon_sym_DASH_GT_GT] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_LT_EQ] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(675), - [anon_sym_EQ_EQ] = ACTIONS(675), - [anon_sym_BANG_EQ] = ACTIONS(675), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(675), - [anon_sym_STAR_STAR] = ACTIONS(675), - [anon_sym_CARET] = ACTIONS(675), - [aux_sym_binary_operator_token1] = ACTIONS(675), - [anon_sym_PIPE_GT] = ACTIONS(675), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_COLON_COLON] = ACTIONS(673), - [anon_sym_COLON_COLON_COLON] = ACTIONS(675), - [sym__hex_literal] = ACTIONS(675), - [sym__number_literal] = ACTIONS(673), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_dots] = ACTIONS(673), - [sym_dot_dot_i] = ACTIONS(675), - [sym_return] = ACTIONS(673), - [sym_next] = ACTIONS(673), - [sym_break] = ACTIONS(673), - [sym_true] = ACTIONS(673), - [sym_false] = ACTIONS(673), - [sym_null] = ACTIONS(673), - [sym_inf] = ACTIONS(673), - [sym_nan] = ACTIONS(673), - [anon_sym_NA] = ACTIONS(673), - [anon_sym_NA_integer_] = ACTIONS(673), - [anon_sym_NA_real_] = ACTIONS(673), - [anon_sym_NA_complex_] = ACTIONS(673), - [anon_sym_NA_character_] = ACTIONS(673), + [sym_identifier] = ACTIONS(655), + [anon_sym_BSLASH] = ACTIONS(653), + [anon_sym_function] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_if] = ACTIONS(655), + [anon_sym_for] = ACTIONS(655), + [anon_sym_while] = ACTIONS(655), + [anon_sym_repeat] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_LT_DASH] = ACTIONS(653), + [anon_sym_LT_LT_DASH] = ACTIONS(653), + [anon_sym_COLON_EQ] = ACTIONS(653), + [anon_sym_DASH_GT] = ACTIONS(655), + [anon_sym_DASH_GT_GT] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(655), + [anon_sym_LT_EQ] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(653), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(655), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_STAR_STAR] = ACTIONS(653), + [anon_sym_CARET] = ACTIONS(653), + [aux_sym_binary_operator_token1] = ACTIONS(653), + [anon_sym_PIPE_GT] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_COLON_COLON] = ACTIONS(655), + [anon_sym_COLON_COLON_COLON] = ACTIONS(653), + [sym__hex_literal] = ACTIONS(653), + [sym__number_literal] = ACTIONS(655), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_DQUOTE] = ACTIONS(653), + [sym_dots] = ACTIONS(655), + [sym_dot_dot_i] = ACTIONS(653), + [sym_return] = ACTIONS(655), + [sym_next] = ACTIONS(655), + [sym_break] = ACTIONS(655), + [sym_true] = ACTIONS(655), + [sym_false] = ACTIONS(655), + [sym_null] = ACTIONS(655), + [sym_inf] = ACTIONS(655), + [sym_nan] = ACTIONS(655), + [anon_sym_NA] = ACTIONS(655), + [anon_sym_NA_integer_] = ACTIONS(655), + [anon_sym_NA_real_] = ACTIONS(655), + [anon_sym_NA_complex_] = ACTIONS(655), + [anon_sym_NA_character_] = ACTIONS(655), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(675), - [sym__semicolon] = ACTIONS(675), - [sym__raw_string_literal] = ACTIONS(675), - [sym__external_else] = ACTIONS(675), - [sym__external_open_parenthesis] = ACTIONS(675), - [sym__external_open_brace] = ACTIONS(675), - [sym__external_close_brace] = ACTIONS(675), - [sym__external_open_bracket] = ACTIONS(675), - [sym__external_open_bracket2] = ACTIONS(675), + [sym__newline] = ACTIONS(653), + [sym__semicolon] = ACTIONS(653), + [sym__raw_string_literal] = ACTIONS(653), + [sym__external_else] = ACTIONS(653), + [sym__external_open_parenthesis] = ACTIONS(653), + [sym__external_open_brace] = ACTIONS(653), + [sym__external_close_brace] = ACTIONS(653), + [sym__external_open_bracket] = ACTIONS(653), + [sym__external_open_bracket2] = ACTIONS(653), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(663), - [sym_identifier] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_function] = ACTIONS(661), - [anon_sym_EQ] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [anon_sym_LT_LT_DASH] = ACTIONS(663), - [anon_sym_COLON_EQ] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(661), - [anon_sym_DASH_GT_GT] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(661), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_STAR] = ACTIONS(661), - [anon_sym_SLASH] = ACTIONS(663), - [anon_sym_STAR_STAR] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(663), - [aux_sym_binary_operator_token1] = ACTIONS(663), - [anon_sym_PIPE_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(661), - [anon_sym_COLON_COLON_COLON] = ACTIONS(663), - [sym__hex_literal] = ACTIONS(663), - [sym__number_literal] = ACTIONS(661), - [anon_sym_SQUOTE] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [sym_dots] = ACTIONS(661), - [sym_dot_dot_i] = ACTIONS(663), - [sym_return] = ACTIONS(661), - [sym_next] = ACTIONS(661), - [sym_break] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_inf] = ACTIONS(661), - [sym_nan] = ACTIONS(661), - [anon_sym_NA] = ACTIONS(661), - [anon_sym_NA_integer_] = ACTIONS(661), - [anon_sym_NA_real_] = ACTIONS(661), - [anon_sym_NA_complex_] = ACTIONS(661), - [anon_sym_NA_character_] = ACTIONS(661), + [sym_identifier] = ACTIONS(671), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_function] = ACTIONS(671), + [anon_sym_EQ] = ACTIONS(671), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(671), + [anon_sym_while] = ACTIONS(671), + [anon_sym_repeat] = ACTIONS(671), + [anon_sym_QMARK] = ACTIONS(669), + [anon_sym_TILDE] = ACTIONS(669), + [anon_sym_BANG] = ACTIONS(671), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_COLON_EQ] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(671), + [anon_sym_DASH_GT_GT] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(671), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(671), + [anon_sym_LT_EQ] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(669), + [anon_sym_EQ_EQ] = ACTIONS(669), + [anon_sym_BANG_EQ] = ACTIONS(669), + [anon_sym_STAR] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(669), + [anon_sym_STAR_STAR] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(669), + [aux_sym_binary_operator_token1] = ACTIONS(669), + [anon_sym_PIPE_GT] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_AT] = ACTIONS(669), + [anon_sym_COLON_COLON] = ACTIONS(671), + [anon_sym_COLON_COLON_COLON] = ACTIONS(669), + [sym__hex_literal] = ACTIONS(669), + [sym__number_literal] = ACTIONS(671), + [anon_sym_SQUOTE] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(669), + [sym_dots] = ACTIONS(671), + [sym_dot_dot_i] = ACTIONS(669), + [sym_return] = ACTIONS(671), + [sym_next] = ACTIONS(671), + [sym_break] = ACTIONS(671), + [sym_true] = ACTIONS(671), + [sym_false] = ACTIONS(671), + [sym_null] = ACTIONS(671), + [sym_inf] = ACTIONS(671), + [sym_nan] = ACTIONS(671), + [anon_sym_NA] = ACTIONS(671), + [anon_sym_NA_integer_] = ACTIONS(671), + [anon_sym_NA_real_] = ACTIONS(671), + [anon_sym_NA_complex_] = ACTIONS(671), + [anon_sym_NA_character_] = ACTIONS(671), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(663), - [sym__semicolon] = ACTIONS(663), - [sym__raw_string_literal] = ACTIONS(663), - [sym__external_else] = ACTIONS(663), - [sym__external_open_parenthesis] = ACTIONS(663), - [sym__external_open_brace] = ACTIONS(663), - [sym__external_open_bracket] = ACTIONS(663), - [sym__external_open_bracket2] = ACTIONS(663), + [sym__newline] = ACTIONS(669), + [sym__semicolon] = ACTIONS(669), + [sym__raw_string_literal] = ACTIONS(669), + [sym__external_else] = ACTIONS(669), + [sym__external_open_parenthesis] = ACTIONS(669), + [sym__external_open_brace] = ACTIONS(669), + [sym__external_close_brace] = ACTIONS(669), + [sym__external_open_bracket] = ACTIONS(669), + [sym__external_open_bracket2] = ACTIONS(669), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(663), - [sym_identifier] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_function] = ACTIONS(661), - [anon_sym_EQ] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [anon_sym_LT_LT_DASH] = ACTIONS(663), - [anon_sym_COLON_EQ] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(661), - [anon_sym_DASH_GT_GT] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(661), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_STAR] = ACTIONS(661), - [anon_sym_SLASH] = ACTIONS(663), - [anon_sym_STAR_STAR] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(663), - [aux_sym_binary_operator_token1] = ACTIONS(663), - [anon_sym_PIPE_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(661), - [anon_sym_COLON_COLON_COLON] = ACTIONS(663), - [sym__hex_literal] = ACTIONS(663), - [sym__number_literal] = ACTIONS(661), - [anon_sym_SQUOTE] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [sym_dots] = ACTIONS(661), - [sym_dot_dot_i] = ACTIONS(663), - [sym_return] = ACTIONS(661), - [sym_next] = ACTIONS(661), - [sym_break] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_inf] = ACTIONS(661), - [sym_nan] = ACTIONS(661), - [anon_sym_NA] = ACTIONS(661), - [anon_sym_NA_integer_] = ACTIONS(661), - [anon_sym_NA_real_] = ACTIONS(661), - [anon_sym_NA_complex_] = ACTIONS(661), - [anon_sym_NA_character_] = ACTIONS(661), + [sym_identifier] = ACTIONS(637), + [anon_sym_BSLASH] = ACTIONS(635), + [anon_sym_function] = ACTIONS(637), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_if] = ACTIONS(637), + [anon_sym_for] = ACTIONS(637), + [anon_sym_while] = ACTIONS(637), + [anon_sym_repeat] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(635), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_LT_DASH] = ACTIONS(635), + [anon_sym_LT_LT_DASH] = ACTIONS(635), + [anon_sym_COLON_EQ] = ACTIONS(635), + [anon_sym_DASH_GT] = ACTIONS(637), + [anon_sym_DASH_GT_GT] = ACTIONS(635), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(635), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_GT_EQ] = ACTIONS(635), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(635), + [anon_sym_STAR_STAR] = ACTIONS(635), + [anon_sym_CARET] = ACTIONS(635), + [aux_sym_binary_operator_token1] = ACTIONS(635), + [anon_sym_PIPE_GT] = ACTIONS(635), + [anon_sym_COLON] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(635), + [anon_sym_COLON_COLON] = ACTIONS(637), + [anon_sym_COLON_COLON_COLON] = ACTIONS(635), + [sym__hex_literal] = ACTIONS(635), + [sym__number_literal] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_dots] = ACTIONS(637), + [sym_dot_dot_i] = ACTIONS(635), + [sym_return] = ACTIONS(637), + [sym_next] = ACTIONS(637), + [sym_break] = ACTIONS(637), + [sym_true] = ACTIONS(637), + [sym_false] = ACTIONS(637), + [sym_null] = ACTIONS(637), + [sym_inf] = ACTIONS(637), + [sym_nan] = ACTIONS(637), + [anon_sym_NA] = ACTIONS(637), + [anon_sym_NA_integer_] = ACTIONS(637), + [anon_sym_NA_real_] = ACTIONS(637), + [anon_sym_NA_complex_] = ACTIONS(637), + [anon_sym_NA_character_] = ACTIONS(637), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(663), - [sym__semicolon] = ACTIONS(663), - [sym__raw_string_literal] = ACTIONS(663), - [sym__external_else] = ACTIONS(663), - [sym__external_open_parenthesis] = ACTIONS(663), - [sym__external_open_brace] = ACTIONS(663), - [sym__external_open_bracket] = ACTIONS(663), - [sym__external_open_bracket2] = ACTIONS(663), + [sym__newline] = ACTIONS(635), + [sym__semicolon] = ACTIONS(635), + [sym__raw_string_literal] = ACTIONS(635), + [sym__external_else] = ACTIONS(635), + [sym__external_open_parenthesis] = ACTIONS(635), + [sym__external_open_brace] = ACTIONS(635), + [sym__external_close_brace] = ACTIONS(635), + [sym__external_open_bracket] = ACTIONS(635), + [sym__external_open_bracket2] = ACTIONS(635), }, [303] = { - [sym_identifier] = ACTIONS(639), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_function] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_repeat] = ACTIONS(639), - [anon_sym_QMARK] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_LT_DASH] = ACTIONS(637), - [anon_sym_LT_LT_DASH] = ACTIONS(637), - [anon_sym_COLON_EQ] = ACTIONS(637), - [anon_sym_DASH_GT] = ACTIONS(639), - [anon_sym_DASH_GT_GT] = ACTIONS(637), - [anon_sym_PIPE] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(637), - [anon_sym_AMP_AMP] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_LT_EQ] = ACTIONS(637), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_EQ] = ACTIONS(637), - [anon_sym_EQ_EQ] = ACTIONS(637), - [anon_sym_BANG_EQ] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_SLASH] = ACTIONS(637), - [anon_sym_STAR_STAR] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [aux_sym_binary_operator_token1] = ACTIONS(637), - [anon_sym_PIPE_GT] = ACTIONS(637), - [anon_sym_COLON] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(637), - [anon_sym_COLON_COLON] = ACTIONS(639), - [anon_sym_COLON_COLON_COLON] = ACTIONS(637), - [sym__hex_literal] = ACTIONS(637), - [sym__number_literal] = ACTIONS(639), - [anon_sym_SQUOTE] = ACTIONS(637), - [anon_sym_DQUOTE] = ACTIONS(637), - [sym_dots] = ACTIONS(639), - [sym_dot_dot_i] = ACTIONS(637), - [sym_return] = ACTIONS(639), - [sym_next] = ACTIONS(639), - [sym_break] = ACTIONS(639), - [sym_true] = ACTIONS(639), - [sym_false] = ACTIONS(639), - [sym_null] = ACTIONS(639), - [sym_inf] = ACTIONS(639), - [sym_nan] = ACTIONS(639), - [anon_sym_NA] = ACTIONS(639), - [anon_sym_NA_integer_] = ACTIONS(639), - [anon_sym_NA_real_] = ACTIONS(639), - [anon_sym_NA_complex_] = ACTIONS(639), - [anon_sym_NA_character_] = ACTIONS(639), + [sym_identifier] = ACTIONS(633), + [anon_sym_BSLASH] = ACTIONS(631), + [anon_sym_function] = ACTIONS(633), + [anon_sym_EQ] = ACTIONS(633), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(633), + [anon_sym_while] = ACTIONS(633), + [anon_sym_repeat] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_BANG] = ACTIONS(633), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_LT_DASH] = ACTIONS(631), + [anon_sym_LT_LT_DASH] = ACTIONS(631), + [anon_sym_COLON_EQ] = ACTIONS(631), + [anon_sym_DASH_GT] = ACTIONS(633), + [anon_sym_DASH_GT_GT] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(633), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(633), + [anon_sym_LT_EQ] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(633), + [anon_sym_GT_EQ] = ACTIONS(631), + [anon_sym_EQ_EQ] = ACTIONS(631), + [anon_sym_BANG_EQ] = ACTIONS(631), + [anon_sym_STAR] = ACTIONS(633), + [anon_sym_SLASH] = ACTIONS(631), + [anon_sym_STAR_STAR] = ACTIONS(631), + [anon_sym_CARET] = ACTIONS(631), + [aux_sym_binary_operator_token1] = ACTIONS(631), + [anon_sym_PIPE_GT] = ACTIONS(631), + [anon_sym_COLON] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(631), + [anon_sym_AT] = ACTIONS(631), + [anon_sym_COLON_COLON] = ACTIONS(633), + [anon_sym_COLON_COLON_COLON] = ACTIONS(631), + [sym__hex_literal] = ACTIONS(631), + [sym__number_literal] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(631), + [anon_sym_DQUOTE] = ACTIONS(631), + [sym_dots] = ACTIONS(633), + [sym_dot_dot_i] = ACTIONS(631), + [sym_return] = ACTIONS(633), + [sym_next] = ACTIONS(633), + [sym_break] = ACTIONS(633), + [sym_true] = ACTIONS(633), + [sym_false] = ACTIONS(633), + [sym_null] = ACTIONS(633), + [sym_inf] = ACTIONS(633), + [sym_nan] = ACTIONS(633), + [anon_sym_NA] = ACTIONS(633), + [anon_sym_NA_integer_] = ACTIONS(633), + [anon_sym_NA_real_] = ACTIONS(633), + [anon_sym_NA_complex_] = ACTIONS(633), + [anon_sym_NA_character_] = ACTIONS(633), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(637), - [sym__semicolon] = ACTIONS(637), - [sym__raw_string_literal] = ACTIONS(637), - [sym__external_else] = ACTIONS(637), - [sym__external_open_parenthesis] = ACTIONS(637), - [sym__external_open_brace] = ACTIONS(637), - [sym__external_close_brace] = ACTIONS(637), - [sym__external_open_bracket] = ACTIONS(637), - [sym__external_open_bracket2] = ACTIONS(637), + [sym__newline] = ACTIONS(631), + [sym__semicolon] = ACTIONS(631), + [sym__raw_string_literal] = ACTIONS(631), + [sym__external_else] = ACTIONS(631), + [sym__external_open_parenthesis] = ACTIONS(631), + [sym__external_open_brace] = ACTIONS(631), + [sym__external_close_brace] = ACTIONS(631), + [sym__external_open_bracket] = ACTIONS(631), + [sym__external_open_bracket2] = ACTIONS(631), }, [304] = { - [sym_identifier] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(633), - [anon_sym_function] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(635), - [anon_sym_if] = ACTIONS(635), - [anon_sym_for] = ACTIONS(635), - [anon_sym_while] = ACTIONS(635), - [anon_sym_repeat] = ACTIONS(635), - [anon_sym_QMARK] = ACTIONS(633), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(633), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_LT_DASH] = ACTIONS(633), - [anon_sym_LT_LT_DASH] = ACTIONS(633), - [anon_sym_COLON_EQ] = ACTIONS(633), - [anon_sym_DASH_GT] = ACTIONS(635), - [anon_sym_DASH_GT_GT] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_AMP] = ACTIONS(635), - [anon_sym_PIPE_PIPE] = ACTIONS(633), - [anon_sym_AMP_AMP] = ACTIONS(633), - [anon_sym_LT] = ACTIONS(635), - [anon_sym_LT_EQ] = ACTIONS(633), - [anon_sym_GT] = ACTIONS(635), - [anon_sym_GT_EQ] = ACTIONS(633), - [anon_sym_EQ_EQ] = ACTIONS(633), - [anon_sym_BANG_EQ] = ACTIONS(633), - [anon_sym_STAR] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(633), - [anon_sym_STAR_STAR] = ACTIONS(633), - [anon_sym_CARET] = ACTIONS(633), - [aux_sym_binary_operator_token1] = ACTIONS(633), - [anon_sym_PIPE_GT] = ACTIONS(633), - [anon_sym_COLON] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(633), - [anon_sym_COLON_COLON] = ACTIONS(635), - [anon_sym_COLON_COLON_COLON] = ACTIONS(633), - [sym__hex_literal] = ACTIONS(633), - [sym__number_literal] = ACTIONS(635), - [anon_sym_SQUOTE] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(633), - [sym_dots] = ACTIONS(635), - [sym_dot_dot_i] = ACTIONS(633), - [sym_return] = ACTIONS(635), - [sym_next] = ACTIONS(635), - [sym_break] = ACTIONS(635), - [sym_true] = ACTIONS(635), - [sym_false] = ACTIONS(635), - [sym_null] = ACTIONS(635), - [sym_inf] = ACTIONS(635), - [sym_nan] = ACTIONS(635), - [anon_sym_NA] = ACTIONS(635), - [anon_sym_NA_integer_] = ACTIONS(635), - [anon_sym_NA_real_] = ACTIONS(635), - [anon_sym_NA_complex_] = ACTIONS(635), - [anon_sym_NA_character_] = ACTIONS(635), + [sym_identifier] = ACTIONS(651), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_function] = ACTIONS(651), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_if] = ACTIONS(651), + [anon_sym_for] = ACTIONS(651), + [anon_sym_while] = ACTIONS(651), + [anon_sym_repeat] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_PLUS] = ACTIONS(649), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_LT_DASH] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(649), + [anon_sym_COLON_EQ] = ACTIONS(649), + [anon_sym_DASH_GT] = ACTIONS(651), + [anon_sym_DASH_GT_GT] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(649), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(649), + [anon_sym_EQ_EQ] = ACTIONS(649), + [anon_sym_BANG_EQ] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_STAR_STAR] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(649), + [aux_sym_binary_operator_token1] = ACTIONS(649), + [anon_sym_PIPE_GT] = ACTIONS(649), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_DOLLAR] = ACTIONS(649), + [anon_sym_AT] = ACTIONS(649), + [anon_sym_COLON_COLON] = ACTIONS(651), + [anon_sym_COLON_COLON_COLON] = ACTIONS(649), + [sym__hex_literal] = ACTIONS(649), + [sym__number_literal] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(649), + [sym_dots] = ACTIONS(651), + [sym_dot_dot_i] = ACTIONS(649), + [sym_return] = ACTIONS(651), + [sym_next] = ACTIONS(651), + [sym_break] = ACTIONS(651), + [sym_true] = ACTIONS(651), + [sym_false] = ACTIONS(651), + [sym_null] = ACTIONS(651), + [sym_inf] = ACTIONS(651), + [sym_nan] = ACTIONS(651), + [anon_sym_NA] = ACTIONS(651), + [anon_sym_NA_integer_] = ACTIONS(651), + [anon_sym_NA_real_] = ACTIONS(651), + [anon_sym_NA_complex_] = ACTIONS(651), + [anon_sym_NA_character_] = ACTIONS(651), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(633), - [sym__semicolon] = ACTIONS(633), - [sym__raw_string_literal] = ACTIONS(633), - [sym__external_else] = ACTIONS(633), - [sym__external_open_parenthesis] = ACTIONS(633), - [sym__external_open_brace] = ACTIONS(633), - [sym__external_close_brace] = ACTIONS(633), - [sym__external_open_bracket] = ACTIONS(633), - [sym__external_open_bracket2] = ACTIONS(633), + [sym__newline] = ACTIONS(649), + [sym__semicolon] = ACTIONS(649), + [sym__raw_string_literal] = ACTIONS(649), + [sym__external_else] = ACTIONS(649), + [sym__external_open_parenthesis] = ACTIONS(649), + [sym__external_open_brace] = ACTIONS(649), + [sym__external_close_brace] = ACTIONS(649), + [sym__external_open_bracket] = ACTIONS(649), + [sym__external_open_bracket2] = ACTIONS(649), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(671), - [sym_identifier] = ACTIONS(669), - [anon_sym_BSLASH] = ACTIONS(671), - [anon_sym_function] = ACTIONS(669), - [anon_sym_EQ] = ACTIONS(669), - [anon_sym_if] = ACTIONS(669), - [anon_sym_for] = ACTIONS(669), - [anon_sym_while] = ACTIONS(669), - [anon_sym_repeat] = ACTIONS(669), - [anon_sym_QMARK] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(671), - [anon_sym_BANG] = ACTIONS(669), - [anon_sym_PLUS] = ACTIONS(671), - [anon_sym_DASH] = ACTIONS(669), - [anon_sym_LT_DASH] = ACTIONS(671), - [anon_sym_LT_LT_DASH] = ACTIONS(671), - [anon_sym_COLON_EQ] = ACTIONS(671), - [anon_sym_DASH_GT] = ACTIONS(669), - [anon_sym_DASH_GT_GT] = ACTIONS(671), - [anon_sym_PIPE] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_PIPE_PIPE] = ACTIONS(671), - [anon_sym_AMP_AMP] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_LT_EQ] = ACTIONS(671), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_EQ] = ACTIONS(671), - [anon_sym_EQ_EQ] = ACTIONS(671), - [anon_sym_BANG_EQ] = ACTIONS(671), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_SLASH] = ACTIONS(671), - [anon_sym_STAR_STAR] = ACTIONS(671), - [anon_sym_CARET] = ACTIONS(671), - [aux_sym_binary_operator_token1] = ACTIONS(671), - [anon_sym_PIPE_GT] = ACTIONS(671), - [anon_sym_COLON] = ACTIONS(669), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(671), - [anon_sym_COLON_COLON] = ACTIONS(669), - [anon_sym_COLON_COLON_COLON] = ACTIONS(671), - [sym__hex_literal] = ACTIONS(671), - [sym__number_literal] = ACTIONS(669), - [anon_sym_SQUOTE] = ACTIONS(671), - [anon_sym_DQUOTE] = ACTIONS(671), - [sym_dots] = ACTIONS(669), - [sym_dot_dot_i] = ACTIONS(671), - [sym_return] = ACTIONS(669), - [sym_next] = ACTIONS(669), - [sym_break] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_null] = ACTIONS(669), - [sym_inf] = ACTIONS(669), - [sym_nan] = ACTIONS(669), - [anon_sym_NA] = ACTIONS(669), - [anon_sym_NA_integer_] = ACTIONS(669), - [anon_sym_NA_real_] = ACTIONS(669), - [anon_sym_NA_complex_] = ACTIONS(669), - [anon_sym_NA_character_] = ACTIONS(669), + [sym_identifier] = ACTIONS(667), + [anon_sym_BSLASH] = ACTIONS(665), + [anon_sym_function] = ACTIONS(667), + [anon_sym_EQ] = ACTIONS(667), + [anon_sym_if] = ACTIONS(667), + [anon_sym_for] = ACTIONS(667), + [anon_sym_while] = ACTIONS(667), + [anon_sym_repeat] = ACTIONS(667), + [anon_sym_QMARK] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_LT_DASH] = ACTIONS(665), + [anon_sym_LT_LT_DASH] = ACTIONS(665), + [anon_sym_COLON_EQ] = ACTIONS(665), + [anon_sym_DASH_GT] = ACTIONS(667), + [anon_sym_DASH_GT_GT] = ACTIONS(665), + [anon_sym_PIPE] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_PIPE_PIPE] = ACTIONS(665), + [anon_sym_AMP_AMP] = ACTIONS(665), + [anon_sym_LT] = ACTIONS(667), + [anon_sym_LT_EQ] = ACTIONS(665), + [anon_sym_GT] = ACTIONS(667), + [anon_sym_GT_EQ] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(665), + [anon_sym_BANG_EQ] = ACTIONS(665), + [anon_sym_STAR] = ACTIONS(667), + [anon_sym_SLASH] = ACTIONS(665), + [anon_sym_STAR_STAR] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(665), + [aux_sym_binary_operator_token1] = ACTIONS(665), + [anon_sym_PIPE_GT] = ACTIONS(665), + [anon_sym_COLON] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(665), + [anon_sym_COLON_COLON] = ACTIONS(667), + [anon_sym_COLON_COLON_COLON] = ACTIONS(665), + [sym__hex_literal] = ACTIONS(665), + [sym__number_literal] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym_dots] = ACTIONS(667), + [sym_dot_dot_i] = ACTIONS(665), + [sym_return] = ACTIONS(667), + [sym_next] = ACTIONS(667), + [sym_break] = ACTIONS(667), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [sym_null] = ACTIONS(667), + [sym_inf] = ACTIONS(667), + [sym_nan] = ACTIONS(667), + [anon_sym_NA] = ACTIONS(667), + [anon_sym_NA_integer_] = ACTIONS(667), + [anon_sym_NA_real_] = ACTIONS(667), + [anon_sym_NA_complex_] = ACTIONS(667), + [anon_sym_NA_character_] = ACTIONS(667), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(671), - [sym__semicolon] = ACTIONS(671), - [sym__raw_string_literal] = ACTIONS(671), - [sym__external_else] = ACTIONS(671), - [sym__external_open_parenthesis] = ACTIONS(671), - [sym__external_open_brace] = ACTIONS(671), - [sym__external_open_bracket] = ACTIONS(671), - [sym__external_open_bracket2] = ACTIONS(671), + [sym__newline] = ACTIONS(665), + [sym__semicolon] = ACTIONS(665), + [sym__raw_string_literal] = ACTIONS(665), + [sym__external_else] = ACTIONS(665), + [sym__external_open_parenthesis] = ACTIONS(665), + [sym__external_open_brace] = ACTIONS(665), + [sym__external_close_brace] = ACTIONS(665), + [sym__external_open_bracket] = ACTIONS(665), + [sym__external_open_bracket2] = ACTIONS(665), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(675), - [sym_identifier] = ACTIONS(673), - [anon_sym_BSLASH] = ACTIONS(675), - [anon_sym_function] = ACTIONS(673), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_if] = ACTIONS(673), - [anon_sym_for] = ACTIONS(673), - [anon_sym_while] = ACTIONS(673), - [anon_sym_repeat] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(675), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_LT_DASH] = ACTIONS(675), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [anon_sym_COLON_EQ] = ACTIONS(675), - [anon_sym_DASH_GT] = ACTIONS(673), - [anon_sym_DASH_GT_GT] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_LT_EQ] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(675), - [anon_sym_EQ_EQ] = ACTIONS(675), - [anon_sym_BANG_EQ] = ACTIONS(675), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(675), - [anon_sym_STAR_STAR] = ACTIONS(675), - [anon_sym_CARET] = ACTIONS(675), - [aux_sym_binary_operator_token1] = ACTIONS(675), - [anon_sym_PIPE_GT] = ACTIONS(675), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_COLON_COLON] = ACTIONS(673), - [anon_sym_COLON_COLON_COLON] = ACTIONS(675), - [sym__hex_literal] = ACTIONS(675), - [sym__number_literal] = ACTIONS(673), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_dots] = ACTIONS(673), - [sym_dot_dot_i] = ACTIONS(675), - [sym_return] = ACTIONS(673), - [sym_next] = ACTIONS(673), - [sym_break] = ACTIONS(673), - [sym_true] = ACTIONS(673), - [sym_false] = ACTIONS(673), - [sym_null] = ACTIONS(673), - [sym_inf] = ACTIONS(673), - [sym_nan] = ACTIONS(673), - [anon_sym_NA] = ACTIONS(673), - [anon_sym_NA_integer_] = ACTIONS(673), - [anon_sym_NA_real_] = ACTIONS(673), - [anon_sym_NA_complex_] = ACTIONS(673), - [anon_sym_NA_character_] = ACTIONS(673), + [sym_identifier] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(657), + [anon_sym_function] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(659), + [anon_sym_if] = ACTIONS(659), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(659), + [anon_sym_repeat] = ACTIONS(659), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_PLUS] = ACTIONS(657), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(657), + [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_COLON_EQ] = ACTIONS(657), + [anon_sym_DASH_GT] = ACTIONS(659), + [anon_sym_DASH_GT_GT] = ACTIONS(657), + [anon_sym_PIPE] = ACTIONS(659), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_AMP_AMP] = ACTIONS(657), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_LT_EQ] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(659), + [anon_sym_GT_EQ] = ACTIONS(657), + [anon_sym_EQ_EQ] = ACTIONS(657), + [anon_sym_BANG_EQ] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(657), + [anon_sym_STAR_STAR] = ACTIONS(657), + [anon_sym_CARET] = ACTIONS(657), + [aux_sym_binary_operator_token1] = ACTIONS(657), + [anon_sym_PIPE_GT] = ACTIONS(657), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(657), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_COLON_COLON] = ACTIONS(661), + [anon_sym_COLON_COLON_COLON] = ACTIONS(663), + [sym__hex_literal] = ACTIONS(657), + [sym__number_literal] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(657), + [sym_dots] = ACTIONS(659), + [sym_dot_dot_i] = ACTIONS(657), + [sym_return] = ACTIONS(659), + [sym_next] = ACTIONS(659), + [sym_break] = ACTIONS(659), + [sym_true] = ACTIONS(659), + [sym_false] = ACTIONS(659), + [sym_null] = ACTIONS(659), + [sym_inf] = ACTIONS(659), + [sym_nan] = ACTIONS(659), + [anon_sym_NA] = ACTIONS(659), + [anon_sym_NA_integer_] = ACTIONS(659), + [anon_sym_NA_real_] = ACTIONS(659), + [anon_sym_NA_complex_] = ACTIONS(659), + [anon_sym_NA_character_] = ACTIONS(659), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(675), - [sym__semicolon] = ACTIONS(675), - [sym__raw_string_literal] = ACTIONS(675), - [sym__external_else] = ACTIONS(675), - [sym__external_open_parenthesis] = ACTIONS(675), - [sym__external_open_brace] = ACTIONS(675), - [sym__external_open_bracket] = ACTIONS(675), - [sym__external_open_bracket2] = ACTIONS(675), + [sym__newline] = ACTIONS(657), + [sym__semicolon] = ACTIONS(657), + [sym__raw_string_literal] = ACTIONS(657), + [sym__external_else] = ACTIONS(657), + [sym__external_open_parenthesis] = ACTIONS(657), + [sym__external_open_brace] = ACTIONS(657), + [sym__external_close_brace] = ACTIONS(657), + [sym__external_open_bracket] = ACTIONS(657), + [sym__external_open_bracket2] = ACTIONS(657), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(671), - [sym_identifier] = ACTIONS(669), - [anon_sym_BSLASH] = ACTIONS(671), - [anon_sym_function] = ACTIONS(669), - [anon_sym_EQ] = ACTIONS(669), - [anon_sym_if] = ACTIONS(669), - [anon_sym_for] = ACTIONS(669), - [anon_sym_while] = ACTIONS(669), - [anon_sym_repeat] = ACTIONS(669), - [anon_sym_QMARK] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(671), - [anon_sym_BANG] = ACTIONS(669), - [anon_sym_PLUS] = ACTIONS(671), - [anon_sym_DASH] = ACTIONS(669), - [anon_sym_LT_DASH] = ACTIONS(671), - [anon_sym_LT_LT_DASH] = ACTIONS(671), - [anon_sym_COLON_EQ] = ACTIONS(671), - [anon_sym_DASH_GT] = ACTIONS(669), - [anon_sym_DASH_GT_GT] = ACTIONS(671), - [anon_sym_PIPE] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_PIPE_PIPE] = ACTIONS(671), - [anon_sym_AMP_AMP] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_LT_EQ] = ACTIONS(671), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_EQ] = ACTIONS(671), - [anon_sym_EQ_EQ] = ACTIONS(671), - [anon_sym_BANG_EQ] = ACTIONS(671), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_SLASH] = ACTIONS(671), - [anon_sym_STAR_STAR] = ACTIONS(671), - [anon_sym_CARET] = ACTIONS(671), - [aux_sym_binary_operator_token1] = ACTIONS(671), - [anon_sym_PIPE_GT] = ACTIONS(671), - [anon_sym_COLON] = ACTIONS(669), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(671), - [anon_sym_COLON_COLON] = ACTIONS(669), - [anon_sym_COLON_COLON_COLON] = ACTIONS(671), - [sym__hex_literal] = ACTIONS(671), - [sym__number_literal] = ACTIONS(669), - [anon_sym_SQUOTE] = ACTIONS(671), - [anon_sym_DQUOTE] = ACTIONS(671), - [sym_dots] = ACTIONS(669), - [sym_dot_dot_i] = ACTIONS(671), - [sym_return] = ACTIONS(669), - [sym_next] = ACTIONS(669), - [sym_break] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_null] = ACTIONS(669), - [sym_inf] = ACTIONS(669), - [sym_nan] = ACTIONS(669), - [anon_sym_NA] = ACTIONS(669), - [anon_sym_NA_integer_] = ACTIONS(669), - [anon_sym_NA_real_] = ACTIONS(669), - [anon_sym_NA_complex_] = ACTIONS(669), - [anon_sym_NA_character_] = ACTIONS(669), + [aux_sym_function_definition_repeat1] = STATE(307), + [ts_builtin_sym_end] = ACTIONS(677), + [sym_identifier] = ACTIONS(679), + [anon_sym_BSLASH] = ACTIONS(677), + [anon_sym_function] = ACTIONS(679), + [anon_sym_EQ] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [anon_sym_repeat] = ACTIONS(679), + [anon_sym_QMARK] = ACTIONS(677), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_LT_DASH] = ACTIONS(677), + [anon_sym_LT_LT_DASH] = ACTIONS(677), + [anon_sym_COLON_EQ] = ACTIONS(677), + [anon_sym_DASH_GT] = ACTIONS(679), + [anon_sym_DASH_GT_GT] = ACTIONS(677), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(677), + [anon_sym_AMP_AMP] = ACTIONS(677), + [anon_sym_LT] = ACTIONS(679), + [anon_sym_LT_EQ] = ACTIONS(677), + [anon_sym_GT] = ACTIONS(679), + [anon_sym_GT_EQ] = ACTIONS(677), + [anon_sym_EQ_EQ] = ACTIONS(677), + [anon_sym_BANG_EQ] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_SLASH] = ACTIONS(677), + [anon_sym_STAR_STAR] = ACTIONS(677), + [anon_sym_CARET] = ACTIONS(677), + [aux_sym_binary_operator_token1] = ACTIONS(677), + [anon_sym_PIPE_GT] = ACTIONS(677), + [anon_sym_COLON] = ACTIONS(679), + [anon_sym_DOLLAR] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(677), + [sym__hex_literal] = ACTIONS(677), + [sym__number_literal] = ACTIONS(679), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(677), + [sym_dots] = ACTIONS(679), + [sym_dot_dot_i] = ACTIONS(677), + [sym_return] = ACTIONS(679), + [sym_next] = ACTIONS(679), + [sym_break] = ACTIONS(679), + [sym_true] = ACTIONS(679), + [sym_false] = ACTIONS(679), + [sym_null] = ACTIONS(679), + [sym_inf] = ACTIONS(679), + [sym_nan] = ACTIONS(679), + [anon_sym_NA] = ACTIONS(679), + [anon_sym_NA_integer_] = ACTIONS(679), + [anon_sym_NA_real_] = ACTIONS(679), + [anon_sym_NA_complex_] = ACTIONS(679), + [anon_sym_NA_character_] = ACTIONS(679), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(671), - [sym__semicolon] = ACTIONS(671), - [sym__raw_string_literal] = ACTIONS(671), - [sym__external_open_parenthesis] = ACTIONS(671), - [sym__external_open_brace] = ACTIONS(671), - [sym__external_open_bracket] = ACTIONS(671), - [sym__external_open_bracket2] = ACTIONS(671), + [sym__newline] = ACTIONS(681), + [sym__semicolon] = ACTIONS(677), + [sym__raw_string_literal] = ACTIONS(677), + [sym__external_else] = ACTIONS(677), + [sym__external_open_parenthesis] = ACTIONS(677), + [sym__external_open_brace] = ACTIONS(677), + [sym__external_open_bracket] = ACTIONS(677), + [sym__external_open_bracket2] = ACTIONS(677), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(637), - [sym_identifier] = ACTIONS(639), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_function] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_repeat] = ACTIONS(639), - [anon_sym_QMARK] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_LT_DASH] = ACTIONS(637), - [anon_sym_LT_LT_DASH] = ACTIONS(637), - [anon_sym_COLON_EQ] = ACTIONS(637), - [anon_sym_DASH_GT] = ACTIONS(639), - [anon_sym_DASH_GT_GT] = ACTIONS(637), - [anon_sym_PIPE] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(637), - [anon_sym_AMP_AMP] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_LT_EQ] = ACTIONS(637), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_EQ] = ACTIONS(637), - [anon_sym_EQ_EQ] = ACTIONS(637), - [anon_sym_BANG_EQ] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_SLASH] = ACTIONS(637), - [anon_sym_STAR_STAR] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [aux_sym_binary_operator_token1] = ACTIONS(637), - [anon_sym_PIPE_GT] = ACTIONS(637), - [anon_sym_COLON] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(637), - [anon_sym_COLON_COLON] = ACTIONS(639), - [anon_sym_COLON_COLON_COLON] = ACTIONS(637), - [sym__hex_literal] = ACTIONS(637), - [sym__number_literal] = ACTIONS(639), - [anon_sym_SQUOTE] = ACTIONS(637), - [anon_sym_DQUOTE] = ACTIONS(637), - [sym_dots] = ACTIONS(639), - [sym_dot_dot_i] = ACTIONS(637), - [sym_return] = ACTIONS(639), - [sym_next] = ACTIONS(639), - [sym_break] = ACTIONS(639), - [sym_true] = ACTIONS(639), - [sym_false] = ACTIONS(639), - [sym_null] = ACTIONS(639), - [sym_inf] = ACTIONS(639), - [sym_nan] = ACTIONS(639), - [anon_sym_NA] = ACTIONS(639), - [anon_sym_NA_integer_] = ACTIONS(639), - [anon_sym_NA_real_] = ACTIONS(639), - [anon_sym_NA_complex_] = ACTIONS(639), - [anon_sym_NA_character_] = ACTIONS(639), + [sym_identifier] = ACTIONS(651), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_function] = ACTIONS(651), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_if] = ACTIONS(651), + [anon_sym_for] = ACTIONS(651), + [anon_sym_while] = ACTIONS(651), + [anon_sym_repeat] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_PLUS] = ACTIONS(649), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_LT_DASH] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(649), + [anon_sym_COLON_EQ] = ACTIONS(649), + [anon_sym_DASH_GT] = ACTIONS(651), + [anon_sym_DASH_GT_GT] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(649), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(649), + [anon_sym_EQ_EQ] = ACTIONS(649), + [anon_sym_BANG_EQ] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_STAR_STAR] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(649), + [aux_sym_binary_operator_token1] = ACTIONS(649), + [anon_sym_PIPE_GT] = ACTIONS(649), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_DOLLAR] = ACTIONS(649), + [anon_sym_AT] = ACTIONS(649), + [anon_sym_COLON_COLON] = ACTIONS(651), + [anon_sym_COLON_COLON_COLON] = ACTIONS(649), + [sym__hex_literal] = ACTIONS(649), + [sym__number_literal] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(649), + [sym_dots] = ACTIONS(651), + [sym_dot_dot_i] = ACTIONS(649), + [sym_return] = ACTIONS(651), + [sym_next] = ACTIONS(651), + [sym_break] = ACTIONS(651), + [sym_true] = ACTIONS(651), + [sym_false] = ACTIONS(651), + [sym_null] = ACTIONS(651), + [sym_inf] = ACTIONS(651), + [sym_nan] = ACTIONS(651), + [anon_sym_NA] = ACTIONS(651), + [anon_sym_NA_integer_] = ACTIONS(651), + [anon_sym_NA_real_] = ACTIONS(651), + [anon_sym_NA_complex_] = ACTIONS(651), + [anon_sym_NA_character_] = ACTIONS(651), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(637), - [sym__semicolon] = ACTIONS(637), - [sym__raw_string_literal] = ACTIONS(637), - [sym__external_open_parenthesis] = ACTIONS(637), - [sym__external_open_brace] = ACTIONS(637), - [sym__external_open_bracket] = ACTIONS(637), - [sym__external_open_bracket2] = ACTIONS(637), + [sym__newline] = ACTIONS(649), + [sym__semicolon] = ACTIONS(649), + [sym__raw_string_literal] = ACTIONS(649), + [sym__external_open_parenthesis] = ACTIONS(649), + [sym__external_open_brace] = ACTIONS(649), + [sym__external_close_brace] = ACTIONS(649), + [sym__external_open_bracket] = ACTIONS(649), + [sym__external_open_bracket2] = ACTIONS(649), }, [309] = { - [sym_identifier] = ACTIONS(645), - [anon_sym_BSLASH] = ACTIONS(647), - [anon_sym_function] = ACTIONS(645), - [anon_sym_EQ] = ACTIONS(645), - [anon_sym_if] = ACTIONS(645), - [anon_sym_for] = ACTIONS(645), - [anon_sym_while] = ACTIONS(645), - [anon_sym_repeat] = ACTIONS(645), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [anon_sym_COLON_EQ] = ACTIONS(647), - [anon_sym_DASH_GT] = ACTIONS(645), - [anon_sym_DASH_GT_GT] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_EQ] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_GT_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [aux_sym_binary_operator_token1] = ACTIONS(647), - [anon_sym_PIPE_GT] = ACTIONS(647), - [anon_sym_COLON] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_AT] = ACTIONS(647), - [anon_sym_COLON_COLON] = ACTIONS(649), - [anon_sym_COLON_COLON_COLON] = ACTIONS(651), - [sym__hex_literal] = ACTIONS(647), - [sym__number_literal] = ACTIONS(645), - [anon_sym_SQUOTE] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [sym_dots] = ACTIONS(645), - [sym_dot_dot_i] = ACTIONS(647), - [sym_return] = ACTIONS(645), - [sym_next] = ACTIONS(645), - [sym_break] = ACTIONS(645), - [sym_true] = ACTIONS(645), - [sym_false] = ACTIONS(645), - [sym_null] = ACTIONS(645), - [sym_inf] = ACTIONS(645), - [sym_nan] = ACTIONS(645), - [anon_sym_NA] = ACTIONS(645), - [anon_sym_NA_integer_] = ACTIONS(645), - [anon_sym_NA_real_] = ACTIONS(645), - [anon_sym_NA_complex_] = ACTIONS(645), - [anon_sym_NA_character_] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(647), - [sym__semicolon] = ACTIONS(647), - [sym__raw_string_literal] = ACTIONS(647), - [sym__external_open_parenthesis] = ACTIONS(647), - [sym__external_open_brace] = ACTIONS(647), - [sym__external_close_brace] = ACTIONS(647), - [sym__external_open_bracket] = ACTIONS(647), - [sym__external_open_bracket2] = ACTIONS(647), - }, - [310] = { - [ts_builtin_sym_end] = ACTIONS(643), [sym_identifier] = ACTIONS(641), [anon_sym_BSLASH] = ACTIONS(643), [anon_sym_function] = ACTIONS(641), @@ -29168,8 +29101,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(641), [anon_sym_DOLLAR] = ACTIONS(643), [anon_sym_AT] = ACTIONS(643), - [anon_sym_COLON_COLON] = ACTIONS(641), - [anon_sym_COLON_COLON_COLON] = ACTIONS(643), + [anon_sym_L] = ACTIONS(684), + [anon_sym_i] = ACTIONS(686), [sym__hex_literal] = ACTIONS(643), [sym__number_literal] = ACTIONS(641), [anon_sym_SQUOTE] = ACTIONS(643), @@ -29195,700 +29128,633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal] = ACTIONS(643), [sym__external_open_parenthesis] = ACTIONS(643), [sym__external_open_brace] = ACTIONS(643), + [sym__external_close_brace] = ACTIONS(643), [sym__external_open_bracket] = ACTIONS(643), [sym__external_open_bracket2] = ACTIONS(643), }, + [310] = { + [sym_identifier] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(657), + [anon_sym_function] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(659), + [anon_sym_if] = ACTIONS(659), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(659), + [anon_sym_repeat] = ACTIONS(659), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_PLUS] = ACTIONS(657), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(657), + [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_COLON_EQ] = ACTIONS(657), + [anon_sym_DASH_GT] = ACTIONS(659), + [anon_sym_DASH_GT_GT] = ACTIONS(657), + [anon_sym_PIPE] = ACTIONS(659), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_AMP_AMP] = ACTIONS(657), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_LT_EQ] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(659), + [anon_sym_GT_EQ] = ACTIONS(657), + [anon_sym_EQ_EQ] = ACTIONS(657), + [anon_sym_BANG_EQ] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(657), + [anon_sym_STAR_STAR] = ACTIONS(657), + [anon_sym_CARET] = ACTIONS(657), + [aux_sym_binary_operator_token1] = ACTIONS(657), + [anon_sym_PIPE_GT] = ACTIONS(657), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(657), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_COLON_COLON] = ACTIONS(661), + [anon_sym_COLON_COLON_COLON] = ACTIONS(663), + [sym__hex_literal] = ACTIONS(657), + [sym__number_literal] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(657), + [sym_dots] = ACTIONS(659), + [sym_dot_dot_i] = ACTIONS(657), + [sym_return] = ACTIONS(659), + [sym_next] = ACTIONS(659), + [sym_break] = ACTIONS(659), + [sym_true] = ACTIONS(659), + [sym_false] = ACTIONS(659), + [sym_null] = ACTIONS(659), + [sym_inf] = ACTIONS(659), + [sym_nan] = ACTIONS(659), + [anon_sym_NA] = ACTIONS(659), + [anon_sym_NA_integer_] = ACTIONS(659), + [anon_sym_NA_real_] = ACTIONS(659), + [anon_sym_NA_complex_] = ACTIONS(659), + [anon_sym_NA_character_] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(657), + [sym__semicolon] = ACTIONS(657), + [sym__raw_string_literal] = ACTIONS(657), + [sym__external_open_parenthesis] = ACTIONS(657), + [sym__external_open_brace] = ACTIONS(657), + [sym__external_close_brace] = ACTIONS(657), + [sym__external_open_bracket] = ACTIONS(657), + [sym__external_open_bracket2] = ACTIONS(657), + }, [311] = { - [sym_identifier] = ACTIONS(669), - [anon_sym_BSLASH] = ACTIONS(671), - [anon_sym_function] = ACTIONS(669), - [anon_sym_EQ] = ACTIONS(669), - [anon_sym_if] = ACTIONS(669), - [anon_sym_for] = ACTIONS(669), - [anon_sym_while] = ACTIONS(669), - [anon_sym_repeat] = ACTIONS(669), - [anon_sym_QMARK] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(671), - [anon_sym_BANG] = ACTIONS(669), - [anon_sym_PLUS] = ACTIONS(671), - [anon_sym_DASH] = ACTIONS(669), - [anon_sym_LT_DASH] = ACTIONS(671), - [anon_sym_LT_LT_DASH] = ACTIONS(671), - [anon_sym_COLON_EQ] = ACTIONS(671), - [anon_sym_DASH_GT] = ACTIONS(669), - [anon_sym_DASH_GT_GT] = ACTIONS(671), - [anon_sym_PIPE] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_PIPE_PIPE] = ACTIONS(671), - [anon_sym_AMP_AMP] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_LT_EQ] = ACTIONS(671), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_EQ] = ACTIONS(671), - [anon_sym_EQ_EQ] = ACTIONS(671), - [anon_sym_BANG_EQ] = ACTIONS(671), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_SLASH] = ACTIONS(671), - [anon_sym_STAR_STAR] = ACTIONS(671), - [anon_sym_CARET] = ACTIONS(671), - [aux_sym_binary_operator_token1] = ACTIONS(671), - [anon_sym_PIPE_GT] = ACTIONS(671), - [anon_sym_COLON] = ACTIONS(669), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(671), - [anon_sym_COLON_COLON] = ACTIONS(669), - [anon_sym_COLON_COLON_COLON] = ACTIONS(671), - [sym__hex_literal] = ACTIONS(671), - [sym__number_literal] = ACTIONS(669), - [anon_sym_SQUOTE] = ACTIONS(671), - [anon_sym_DQUOTE] = ACTIONS(671), - [sym_dots] = ACTIONS(669), - [sym_dot_dot_i] = ACTIONS(671), - [sym_return] = ACTIONS(669), - [sym_next] = ACTIONS(669), - [sym_break] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_null] = ACTIONS(669), - [sym_inf] = ACTIONS(669), - [sym_nan] = ACTIONS(669), - [anon_sym_NA] = ACTIONS(669), - [anon_sym_NA_integer_] = ACTIONS(669), - [anon_sym_NA_real_] = ACTIONS(669), - [anon_sym_NA_complex_] = ACTIONS(669), - [anon_sym_NA_character_] = ACTIONS(669), + [sym_identifier] = ACTIONS(667), + [anon_sym_BSLASH] = ACTIONS(665), + [anon_sym_function] = ACTIONS(667), + [anon_sym_EQ] = ACTIONS(667), + [anon_sym_if] = ACTIONS(667), + [anon_sym_for] = ACTIONS(667), + [anon_sym_while] = ACTIONS(667), + [anon_sym_repeat] = ACTIONS(667), + [anon_sym_QMARK] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_LT_DASH] = ACTIONS(665), + [anon_sym_LT_LT_DASH] = ACTIONS(665), + [anon_sym_COLON_EQ] = ACTIONS(665), + [anon_sym_DASH_GT] = ACTIONS(667), + [anon_sym_DASH_GT_GT] = ACTIONS(665), + [anon_sym_PIPE] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_PIPE_PIPE] = ACTIONS(665), + [anon_sym_AMP_AMP] = ACTIONS(665), + [anon_sym_LT] = ACTIONS(667), + [anon_sym_LT_EQ] = ACTIONS(665), + [anon_sym_GT] = ACTIONS(667), + [anon_sym_GT_EQ] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(665), + [anon_sym_BANG_EQ] = ACTIONS(665), + [anon_sym_STAR] = ACTIONS(667), + [anon_sym_SLASH] = ACTIONS(665), + [anon_sym_STAR_STAR] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(665), + [aux_sym_binary_operator_token1] = ACTIONS(665), + [anon_sym_PIPE_GT] = ACTIONS(665), + [anon_sym_COLON] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(665), + [anon_sym_COLON_COLON] = ACTIONS(667), + [anon_sym_COLON_COLON_COLON] = ACTIONS(665), + [sym__hex_literal] = ACTIONS(665), + [sym__number_literal] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym_dots] = ACTIONS(667), + [sym_dot_dot_i] = ACTIONS(665), + [sym_return] = ACTIONS(667), + [sym_next] = ACTIONS(667), + [sym_break] = ACTIONS(667), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [sym_null] = ACTIONS(667), + [sym_inf] = ACTIONS(667), + [sym_nan] = ACTIONS(667), + [anon_sym_NA] = ACTIONS(667), + [anon_sym_NA_integer_] = ACTIONS(667), + [anon_sym_NA_real_] = ACTIONS(667), + [anon_sym_NA_complex_] = ACTIONS(667), + [anon_sym_NA_character_] = ACTIONS(667), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(671), - [sym__semicolon] = ACTIONS(671), - [sym__raw_string_literal] = ACTIONS(671), - [sym__external_open_parenthesis] = ACTIONS(671), - [sym__external_open_brace] = ACTIONS(671), - [sym__external_close_brace] = ACTIONS(671), - [sym__external_open_bracket] = ACTIONS(671), - [sym__external_open_bracket2] = ACTIONS(671), + [sym__newline] = ACTIONS(665), + [sym__semicolon] = ACTIONS(665), + [sym__raw_string_literal] = ACTIONS(665), + [sym__external_open_parenthesis] = ACTIONS(665), + [sym__external_open_brace] = ACTIONS(665), + [sym__external_close_brace] = ACTIONS(665), + [sym__external_open_bracket] = ACTIONS(665), + [sym__external_open_bracket2] = ACTIONS(665), }, [312] = { - [sym_identifier] = ACTIONS(673), - [anon_sym_BSLASH] = ACTIONS(675), - [anon_sym_function] = ACTIONS(673), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_if] = ACTIONS(673), - [anon_sym_for] = ACTIONS(673), - [anon_sym_while] = ACTIONS(673), - [anon_sym_repeat] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(675), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_LT_DASH] = ACTIONS(675), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [anon_sym_COLON_EQ] = ACTIONS(675), - [anon_sym_DASH_GT] = ACTIONS(673), - [anon_sym_DASH_GT_GT] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_LT_EQ] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(675), - [anon_sym_EQ_EQ] = ACTIONS(675), - [anon_sym_BANG_EQ] = ACTIONS(675), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(675), - [anon_sym_STAR_STAR] = ACTIONS(675), - [anon_sym_CARET] = ACTIONS(675), - [aux_sym_binary_operator_token1] = ACTIONS(675), - [anon_sym_PIPE_GT] = ACTIONS(675), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_COLON_COLON] = ACTIONS(673), - [anon_sym_COLON_COLON_COLON] = ACTIONS(675), - [sym__hex_literal] = ACTIONS(675), - [sym__number_literal] = ACTIONS(673), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_dots] = ACTIONS(673), - [sym_dot_dot_i] = ACTIONS(675), - [sym_return] = ACTIONS(673), - [sym_next] = ACTIONS(673), - [sym_break] = ACTIONS(673), - [sym_true] = ACTIONS(673), - [sym_false] = ACTIONS(673), - [sym_null] = ACTIONS(673), - [sym_inf] = ACTIONS(673), - [sym_nan] = ACTIONS(673), - [anon_sym_NA] = ACTIONS(673), - [anon_sym_NA_integer_] = ACTIONS(673), - [anon_sym_NA_real_] = ACTIONS(673), - [anon_sym_NA_complex_] = ACTIONS(673), - [anon_sym_NA_character_] = ACTIONS(673), + [ts_builtin_sym_end] = ACTIONS(669), + [sym_identifier] = ACTIONS(671), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_function] = ACTIONS(671), + [anon_sym_EQ] = ACTIONS(671), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(671), + [anon_sym_while] = ACTIONS(671), + [anon_sym_repeat] = ACTIONS(671), + [anon_sym_QMARK] = ACTIONS(669), + [anon_sym_TILDE] = ACTIONS(669), + [anon_sym_BANG] = ACTIONS(671), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_COLON_EQ] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(671), + [anon_sym_DASH_GT_GT] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(671), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(671), + [anon_sym_LT_EQ] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(669), + [anon_sym_EQ_EQ] = ACTIONS(669), + [anon_sym_BANG_EQ] = ACTIONS(669), + [anon_sym_STAR] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(669), + [anon_sym_STAR_STAR] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(669), + [aux_sym_binary_operator_token1] = ACTIONS(669), + [anon_sym_PIPE_GT] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_AT] = ACTIONS(669), + [anon_sym_COLON_COLON] = ACTIONS(671), + [anon_sym_COLON_COLON_COLON] = ACTIONS(669), + [sym__hex_literal] = ACTIONS(669), + [sym__number_literal] = ACTIONS(671), + [anon_sym_SQUOTE] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(669), + [sym_dots] = ACTIONS(671), + [sym_dot_dot_i] = ACTIONS(669), + [sym_return] = ACTIONS(671), + [sym_next] = ACTIONS(671), + [sym_break] = ACTIONS(671), + [sym_true] = ACTIONS(671), + [sym_false] = ACTIONS(671), + [sym_null] = ACTIONS(671), + [sym_inf] = ACTIONS(671), + [sym_nan] = ACTIONS(671), + [anon_sym_NA] = ACTIONS(671), + [anon_sym_NA_integer_] = ACTIONS(671), + [anon_sym_NA_real_] = ACTIONS(671), + [anon_sym_NA_complex_] = ACTIONS(671), + [anon_sym_NA_character_] = ACTIONS(671), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(675), - [sym__semicolon] = ACTIONS(675), - [sym__raw_string_literal] = ACTIONS(675), - [sym__external_open_parenthesis] = ACTIONS(675), - [sym__external_open_brace] = ACTIONS(675), - [sym__external_close_brace] = ACTIONS(675), - [sym__external_open_bracket] = ACTIONS(675), - [sym__external_open_bracket2] = ACTIONS(675), + [sym__newline] = ACTIONS(669), + [sym__semicolon] = ACTIONS(669), + [sym__raw_string_literal] = ACTIONS(669), + [sym__external_open_parenthesis] = ACTIONS(669), + [sym__external_open_brace] = ACTIONS(669), + [sym__external_open_bracket] = ACTIONS(669), + [sym__external_open_bracket2] = ACTIONS(669), }, [313] = { - [sym_identifier] = ACTIONS(653), - [anon_sym_BSLASH] = ACTIONS(655), - [anon_sym_function] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(653), - [anon_sym_if] = ACTIONS(653), - [anon_sym_for] = ACTIONS(653), - [anon_sym_while] = ACTIONS(653), - [anon_sym_repeat] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(655), - [anon_sym_TILDE] = ACTIONS(655), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(655), - [anon_sym_COLON_EQ] = ACTIONS(655), - [anon_sym_DASH_GT] = ACTIONS(653), - [anon_sym_DASH_GT_GT] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PIPE_PIPE] = ACTIONS(655), - [anon_sym_AMP_AMP] = ACTIONS(655), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_LT_EQ] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_GT_EQ] = ACTIONS(655), - [anon_sym_EQ_EQ] = ACTIONS(655), - [anon_sym_BANG_EQ] = ACTIONS(655), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(655), - [anon_sym_STAR_STAR] = ACTIONS(655), - [anon_sym_CARET] = ACTIONS(655), - [aux_sym_binary_operator_token1] = ACTIONS(655), - [anon_sym_PIPE_GT] = ACTIONS(655), - [anon_sym_COLON] = ACTIONS(653), - [anon_sym_DOLLAR] = ACTIONS(655), - [anon_sym_AT] = ACTIONS(655), - [anon_sym_L] = ACTIONS(677), - [anon_sym_i] = ACTIONS(679), - [sym__hex_literal] = ACTIONS(655), - [sym__number_literal] = ACTIONS(653), - [anon_sym_SQUOTE] = ACTIONS(655), - [anon_sym_DQUOTE] = ACTIONS(655), - [sym_dots] = ACTIONS(653), - [sym_dot_dot_i] = ACTIONS(655), - [sym_return] = ACTIONS(653), - [sym_next] = ACTIONS(653), - [sym_break] = ACTIONS(653), - [sym_true] = ACTIONS(653), - [sym_false] = ACTIONS(653), - [sym_null] = ACTIONS(653), - [sym_inf] = ACTIONS(653), - [sym_nan] = ACTIONS(653), - [anon_sym_NA] = ACTIONS(653), - [anon_sym_NA_integer_] = ACTIONS(653), - [anon_sym_NA_real_] = ACTIONS(653), - [anon_sym_NA_complex_] = ACTIONS(653), - [anon_sym_NA_character_] = ACTIONS(653), + [ts_builtin_sym_end] = ACTIONS(653), + [sym_identifier] = ACTIONS(655), + [anon_sym_BSLASH] = ACTIONS(653), + [anon_sym_function] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_if] = ACTIONS(655), + [anon_sym_for] = ACTIONS(655), + [anon_sym_while] = ACTIONS(655), + [anon_sym_repeat] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_LT_DASH] = ACTIONS(653), + [anon_sym_LT_LT_DASH] = ACTIONS(653), + [anon_sym_COLON_EQ] = ACTIONS(653), + [anon_sym_DASH_GT] = ACTIONS(655), + [anon_sym_DASH_GT_GT] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(655), + [anon_sym_LT_EQ] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(653), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(655), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_STAR_STAR] = ACTIONS(653), + [anon_sym_CARET] = ACTIONS(653), + [aux_sym_binary_operator_token1] = ACTIONS(653), + [anon_sym_PIPE_GT] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_COLON_COLON] = ACTIONS(655), + [anon_sym_COLON_COLON_COLON] = ACTIONS(653), + [sym__hex_literal] = ACTIONS(653), + [sym__number_literal] = ACTIONS(655), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_DQUOTE] = ACTIONS(653), + [sym_dots] = ACTIONS(655), + [sym_dot_dot_i] = ACTIONS(653), + [sym_return] = ACTIONS(655), + [sym_next] = ACTIONS(655), + [sym_break] = ACTIONS(655), + [sym_true] = ACTIONS(655), + [sym_false] = ACTIONS(655), + [sym_null] = ACTIONS(655), + [sym_inf] = ACTIONS(655), + [sym_nan] = ACTIONS(655), + [anon_sym_NA] = ACTIONS(655), + [anon_sym_NA_integer_] = ACTIONS(655), + [anon_sym_NA_real_] = ACTIONS(655), + [anon_sym_NA_complex_] = ACTIONS(655), + [anon_sym_NA_character_] = ACTIONS(655), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(655), - [sym__semicolon] = ACTIONS(655), - [sym__raw_string_literal] = ACTIONS(655), - [sym__external_open_parenthesis] = ACTIONS(655), - [sym__external_open_brace] = ACTIONS(655), - [sym__external_close_brace] = ACTIONS(655), - [sym__external_open_bracket] = ACTIONS(655), - [sym__external_open_bracket2] = ACTIONS(655), + [sym__newline] = ACTIONS(653), + [sym__semicolon] = ACTIONS(653), + [sym__raw_string_literal] = ACTIONS(653), + [sym__external_open_parenthesis] = ACTIONS(653), + [sym__external_open_brace] = ACTIONS(653), + [sym__external_open_bracket] = ACTIONS(653), + [sym__external_open_bracket2] = ACTIONS(653), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(633), - [sym_identifier] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(633), - [anon_sym_function] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(635), - [anon_sym_if] = ACTIONS(635), - [anon_sym_for] = ACTIONS(635), - [anon_sym_while] = ACTIONS(635), - [anon_sym_repeat] = ACTIONS(635), - [anon_sym_QMARK] = ACTIONS(633), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(633), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_LT_DASH] = ACTIONS(633), - [anon_sym_LT_LT_DASH] = ACTIONS(633), - [anon_sym_COLON_EQ] = ACTIONS(633), - [anon_sym_DASH_GT] = ACTIONS(635), - [anon_sym_DASH_GT_GT] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_AMP] = ACTIONS(635), - [anon_sym_PIPE_PIPE] = ACTIONS(633), - [anon_sym_AMP_AMP] = ACTIONS(633), - [anon_sym_LT] = ACTIONS(635), - [anon_sym_LT_EQ] = ACTIONS(633), - [anon_sym_GT] = ACTIONS(635), - [anon_sym_GT_EQ] = ACTIONS(633), - [anon_sym_EQ_EQ] = ACTIONS(633), - [anon_sym_BANG_EQ] = ACTIONS(633), - [anon_sym_STAR] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(633), - [anon_sym_STAR_STAR] = ACTIONS(633), - [anon_sym_CARET] = ACTIONS(633), - [aux_sym_binary_operator_token1] = ACTIONS(633), - [anon_sym_PIPE_GT] = ACTIONS(633), - [anon_sym_COLON] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(633), - [anon_sym_COLON_COLON] = ACTIONS(635), - [anon_sym_COLON_COLON_COLON] = ACTIONS(633), - [sym__hex_literal] = ACTIONS(633), - [sym__number_literal] = ACTIONS(635), - [anon_sym_SQUOTE] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(633), - [sym_dots] = ACTIONS(635), - [sym_dot_dot_i] = ACTIONS(633), - [sym_return] = ACTIONS(635), - [sym_next] = ACTIONS(635), - [sym_break] = ACTIONS(635), - [sym_true] = ACTIONS(635), - [sym_false] = ACTIONS(635), - [sym_null] = ACTIONS(635), - [sym_inf] = ACTIONS(635), - [sym_nan] = ACTIONS(635), - [anon_sym_NA] = ACTIONS(635), - [anon_sym_NA_integer_] = ACTIONS(635), - [anon_sym_NA_real_] = ACTIONS(635), - [anon_sym_NA_complex_] = ACTIONS(635), - [anon_sym_NA_character_] = ACTIONS(635), + [sym_identifier] = ACTIONS(651), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_function] = ACTIONS(651), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_if] = ACTIONS(651), + [anon_sym_for] = ACTIONS(651), + [anon_sym_while] = ACTIONS(651), + [anon_sym_repeat] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_PLUS] = ACTIONS(649), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_LT_DASH] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(649), + [anon_sym_COLON_EQ] = ACTIONS(649), + [anon_sym_DASH_GT] = ACTIONS(651), + [anon_sym_DASH_GT_GT] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(649), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(649), + [anon_sym_EQ_EQ] = ACTIONS(649), + [anon_sym_BANG_EQ] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_STAR_STAR] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(649), + [aux_sym_binary_operator_token1] = ACTIONS(649), + [anon_sym_PIPE_GT] = ACTIONS(649), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_DOLLAR] = ACTIONS(649), + [anon_sym_AT] = ACTIONS(649), + [anon_sym_COLON_COLON] = ACTIONS(651), + [anon_sym_COLON_COLON_COLON] = ACTIONS(649), + [sym__hex_literal] = ACTIONS(649), + [sym__number_literal] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(649), + [sym_dots] = ACTIONS(651), + [sym_dot_dot_i] = ACTIONS(649), + [sym_return] = ACTIONS(651), + [sym_next] = ACTIONS(651), + [sym_break] = ACTIONS(651), + [sym_true] = ACTIONS(651), + [sym_false] = ACTIONS(651), + [sym_null] = ACTIONS(651), + [sym_inf] = ACTIONS(651), + [sym_nan] = ACTIONS(651), + [anon_sym_NA] = ACTIONS(651), + [anon_sym_NA_integer_] = ACTIONS(651), + [anon_sym_NA_real_] = ACTIONS(651), + [anon_sym_NA_complex_] = ACTIONS(651), + [anon_sym_NA_character_] = ACTIONS(651), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(633), - [sym__semicolon] = ACTIONS(633), - [sym__raw_string_literal] = ACTIONS(633), - [sym__external_open_parenthesis] = ACTIONS(633), - [sym__external_open_brace] = ACTIONS(633), - [sym__external_open_bracket] = ACTIONS(633), - [sym__external_open_bracket2] = ACTIONS(633), + [sym__newline] = ACTIONS(649), + [sym__semicolon] = ACTIONS(649), + [sym__raw_string_literal] = ACTIONS(649), + [sym__external_open_parenthesis] = ACTIONS(649), + [sym__external_open_brace] = ACTIONS(649), + [sym__external_close_brace] = ACTIONS(649), + [sym__external_open_bracket] = ACTIONS(649), + [sym__external_open_bracket2] = ACTIONS(649), }, [315] = { - [sym_identifier] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_function] = ACTIONS(661), - [anon_sym_EQ] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [anon_sym_LT_LT_DASH] = ACTIONS(663), - [anon_sym_COLON_EQ] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(661), - [anon_sym_DASH_GT_GT] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(661), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_STAR] = ACTIONS(661), - [anon_sym_SLASH] = ACTIONS(663), - [anon_sym_STAR_STAR] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(663), - [aux_sym_binary_operator_token1] = ACTIONS(663), - [anon_sym_PIPE_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(661), - [anon_sym_COLON_COLON_COLON] = ACTIONS(663), - [sym__hex_literal] = ACTIONS(663), - [sym__number_literal] = ACTIONS(661), - [anon_sym_SQUOTE] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [sym_dots] = ACTIONS(661), - [sym_dot_dot_i] = ACTIONS(663), - [sym_return] = ACTIONS(661), - [sym_next] = ACTIONS(661), - [sym_break] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_inf] = ACTIONS(661), - [sym_nan] = ACTIONS(661), - [anon_sym_NA] = ACTIONS(661), - [anon_sym_NA_integer_] = ACTIONS(661), - [anon_sym_NA_real_] = ACTIONS(661), - [anon_sym_NA_complex_] = ACTIONS(661), - [anon_sym_NA_character_] = ACTIONS(661), + [ts_builtin_sym_end] = ACTIONS(665), + [sym_identifier] = ACTIONS(667), + [anon_sym_BSLASH] = ACTIONS(665), + [anon_sym_function] = ACTIONS(667), + [anon_sym_EQ] = ACTIONS(667), + [anon_sym_if] = ACTIONS(667), + [anon_sym_for] = ACTIONS(667), + [anon_sym_while] = ACTIONS(667), + [anon_sym_repeat] = ACTIONS(667), + [anon_sym_QMARK] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_LT_DASH] = ACTIONS(665), + [anon_sym_LT_LT_DASH] = ACTIONS(665), + [anon_sym_COLON_EQ] = ACTIONS(665), + [anon_sym_DASH_GT] = ACTIONS(667), + [anon_sym_DASH_GT_GT] = ACTIONS(665), + [anon_sym_PIPE] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_PIPE_PIPE] = ACTIONS(665), + [anon_sym_AMP_AMP] = ACTIONS(665), + [anon_sym_LT] = ACTIONS(667), + [anon_sym_LT_EQ] = ACTIONS(665), + [anon_sym_GT] = ACTIONS(667), + [anon_sym_GT_EQ] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(665), + [anon_sym_BANG_EQ] = ACTIONS(665), + [anon_sym_STAR] = ACTIONS(667), + [anon_sym_SLASH] = ACTIONS(665), + [anon_sym_STAR_STAR] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(665), + [aux_sym_binary_operator_token1] = ACTIONS(665), + [anon_sym_PIPE_GT] = ACTIONS(665), + [anon_sym_COLON] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(665), + [anon_sym_COLON_COLON] = ACTIONS(667), + [anon_sym_COLON_COLON_COLON] = ACTIONS(665), + [sym__hex_literal] = ACTIONS(665), + [sym__number_literal] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym_dots] = ACTIONS(667), + [sym_dot_dot_i] = ACTIONS(665), + [sym_return] = ACTIONS(667), + [sym_next] = ACTIONS(667), + [sym_break] = ACTIONS(667), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [sym_null] = ACTIONS(667), + [sym_inf] = ACTIONS(667), + [sym_nan] = ACTIONS(667), + [anon_sym_NA] = ACTIONS(667), + [anon_sym_NA_integer_] = ACTIONS(667), + [anon_sym_NA_real_] = ACTIONS(667), + [anon_sym_NA_complex_] = ACTIONS(667), + [anon_sym_NA_character_] = ACTIONS(667), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(663), - [sym__semicolon] = ACTIONS(663), - [sym__raw_string_literal] = ACTIONS(663), - [sym__external_open_parenthesis] = ACTIONS(663), - [sym__external_open_brace] = ACTIONS(663), - [sym__external_close_brace] = ACTIONS(663), - [sym__external_open_bracket] = ACTIONS(663), - [sym__external_open_bracket2] = ACTIONS(663), + [sym__newline] = ACTIONS(665), + [sym__semicolon] = ACTIONS(665), + [sym__raw_string_literal] = ACTIONS(665), + [sym__external_open_parenthesis] = ACTIONS(665), + [sym__external_open_brace] = ACTIONS(665), + [sym__external_open_bracket] = ACTIONS(665), + [sym__external_open_bracket2] = ACTIONS(665), }, [316] = { - [aux_sym_function_definition_repeat1] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(681), - [sym_identifier] = ACTIONS(683), - [anon_sym_BSLASH] = ACTIONS(681), - [anon_sym_function] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [anon_sym_repeat] = ACTIONS(683), - [anon_sym_QMARK] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(683), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_LT_DASH] = ACTIONS(681), - [anon_sym_LT_LT_DASH] = ACTIONS(681), - [anon_sym_COLON_EQ] = ACTIONS(681), - [anon_sym_DASH_GT] = ACTIONS(683), - [anon_sym_DASH_GT_GT] = ACTIONS(681), - [anon_sym_PIPE] = ACTIONS(683), - [anon_sym_AMP] = ACTIONS(683), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [anon_sym_AMP_AMP] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(683), - [anon_sym_LT_EQ] = ACTIONS(681), - [anon_sym_GT] = ACTIONS(683), - [anon_sym_GT_EQ] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(681), - [anon_sym_BANG_EQ] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_SLASH] = ACTIONS(681), - [anon_sym_STAR_STAR] = ACTIONS(681), - [anon_sym_CARET] = ACTIONS(681), - [aux_sym_binary_operator_token1] = ACTIONS(681), - [anon_sym_PIPE_GT] = ACTIONS(681), - [anon_sym_COLON] = ACTIONS(683), - [anon_sym_DOLLAR] = ACTIONS(681), - [anon_sym_AT] = ACTIONS(681), - [sym__hex_literal] = ACTIONS(681), - [sym__number_literal] = ACTIONS(683), - [anon_sym_SQUOTE] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_dots] = ACTIONS(683), - [sym_dot_dot_i] = ACTIONS(681), - [sym_return] = ACTIONS(683), - [sym_next] = ACTIONS(683), - [sym_break] = ACTIONS(683), - [sym_true] = ACTIONS(683), - [sym_false] = ACTIONS(683), - [sym_null] = ACTIONS(683), - [sym_inf] = ACTIONS(683), - [sym_nan] = ACTIONS(683), - [anon_sym_NA] = ACTIONS(683), - [anon_sym_NA_integer_] = ACTIONS(683), - [anon_sym_NA_real_] = ACTIONS(683), - [anon_sym_NA_complex_] = ACTIONS(683), - [anon_sym_NA_character_] = ACTIONS(683), + [sym_identifier] = ACTIONS(633), + [anon_sym_BSLASH] = ACTIONS(631), + [anon_sym_function] = ACTIONS(633), + [anon_sym_EQ] = ACTIONS(633), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(633), + [anon_sym_while] = ACTIONS(633), + [anon_sym_repeat] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_BANG] = ACTIONS(633), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_LT_DASH] = ACTIONS(631), + [anon_sym_LT_LT_DASH] = ACTIONS(631), + [anon_sym_COLON_EQ] = ACTIONS(631), + [anon_sym_DASH_GT] = ACTIONS(633), + [anon_sym_DASH_GT_GT] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(633), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(633), + [anon_sym_LT_EQ] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(633), + [anon_sym_GT_EQ] = ACTIONS(631), + [anon_sym_EQ_EQ] = ACTIONS(631), + [anon_sym_BANG_EQ] = ACTIONS(631), + [anon_sym_STAR] = ACTIONS(633), + [anon_sym_SLASH] = ACTIONS(631), + [anon_sym_STAR_STAR] = ACTIONS(631), + [anon_sym_CARET] = ACTIONS(631), + [aux_sym_binary_operator_token1] = ACTIONS(631), + [anon_sym_PIPE_GT] = ACTIONS(631), + [anon_sym_COLON] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(631), + [anon_sym_AT] = ACTIONS(631), + [anon_sym_COLON_COLON] = ACTIONS(633), + [anon_sym_COLON_COLON_COLON] = ACTIONS(631), + [sym__hex_literal] = ACTIONS(631), + [sym__number_literal] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(631), + [anon_sym_DQUOTE] = ACTIONS(631), + [sym_dots] = ACTIONS(633), + [sym_dot_dot_i] = ACTIONS(631), + [sym_return] = ACTIONS(633), + [sym_next] = ACTIONS(633), + [sym_break] = ACTIONS(633), + [sym_true] = ACTIONS(633), + [sym_false] = ACTIONS(633), + [sym_null] = ACTIONS(633), + [sym_inf] = ACTIONS(633), + [sym_nan] = ACTIONS(633), + [anon_sym_NA] = ACTIONS(633), + [anon_sym_NA_integer_] = ACTIONS(633), + [anon_sym_NA_real_] = ACTIONS(633), + [anon_sym_NA_complex_] = ACTIONS(633), + [anon_sym_NA_character_] = ACTIONS(633), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(685), - [sym__semicolon] = ACTIONS(681), - [sym__raw_string_literal] = ACTIONS(681), - [sym__external_else] = ACTIONS(681), - [sym__external_open_parenthesis] = ACTIONS(681), - [sym__external_open_brace] = ACTIONS(681), - [sym__external_open_bracket] = ACTIONS(681), - [sym__external_open_bracket2] = ACTIONS(681), + [sym__newline] = ACTIONS(631), + [sym__semicolon] = ACTIONS(631), + [sym__raw_string_literal] = ACTIONS(631), + [sym__external_open_parenthesis] = ACTIONS(631), + [sym__external_open_brace] = ACTIONS(631), + [sym__external_close_brace] = ACTIONS(631), + [sym__external_open_bracket] = ACTIONS(631), + [sym__external_open_bracket2] = ACTIONS(631), }, [317] = { - [sym_identifier] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_function] = ACTIONS(661), - [anon_sym_EQ] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [anon_sym_LT_LT_DASH] = ACTIONS(663), - [anon_sym_COLON_EQ] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(661), - [anon_sym_DASH_GT_GT] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(661), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_STAR] = ACTIONS(661), - [anon_sym_SLASH] = ACTIONS(663), - [anon_sym_STAR_STAR] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(663), - [aux_sym_binary_operator_token1] = ACTIONS(663), - [anon_sym_PIPE_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(661), - [anon_sym_COLON_COLON_COLON] = ACTIONS(663), - [sym__hex_literal] = ACTIONS(663), - [sym__number_literal] = ACTIONS(661), - [anon_sym_SQUOTE] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [sym_dots] = ACTIONS(661), - [sym_dot_dot_i] = ACTIONS(663), - [sym_return] = ACTIONS(661), - [sym_next] = ACTIONS(661), - [sym_break] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_inf] = ACTIONS(661), - [sym_nan] = ACTIONS(661), - [anon_sym_NA] = ACTIONS(661), - [anon_sym_NA_integer_] = ACTIONS(661), - [anon_sym_NA_real_] = ACTIONS(661), - [anon_sym_NA_complex_] = ACTIONS(661), - [anon_sym_NA_character_] = ACTIONS(661), + [ts_builtin_sym_end] = ACTIONS(649), + [sym_identifier] = ACTIONS(651), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_function] = ACTIONS(651), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_if] = ACTIONS(651), + [anon_sym_for] = ACTIONS(651), + [anon_sym_while] = ACTIONS(651), + [anon_sym_repeat] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_PLUS] = ACTIONS(649), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_LT_DASH] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(649), + [anon_sym_COLON_EQ] = ACTIONS(649), + [anon_sym_DASH_GT] = ACTIONS(651), + [anon_sym_DASH_GT_GT] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(649), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(649), + [anon_sym_EQ_EQ] = ACTIONS(649), + [anon_sym_BANG_EQ] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_STAR_STAR] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(649), + [aux_sym_binary_operator_token1] = ACTIONS(649), + [anon_sym_PIPE_GT] = ACTIONS(649), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_DOLLAR] = ACTIONS(649), + [anon_sym_AT] = ACTIONS(649), + [anon_sym_COLON_COLON] = ACTIONS(651), + [anon_sym_COLON_COLON_COLON] = ACTIONS(649), + [sym__hex_literal] = ACTIONS(649), + [sym__number_literal] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(649), + [sym_dots] = ACTIONS(651), + [sym_dot_dot_i] = ACTIONS(649), + [sym_return] = ACTIONS(651), + [sym_next] = ACTIONS(651), + [sym_break] = ACTIONS(651), + [sym_true] = ACTIONS(651), + [sym_false] = ACTIONS(651), + [sym_null] = ACTIONS(651), + [sym_inf] = ACTIONS(651), + [sym_nan] = ACTIONS(651), + [anon_sym_NA] = ACTIONS(651), + [anon_sym_NA_integer_] = ACTIONS(651), + [anon_sym_NA_real_] = ACTIONS(651), + [anon_sym_NA_complex_] = ACTIONS(651), + [anon_sym_NA_character_] = ACTIONS(651), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(663), - [sym__semicolon] = ACTIONS(663), - [sym__raw_string_literal] = ACTIONS(663), - [sym__external_open_parenthesis] = ACTIONS(663), - [sym__external_open_brace] = ACTIONS(663), - [sym__external_close_brace] = ACTIONS(663), - [sym__external_open_bracket] = ACTIONS(663), - [sym__external_open_bracket2] = ACTIONS(663), + [sym__newline] = ACTIONS(649), + [sym__semicolon] = ACTIONS(649), + [sym__raw_string_literal] = ACTIONS(649), + [sym__external_open_parenthesis] = ACTIONS(649), + [sym__external_open_brace] = ACTIONS(649), + [sym__external_open_bracket] = ACTIONS(649), + [sym__external_open_bracket2] = ACTIONS(649), }, [318] = { - [sym_identifier] = ACTIONS(635), - [anon_sym_BSLASH] = ACTIONS(633), - [anon_sym_function] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(635), - [anon_sym_if] = ACTIONS(635), - [anon_sym_for] = ACTIONS(635), - [anon_sym_while] = ACTIONS(635), - [anon_sym_repeat] = ACTIONS(635), - [anon_sym_QMARK] = ACTIONS(633), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(633), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_LT_DASH] = ACTIONS(633), - [anon_sym_LT_LT_DASH] = ACTIONS(633), - [anon_sym_COLON_EQ] = ACTIONS(633), - [anon_sym_DASH_GT] = ACTIONS(635), - [anon_sym_DASH_GT_GT] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_AMP] = ACTIONS(635), - [anon_sym_PIPE_PIPE] = ACTIONS(633), - [anon_sym_AMP_AMP] = ACTIONS(633), - [anon_sym_LT] = ACTIONS(635), - [anon_sym_LT_EQ] = ACTIONS(633), - [anon_sym_GT] = ACTIONS(635), - [anon_sym_GT_EQ] = ACTIONS(633), - [anon_sym_EQ_EQ] = ACTIONS(633), - [anon_sym_BANG_EQ] = ACTIONS(633), - [anon_sym_STAR] = ACTIONS(635), - [anon_sym_SLASH] = ACTIONS(633), - [anon_sym_STAR_STAR] = ACTIONS(633), - [anon_sym_CARET] = ACTIONS(633), - [aux_sym_binary_operator_token1] = ACTIONS(633), - [anon_sym_PIPE_GT] = ACTIONS(633), - [anon_sym_COLON] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(633), - [anon_sym_COLON_COLON] = ACTIONS(635), - [anon_sym_COLON_COLON_COLON] = ACTIONS(633), - [sym__hex_literal] = ACTIONS(633), - [sym__number_literal] = ACTIONS(635), - [anon_sym_SQUOTE] = ACTIONS(633), - [anon_sym_DQUOTE] = ACTIONS(633), - [sym_dots] = ACTIONS(635), - [sym_dot_dot_i] = ACTIONS(633), - [sym_return] = ACTIONS(635), - [sym_next] = ACTIONS(635), - [sym_break] = ACTIONS(635), - [sym_true] = ACTIONS(635), - [sym_false] = ACTIONS(635), - [sym_null] = ACTIONS(635), - [sym_inf] = ACTIONS(635), - [sym_nan] = ACTIONS(635), - [anon_sym_NA] = ACTIONS(635), - [anon_sym_NA_integer_] = ACTIONS(635), - [anon_sym_NA_real_] = ACTIONS(635), - [anon_sym_NA_complex_] = ACTIONS(635), - [anon_sym_NA_character_] = ACTIONS(635), + [ts_builtin_sym_end] = ACTIONS(649), + [sym_identifier] = ACTIONS(651), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_function] = ACTIONS(651), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_if] = ACTIONS(651), + [anon_sym_for] = ACTIONS(651), + [anon_sym_while] = ACTIONS(651), + [anon_sym_repeat] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_PLUS] = ACTIONS(649), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_LT_DASH] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(649), + [anon_sym_COLON_EQ] = ACTIONS(649), + [anon_sym_DASH_GT] = ACTIONS(651), + [anon_sym_DASH_GT_GT] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(649), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(649), + [anon_sym_EQ_EQ] = ACTIONS(649), + [anon_sym_BANG_EQ] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_STAR_STAR] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(649), + [aux_sym_binary_operator_token1] = ACTIONS(649), + [anon_sym_PIPE_GT] = ACTIONS(649), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_DOLLAR] = ACTIONS(649), + [anon_sym_AT] = ACTIONS(649), + [anon_sym_COLON_COLON] = ACTIONS(651), + [anon_sym_COLON_COLON_COLON] = ACTIONS(649), + [sym__hex_literal] = ACTIONS(649), + [sym__number_literal] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(649), + [sym_dots] = ACTIONS(651), + [sym_dot_dot_i] = ACTIONS(649), + [sym_return] = ACTIONS(651), + [sym_next] = ACTIONS(651), + [sym_break] = ACTIONS(651), + [sym_true] = ACTIONS(651), + [sym_false] = ACTIONS(651), + [sym_null] = ACTIONS(651), + [sym_inf] = ACTIONS(651), + [sym_nan] = ACTIONS(651), + [anon_sym_NA] = ACTIONS(651), + [anon_sym_NA_integer_] = ACTIONS(651), + [anon_sym_NA_real_] = ACTIONS(651), + [anon_sym_NA_complex_] = ACTIONS(651), + [anon_sym_NA_character_] = ACTIONS(651), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(633), - [sym__semicolon] = ACTIONS(633), - [sym__raw_string_literal] = ACTIONS(633), - [sym__external_open_parenthesis] = ACTIONS(633), - [sym__external_open_brace] = ACTIONS(633), - [sym__external_close_brace] = ACTIONS(633), - [sym__external_open_bracket] = ACTIONS(633), - [sym__external_open_bracket2] = ACTIONS(633), + [sym__newline] = ACTIONS(649), + [sym__semicolon] = ACTIONS(649), + [sym__raw_string_literal] = ACTIONS(649), + [sym__external_open_parenthesis] = ACTIONS(649), + [sym__external_open_brace] = ACTIONS(649), + [sym__external_open_bracket] = ACTIONS(649), + [sym__external_open_bracket2] = ACTIONS(649), }, [319] = { - [ts_builtin_sym_end] = ACTIONS(675), - [sym_identifier] = ACTIONS(673), - [anon_sym_BSLASH] = ACTIONS(675), - [anon_sym_function] = ACTIONS(673), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_if] = ACTIONS(673), - [anon_sym_for] = ACTIONS(673), - [anon_sym_while] = ACTIONS(673), - [anon_sym_repeat] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(675), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_LT_DASH] = ACTIONS(675), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [anon_sym_COLON_EQ] = ACTIONS(675), - [anon_sym_DASH_GT] = ACTIONS(673), - [anon_sym_DASH_GT_GT] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_LT_EQ] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(675), - [anon_sym_EQ_EQ] = ACTIONS(675), - [anon_sym_BANG_EQ] = ACTIONS(675), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(675), - [anon_sym_STAR_STAR] = ACTIONS(675), - [anon_sym_CARET] = ACTIONS(675), - [aux_sym_binary_operator_token1] = ACTIONS(675), - [anon_sym_PIPE_GT] = ACTIONS(675), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_COLON_COLON] = ACTIONS(673), - [anon_sym_COLON_COLON_COLON] = ACTIONS(675), - [sym__hex_literal] = ACTIONS(675), - [sym__number_literal] = ACTIONS(673), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_dots] = ACTIONS(673), - [sym_dot_dot_i] = ACTIONS(675), - [sym_return] = ACTIONS(673), - [sym_next] = ACTIONS(673), - [sym_break] = ACTIONS(673), - [sym_true] = ACTIONS(673), - [sym_false] = ACTIONS(673), - [sym_null] = ACTIONS(673), - [sym_inf] = ACTIONS(673), - [sym_nan] = ACTIONS(673), - [anon_sym_NA] = ACTIONS(673), - [anon_sym_NA_integer_] = ACTIONS(673), - [anon_sym_NA_real_] = ACTIONS(673), - [anon_sym_NA_complex_] = ACTIONS(673), - [anon_sym_NA_character_] = ACTIONS(673), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(675), - [sym__semicolon] = ACTIONS(675), - [sym__raw_string_literal] = ACTIONS(675), - [sym__external_open_parenthesis] = ACTIONS(675), - [sym__external_open_brace] = ACTIONS(675), - [sym__external_open_bracket] = ACTIONS(675), - [sym__external_open_bracket2] = ACTIONS(675), - }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(647), - [sym_identifier] = ACTIONS(645), - [anon_sym_BSLASH] = ACTIONS(647), - [anon_sym_function] = ACTIONS(645), - [anon_sym_EQ] = ACTIONS(645), - [anon_sym_if] = ACTIONS(645), - [anon_sym_for] = ACTIONS(645), - [anon_sym_while] = ACTIONS(645), - [anon_sym_repeat] = ACTIONS(645), - [anon_sym_QMARK] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [anon_sym_COLON_EQ] = ACTIONS(647), - [anon_sym_DASH_GT] = ACTIONS(645), - [anon_sym_DASH_GT_GT] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_EQ] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_GT_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(647), - [aux_sym_binary_operator_token1] = ACTIONS(647), - [anon_sym_PIPE_GT] = ACTIONS(647), - [anon_sym_COLON] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_AT] = ACTIONS(647), - [anon_sym_COLON_COLON] = ACTIONS(649), - [anon_sym_COLON_COLON_COLON] = ACTIONS(651), - [sym__hex_literal] = ACTIONS(647), - [sym__number_literal] = ACTIONS(645), - [anon_sym_SQUOTE] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [sym_dots] = ACTIONS(645), - [sym_dot_dot_i] = ACTIONS(647), - [sym_return] = ACTIONS(645), - [sym_next] = ACTIONS(645), - [sym_break] = ACTIONS(645), - [sym_true] = ACTIONS(645), - [sym_false] = ACTIONS(645), - [sym_null] = ACTIONS(645), - [sym_inf] = ACTIONS(645), - [sym_nan] = ACTIONS(645), - [anon_sym_NA] = ACTIONS(645), - [anon_sym_NA_integer_] = ACTIONS(645), - [anon_sym_NA_real_] = ACTIONS(645), - [anon_sym_NA_complex_] = ACTIONS(645), - [anon_sym_NA_character_] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(647), - [sym__semicolon] = ACTIONS(647), - [sym__raw_string_literal] = ACTIONS(647), - [sym__external_open_parenthesis] = ACTIONS(647), - [sym__external_open_brace] = ACTIONS(647), - [sym__external_open_bracket] = ACTIONS(647), - [sym__external_open_bracket2] = ACTIONS(647), - }, - [321] = { + [ts_builtin_sym_end] = ACTIONS(643), [sym_identifier] = ACTIONS(641), [anon_sym_BSLASH] = ACTIONS(643), [anon_sym_function] = ACTIONS(641), @@ -29926,8 +29792,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(641), [anon_sym_DOLLAR] = ACTIONS(643), [anon_sym_AT] = ACTIONS(643), - [anon_sym_COLON_COLON] = ACTIONS(641), - [anon_sym_COLON_COLON_COLON] = ACTIONS(643), + [anon_sym_L] = ACTIONS(688), + [anon_sym_i] = ACTIONS(690), [sym__hex_literal] = ACTIONS(643), [sym__number_literal] = ACTIONS(641), [anon_sym_SQUOTE] = ACTIONS(643), @@ -29953,1160 +29819,1434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal] = ACTIONS(643), [sym__external_open_parenthesis] = ACTIONS(643), [sym__external_open_brace] = ACTIONS(643), - [sym__external_close_brace] = ACTIONS(643), [sym__external_open_bracket] = ACTIONS(643), [sym__external_open_bracket2] = ACTIONS(643), }, + [320] = { + [sym_identifier] = ACTIONS(637), + [anon_sym_BSLASH] = ACTIONS(635), + [anon_sym_function] = ACTIONS(637), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_if] = ACTIONS(637), + [anon_sym_for] = ACTIONS(637), + [anon_sym_while] = ACTIONS(637), + [anon_sym_repeat] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(635), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_LT_DASH] = ACTIONS(635), + [anon_sym_LT_LT_DASH] = ACTIONS(635), + [anon_sym_COLON_EQ] = ACTIONS(635), + [anon_sym_DASH_GT] = ACTIONS(637), + [anon_sym_DASH_GT_GT] = ACTIONS(635), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(635), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_GT_EQ] = ACTIONS(635), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(635), + [anon_sym_STAR_STAR] = ACTIONS(635), + [anon_sym_CARET] = ACTIONS(635), + [aux_sym_binary_operator_token1] = ACTIONS(635), + [anon_sym_PIPE_GT] = ACTIONS(635), + [anon_sym_COLON] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(635), + [anon_sym_COLON_COLON] = ACTIONS(637), + [anon_sym_COLON_COLON_COLON] = ACTIONS(635), + [sym__hex_literal] = ACTIONS(635), + [sym__number_literal] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_dots] = ACTIONS(637), + [sym_dot_dot_i] = ACTIONS(635), + [sym_return] = ACTIONS(637), + [sym_next] = ACTIONS(637), + [sym_break] = ACTIONS(637), + [sym_true] = ACTIONS(637), + [sym_false] = ACTIONS(637), + [sym_null] = ACTIONS(637), + [sym_inf] = ACTIONS(637), + [sym_nan] = ACTIONS(637), + [anon_sym_NA] = ACTIONS(637), + [anon_sym_NA_integer_] = ACTIONS(637), + [anon_sym_NA_real_] = ACTIONS(637), + [anon_sym_NA_complex_] = ACTIONS(637), + [anon_sym_NA_character_] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(635), + [sym__semicolon] = ACTIONS(635), + [sym__raw_string_literal] = ACTIONS(635), + [sym__external_open_parenthesis] = ACTIONS(635), + [sym__external_open_brace] = ACTIONS(635), + [sym__external_close_brace] = ACTIONS(635), + [sym__external_open_bracket] = ACTIONS(635), + [sym__external_open_bracket2] = ACTIONS(635), + }, + [321] = { + [sym_identifier] = ACTIONS(655), + [anon_sym_BSLASH] = ACTIONS(653), + [anon_sym_function] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_if] = ACTIONS(655), + [anon_sym_for] = ACTIONS(655), + [anon_sym_while] = ACTIONS(655), + [anon_sym_repeat] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_LT_DASH] = ACTIONS(653), + [anon_sym_LT_LT_DASH] = ACTIONS(653), + [anon_sym_COLON_EQ] = ACTIONS(653), + [anon_sym_DASH_GT] = ACTIONS(655), + [anon_sym_DASH_GT_GT] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(655), + [anon_sym_LT_EQ] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_GT_EQ] = ACTIONS(653), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(655), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_STAR_STAR] = ACTIONS(653), + [anon_sym_CARET] = ACTIONS(653), + [aux_sym_binary_operator_token1] = ACTIONS(653), + [anon_sym_PIPE_GT] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_COLON_COLON] = ACTIONS(655), + [anon_sym_COLON_COLON_COLON] = ACTIONS(653), + [sym__hex_literal] = ACTIONS(653), + [sym__number_literal] = ACTIONS(655), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_DQUOTE] = ACTIONS(653), + [sym_dots] = ACTIONS(655), + [sym_dot_dot_i] = ACTIONS(653), + [sym_return] = ACTIONS(655), + [sym_next] = ACTIONS(655), + [sym_break] = ACTIONS(655), + [sym_true] = ACTIONS(655), + [sym_false] = ACTIONS(655), + [sym_null] = ACTIONS(655), + [sym_inf] = ACTIONS(655), + [sym_nan] = ACTIONS(655), + [anon_sym_NA] = ACTIONS(655), + [anon_sym_NA_integer_] = ACTIONS(655), + [anon_sym_NA_real_] = ACTIONS(655), + [anon_sym_NA_complex_] = ACTIONS(655), + [anon_sym_NA_character_] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(653), + [sym__semicolon] = ACTIONS(653), + [sym__raw_string_literal] = ACTIONS(653), + [sym__external_open_parenthesis] = ACTIONS(653), + [sym__external_open_brace] = ACTIONS(653), + [sym__external_close_brace] = ACTIONS(653), + [sym__external_open_bracket] = ACTIONS(653), + [sym__external_open_bracket2] = ACTIONS(653), + }, [322] = { - [aux_sym_function_definition_repeat1] = STATE(322), - [sym_identifier] = ACTIONS(683), - [anon_sym_BSLASH] = ACTIONS(681), - [anon_sym_function] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [anon_sym_repeat] = ACTIONS(683), - [anon_sym_QMARK] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(683), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_LT_DASH] = ACTIONS(681), - [anon_sym_LT_LT_DASH] = ACTIONS(681), - [anon_sym_COLON_EQ] = ACTIONS(681), - [anon_sym_DASH_GT] = ACTIONS(683), - [anon_sym_DASH_GT_GT] = ACTIONS(681), - [anon_sym_PIPE] = ACTIONS(683), - [anon_sym_AMP] = ACTIONS(683), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [anon_sym_AMP_AMP] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(683), - [anon_sym_LT_EQ] = ACTIONS(681), - [anon_sym_GT] = ACTIONS(683), - [anon_sym_GT_EQ] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(681), - [anon_sym_BANG_EQ] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_SLASH] = ACTIONS(681), - [anon_sym_STAR_STAR] = ACTIONS(681), - [anon_sym_CARET] = ACTIONS(681), - [aux_sym_binary_operator_token1] = ACTIONS(681), - [anon_sym_PIPE_GT] = ACTIONS(681), - [anon_sym_COLON] = ACTIONS(683), - [anon_sym_DOLLAR] = ACTIONS(681), - [anon_sym_AT] = ACTIONS(681), - [sym__hex_literal] = ACTIONS(681), - [sym__number_literal] = ACTIONS(683), - [anon_sym_SQUOTE] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_dots] = ACTIONS(683), - [sym_dot_dot_i] = ACTIONS(681), - [sym_return] = ACTIONS(683), - [sym_next] = ACTIONS(683), - [sym_break] = ACTIONS(683), - [sym_true] = ACTIONS(683), - [sym_false] = ACTIONS(683), - [sym_null] = ACTIONS(683), - [sym_inf] = ACTIONS(683), - [sym_nan] = ACTIONS(683), - [anon_sym_NA] = ACTIONS(683), - [anon_sym_NA_integer_] = ACTIONS(683), - [anon_sym_NA_real_] = ACTIONS(683), - [anon_sym_NA_complex_] = ACTIONS(683), - [anon_sym_NA_character_] = ACTIONS(683), + [ts_builtin_sym_end] = ACTIONS(657), + [sym_identifier] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(657), + [anon_sym_function] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(659), + [anon_sym_if] = ACTIONS(659), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(659), + [anon_sym_repeat] = ACTIONS(659), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_PLUS] = ACTIONS(657), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(657), + [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_COLON_EQ] = ACTIONS(657), + [anon_sym_DASH_GT] = ACTIONS(659), + [anon_sym_DASH_GT_GT] = ACTIONS(657), + [anon_sym_PIPE] = ACTIONS(659), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_PIPE_PIPE] = ACTIONS(657), + [anon_sym_AMP_AMP] = ACTIONS(657), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_LT_EQ] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(659), + [anon_sym_GT_EQ] = ACTIONS(657), + [anon_sym_EQ_EQ] = ACTIONS(657), + [anon_sym_BANG_EQ] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(657), + [anon_sym_STAR_STAR] = ACTIONS(657), + [anon_sym_CARET] = ACTIONS(657), + [aux_sym_binary_operator_token1] = ACTIONS(657), + [anon_sym_PIPE_GT] = ACTIONS(657), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(657), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_COLON_COLON] = ACTIONS(661), + [anon_sym_COLON_COLON_COLON] = ACTIONS(663), + [sym__hex_literal] = ACTIONS(657), + [sym__number_literal] = ACTIONS(659), + [anon_sym_SQUOTE] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(657), + [sym_dots] = ACTIONS(659), + [sym_dot_dot_i] = ACTIONS(657), + [sym_return] = ACTIONS(659), + [sym_next] = ACTIONS(659), + [sym_break] = ACTIONS(659), + [sym_true] = ACTIONS(659), + [sym_false] = ACTIONS(659), + [sym_null] = ACTIONS(659), + [sym_inf] = ACTIONS(659), + [sym_nan] = ACTIONS(659), + [anon_sym_NA] = ACTIONS(659), + [anon_sym_NA_integer_] = ACTIONS(659), + [anon_sym_NA_real_] = ACTIONS(659), + [anon_sym_NA_complex_] = ACTIONS(659), + [anon_sym_NA_character_] = ACTIONS(659), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(688), - [sym__semicolon] = ACTIONS(681), - [sym__raw_string_literal] = ACTIONS(681), - [sym__external_else] = ACTIONS(681), - [sym__external_open_parenthesis] = ACTIONS(681), - [sym__external_open_brace] = ACTIONS(681), - [sym__external_close_brace] = ACTIONS(681), - [sym__external_open_bracket] = ACTIONS(681), - [sym__external_open_bracket2] = ACTIONS(681), + [sym__newline] = ACTIONS(657), + [sym__semicolon] = ACTIONS(657), + [sym__raw_string_literal] = ACTIONS(657), + [sym__external_open_parenthesis] = ACTIONS(657), + [sym__external_open_brace] = ACTIONS(657), + [sym__external_open_bracket] = ACTIONS(657), + [sym__external_open_bracket2] = ACTIONS(657), }, [323] = { - [ts_builtin_sym_end] = ACTIONS(655), - [sym_identifier] = ACTIONS(653), - [anon_sym_BSLASH] = ACTIONS(655), - [anon_sym_function] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(653), - [anon_sym_if] = ACTIONS(653), - [anon_sym_for] = ACTIONS(653), - [anon_sym_while] = ACTIONS(653), - [anon_sym_repeat] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(655), - [anon_sym_TILDE] = ACTIONS(655), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(655), - [anon_sym_COLON_EQ] = ACTIONS(655), - [anon_sym_DASH_GT] = ACTIONS(653), - [anon_sym_DASH_GT_GT] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PIPE_PIPE] = ACTIONS(655), - [anon_sym_AMP_AMP] = ACTIONS(655), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_LT_EQ] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_GT_EQ] = ACTIONS(655), - [anon_sym_EQ_EQ] = ACTIONS(655), - [anon_sym_BANG_EQ] = ACTIONS(655), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(655), - [anon_sym_STAR_STAR] = ACTIONS(655), - [anon_sym_CARET] = ACTIONS(655), - [aux_sym_binary_operator_token1] = ACTIONS(655), - [anon_sym_PIPE_GT] = ACTIONS(655), - [anon_sym_COLON] = ACTIONS(653), - [anon_sym_DOLLAR] = ACTIONS(655), - [anon_sym_AT] = ACTIONS(655), - [anon_sym_L] = ACTIONS(691), - [anon_sym_i] = ACTIONS(693), - [sym__hex_literal] = ACTIONS(655), - [sym__number_literal] = ACTIONS(653), - [anon_sym_SQUOTE] = ACTIONS(655), - [anon_sym_DQUOTE] = ACTIONS(655), - [sym_dots] = ACTIONS(653), - [sym_dot_dot_i] = ACTIONS(655), - [sym_return] = ACTIONS(653), - [sym_next] = ACTIONS(653), - [sym_break] = ACTIONS(653), - [sym_true] = ACTIONS(653), - [sym_false] = ACTIONS(653), - [sym_null] = ACTIONS(653), - [sym_inf] = ACTIONS(653), - [sym_nan] = ACTIONS(653), - [anon_sym_NA] = ACTIONS(653), - [anon_sym_NA_integer_] = ACTIONS(653), - [anon_sym_NA_real_] = ACTIONS(653), - [anon_sym_NA_complex_] = ACTIONS(653), - [anon_sym_NA_character_] = ACTIONS(653), + [aux_sym_function_definition_repeat1] = STATE(323), + [sym_identifier] = ACTIONS(679), + [anon_sym_BSLASH] = ACTIONS(677), + [anon_sym_function] = ACTIONS(679), + [anon_sym_EQ] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [anon_sym_repeat] = ACTIONS(679), + [anon_sym_QMARK] = ACTIONS(677), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_LT_DASH] = ACTIONS(677), + [anon_sym_LT_LT_DASH] = ACTIONS(677), + [anon_sym_COLON_EQ] = ACTIONS(677), + [anon_sym_DASH_GT] = ACTIONS(679), + [anon_sym_DASH_GT_GT] = ACTIONS(677), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(677), + [anon_sym_AMP_AMP] = ACTIONS(677), + [anon_sym_LT] = ACTIONS(679), + [anon_sym_LT_EQ] = ACTIONS(677), + [anon_sym_GT] = ACTIONS(679), + [anon_sym_GT_EQ] = ACTIONS(677), + [anon_sym_EQ_EQ] = ACTIONS(677), + [anon_sym_BANG_EQ] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_SLASH] = ACTIONS(677), + [anon_sym_STAR_STAR] = ACTIONS(677), + [anon_sym_CARET] = ACTIONS(677), + [aux_sym_binary_operator_token1] = ACTIONS(677), + [anon_sym_PIPE_GT] = ACTIONS(677), + [anon_sym_COLON] = ACTIONS(679), + [anon_sym_DOLLAR] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(677), + [sym__hex_literal] = ACTIONS(677), + [sym__number_literal] = ACTIONS(679), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(677), + [sym_dots] = ACTIONS(679), + [sym_dot_dot_i] = ACTIONS(677), + [sym_return] = ACTIONS(679), + [sym_next] = ACTIONS(679), + [sym_break] = ACTIONS(679), + [sym_true] = ACTIONS(679), + [sym_false] = ACTIONS(679), + [sym_null] = ACTIONS(679), + [sym_inf] = ACTIONS(679), + [sym_nan] = ACTIONS(679), + [anon_sym_NA] = ACTIONS(679), + [anon_sym_NA_integer_] = ACTIONS(679), + [anon_sym_NA_real_] = ACTIONS(679), + [anon_sym_NA_complex_] = ACTIONS(679), + [anon_sym_NA_character_] = ACTIONS(679), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(655), - [sym__semicolon] = ACTIONS(655), - [sym__raw_string_literal] = ACTIONS(655), - [sym__external_open_parenthesis] = ACTIONS(655), - [sym__external_open_brace] = ACTIONS(655), - [sym__external_open_bracket] = ACTIONS(655), - [sym__external_open_bracket2] = ACTIONS(655), + [sym__newline] = ACTIONS(692), + [sym__semicolon] = ACTIONS(677), + [sym__raw_string_literal] = ACTIONS(677), + [sym__external_else] = ACTIONS(677), + [sym__external_open_parenthesis] = ACTIONS(677), + [sym__external_open_brace] = ACTIONS(677), + [sym__external_close_brace] = ACTIONS(677), + [sym__external_open_bracket] = ACTIONS(677), + [sym__external_open_bracket2] = ACTIONS(677), }, [324] = { - [sym_identifier] = ACTIONS(639), - [anon_sym_BSLASH] = ACTIONS(637), - [anon_sym_function] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_repeat] = ACTIONS(639), - [anon_sym_QMARK] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_LT_DASH] = ACTIONS(637), - [anon_sym_LT_LT_DASH] = ACTIONS(637), - [anon_sym_COLON_EQ] = ACTIONS(637), - [anon_sym_DASH_GT] = ACTIONS(639), - [anon_sym_DASH_GT_GT] = ACTIONS(637), - [anon_sym_PIPE] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(637), - [anon_sym_AMP_AMP] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_LT_EQ] = ACTIONS(637), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_EQ] = ACTIONS(637), - [anon_sym_EQ_EQ] = ACTIONS(637), - [anon_sym_BANG_EQ] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_SLASH] = ACTIONS(637), - [anon_sym_STAR_STAR] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [aux_sym_binary_operator_token1] = ACTIONS(637), - [anon_sym_PIPE_GT] = ACTIONS(637), - [anon_sym_COLON] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(637), - [anon_sym_COLON_COLON] = ACTIONS(639), - [anon_sym_COLON_COLON_COLON] = ACTIONS(637), - [sym__hex_literal] = ACTIONS(637), - [sym__number_literal] = ACTIONS(639), - [anon_sym_SQUOTE] = ACTIONS(637), - [anon_sym_DQUOTE] = ACTIONS(637), - [sym_dots] = ACTIONS(639), - [sym_dot_dot_i] = ACTIONS(637), - [sym_return] = ACTIONS(639), - [sym_next] = ACTIONS(639), - [sym_break] = ACTIONS(639), - [sym_true] = ACTIONS(639), - [sym_false] = ACTIONS(639), - [sym_null] = ACTIONS(639), - [sym_inf] = ACTIONS(639), - [sym_nan] = ACTIONS(639), - [anon_sym_NA] = ACTIONS(639), - [anon_sym_NA_integer_] = ACTIONS(639), - [anon_sym_NA_real_] = ACTIONS(639), - [anon_sym_NA_complex_] = ACTIONS(639), - [anon_sym_NA_character_] = ACTIONS(639), + [sym_identifier] = ACTIONS(671), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_function] = ACTIONS(671), + [anon_sym_EQ] = ACTIONS(671), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(671), + [anon_sym_while] = ACTIONS(671), + [anon_sym_repeat] = ACTIONS(671), + [anon_sym_QMARK] = ACTIONS(669), + [anon_sym_TILDE] = ACTIONS(669), + [anon_sym_BANG] = ACTIONS(671), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_COLON_EQ] = ACTIONS(669), + [anon_sym_DASH_GT] = ACTIONS(671), + [anon_sym_DASH_GT_GT] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(671), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(671), + [anon_sym_LT_EQ] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(669), + [anon_sym_EQ_EQ] = ACTIONS(669), + [anon_sym_BANG_EQ] = ACTIONS(669), + [anon_sym_STAR] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(669), + [anon_sym_STAR_STAR] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(669), + [aux_sym_binary_operator_token1] = ACTIONS(669), + [anon_sym_PIPE_GT] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_AT] = ACTIONS(669), + [anon_sym_COLON_COLON] = ACTIONS(671), + [anon_sym_COLON_COLON_COLON] = ACTIONS(669), + [sym__hex_literal] = ACTIONS(669), + [sym__number_literal] = ACTIONS(671), + [anon_sym_SQUOTE] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(669), + [sym_dots] = ACTIONS(671), + [sym_dot_dot_i] = ACTIONS(669), + [sym_return] = ACTIONS(671), + [sym_next] = ACTIONS(671), + [sym_break] = ACTIONS(671), + [sym_true] = ACTIONS(671), + [sym_false] = ACTIONS(671), + [sym_null] = ACTIONS(671), + [sym_inf] = ACTIONS(671), + [sym_nan] = ACTIONS(671), + [anon_sym_NA] = ACTIONS(671), + [anon_sym_NA_integer_] = ACTIONS(671), + [anon_sym_NA_real_] = ACTIONS(671), + [anon_sym_NA_complex_] = ACTIONS(671), + [anon_sym_NA_character_] = ACTIONS(671), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(637), - [sym__semicolon] = ACTIONS(637), - [sym__raw_string_literal] = ACTIONS(637), - [sym__external_open_parenthesis] = ACTIONS(637), - [sym__external_open_brace] = ACTIONS(637), - [sym__external_close_brace] = ACTIONS(637), - [sym__external_open_bracket] = ACTIONS(637), - [sym__external_open_bracket2] = ACTIONS(637), + [sym__newline] = ACTIONS(669), + [sym__semicolon] = ACTIONS(669), + [sym__raw_string_literal] = ACTIONS(669), + [sym__external_open_parenthesis] = ACTIONS(669), + [sym__external_open_brace] = ACTIONS(669), + [sym__external_close_brace] = ACTIONS(669), + [sym__external_open_bracket] = ACTIONS(669), + [sym__external_open_bracket2] = ACTIONS(669), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(663), - [sym_identifier] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_function] = ACTIONS(661), - [anon_sym_EQ] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [anon_sym_LT_LT_DASH] = ACTIONS(663), - [anon_sym_COLON_EQ] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(661), - [anon_sym_DASH_GT_GT] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(661), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_STAR] = ACTIONS(661), - [anon_sym_SLASH] = ACTIONS(663), - [anon_sym_STAR_STAR] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(663), - [aux_sym_binary_operator_token1] = ACTIONS(663), - [anon_sym_PIPE_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(661), - [anon_sym_COLON_COLON_COLON] = ACTIONS(663), - [sym__hex_literal] = ACTIONS(663), - [sym__number_literal] = ACTIONS(661), - [anon_sym_SQUOTE] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [sym_dots] = ACTIONS(661), - [sym_dot_dot_i] = ACTIONS(663), - [sym_return] = ACTIONS(661), - [sym_next] = ACTIONS(661), - [sym_break] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_inf] = ACTIONS(661), - [sym_nan] = ACTIONS(661), - [anon_sym_NA] = ACTIONS(661), - [anon_sym_NA_integer_] = ACTIONS(661), - [anon_sym_NA_real_] = ACTIONS(661), - [anon_sym_NA_complex_] = ACTIONS(661), - [anon_sym_NA_character_] = ACTIONS(661), + [ts_builtin_sym_end] = ACTIONS(635), + [sym_identifier] = ACTIONS(637), + [anon_sym_BSLASH] = ACTIONS(635), + [anon_sym_function] = ACTIONS(637), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_if] = ACTIONS(637), + [anon_sym_for] = ACTIONS(637), + [anon_sym_while] = ACTIONS(637), + [anon_sym_repeat] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(635), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_LT_DASH] = ACTIONS(635), + [anon_sym_LT_LT_DASH] = ACTIONS(635), + [anon_sym_COLON_EQ] = ACTIONS(635), + [anon_sym_DASH_GT] = ACTIONS(637), + [anon_sym_DASH_GT_GT] = ACTIONS(635), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(635), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_GT_EQ] = ACTIONS(635), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(635), + [anon_sym_STAR_STAR] = ACTIONS(635), + [anon_sym_CARET] = ACTIONS(635), + [aux_sym_binary_operator_token1] = ACTIONS(635), + [anon_sym_PIPE_GT] = ACTIONS(635), + [anon_sym_COLON] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(635), + [anon_sym_COLON_COLON] = ACTIONS(637), + [anon_sym_COLON_COLON_COLON] = ACTIONS(635), + [sym__hex_literal] = ACTIONS(635), + [sym__number_literal] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_dots] = ACTIONS(637), + [sym_dot_dot_i] = ACTIONS(635), + [sym_return] = ACTIONS(637), + [sym_next] = ACTIONS(637), + [sym_break] = ACTIONS(637), + [sym_true] = ACTIONS(637), + [sym_false] = ACTIONS(637), + [sym_null] = ACTIONS(637), + [sym_inf] = ACTIONS(637), + [sym_nan] = ACTIONS(637), + [anon_sym_NA] = ACTIONS(637), + [anon_sym_NA_integer_] = ACTIONS(637), + [anon_sym_NA_real_] = ACTIONS(637), + [anon_sym_NA_complex_] = ACTIONS(637), + [anon_sym_NA_character_] = ACTIONS(637), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(663), - [sym__semicolon] = ACTIONS(663), - [sym__raw_string_literal] = ACTIONS(663), - [sym__external_open_parenthesis] = ACTIONS(663), - [sym__external_open_brace] = ACTIONS(663), - [sym__external_open_bracket] = ACTIONS(663), - [sym__external_open_bracket2] = ACTIONS(663), + [sym__newline] = ACTIONS(635), + [sym__semicolon] = ACTIONS(635), + [sym__raw_string_literal] = ACTIONS(635), + [sym__external_open_parenthesis] = ACTIONS(635), + [sym__external_open_brace] = ACTIONS(635), + [sym__external_open_bracket] = ACTIONS(635), + [sym__external_open_bracket2] = ACTIONS(635), }, [326] = { - [ts_builtin_sym_end] = ACTIONS(663), - [sym_identifier] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_function] = ACTIONS(661), - [anon_sym_EQ] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [anon_sym_LT_LT_DASH] = ACTIONS(663), - [anon_sym_COLON_EQ] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(661), - [anon_sym_DASH_GT_GT] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(661), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_STAR] = ACTIONS(661), - [anon_sym_SLASH] = ACTIONS(663), - [anon_sym_STAR_STAR] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(663), - [aux_sym_binary_operator_token1] = ACTIONS(663), - [anon_sym_PIPE_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(661), - [anon_sym_COLON_COLON_COLON] = ACTIONS(663), - [sym__hex_literal] = ACTIONS(663), - [sym__number_literal] = ACTIONS(661), - [anon_sym_SQUOTE] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [sym_dots] = ACTIONS(661), - [sym_dot_dot_i] = ACTIONS(663), - [sym_return] = ACTIONS(661), - [sym_next] = ACTIONS(661), - [sym_break] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_inf] = ACTIONS(661), - [sym_nan] = ACTIONS(661), - [anon_sym_NA] = ACTIONS(661), - [anon_sym_NA_integer_] = ACTIONS(661), - [anon_sym_NA_real_] = ACTIONS(661), - [anon_sym_NA_complex_] = ACTIONS(661), - [anon_sym_NA_character_] = ACTIONS(661), + [ts_builtin_sym_end] = ACTIONS(631), + [sym_identifier] = ACTIONS(633), + [anon_sym_BSLASH] = ACTIONS(631), + [anon_sym_function] = ACTIONS(633), + [anon_sym_EQ] = ACTIONS(633), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(633), + [anon_sym_while] = ACTIONS(633), + [anon_sym_repeat] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_BANG] = ACTIONS(633), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_LT_DASH] = ACTIONS(631), + [anon_sym_LT_LT_DASH] = ACTIONS(631), + [anon_sym_COLON_EQ] = ACTIONS(631), + [anon_sym_DASH_GT] = ACTIONS(633), + [anon_sym_DASH_GT_GT] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(633), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(633), + [anon_sym_LT_EQ] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(633), + [anon_sym_GT_EQ] = ACTIONS(631), + [anon_sym_EQ_EQ] = ACTIONS(631), + [anon_sym_BANG_EQ] = ACTIONS(631), + [anon_sym_STAR] = ACTIONS(633), + [anon_sym_SLASH] = ACTIONS(631), + [anon_sym_STAR_STAR] = ACTIONS(631), + [anon_sym_CARET] = ACTIONS(631), + [aux_sym_binary_operator_token1] = ACTIONS(631), + [anon_sym_PIPE_GT] = ACTIONS(631), + [anon_sym_COLON] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(631), + [anon_sym_AT] = ACTIONS(631), + [anon_sym_COLON_COLON] = ACTIONS(633), + [anon_sym_COLON_COLON_COLON] = ACTIONS(631), + [sym__hex_literal] = ACTIONS(631), + [sym__number_literal] = ACTIONS(633), + [anon_sym_SQUOTE] = ACTIONS(631), + [anon_sym_DQUOTE] = ACTIONS(631), + [sym_dots] = ACTIONS(633), + [sym_dot_dot_i] = ACTIONS(631), + [sym_return] = ACTIONS(633), + [sym_next] = ACTIONS(633), + [sym_break] = ACTIONS(633), + [sym_true] = ACTIONS(633), + [sym_false] = ACTIONS(633), + [sym_null] = ACTIONS(633), + [sym_inf] = ACTIONS(633), + [sym_nan] = ACTIONS(633), + [anon_sym_NA] = ACTIONS(633), + [anon_sym_NA_integer_] = ACTIONS(633), + [anon_sym_NA_real_] = ACTIONS(633), + [anon_sym_NA_complex_] = ACTIONS(633), + [anon_sym_NA_character_] = ACTIONS(633), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(663), - [sym__semicolon] = ACTIONS(663), - [sym__raw_string_literal] = ACTIONS(663), - [sym__external_open_parenthesis] = ACTIONS(663), - [sym__external_open_brace] = ACTIONS(663), - [sym__external_open_bracket] = ACTIONS(663), - [sym__external_open_bracket2] = ACTIONS(663), + [sym__newline] = ACTIONS(631), + [sym__semicolon] = ACTIONS(631), + [sym__raw_string_literal] = ACTIONS(631), + [sym__external_open_parenthesis] = ACTIONS(631), + [sym__external_open_brace] = ACTIONS(631), + [sym__external_open_bracket] = ACTIONS(631), + [sym__external_open_bracket2] = ACTIONS(631), }, [327] = { + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(1745), + [aux_sym_braced_expression_repeat1] = STATE(438), [sym_identifier] = ACTIONS(695), [anon_sym_BSLASH] = ACTIONS(697), - [anon_sym_function] = ACTIONS(695), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_if] = ACTIONS(695), - [anon_sym_for] = ACTIONS(695), - [anon_sym_while] = ACTIONS(695), - [anon_sym_repeat] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_LT_DASH] = ACTIONS(697), - [anon_sym_LT_LT_DASH] = ACTIONS(697), - [anon_sym_COLON_EQ] = ACTIONS(697), - [anon_sym_DASH_GT] = ACTIONS(695), - [anon_sym_DASH_GT_GT] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_LT_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(697), - [anon_sym_EQ_EQ] = ACTIONS(697), - [anon_sym_BANG_EQ] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_STAR_STAR] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [aux_sym_binary_operator_token1] = ACTIONS(697), - [anon_sym_PIPE_GT] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [sym__hex_literal] = ACTIONS(697), - [sym__number_literal] = ACTIONS(695), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), [sym_dots] = ACTIONS(695), - [sym_dot_dot_i] = ACTIONS(697), - [sym_return] = ACTIONS(695), - [sym_next] = ACTIONS(695), - [sym_break] = ACTIONS(695), - [sym_true] = ACTIONS(695), - [sym_false] = ACTIONS(695), - [sym_null] = ACTIONS(695), - [sym_inf] = ACTIONS(695), - [sym_nan] = ACTIONS(695), - [anon_sym_NA] = ACTIONS(695), - [anon_sym_NA_integer_] = ACTIONS(695), - [anon_sym_NA_real_] = ACTIONS(695), - [anon_sym_NA_complex_] = ACTIONS(695), - [anon_sym_NA_character_] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(697), - [sym__semicolon] = ACTIONS(697), - [sym__raw_string_literal] = ACTIONS(697), - [sym__external_else] = ACTIONS(697), - [sym__external_open_parenthesis] = ACTIONS(697), - [sym__external_open_brace] = ACTIONS(697), - [sym__external_close_brace] = ACTIONS(697), - [sym__external_open_bracket] = ACTIONS(697), - [sym__external_open_bracket2] = ACTIONS(697), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(733), }, [328] = { - [sym_identifier] = ACTIONS(699), - [anon_sym_BSLASH] = ACTIONS(701), - [anon_sym_function] = ACTIONS(699), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_if] = ACTIONS(699), - [anon_sym_for] = ACTIONS(699), - [anon_sym_while] = ACTIONS(699), - [anon_sym_repeat] = ACTIONS(699), - [anon_sym_QMARK] = ACTIONS(701), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_BANG] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_LT_DASH] = ACTIONS(701), - [anon_sym_LT_LT_DASH] = ACTIONS(701), - [anon_sym_COLON_EQ] = ACTIONS(701), - [anon_sym_DASH_GT] = ACTIONS(699), - [anon_sym_DASH_GT_GT] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE_PIPE] = ACTIONS(701), - [anon_sym_AMP_AMP] = ACTIONS(701), - [anon_sym_LT] = ACTIONS(699), - [anon_sym_LT_EQ] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_GT_EQ] = ACTIONS(701), - [anon_sym_EQ_EQ] = ACTIONS(701), - [anon_sym_BANG_EQ] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(701), - [anon_sym_STAR_STAR] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [aux_sym_binary_operator_token1] = ACTIONS(701), - [anon_sym_PIPE_GT] = ACTIONS(701), - [anon_sym_COLON] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(701), - [anon_sym_AT] = ACTIONS(701), - [sym__hex_literal] = ACTIONS(701), - [sym__number_literal] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(701), - [sym_dots] = ACTIONS(699), - [sym_dot_dot_i] = ACTIONS(701), - [sym_return] = ACTIONS(699), - [sym_next] = ACTIONS(699), - [sym_break] = ACTIONS(699), - [sym_true] = ACTIONS(699), - [sym_false] = ACTIONS(699), - [sym_null] = ACTIONS(699), - [sym_inf] = ACTIONS(699), - [sym_nan] = ACTIONS(699), - [anon_sym_NA] = ACTIONS(699), - [anon_sym_NA_integer_] = ACTIONS(699), - [anon_sym_NA_real_] = ACTIONS(699), - [anon_sym_NA_complex_] = ACTIONS(699), - [anon_sym_NA_character_] = ACTIONS(699), + [ts_builtin_sym_end] = ACTIONS(735), + [sym_identifier] = ACTIONS(737), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_function] = ACTIONS(737), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_if] = ACTIONS(737), + [anon_sym_for] = ACTIONS(737), + [anon_sym_while] = ACTIONS(737), + [anon_sym_repeat] = ACTIONS(737), + [anon_sym_QMARK] = ACTIONS(735), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(735), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LT_DASH] = ACTIONS(735), + [anon_sym_LT_LT_DASH] = ACTIONS(735), + [anon_sym_COLON_EQ] = ACTIONS(735), + [anon_sym_DASH_GT] = ACTIONS(737), + [anon_sym_DASH_GT_GT] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_LT_EQ] = ACTIONS(735), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_GT_EQ] = ACTIONS(735), + [anon_sym_EQ_EQ] = ACTIONS(735), + [anon_sym_BANG_EQ] = ACTIONS(735), + [anon_sym_STAR] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(735), + [anon_sym_STAR_STAR] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(735), + [aux_sym_binary_operator_token1] = ACTIONS(735), + [anon_sym_PIPE_GT] = ACTIONS(735), + [anon_sym_COLON] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(735), + [anon_sym_AT] = ACTIONS(735), + [sym__hex_literal] = ACTIONS(735), + [sym__number_literal] = ACTIONS(737), + [anon_sym_SQUOTE] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [sym_dots] = ACTIONS(737), + [sym_dot_dot_i] = ACTIONS(735), + [sym_return] = ACTIONS(737), + [sym_next] = ACTIONS(737), + [sym_break] = ACTIONS(737), + [sym_true] = ACTIONS(737), + [sym_false] = ACTIONS(737), + [sym_null] = ACTIONS(737), + [sym_inf] = ACTIONS(737), + [sym_nan] = ACTIONS(737), + [anon_sym_NA] = ACTIONS(737), + [anon_sym_NA_integer_] = ACTIONS(737), + [anon_sym_NA_real_] = ACTIONS(737), + [anon_sym_NA_complex_] = ACTIONS(737), + [anon_sym_NA_character_] = ACTIONS(737), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(701), - [sym__semicolon] = ACTIONS(701), - [sym__raw_string_literal] = ACTIONS(701), - [sym__external_else] = ACTIONS(701), - [sym__external_open_parenthesis] = ACTIONS(701), - [sym__external_open_brace] = ACTIONS(701), - [sym__external_close_brace] = ACTIONS(701), - [sym__external_open_bracket] = ACTIONS(701), - [sym__external_open_bracket2] = ACTIONS(701), + [sym__newline] = ACTIONS(735), + [sym__semicolon] = ACTIONS(735), + [sym__raw_string_literal] = ACTIONS(735), + [sym__external_else] = ACTIONS(735), + [sym__external_open_parenthesis] = ACTIONS(735), + [sym__external_open_brace] = ACTIONS(735), + [sym__external_open_bracket] = ACTIONS(735), + [sym__external_open_bracket2] = ACTIONS(735), }, [329] = { - [sym_identifier] = ACTIONS(703), - [anon_sym_BSLASH] = ACTIONS(705), - [anon_sym_function] = ACTIONS(703), - [anon_sym_EQ] = ACTIONS(703), - [anon_sym_if] = ACTIONS(703), - [anon_sym_for] = ACTIONS(703), - [anon_sym_while] = ACTIONS(703), - [anon_sym_repeat] = ACTIONS(703), - [anon_sym_QMARK] = ACTIONS(705), - [anon_sym_TILDE] = ACTIONS(705), - [anon_sym_BANG] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(705), - [anon_sym_DASH] = ACTIONS(703), - [anon_sym_LT_DASH] = ACTIONS(705), - [anon_sym_LT_LT_DASH] = ACTIONS(705), - [anon_sym_COLON_EQ] = ACTIONS(705), - [anon_sym_DASH_GT] = ACTIONS(703), - [anon_sym_DASH_GT_GT] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(703), - [anon_sym_AMP] = ACTIONS(703), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(703), - [anon_sym_LT_EQ] = ACTIONS(705), - [anon_sym_GT] = ACTIONS(703), - [anon_sym_GT_EQ] = ACTIONS(705), - [anon_sym_EQ_EQ] = ACTIONS(705), - [anon_sym_BANG_EQ] = ACTIONS(705), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_SLASH] = ACTIONS(705), - [anon_sym_STAR_STAR] = ACTIONS(705), - [anon_sym_CARET] = ACTIONS(705), - [aux_sym_binary_operator_token1] = ACTIONS(705), - [anon_sym_PIPE_GT] = ACTIONS(705), - [anon_sym_COLON] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [anon_sym_AT] = ACTIONS(705), - [sym__hex_literal] = ACTIONS(705), - [sym__number_literal] = ACTIONS(703), - [anon_sym_SQUOTE] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [sym_dots] = ACTIONS(703), - [sym_dot_dot_i] = ACTIONS(705), - [sym_return] = ACTIONS(703), - [sym_next] = ACTIONS(703), - [sym_break] = ACTIONS(703), - [sym_true] = ACTIONS(703), - [sym_false] = ACTIONS(703), - [sym_null] = ACTIONS(703), - [sym_inf] = ACTIONS(703), - [sym_nan] = ACTIONS(703), - [anon_sym_NA] = ACTIONS(703), - [anon_sym_NA_integer_] = ACTIONS(703), - [anon_sym_NA_real_] = ACTIONS(703), - [anon_sym_NA_complex_] = ACTIONS(703), - [anon_sym_NA_character_] = ACTIONS(703), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(705), - [sym__semicolon] = ACTIONS(705), - [sym__raw_string_literal] = ACTIONS(705), - [sym__external_else] = ACTIONS(705), - [sym__external_open_parenthesis] = ACTIONS(705), - [sym__external_open_brace] = ACTIONS(705), - [sym__external_close_brace] = ACTIONS(705), - [sym__external_open_bracket] = ACTIONS(705), - [sym__external_open_bracket2] = ACTIONS(705), - }, - [330] = { - [sym_identifier] = ACTIONS(707), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_function] = ACTIONS(707), - [anon_sym_EQ] = ACTIONS(707), - [anon_sym_if] = ACTIONS(707), - [anon_sym_for] = ACTIONS(707), - [anon_sym_while] = ACTIONS(707), - [anon_sym_repeat] = ACTIONS(707), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_LT_DASH] = ACTIONS(709), - [anon_sym_LT_LT_DASH] = ACTIONS(709), - [anon_sym_COLON_EQ] = ACTIONS(709), - [anon_sym_DASH_GT] = ACTIONS(707), - [anon_sym_DASH_GT_GT] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(707), - [anon_sym_PIPE_PIPE] = ACTIONS(709), - [anon_sym_AMP_AMP] = ACTIONS(709), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_LT_EQ] = ACTIONS(709), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_EQ] = ACTIONS(709), - [anon_sym_EQ_EQ] = ACTIONS(709), - [anon_sym_BANG_EQ] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(707), - [anon_sym_SLASH] = ACTIONS(709), - [anon_sym_STAR_STAR] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [aux_sym_binary_operator_token1] = ACTIONS(709), - [anon_sym_PIPE_GT] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(709), - [sym__hex_literal] = ACTIONS(709), - [sym__number_literal] = ACTIONS(707), - [anon_sym_SQUOTE] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_dots] = ACTIONS(707), - [sym_dot_dot_i] = ACTIONS(709), - [sym_return] = ACTIONS(707), - [sym_next] = ACTIONS(707), - [sym_break] = ACTIONS(707), - [sym_true] = ACTIONS(707), - [sym_false] = ACTIONS(707), - [sym_null] = ACTIONS(707), - [sym_inf] = ACTIONS(707), - [sym_nan] = ACTIONS(707), - [anon_sym_NA] = ACTIONS(707), - [anon_sym_NA_integer_] = ACTIONS(707), - [anon_sym_NA_real_] = ACTIONS(707), - [anon_sym_NA_complex_] = ACTIONS(707), - [anon_sym_NA_character_] = ACTIONS(707), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(709), - [sym__semicolon] = ACTIONS(709), - [sym__raw_string_literal] = ACTIONS(709), - [sym__external_else] = ACTIONS(709), - [sym__external_open_parenthesis] = ACTIONS(709), - [sym__external_open_brace] = ACTIONS(709), - [sym__external_close_brace] = ACTIONS(709), - [sym__external_open_bracket] = ACTIONS(709), - [sym__external_open_bracket2] = ACTIONS(709), - }, - [331] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(338), - [aux_sym_braced_expression_repeat1] = STATE(397), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), + [ts_builtin_sym_end] = ACTIONS(739), + [sym_identifier] = ACTIONS(741), + [anon_sym_BSLASH] = ACTIONS(739), + [anon_sym_function] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(741), + [anon_sym_if] = ACTIONS(741), + [anon_sym_for] = ACTIONS(741), + [anon_sym_while] = ACTIONS(741), + [anon_sym_repeat] = ACTIONS(741), + [anon_sym_QMARK] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_LT_DASH] = ACTIONS(739), + [anon_sym_LT_LT_DASH] = ACTIONS(739), + [anon_sym_COLON_EQ] = ACTIONS(739), + [anon_sym_DASH_GT] = ACTIONS(741), + [anon_sym_DASH_GT_GT] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(739), + [anon_sym_STAR] = ACTIONS(741), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(739), + [anon_sym_CARET] = ACTIONS(739), + [aux_sym_binary_operator_token1] = ACTIONS(739), + [anon_sym_PIPE_GT] = ACTIONS(739), + [anon_sym_COLON] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(739), + [anon_sym_AT] = ACTIONS(739), + [sym__hex_literal] = ACTIONS(739), + [sym__number_literal] = ACTIONS(741), + [anon_sym_SQUOTE] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [sym_dots] = ACTIONS(741), + [sym_dot_dot_i] = ACTIONS(739), + [sym_return] = ACTIONS(741), + [sym_next] = ACTIONS(741), + [sym_break] = ACTIONS(741), + [sym_true] = ACTIONS(741), + [sym_false] = ACTIONS(741), + [sym_null] = ACTIONS(741), + [sym_inf] = ACTIONS(741), + [sym_nan] = ACTIONS(741), [anon_sym_NA] = ACTIONS(741), [anon_sym_NA_integer_] = ACTIONS(741), [anon_sym_NA_real_] = ACTIONS(741), [anon_sym_NA_complex_] = ACTIONS(741), [anon_sym_NA_character_] = ACTIONS(741), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(739), + [sym__semicolon] = ACTIONS(739), + [sym__raw_string_literal] = ACTIONS(739), + [sym__external_else] = ACTIONS(739), + [sym__external_open_parenthesis] = ACTIONS(739), + [sym__external_open_brace] = ACTIONS(739), + [sym__external_open_bracket] = ACTIONS(739), + [sym__external_open_bracket2] = ACTIONS(739), + }, + [330] = { + [ts_builtin_sym_end] = ACTIONS(743), + [sym_identifier] = ACTIONS(745), + [anon_sym_BSLASH] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_EQ] = ACTIONS(745), + [anon_sym_if] = ACTIONS(745), + [anon_sym_for] = ACTIONS(745), + [anon_sym_while] = ACTIONS(745), + [anon_sym_repeat] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(743), + [anon_sym_TILDE] = ACTIONS(743), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_LT_DASH] = ACTIONS(743), + [anon_sym_LT_LT_DASH] = ACTIONS(743), + [anon_sym_COLON_EQ] = ACTIONS(743), + [anon_sym_DASH_GT] = ACTIONS(745), + [anon_sym_DASH_GT_GT] = ACTIONS(743), + [anon_sym_PIPE] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(743), + [anon_sym_LT] = ACTIONS(745), + [anon_sym_LT_EQ] = ACTIONS(743), + [anon_sym_GT] = ACTIONS(745), + [anon_sym_GT_EQ] = ACTIONS(743), + [anon_sym_EQ_EQ] = ACTIONS(743), + [anon_sym_BANG_EQ] = ACTIONS(743), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(743), + [anon_sym_STAR_STAR] = ACTIONS(743), + [anon_sym_CARET] = ACTIONS(743), + [aux_sym_binary_operator_token1] = ACTIONS(743), + [anon_sym_PIPE_GT] = ACTIONS(743), + [anon_sym_COLON] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(743), + [sym__hex_literal] = ACTIONS(743), + [sym__number_literal] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(743), + [sym_dots] = ACTIONS(745), + [sym_dot_dot_i] = ACTIONS(743), + [sym_return] = ACTIONS(745), + [sym_next] = ACTIONS(745), + [sym_break] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [sym_null] = ACTIONS(745), + [sym_inf] = ACTIONS(745), + [sym_nan] = ACTIONS(745), + [anon_sym_NA] = ACTIONS(745), + [anon_sym_NA_integer_] = ACTIONS(745), + [anon_sym_NA_real_] = ACTIONS(745), + [anon_sym_NA_complex_] = ACTIONS(745), + [anon_sym_NA_character_] = ACTIONS(745), + [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(743), [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(749), + [sym__raw_string_literal] = ACTIONS(743), + [sym__external_else] = ACTIONS(743), + [sym__external_open_parenthesis] = ACTIONS(743), + [sym__external_open_brace] = ACTIONS(743), + [sym__external_open_bracket] = ACTIONS(743), + [sym__external_open_bracket2] = ACTIONS(743), }, - [332] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), + [331] = { + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(416), - [aux_sym_braced_expression_repeat1] = STATE(397), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(1743), + [aux_sym_braced_expression_repeat1] = STATE(351), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(751), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(747), + }, + [332] = { + [ts_builtin_sym_end] = ACTIONS(749), + [sym_identifier] = ACTIONS(751), + [anon_sym_BSLASH] = ACTIONS(749), + [anon_sym_function] = ACTIONS(751), + [anon_sym_EQ] = ACTIONS(751), + [anon_sym_if] = ACTIONS(751), + [anon_sym_for] = ACTIONS(751), + [anon_sym_while] = ACTIONS(751), + [anon_sym_repeat] = ACTIONS(751), + [anon_sym_QMARK] = ACTIONS(749), + [anon_sym_TILDE] = ACTIONS(749), + [anon_sym_BANG] = ACTIONS(751), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_LT_DASH] = ACTIONS(749), + [anon_sym_LT_LT_DASH] = ACTIONS(749), + [anon_sym_COLON_EQ] = ACTIONS(749), + [anon_sym_DASH_GT] = ACTIONS(751), + [anon_sym_DASH_GT_GT] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE_PIPE] = ACTIONS(749), + [anon_sym_AMP_AMP] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(749), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_CARET] = ACTIONS(749), + [aux_sym_binary_operator_token1] = ACTIONS(749), + [anon_sym_PIPE_GT] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(751), + [anon_sym_DOLLAR] = ACTIONS(749), + [anon_sym_AT] = ACTIONS(749), + [sym__hex_literal] = ACTIONS(749), + [sym__number_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(749), + [sym_dots] = ACTIONS(751), + [sym_dot_dot_i] = ACTIONS(749), + [sym_return] = ACTIONS(751), + [sym_next] = ACTIONS(751), + [sym_break] = ACTIONS(751), + [sym_true] = ACTIONS(751), + [sym_false] = ACTIONS(751), + [sym_null] = ACTIONS(751), + [sym_inf] = ACTIONS(751), + [sym_nan] = ACTIONS(751), + [anon_sym_NA] = ACTIONS(751), + [anon_sym_NA_integer_] = ACTIONS(751), + [anon_sym_NA_real_] = ACTIONS(751), + [anon_sym_NA_complex_] = ACTIONS(751), + [anon_sym_NA_character_] = ACTIONS(751), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(749), + [sym__semicolon] = ACTIONS(749), + [sym__raw_string_literal] = ACTIONS(749), + [sym__external_else] = ACTIONS(749), + [sym__external_open_parenthesis] = ACTIONS(749), + [sym__external_open_brace] = ACTIONS(749), + [sym__external_open_bracket] = ACTIONS(749), + [sym__external_open_bracket2] = ACTIONS(749), }, [333] = { - [sym_identifier] = ACTIONS(753), - [anon_sym_BSLASH] = ACTIONS(755), - [anon_sym_function] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [anon_sym_repeat] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_TILDE] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(755), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_LT_DASH] = ACTIONS(755), - [anon_sym_LT_LT_DASH] = ACTIONS(755), - [anon_sym_COLON_EQ] = ACTIONS(755), - [anon_sym_DASH_GT] = ACTIONS(753), - [anon_sym_DASH_GT_GT] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(753), - [anon_sym_PIPE_PIPE] = ACTIONS(755), - [anon_sym_AMP_AMP] = ACTIONS(755), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_LT_EQ] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(755), - [anon_sym_EQ_EQ] = ACTIONS(755), - [anon_sym_BANG_EQ] = ACTIONS(755), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(755), - [anon_sym_STAR_STAR] = ACTIONS(755), - [anon_sym_CARET] = ACTIONS(755), - [aux_sym_binary_operator_token1] = ACTIONS(755), - [anon_sym_PIPE_GT] = ACTIONS(755), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(755), - [sym__hex_literal] = ACTIONS(755), - [sym__number_literal] = ACTIONS(753), - [anon_sym_SQUOTE] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(755), - [sym_dots] = ACTIONS(753), - [sym_dot_dot_i] = ACTIONS(755), - [sym_return] = ACTIONS(753), - [sym_next] = ACTIONS(753), - [sym_break] = ACTIONS(753), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_null] = ACTIONS(753), - [sym_inf] = ACTIONS(753), - [sym_nan] = ACTIONS(753), - [anon_sym_NA] = ACTIONS(753), - [anon_sym_NA_integer_] = ACTIONS(753), - [anon_sym_NA_real_] = ACTIONS(753), - [anon_sym_NA_complex_] = ACTIONS(753), - [anon_sym_NA_character_] = ACTIONS(753), + [ts_builtin_sym_end] = ACTIONS(753), + [sym_identifier] = ACTIONS(755), + [anon_sym_BSLASH] = ACTIONS(753), + [anon_sym_function] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_repeat] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_DASH] = ACTIONS(753), + [anon_sym_LT_LT_DASH] = ACTIONS(753), + [anon_sym_COLON_EQ] = ACTIONS(753), + [anon_sym_DASH_GT] = ACTIONS(755), + [anon_sym_DASH_GT_GT] = ACTIONS(753), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(753), + [anon_sym_AMP_AMP] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(753), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_CARET] = ACTIONS(753), + [aux_sym_binary_operator_token1] = ACTIONS(753), + [anon_sym_PIPE_GT] = ACTIONS(753), + [anon_sym_COLON] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(753), + [sym__hex_literal] = ACTIONS(753), + [sym__number_literal] = ACTIONS(755), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(753), + [sym_dots] = ACTIONS(755), + [sym_dot_dot_i] = ACTIONS(753), + [sym_return] = ACTIONS(755), + [sym_next] = ACTIONS(755), + [sym_break] = ACTIONS(755), + [sym_true] = ACTIONS(755), + [sym_false] = ACTIONS(755), + [sym_null] = ACTIONS(755), + [sym_inf] = ACTIONS(755), + [sym_nan] = ACTIONS(755), + [anon_sym_NA] = ACTIONS(755), + [anon_sym_NA_integer_] = ACTIONS(755), + [anon_sym_NA_real_] = ACTIONS(755), + [anon_sym_NA_complex_] = ACTIONS(755), + [anon_sym_NA_character_] = ACTIONS(755), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(755), - [sym__semicolon] = ACTIONS(755), - [sym__raw_string_literal] = ACTIONS(755), - [sym__external_else] = ACTIONS(755), - [sym__external_open_parenthesis] = ACTIONS(755), - [sym__external_open_brace] = ACTIONS(755), - [sym__external_close_brace] = ACTIONS(755), - [sym__external_open_bracket] = ACTIONS(755), - [sym__external_open_bracket2] = ACTIONS(755), + [sym__newline] = ACTIONS(753), + [sym__semicolon] = ACTIONS(753), + [sym__raw_string_literal] = ACTIONS(753), + [sym__external_else] = ACTIONS(753), + [sym__external_open_parenthesis] = ACTIONS(753), + [sym__external_open_brace] = ACTIONS(753), + [sym__external_open_bracket] = ACTIONS(753), + [sym__external_open_bracket2] = ACTIONS(753), }, [334] = { - [sym_identifier] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_function] = ACTIONS(757), - [anon_sym_EQ] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_repeat] = ACTIONS(757), - [anon_sym_QMARK] = ACTIONS(759), - [anon_sym_TILDE] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LT_DASH] = ACTIONS(759), - [anon_sym_LT_LT_DASH] = ACTIONS(759), - [anon_sym_COLON_EQ] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(757), - [anon_sym_DASH_GT_GT] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_AMP] = ACTIONS(757), - [anon_sym_PIPE_PIPE] = ACTIONS(759), - [anon_sym_AMP_AMP] = ACTIONS(759), - [anon_sym_LT] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(759), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(759), - [anon_sym_EQ_EQ] = ACTIONS(759), - [anon_sym_BANG_EQ] = ACTIONS(759), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(759), - [aux_sym_binary_operator_token1] = ACTIONS(759), - [anon_sym_PIPE_GT] = ACTIONS(759), - [anon_sym_COLON] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(759), - [anon_sym_AT] = ACTIONS(759), - [sym__hex_literal] = ACTIONS(759), - [sym__number_literal] = ACTIONS(757), - [anon_sym_SQUOTE] = ACTIONS(759), - [anon_sym_DQUOTE] = ACTIONS(759), - [sym_dots] = ACTIONS(757), - [sym_dot_dot_i] = ACTIONS(759), - [sym_return] = ACTIONS(757), - [sym_next] = ACTIONS(757), - [sym_break] = ACTIONS(757), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_null] = ACTIONS(757), - [sym_inf] = ACTIONS(757), - [sym_nan] = ACTIONS(757), - [anon_sym_NA] = ACTIONS(757), - [anon_sym_NA_integer_] = ACTIONS(757), - [anon_sym_NA_real_] = ACTIONS(757), - [anon_sym_NA_complex_] = ACTIONS(757), - [anon_sym_NA_character_] = ACTIONS(757), + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(1733), + [aux_sym_braced_expression_repeat1] = STATE(438), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(759), - [sym__semicolon] = ACTIONS(759), - [sym__raw_string_literal] = ACTIONS(759), - [sym__external_else] = ACTIONS(759), - [sym__external_open_parenthesis] = ACTIONS(759), - [sym__external_open_brace] = ACTIONS(759), - [sym__external_close_brace] = ACTIONS(759), - [sym__external_open_bracket] = ACTIONS(759), - [sym__external_open_bracket2] = ACTIONS(759), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(757), }, [335] = { - [sym_identifier] = ACTIONS(761), - [anon_sym_BSLASH] = ACTIONS(763), - [anon_sym_function] = ACTIONS(761), - [anon_sym_EQ] = ACTIONS(761), - [anon_sym_if] = ACTIONS(761), - [anon_sym_for] = ACTIONS(761), - [anon_sym_while] = ACTIONS(761), - [anon_sym_repeat] = ACTIONS(761), - [anon_sym_QMARK] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_LT_DASH] = ACTIONS(763), - [anon_sym_LT_LT_DASH] = ACTIONS(763), - [anon_sym_COLON_EQ] = ACTIONS(763), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DASH_GT_GT] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(761), - [anon_sym_AMP] = ACTIONS(761), - [anon_sym_PIPE_PIPE] = ACTIONS(763), - [anon_sym_AMP_AMP] = ACTIONS(763), - [anon_sym_LT] = ACTIONS(761), - [anon_sym_LT_EQ] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(761), - [anon_sym_GT_EQ] = ACTIONS(763), - [anon_sym_EQ_EQ] = ACTIONS(763), - [anon_sym_BANG_EQ] = ACTIONS(763), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(763), - [anon_sym_CARET] = ACTIONS(763), - [aux_sym_binary_operator_token1] = ACTIONS(763), - [anon_sym_PIPE_GT] = ACTIONS(763), - [anon_sym_COLON] = ACTIONS(761), - [anon_sym_DOLLAR] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(763), - [sym__hex_literal] = ACTIONS(763), - [sym__number_literal] = ACTIONS(761), - [anon_sym_SQUOTE] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(763), - [sym_dots] = ACTIONS(761), - [sym_dot_dot_i] = ACTIONS(763), - [sym_return] = ACTIONS(761), - [sym_next] = ACTIONS(761), - [sym_break] = ACTIONS(761), - [sym_true] = ACTIONS(761), - [sym_false] = ACTIONS(761), - [sym_null] = ACTIONS(761), - [sym_inf] = ACTIONS(761), - [sym_nan] = ACTIONS(761), - [anon_sym_NA] = ACTIONS(761), - [anon_sym_NA_integer_] = ACTIONS(761), - [anon_sym_NA_real_] = ACTIONS(761), - [anon_sym_NA_complex_] = ACTIONS(761), - [anon_sym_NA_character_] = ACTIONS(761), + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(1768), + [aux_sym_braced_expression_repeat1] = STATE(327), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(763), - [sym__semicolon] = ACTIONS(763), - [sym__raw_string_literal] = ACTIONS(763), - [sym__external_else] = ACTIONS(763), - [sym__external_open_parenthesis] = ACTIONS(763), - [sym__external_open_brace] = ACTIONS(763), - [sym__external_close_brace] = ACTIONS(763), - [sym__external_open_bracket] = ACTIONS(763), - [sym__external_open_bracket2] = ACTIONS(763), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(759), }, [336] = { - [sym_identifier] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_function] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_if] = ACTIONS(765), - [anon_sym_for] = ACTIONS(765), - [anon_sym_while] = ACTIONS(765), - [anon_sym_repeat] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(767), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LT_DASH] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(767), - [anon_sym_COLON_EQ] = ACTIONS(767), - [anon_sym_DASH_GT] = ACTIONS(765), - [anon_sym_DASH_GT_GT] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_LT_EQ] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_GT_EQ] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(767), - [anon_sym_BANG_EQ] = ACTIONS(767), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(767), - [anon_sym_CARET] = ACTIONS(767), - [aux_sym_binary_operator_token1] = ACTIONS(767), - [anon_sym_PIPE_GT] = ACTIONS(767), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [anon_sym_AT] = ACTIONS(767), - [sym__hex_literal] = ACTIONS(767), - [sym__number_literal] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(767), - [sym_dots] = ACTIONS(765), - [sym_dot_dot_i] = ACTIONS(767), - [sym_return] = ACTIONS(765), - [sym_next] = ACTIONS(765), - [sym_break] = ACTIONS(765), - [sym_true] = ACTIONS(765), - [sym_false] = ACTIONS(765), - [sym_null] = ACTIONS(765), - [sym_inf] = ACTIONS(765), - [sym_nan] = ACTIONS(765), - [anon_sym_NA] = ACTIONS(765), - [anon_sym_NA_integer_] = ACTIONS(765), - [anon_sym_NA_real_] = ACTIONS(765), - [anon_sym_NA_complex_] = ACTIONS(765), - [anon_sym_NA_character_] = ACTIONS(765), + [ts_builtin_sym_end] = ACTIONS(761), + [sym_identifier] = ACTIONS(763), + [anon_sym_BSLASH] = ACTIONS(761), + [anon_sym_function] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_if] = ACTIONS(763), + [anon_sym_for] = ACTIONS(763), + [anon_sym_while] = ACTIONS(763), + [anon_sym_repeat] = ACTIONS(763), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_LT_DASH] = ACTIONS(761), + [anon_sym_LT_LT_DASH] = ACTIONS(761), + [anon_sym_COLON_EQ] = ACTIONS(761), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_DASH_GT_GT] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(761), + [anon_sym_AMP_AMP] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(761), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_CARET] = ACTIONS(761), + [aux_sym_binary_operator_token1] = ACTIONS(761), + [anon_sym_PIPE_GT] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(761), + [sym__hex_literal] = ACTIONS(761), + [sym__number_literal] = ACTIONS(763), + [anon_sym_SQUOTE] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(761), + [sym_dots] = ACTIONS(763), + [sym_dot_dot_i] = ACTIONS(761), + [sym_return] = ACTIONS(763), + [sym_next] = ACTIONS(763), + [sym_break] = ACTIONS(763), + [sym_true] = ACTIONS(763), + [sym_false] = ACTIONS(763), + [sym_null] = ACTIONS(763), + [sym_inf] = ACTIONS(763), + [sym_nan] = ACTIONS(763), + [anon_sym_NA] = ACTIONS(763), + [anon_sym_NA_integer_] = ACTIONS(763), + [anon_sym_NA_real_] = ACTIONS(763), + [anon_sym_NA_complex_] = ACTIONS(763), + [anon_sym_NA_character_] = ACTIONS(763), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(767), - [sym__semicolon] = ACTIONS(767), - [sym__raw_string_literal] = ACTIONS(767), - [sym__external_else] = ACTIONS(767), - [sym__external_open_parenthesis] = ACTIONS(767), - [sym__external_open_brace] = ACTIONS(767), - [sym__external_close_brace] = ACTIONS(767), - [sym__external_open_bracket] = ACTIONS(767), - [sym__external_open_bracket2] = ACTIONS(767), + [sym__newline] = ACTIONS(761), + [sym__semicolon] = ACTIONS(761), + [sym__raw_string_literal] = ACTIONS(761), + [sym__external_else] = ACTIONS(761), + [sym__external_open_parenthesis] = ACTIONS(761), + [sym__external_open_brace] = ACTIONS(761), + [sym__external_open_bracket] = ACTIONS(761), + [sym__external_open_bracket2] = ACTIONS(761), }, [337] = { - [sym_identifier] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_function] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(769), - [anon_sym_if] = ACTIONS(769), - [anon_sym_for] = ACTIONS(769), - [anon_sym_while] = ACTIONS(769), - [anon_sym_repeat] = ACTIONS(769), - [anon_sym_QMARK] = ACTIONS(771), - [anon_sym_TILDE] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_LT_DASH] = ACTIONS(771), - [anon_sym_LT_LT_DASH] = ACTIONS(771), - [anon_sym_COLON_EQ] = ACTIONS(771), - [anon_sym_DASH_GT] = ACTIONS(769), - [anon_sym_DASH_GT_GT] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(769), - [anon_sym_LT_EQ] = ACTIONS(771), - [anon_sym_GT] = ACTIONS(769), - [anon_sym_GT_EQ] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(771), - [anon_sym_BANG_EQ] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(771), - [aux_sym_binary_operator_token1] = ACTIONS(771), - [anon_sym_PIPE_GT] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [anon_sym_AT] = ACTIONS(771), - [sym__hex_literal] = ACTIONS(771), - [sym__number_literal] = ACTIONS(769), - [anon_sym_SQUOTE] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(771), - [sym_dots] = ACTIONS(769), - [sym_dot_dot_i] = ACTIONS(771), - [sym_return] = ACTIONS(769), - [sym_next] = ACTIONS(769), - [sym_break] = ACTIONS(769), - [sym_true] = ACTIONS(769), - [sym_false] = ACTIONS(769), - [sym_null] = ACTIONS(769), - [sym_inf] = ACTIONS(769), - [sym_nan] = ACTIONS(769), - [anon_sym_NA] = ACTIONS(769), - [anon_sym_NA_integer_] = ACTIONS(769), - [anon_sym_NA_real_] = ACTIONS(769), - [anon_sym_NA_complex_] = ACTIONS(769), - [anon_sym_NA_character_] = ACTIONS(769), + [ts_builtin_sym_end] = ACTIONS(765), + [sym_identifier] = ACTIONS(767), + [anon_sym_BSLASH] = ACTIONS(765), + [anon_sym_function] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(767), + [anon_sym_if] = ACTIONS(767), + [anon_sym_for] = ACTIONS(767), + [anon_sym_while] = ACTIONS(767), + [anon_sym_repeat] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_LT_DASH] = ACTIONS(765), + [anon_sym_LT_LT_DASH] = ACTIONS(765), + [anon_sym_COLON_EQ] = ACTIONS(765), + [anon_sym_DASH_GT] = ACTIONS(767), + [anon_sym_DASH_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [aux_sym_binary_operator_token1] = ACTIONS(765), + [anon_sym_PIPE_GT] = ACTIONS(765), + [anon_sym_COLON] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [sym__hex_literal] = ACTIONS(765), + [sym__number_literal] = ACTIONS(767), + [anon_sym_SQUOTE] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [sym_dots] = ACTIONS(767), + [sym_dot_dot_i] = ACTIONS(765), + [sym_return] = ACTIONS(767), + [sym_next] = ACTIONS(767), + [sym_break] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_inf] = ACTIONS(767), + [sym_nan] = ACTIONS(767), + [anon_sym_NA] = ACTIONS(767), + [anon_sym_NA_integer_] = ACTIONS(767), + [anon_sym_NA_real_] = ACTIONS(767), + [anon_sym_NA_complex_] = ACTIONS(767), + [anon_sym_NA_character_] = ACTIONS(767), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(771), - [sym__semicolon] = ACTIONS(771), - [sym__raw_string_literal] = ACTIONS(771), - [sym__external_else] = ACTIONS(771), - [sym__external_open_parenthesis] = ACTIONS(771), - [sym__external_open_brace] = ACTIONS(771), - [sym__external_close_brace] = ACTIONS(771), - [sym__external_open_bracket] = ACTIONS(771), - [sym__external_open_bracket2] = ACTIONS(771), + [sym__newline] = ACTIONS(765), + [sym__semicolon] = ACTIONS(765), + [sym__raw_string_literal] = ACTIONS(765), + [sym__external_else] = ACTIONS(765), + [sym__external_open_parenthesis] = ACTIONS(765), + [sym__external_open_brace] = ACTIONS(765), + [sym__external_open_bracket] = ACTIONS(765), + [sym__external_open_bracket2] = ACTIONS(765), }, [338] = { - [sym_identifier] = ACTIONS(773), + [ts_builtin_sym_end] = ACTIONS(769), + [sym_identifier] = ACTIONS(771), + [anon_sym_BSLASH] = ACTIONS(769), + [anon_sym_function] = ACTIONS(771), + [anon_sym_EQ] = ACTIONS(771), + [anon_sym_if] = ACTIONS(771), + [anon_sym_for] = ACTIONS(771), + [anon_sym_while] = ACTIONS(771), + [anon_sym_repeat] = ACTIONS(771), + [anon_sym_QMARK] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(771), + [anon_sym_LT_DASH] = ACTIONS(769), + [anon_sym_LT_LT_DASH] = ACTIONS(769), + [anon_sym_COLON_EQ] = ACTIONS(769), + [anon_sym_DASH_GT] = ACTIONS(771), + [anon_sym_DASH_GT_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), + [aux_sym_binary_operator_token1] = ACTIONS(769), + [anon_sym_PIPE_GT] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(769), + [sym__hex_literal] = ACTIONS(769), + [sym__number_literal] = ACTIONS(771), + [anon_sym_SQUOTE] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [sym_dots] = ACTIONS(771), + [sym_dot_dot_i] = ACTIONS(769), + [sym_return] = ACTIONS(771), + [sym_next] = ACTIONS(771), + [sym_break] = ACTIONS(771), + [sym_true] = ACTIONS(771), + [sym_false] = ACTIONS(771), + [sym_null] = ACTIONS(771), + [sym_inf] = ACTIONS(771), + [sym_nan] = ACTIONS(771), + [anon_sym_NA] = ACTIONS(771), + [anon_sym_NA_integer_] = ACTIONS(771), + [anon_sym_NA_real_] = ACTIONS(771), + [anon_sym_NA_complex_] = ACTIONS(771), + [anon_sym_NA_character_] = ACTIONS(771), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(769), + [sym__semicolon] = ACTIONS(769), + [sym__raw_string_literal] = ACTIONS(769), + [sym__external_else] = ACTIONS(769), + [sym__external_open_parenthesis] = ACTIONS(769), + [sym__external_open_brace] = ACTIONS(769), + [sym__external_open_bracket] = ACTIONS(769), + [sym__external_open_bracket2] = ACTIONS(769), + }, + [339] = { + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(1692), + [aux_sym_braced_expression_repeat1] = STATE(367), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(773), + }, + [340] = { + [ts_builtin_sym_end] = ACTIONS(775), + [sym_identifier] = ACTIONS(777), [anon_sym_BSLASH] = ACTIONS(775), - [anon_sym_function] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(773), - [anon_sym_if] = ACTIONS(773), - [anon_sym_for] = ACTIONS(773), - [anon_sym_while] = ACTIONS(773), - [anon_sym_repeat] = ACTIONS(773), + [anon_sym_function] = ACTIONS(777), + [anon_sym_EQ] = ACTIONS(777), + [anon_sym_if] = ACTIONS(777), + [anon_sym_for] = ACTIONS(777), + [anon_sym_while] = ACTIONS(777), + [anon_sym_repeat] = ACTIONS(777), [anon_sym_QMARK] = ACTIONS(775), [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(773), + [anon_sym_BANG] = ACTIONS(777), [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(777), [anon_sym_LT_DASH] = ACTIONS(775), [anon_sym_LT_LT_DASH] = ACTIONS(775), [anon_sym_COLON_EQ] = ACTIONS(775), - [anon_sym_DASH_GT] = ACTIONS(773), + [anon_sym_DASH_GT] = ACTIONS(777), [anon_sym_DASH_GT_GT] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(777), [anon_sym_PIPE_PIPE] = ACTIONS(775), [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(777), [anon_sym_LT_EQ] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(777), [anon_sym_GT_EQ] = ACTIONS(775), [anon_sym_EQ_EQ] = ACTIONS(775), [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(777), [anon_sym_SLASH] = ACTIONS(775), [anon_sym_STAR_STAR] = ACTIONS(775), [anon_sym_CARET] = ACTIONS(775), [aux_sym_binary_operator_token1] = ACTIONS(775), [anon_sym_PIPE_GT] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(773), + [anon_sym_COLON] = ACTIONS(777), [anon_sym_DOLLAR] = ACTIONS(775), [anon_sym_AT] = ACTIONS(775), [sym__hex_literal] = ACTIONS(775), - [sym__number_literal] = ACTIONS(773), + [sym__number_literal] = ACTIONS(777), [anon_sym_SQUOTE] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(775), - [sym_dots] = ACTIONS(773), + [sym_dots] = ACTIONS(777), [sym_dot_dot_i] = ACTIONS(775), - [sym_return] = ACTIONS(773), - [sym_next] = ACTIONS(773), - [sym_break] = ACTIONS(773), - [sym_true] = ACTIONS(773), - [sym_false] = ACTIONS(773), - [sym_null] = ACTIONS(773), - [sym_inf] = ACTIONS(773), - [sym_nan] = ACTIONS(773), - [anon_sym_NA] = ACTIONS(773), - [anon_sym_NA_integer_] = ACTIONS(773), - [anon_sym_NA_real_] = ACTIONS(773), - [anon_sym_NA_complex_] = ACTIONS(773), - [anon_sym_NA_character_] = ACTIONS(773), + [sym_return] = ACTIONS(777), + [sym_next] = ACTIONS(777), + [sym_break] = ACTIONS(777), + [sym_true] = ACTIONS(777), + [sym_false] = ACTIONS(777), + [sym_null] = ACTIONS(777), + [sym_inf] = ACTIONS(777), + [sym_nan] = ACTIONS(777), + [anon_sym_NA] = ACTIONS(777), + [anon_sym_NA_integer_] = ACTIONS(777), + [anon_sym_NA_real_] = ACTIONS(777), + [anon_sym_NA_complex_] = ACTIONS(777), + [anon_sym_NA_character_] = ACTIONS(777), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(775), [sym__semicolon] = ACTIONS(775), @@ -31114,215 +31254,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_else] = ACTIONS(775), [sym__external_open_parenthesis] = ACTIONS(775), [sym__external_open_brace] = ACTIONS(775), - [sym__external_close_brace] = ACTIONS(775), [sym__external_open_bracket] = ACTIONS(775), [sym__external_open_bracket2] = ACTIONS(775), }, - [339] = { - [ts_builtin_sym_end] = ACTIONS(777), - [sym_identifier] = ACTIONS(779), - [anon_sym_BSLASH] = ACTIONS(777), - [anon_sym_function] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(779), - [anon_sym_if] = ACTIONS(779), - [anon_sym_for] = ACTIONS(779), - [anon_sym_while] = ACTIONS(779), - [anon_sym_repeat] = ACTIONS(779), - [anon_sym_QMARK] = ACTIONS(777), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LT_DASH] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(777), - [anon_sym_COLON_EQ] = ACTIONS(777), - [anon_sym_DASH_GT] = ACTIONS(779), - [anon_sym_DASH_GT_GT] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(779), - [anon_sym_PIPE_PIPE] = ACTIONS(777), - [anon_sym_AMP_AMP] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(779), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(779), - [anon_sym_GT_EQ] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(779), - [anon_sym_SLASH] = ACTIONS(777), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_CARET] = ACTIONS(777), - [aux_sym_binary_operator_token1] = ACTIONS(777), - [anon_sym_PIPE_GT] = ACTIONS(777), - [anon_sym_COLON] = ACTIONS(779), - [anon_sym_DOLLAR] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(777), - [sym__hex_literal] = ACTIONS(777), - [sym__number_literal] = ACTIONS(779), - [anon_sym_SQUOTE] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [sym_dots] = ACTIONS(779), - [sym_dot_dot_i] = ACTIONS(777), - [sym_return] = ACTIONS(779), - [sym_next] = ACTIONS(779), - [sym_break] = ACTIONS(779), - [sym_true] = ACTIONS(779), - [sym_false] = ACTIONS(779), - [sym_null] = ACTIONS(779), - [sym_inf] = ACTIONS(779), - [sym_nan] = ACTIONS(779), - [anon_sym_NA] = ACTIONS(779), - [anon_sym_NA_integer_] = ACTIONS(779), - [anon_sym_NA_real_] = ACTIONS(779), - [anon_sym_NA_complex_] = ACTIONS(779), - [anon_sym_NA_character_] = ACTIONS(779), + [341] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_identifier] = ACTIONS(781), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_if] = ACTIONS(781), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(781), + [anon_sym_repeat] = ACTIONS(781), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_COLON_EQ] = ACTIONS(779), + [anon_sym_DASH_GT] = ACTIONS(781), + [anon_sym_DASH_GT_GT] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(781), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_LT_EQ] = ACTIONS(779), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_EQ] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(779), + [anon_sym_BANG_EQ] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(779), + [anon_sym_STAR_STAR] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [aux_sym_binary_operator_token1] = ACTIONS(779), + [anon_sym_PIPE_GT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(781), + [anon_sym_DOLLAR] = ACTIONS(779), + [anon_sym_AT] = ACTIONS(779), + [sym__hex_literal] = ACTIONS(779), + [sym__number_literal] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [sym_dots] = ACTIONS(781), + [sym_dot_dot_i] = ACTIONS(779), + [sym_return] = ACTIONS(781), + [sym_next] = ACTIONS(781), + [sym_break] = ACTIONS(781), + [sym_true] = ACTIONS(781), + [sym_false] = ACTIONS(781), + [sym_null] = ACTIONS(781), + [sym_inf] = ACTIONS(781), + [sym_nan] = ACTIONS(781), + [anon_sym_NA] = ACTIONS(781), + [anon_sym_NA_integer_] = ACTIONS(781), + [anon_sym_NA_real_] = ACTIONS(781), + [anon_sym_NA_complex_] = ACTIONS(781), + [anon_sym_NA_character_] = ACTIONS(781), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(777), - [sym__semicolon] = ACTIONS(777), - [sym__raw_string_literal] = ACTIONS(777), - [sym__external_else] = ACTIONS(777), - [sym__external_open_parenthesis] = ACTIONS(777), - [sym__external_open_brace] = ACTIONS(777), - [sym__external_open_bracket] = ACTIONS(777), - [sym__external_open_bracket2] = ACTIONS(777), + [sym__newline] = ACTIONS(779), + [sym__semicolon] = ACTIONS(779), + [sym__raw_string_literal] = ACTIONS(779), + [sym__external_else] = ACTIONS(779), + [sym__external_open_parenthesis] = ACTIONS(779), + [sym__external_open_brace] = ACTIONS(779), + [sym__external_open_bracket] = ACTIONS(779), + [sym__external_open_bracket2] = ACTIONS(779), }, - [340] = { - [ts_builtin_sym_end] = ACTIONS(781), - [sym_identifier] = ACTIONS(783), - [anon_sym_BSLASH] = ACTIONS(781), - [anon_sym_function] = ACTIONS(783), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_if] = ACTIONS(783), - [anon_sym_for] = ACTIONS(783), - [anon_sym_while] = ACTIONS(783), - [anon_sym_repeat] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_LT_DASH] = ACTIONS(781), - [anon_sym_LT_LT_DASH] = ACTIONS(781), - [anon_sym_COLON_EQ] = ACTIONS(781), - [anon_sym_DASH_GT] = ACTIONS(783), - [anon_sym_DASH_GT_GT] = ACTIONS(781), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PIPE_PIPE] = ACTIONS(781), - [anon_sym_AMP_AMP] = ACTIONS(781), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_LT_EQ] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(781), - [anon_sym_EQ_EQ] = ACTIONS(781), - [anon_sym_BANG_EQ] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(781), - [anon_sym_STAR_STAR] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [aux_sym_binary_operator_token1] = ACTIONS(781), - [anon_sym_PIPE_GT] = ACTIONS(781), - [anon_sym_COLON] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_AT] = ACTIONS(781), - [sym__hex_literal] = ACTIONS(781), - [sym__number_literal] = ACTIONS(783), - [anon_sym_SQUOTE] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym_dots] = ACTIONS(783), - [sym_dot_dot_i] = ACTIONS(781), - [sym_return] = ACTIONS(783), - [sym_next] = ACTIONS(783), - [sym_break] = ACTIONS(783), - [sym_true] = ACTIONS(783), - [sym_false] = ACTIONS(783), - [sym_null] = ACTIONS(783), - [sym_inf] = ACTIONS(783), - [sym_nan] = ACTIONS(783), - [anon_sym_NA] = ACTIONS(783), - [anon_sym_NA_integer_] = ACTIONS(783), - [anon_sym_NA_real_] = ACTIONS(783), - [anon_sym_NA_complex_] = ACTIONS(783), - [anon_sym_NA_character_] = ACTIONS(783), + [342] = { + [ts_builtin_sym_end] = ACTIONS(783), + [sym_identifier] = ACTIONS(785), + [anon_sym_BSLASH] = ACTIONS(783), + [anon_sym_function] = ACTIONS(785), + [anon_sym_EQ] = ACTIONS(785), + [anon_sym_if] = ACTIONS(785), + [anon_sym_for] = ACTIONS(785), + [anon_sym_while] = ACTIONS(785), + [anon_sym_repeat] = ACTIONS(785), + [anon_sym_QMARK] = ACTIONS(783), + [anon_sym_TILDE] = ACTIONS(783), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_LT_DASH] = ACTIONS(783), + [anon_sym_LT_LT_DASH] = ACTIONS(783), + [anon_sym_COLON_EQ] = ACTIONS(783), + [anon_sym_DASH_GT] = ACTIONS(785), + [anon_sym_DASH_GT_GT] = ACTIONS(783), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(785), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_LT_EQ] = ACTIONS(783), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_GT_EQ] = ACTIONS(783), + [anon_sym_EQ_EQ] = ACTIONS(783), + [anon_sym_BANG_EQ] = ACTIONS(783), + [anon_sym_STAR] = ACTIONS(785), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_STAR_STAR] = ACTIONS(783), + [anon_sym_CARET] = ACTIONS(783), + [aux_sym_binary_operator_token1] = ACTIONS(783), + [anon_sym_PIPE_GT] = ACTIONS(783), + [anon_sym_COLON] = ACTIONS(785), + [anon_sym_DOLLAR] = ACTIONS(783), + [anon_sym_AT] = ACTIONS(783), + [sym__hex_literal] = ACTIONS(783), + [sym__number_literal] = ACTIONS(785), + [anon_sym_SQUOTE] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(783), + [sym_dots] = ACTIONS(785), + [sym_dot_dot_i] = ACTIONS(783), + [sym_return] = ACTIONS(785), + [sym_next] = ACTIONS(785), + [sym_break] = ACTIONS(785), + [sym_true] = ACTIONS(785), + [sym_false] = ACTIONS(785), + [sym_null] = ACTIONS(785), + [sym_inf] = ACTIONS(785), + [sym_nan] = ACTIONS(785), + [anon_sym_NA] = ACTIONS(785), + [anon_sym_NA_integer_] = ACTIONS(785), + [anon_sym_NA_real_] = ACTIONS(785), + [anon_sym_NA_complex_] = ACTIONS(785), + [anon_sym_NA_character_] = ACTIONS(785), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(781), - [sym__semicolon] = ACTIONS(781), - [sym__raw_string_literal] = ACTIONS(781), - [sym__external_else] = ACTIONS(781), - [sym__external_open_parenthesis] = ACTIONS(781), - [sym__external_open_brace] = ACTIONS(781), - [sym__external_open_bracket] = ACTIONS(781), - [sym__external_open_bracket2] = ACTIONS(781), + [sym__newline] = ACTIONS(783), + [sym__semicolon] = ACTIONS(783), + [sym__raw_string_literal] = ACTIONS(783), + [sym__external_else] = ACTIONS(783), + [sym__external_open_parenthesis] = ACTIONS(783), + [sym__external_open_brace] = ACTIONS(783), + [sym__external_open_bracket] = ACTIONS(783), + [sym__external_open_bracket2] = ACTIONS(783), }, - [341] = { - [ts_builtin_sym_end] = ACTIONS(785), - [sym_identifier] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_if] = ACTIONS(787), - [anon_sym_for] = ACTIONS(787), - [anon_sym_while] = ACTIONS(787), - [anon_sym_repeat] = ACTIONS(787), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_TILDE] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LT_DASH] = ACTIONS(785), - [anon_sym_LT_LT_DASH] = ACTIONS(785), - [anon_sym_COLON_EQ] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(787), - [anon_sym_DASH_GT_GT] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_SLASH] = ACTIONS(785), - [anon_sym_STAR_STAR] = ACTIONS(785), - [anon_sym_CARET] = ACTIONS(785), - [aux_sym_binary_operator_token1] = ACTIONS(785), - [anon_sym_PIPE_GT] = ACTIONS(785), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_AT] = ACTIONS(785), - [sym__hex_literal] = ACTIONS(785), - [sym__number_literal] = ACTIONS(787), - [anon_sym_SQUOTE] = ACTIONS(785), - [anon_sym_DQUOTE] = ACTIONS(785), - [sym_dots] = ACTIONS(787), - [sym_dot_dot_i] = ACTIONS(785), - [sym_return] = ACTIONS(787), - [sym_next] = ACTIONS(787), - [sym_break] = ACTIONS(787), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_null] = ACTIONS(787), - [sym_inf] = ACTIONS(787), - [sym_nan] = ACTIONS(787), - [anon_sym_NA] = ACTIONS(787), - [anon_sym_NA_integer_] = ACTIONS(787), - [anon_sym_NA_real_] = ACTIONS(787), - [anon_sym_NA_complex_] = ACTIONS(787), - [anon_sym_NA_character_] = ACTIONS(787), + [343] = { + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(1702), + [aux_sym_braced_expression_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(785), - [sym__semicolon] = ACTIONS(785), - [sym__raw_string_literal] = ACTIONS(785), - [sym__external_else] = ACTIONS(785), - [sym__external_open_parenthesis] = ACTIONS(785), - [sym__external_open_brace] = ACTIONS(785), - [sym__external_open_bracket] = ACTIONS(785), - [sym__external_open_bracket2] = ACTIONS(785), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(787), }, - [342] = { + [344] = { [ts_builtin_sym_end] = ACTIONS(789), [sym_identifier] = ACTIONS(791), [anon_sym_BSLASH] = ACTIONS(789), @@ -31390,7 +31529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(789), [sym__external_open_bracket2] = ACTIONS(789), }, - [343] = { + [345] = { [ts_builtin_sym_end] = ACTIONS(793), [sym_identifier] = ACTIONS(795), [anon_sym_BSLASH] = ACTIONS(793), @@ -31458,594 +31597,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(793), [sym__external_open_bracket2] = ACTIONS(793), }, - [344] = { - [ts_builtin_sym_end] = ACTIONS(701), - [sym_identifier] = ACTIONS(699), - [anon_sym_BSLASH] = ACTIONS(701), - [anon_sym_function] = ACTIONS(699), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_if] = ACTIONS(699), - [anon_sym_for] = ACTIONS(699), - [anon_sym_while] = ACTIONS(699), - [anon_sym_repeat] = ACTIONS(699), - [anon_sym_QMARK] = ACTIONS(701), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_BANG] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_LT_DASH] = ACTIONS(701), - [anon_sym_LT_LT_DASH] = ACTIONS(701), - [anon_sym_COLON_EQ] = ACTIONS(701), - [anon_sym_DASH_GT] = ACTIONS(699), - [anon_sym_DASH_GT_GT] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE_PIPE] = ACTIONS(701), - [anon_sym_AMP_AMP] = ACTIONS(701), - [anon_sym_LT] = ACTIONS(699), - [anon_sym_LT_EQ] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_GT_EQ] = ACTIONS(701), - [anon_sym_EQ_EQ] = ACTIONS(701), - [anon_sym_BANG_EQ] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(701), - [anon_sym_STAR_STAR] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [aux_sym_binary_operator_token1] = ACTIONS(701), - [anon_sym_PIPE_GT] = ACTIONS(701), - [anon_sym_COLON] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(701), - [anon_sym_AT] = ACTIONS(701), - [sym__hex_literal] = ACTIONS(701), - [sym__number_literal] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(701), - [sym_dots] = ACTIONS(699), - [sym_dot_dot_i] = ACTIONS(701), - [sym_return] = ACTIONS(699), - [sym_next] = ACTIONS(699), - [sym_break] = ACTIONS(699), - [sym_true] = ACTIONS(699), - [sym_false] = ACTIONS(699), - [sym_null] = ACTIONS(699), - [sym_inf] = ACTIONS(699), - [sym_nan] = ACTIONS(699), - [anon_sym_NA] = ACTIONS(699), - [anon_sym_NA_integer_] = ACTIONS(699), - [anon_sym_NA_real_] = ACTIONS(699), - [anon_sym_NA_complex_] = ACTIONS(699), - [anon_sym_NA_character_] = ACTIONS(699), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(701), - [sym__semicolon] = ACTIONS(701), - [sym__raw_string_literal] = ACTIONS(701), - [sym__external_else] = ACTIONS(701), - [sym__external_open_parenthesis] = ACTIONS(701), - [sym__external_open_brace] = ACTIONS(701), - [sym__external_open_bracket] = ACTIONS(701), - [sym__external_open_bracket2] = ACTIONS(701), - }, - [345] = { - [ts_builtin_sym_end] = ACTIONS(705), - [sym_identifier] = ACTIONS(703), - [anon_sym_BSLASH] = ACTIONS(705), - [anon_sym_function] = ACTIONS(703), - [anon_sym_EQ] = ACTIONS(703), - [anon_sym_if] = ACTIONS(703), - [anon_sym_for] = ACTIONS(703), - [anon_sym_while] = ACTIONS(703), - [anon_sym_repeat] = ACTIONS(703), - [anon_sym_QMARK] = ACTIONS(705), - [anon_sym_TILDE] = ACTIONS(705), - [anon_sym_BANG] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(705), - [anon_sym_DASH] = ACTIONS(703), - [anon_sym_LT_DASH] = ACTIONS(705), - [anon_sym_LT_LT_DASH] = ACTIONS(705), - [anon_sym_COLON_EQ] = ACTIONS(705), - [anon_sym_DASH_GT] = ACTIONS(703), - [anon_sym_DASH_GT_GT] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(703), - [anon_sym_AMP] = ACTIONS(703), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(703), - [anon_sym_LT_EQ] = ACTIONS(705), - [anon_sym_GT] = ACTIONS(703), - [anon_sym_GT_EQ] = ACTIONS(705), - [anon_sym_EQ_EQ] = ACTIONS(705), - [anon_sym_BANG_EQ] = ACTIONS(705), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_SLASH] = ACTIONS(705), - [anon_sym_STAR_STAR] = ACTIONS(705), - [anon_sym_CARET] = ACTIONS(705), - [aux_sym_binary_operator_token1] = ACTIONS(705), - [anon_sym_PIPE_GT] = ACTIONS(705), - [anon_sym_COLON] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [anon_sym_AT] = ACTIONS(705), - [sym__hex_literal] = ACTIONS(705), - [sym__number_literal] = ACTIONS(703), - [anon_sym_SQUOTE] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [sym_dots] = ACTIONS(703), - [sym_dot_dot_i] = ACTIONS(705), - [sym_return] = ACTIONS(703), - [sym_next] = ACTIONS(703), - [sym_break] = ACTIONS(703), - [sym_true] = ACTIONS(703), - [sym_false] = ACTIONS(703), - [sym_null] = ACTIONS(703), - [sym_inf] = ACTIONS(703), - [sym_nan] = ACTIONS(703), - [anon_sym_NA] = ACTIONS(703), - [anon_sym_NA_integer_] = ACTIONS(703), - [anon_sym_NA_real_] = ACTIONS(703), - [anon_sym_NA_complex_] = ACTIONS(703), - [anon_sym_NA_character_] = ACTIONS(703), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(705), - [sym__semicolon] = ACTIONS(705), - [sym__raw_string_literal] = ACTIONS(705), - [sym__external_else] = ACTIONS(705), - [sym__external_open_parenthesis] = ACTIONS(705), - [sym__external_open_brace] = ACTIONS(705), - [sym__external_open_bracket] = ACTIONS(705), - [sym__external_open_bracket2] = ACTIONS(705), - }, [346] = { - [ts_builtin_sym_end] = ACTIONS(709), - [sym_identifier] = ACTIONS(707), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_function] = ACTIONS(707), - [anon_sym_EQ] = ACTIONS(707), - [anon_sym_if] = ACTIONS(707), - [anon_sym_for] = ACTIONS(707), - [anon_sym_while] = ACTIONS(707), - [anon_sym_repeat] = ACTIONS(707), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_LT_DASH] = ACTIONS(709), - [anon_sym_LT_LT_DASH] = ACTIONS(709), - [anon_sym_COLON_EQ] = ACTIONS(709), - [anon_sym_DASH_GT] = ACTIONS(707), - [anon_sym_DASH_GT_GT] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(707), - [anon_sym_PIPE_PIPE] = ACTIONS(709), - [anon_sym_AMP_AMP] = ACTIONS(709), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_LT_EQ] = ACTIONS(709), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_EQ] = ACTIONS(709), - [anon_sym_EQ_EQ] = ACTIONS(709), - [anon_sym_BANG_EQ] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(707), - [anon_sym_SLASH] = ACTIONS(709), - [anon_sym_STAR_STAR] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [aux_sym_binary_operator_token1] = ACTIONS(709), - [anon_sym_PIPE_GT] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(709), - [sym__hex_literal] = ACTIONS(709), - [sym__number_literal] = ACTIONS(707), - [anon_sym_SQUOTE] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_dots] = ACTIONS(707), - [sym_dot_dot_i] = ACTIONS(709), - [sym_return] = ACTIONS(707), - [sym_next] = ACTIONS(707), - [sym_break] = ACTIONS(707), - [sym_true] = ACTIONS(707), - [sym_false] = ACTIONS(707), - [sym_null] = ACTIONS(707), - [sym_inf] = ACTIONS(707), - [sym_nan] = ACTIONS(707), - [anon_sym_NA] = ACTIONS(707), - [anon_sym_NA_integer_] = ACTIONS(707), - [anon_sym_NA_real_] = ACTIONS(707), - [anon_sym_NA_complex_] = ACTIONS(707), - [anon_sym_NA_character_] = ACTIONS(707), + [ts_builtin_sym_end] = ACTIONS(797), + [sym_identifier] = ACTIONS(799), + [anon_sym_BSLASH] = ACTIONS(797), + [anon_sym_function] = ACTIONS(799), + [anon_sym_EQ] = ACTIONS(799), + [anon_sym_if] = ACTIONS(799), + [anon_sym_for] = ACTIONS(799), + [anon_sym_while] = ACTIONS(799), + [anon_sym_repeat] = ACTIONS(799), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_BANG] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(797), + [anon_sym_LT_LT_DASH] = ACTIONS(797), + [anon_sym_COLON_EQ] = ACTIONS(797), + [anon_sym_DASH_GT] = ACTIONS(799), + [anon_sym_DASH_GT_GT] = ACTIONS(797), + [anon_sym_PIPE] = ACTIONS(799), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_LT_EQ] = ACTIONS(797), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_EQ] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_BANG_EQ] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_STAR_STAR] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [aux_sym_binary_operator_token1] = ACTIONS(797), + [anon_sym_PIPE_GT] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(799), + [anon_sym_DOLLAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [sym__hex_literal] = ACTIONS(797), + [sym__number_literal] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(797), + [sym_dots] = ACTIONS(799), + [sym_dot_dot_i] = ACTIONS(797), + [sym_return] = ACTIONS(799), + [sym_next] = ACTIONS(799), + [sym_break] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_null] = ACTIONS(799), + [sym_inf] = ACTIONS(799), + [sym_nan] = ACTIONS(799), + [anon_sym_NA] = ACTIONS(799), + [anon_sym_NA_integer_] = ACTIONS(799), + [anon_sym_NA_real_] = ACTIONS(799), + [anon_sym_NA_complex_] = ACTIONS(799), + [anon_sym_NA_character_] = ACTIONS(799), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(709), - [sym__semicolon] = ACTIONS(709), - [sym__raw_string_literal] = ACTIONS(709), - [sym__external_else] = ACTIONS(709), - [sym__external_open_parenthesis] = ACTIONS(709), - [sym__external_open_brace] = ACTIONS(709), - [sym__external_open_bracket] = ACTIONS(709), - [sym__external_open_bracket2] = ACTIONS(709), + [sym__newline] = ACTIONS(797), + [sym__semicolon] = ACTIONS(797), + [sym__raw_string_literal] = ACTIONS(797), + [sym__external_else] = ACTIONS(797), + [sym__external_open_parenthesis] = ACTIONS(797), + [sym__external_open_brace] = ACTIONS(797), + [sym__external_open_bracket] = ACTIONS(797), + [sym__external_open_bracket2] = ACTIONS(797), }, [347] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(387), - [aux_sym_braced_expression_repeat1] = STATE(397), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(797), - }, - [348] = { - [ts_builtin_sym_end] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [anon_sym_BSLASH] = ACTIONS(799), - [anon_sym_function] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(801), - [anon_sym_if] = ACTIONS(801), - [anon_sym_for] = ACTIONS(801), - [anon_sym_while] = ACTIONS(801), - [anon_sym_repeat] = ACTIONS(801), - [anon_sym_QMARK] = ACTIONS(799), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_LT_DASH] = ACTIONS(799), - [anon_sym_LT_LT_DASH] = ACTIONS(799), - [anon_sym_COLON_EQ] = ACTIONS(799), - [anon_sym_DASH_GT] = ACTIONS(801), - [anon_sym_DASH_GT_GT] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(801), - [anon_sym_PIPE_PIPE] = ACTIONS(799), - [anon_sym_AMP_AMP] = ACTIONS(799), - [anon_sym_LT] = ACTIONS(801), - [anon_sym_LT_EQ] = ACTIONS(799), - [anon_sym_GT] = ACTIONS(801), - [anon_sym_GT_EQ] = ACTIONS(799), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_BANG_EQ] = ACTIONS(799), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_SLASH] = ACTIONS(799), - [anon_sym_STAR_STAR] = ACTIONS(799), - [anon_sym_CARET] = ACTIONS(799), - [aux_sym_binary_operator_token1] = ACTIONS(799), - [anon_sym_PIPE_GT] = ACTIONS(799), - [anon_sym_COLON] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(799), - [sym__hex_literal] = ACTIONS(799), - [sym__number_literal] = ACTIONS(801), - [anon_sym_SQUOTE] = ACTIONS(799), - [anon_sym_DQUOTE] = ACTIONS(799), - [sym_dots] = ACTIONS(801), - [sym_dot_dot_i] = ACTIONS(799), - [sym_return] = ACTIONS(801), - [sym_next] = ACTIONS(801), - [sym_break] = ACTIONS(801), - [sym_true] = ACTIONS(801), - [sym_false] = ACTIONS(801), - [sym_null] = ACTIONS(801), - [sym_inf] = ACTIONS(801), - [sym_nan] = ACTIONS(801), - [anon_sym_NA] = ACTIONS(801), - [anon_sym_NA_integer_] = ACTIONS(801), - [anon_sym_NA_real_] = ACTIONS(801), - [anon_sym_NA_complex_] = ACTIONS(801), - [anon_sym_NA_character_] = ACTIONS(801), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(799), - [sym__semicolon] = ACTIONS(799), - [sym__raw_string_literal] = ACTIONS(799), - [sym__external_else] = ACTIONS(799), - [sym__external_open_parenthesis] = ACTIONS(799), - [sym__external_open_brace] = ACTIONS(799), - [sym__external_open_bracket] = ACTIONS(799), - [sym__external_open_bracket2] = ACTIONS(799), - }, - [349] = { - [sym_identifier] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_if] = ACTIONS(787), - [anon_sym_for] = ACTIONS(787), - [anon_sym_while] = ACTIONS(787), - [anon_sym_repeat] = ACTIONS(787), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_TILDE] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LT_DASH] = ACTIONS(785), - [anon_sym_LT_LT_DASH] = ACTIONS(785), - [anon_sym_COLON_EQ] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(787), - [anon_sym_DASH_GT_GT] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_SLASH] = ACTIONS(785), - [anon_sym_STAR_STAR] = ACTIONS(785), - [anon_sym_CARET] = ACTIONS(785), - [aux_sym_binary_operator_token1] = ACTIONS(785), - [anon_sym_PIPE_GT] = ACTIONS(785), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_AT] = ACTIONS(785), - [sym__hex_literal] = ACTIONS(785), - [sym__number_literal] = ACTIONS(787), - [anon_sym_SQUOTE] = ACTIONS(785), - [anon_sym_DQUOTE] = ACTIONS(785), - [sym_dots] = ACTIONS(787), - [sym_dot_dot_i] = ACTIONS(785), - [sym_return] = ACTIONS(787), - [sym_next] = ACTIONS(787), - [sym_break] = ACTIONS(787), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_null] = ACTIONS(787), - [sym_inf] = ACTIONS(787), - [sym_nan] = ACTIONS(787), - [anon_sym_NA] = ACTIONS(787), - [anon_sym_NA_integer_] = ACTIONS(787), - [anon_sym_NA_real_] = ACTIONS(787), - [anon_sym_NA_complex_] = ACTIONS(787), - [anon_sym_NA_character_] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(785), - [sym__semicolon] = ACTIONS(785), - [sym__raw_string_literal] = ACTIONS(785), - [sym__external_else] = ACTIONS(785), - [sym__external_open_parenthesis] = ACTIONS(785), - [sym__external_open_brace] = ACTIONS(785), - [sym__external_close_brace] = ACTIONS(785), - [sym__external_open_bracket] = ACTIONS(785), - [sym__external_open_bracket2] = ACTIONS(785), - }, - [350] = { - [sym_identifier] = ACTIONS(791), - [anon_sym_BSLASH] = ACTIONS(789), - [anon_sym_function] = ACTIONS(791), - [anon_sym_EQ] = ACTIONS(791), - [anon_sym_if] = ACTIONS(791), - [anon_sym_for] = ACTIONS(791), - [anon_sym_while] = ACTIONS(791), - [anon_sym_repeat] = ACTIONS(791), - [anon_sym_QMARK] = ACTIONS(789), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_BANG] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_LT_DASH] = ACTIONS(789), - [anon_sym_LT_LT_DASH] = ACTIONS(789), - [anon_sym_COLON_EQ] = ACTIONS(789), - [anon_sym_DASH_GT] = ACTIONS(791), - [anon_sym_DASH_GT_GT] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(789), - [anon_sym_AMP_AMP] = ACTIONS(789), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(789), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_STAR_STAR] = ACTIONS(789), - [anon_sym_CARET] = ACTIONS(789), - [aux_sym_binary_operator_token1] = ACTIONS(789), - [anon_sym_PIPE_GT] = ACTIONS(789), - [anon_sym_COLON] = ACTIONS(791), - [anon_sym_DOLLAR] = ACTIONS(789), - [anon_sym_AT] = ACTIONS(789), - [sym__hex_literal] = ACTIONS(789), - [sym__number_literal] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(789), - [anon_sym_DQUOTE] = ACTIONS(789), - [sym_dots] = ACTIONS(791), - [sym_dot_dot_i] = ACTIONS(789), - [sym_return] = ACTIONS(791), - [sym_next] = ACTIONS(791), - [sym_break] = ACTIONS(791), - [sym_true] = ACTIONS(791), - [sym_false] = ACTIONS(791), - [sym_null] = ACTIONS(791), - [sym_inf] = ACTIONS(791), - [sym_nan] = ACTIONS(791), - [anon_sym_NA] = ACTIONS(791), - [anon_sym_NA_integer_] = ACTIONS(791), - [anon_sym_NA_real_] = ACTIONS(791), - [anon_sym_NA_complex_] = ACTIONS(791), - [anon_sym_NA_character_] = ACTIONS(791), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(789), - [sym__semicolon] = ACTIONS(789), - [sym__raw_string_literal] = ACTIONS(789), - [sym__external_else] = ACTIONS(789), - [sym__external_open_parenthesis] = ACTIONS(789), - [sym__external_open_brace] = ACTIONS(789), - [sym__external_close_brace] = ACTIONS(789), - [sym__external_open_bracket] = ACTIONS(789), - [sym__external_open_bracket2] = ACTIONS(789), - }, - [351] = { - [sym_identifier] = ACTIONS(801), - [anon_sym_BSLASH] = ACTIONS(799), - [anon_sym_function] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(801), - [anon_sym_if] = ACTIONS(801), - [anon_sym_for] = ACTIONS(801), - [anon_sym_while] = ACTIONS(801), - [anon_sym_repeat] = ACTIONS(801), - [anon_sym_QMARK] = ACTIONS(799), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_LT_DASH] = ACTIONS(799), - [anon_sym_LT_LT_DASH] = ACTIONS(799), - [anon_sym_COLON_EQ] = ACTIONS(799), - [anon_sym_DASH_GT] = ACTIONS(801), - [anon_sym_DASH_GT_GT] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(801), - [anon_sym_PIPE_PIPE] = ACTIONS(799), - [anon_sym_AMP_AMP] = ACTIONS(799), - [anon_sym_LT] = ACTIONS(801), - [anon_sym_LT_EQ] = ACTIONS(799), - [anon_sym_GT] = ACTIONS(801), - [anon_sym_GT_EQ] = ACTIONS(799), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_BANG_EQ] = ACTIONS(799), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_SLASH] = ACTIONS(799), - [anon_sym_STAR_STAR] = ACTIONS(799), - [anon_sym_CARET] = ACTIONS(799), - [aux_sym_binary_operator_token1] = ACTIONS(799), - [anon_sym_PIPE_GT] = ACTIONS(799), - [anon_sym_COLON] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(799), - [sym__hex_literal] = ACTIONS(799), - [sym__number_literal] = ACTIONS(801), - [anon_sym_SQUOTE] = ACTIONS(799), - [anon_sym_DQUOTE] = ACTIONS(799), - [sym_dots] = ACTIONS(801), - [sym_dot_dot_i] = ACTIONS(799), - [sym_return] = ACTIONS(801), - [sym_next] = ACTIONS(801), - [sym_break] = ACTIONS(801), - [sym_true] = ACTIONS(801), - [sym_false] = ACTIONS(801), - [sym_null] = ACTIONS(801), - [sym_inf] = ACTIONS(801), - [sym_nan] = ACTIONS(801), - [anon_sym_NA] = ACTIONS(801), - [anon_sym_NA_integer_] = ACTIONS(801), - [anon_sym_NA_real_] = ACTIONS(801), - [anon_sym_NA_complex_] = ACTIONS(801), - [anon_sym_NA_character_] = ACTIONS(801), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(799), - [sym__semicolon] = ACTIONS(799), - [sym__raw_string_literal] = ACTIONS(799), - [sym__external_else] = ACTIONS(799), - [sym__external_open_parenthesis] = ACTIONS(799), - [sym__external_open_brace] = ACTIONS(799), - [sym__external_close_brace] = ACTIONS(799), - [sym__external_open_bracket] = ACTIONS(799), - [sym__external_open_bracket2] = ACTIONS(799), - }, - [352] = { + [ts_builtin_sym_end] = ACTIONS(801), [sym_identifier] = ACTIONS(803), - [anon_sym_BSLASH] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(801), [anon_sym_function] = ACTIONS(803), [anon_sym_EQ] = ACTIONS(803), [anon_sym_if] = ACTIONS(803), [anon_sym_for] = ACTIONS(803), [anon_sym_while] = ACTIONS(803), [anon_sym_repeat] = ACTIONS(803), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(803), - [anon_sym_LT_DASH] = ACTIONS(805), - [anon_sym_LT_LT_DASH] = ACTIONS(805), - [anon_sym_COLON_EQ] = ACTIONS(805), + [anon_sym_LT_DASH] = ACTIONS(801), + [anon_sym_LT_LT_DASH] = ACTIONS(801), + [anon_sym_COLON_EQ] = ACTIONS(801), [anon_sym_DASH_GT] = ACTIONS(803), - [anon_sym_DASH_GT_GT] = ACTIONS(805), + [anon_sym_DASH_GT_GT] = ACTIONS(801), [anon_sym_PIPE] = ACTIONS(803), [anon_sym_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(805), - [anon_sym_AMP_AMP] = ACTIONS(805), + [anon_sym_PIPE_PIPE] = ACTIONS(801), + [anon_sym_AMP_AMP] = ACTIONS(801), [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_LT_EQ] = ACTIONS(801), [anon_sym_GT] = ACTIONS(803), - [anon_sym_GT_EQ] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_STAR_STAR] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [aux_sym_binary_operator_token1] = ACTIONS(805), - [anon_sym_PIPE_GT] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [aux_sym_binary_operator_token1] = ACTIONS(801), + [anon_sym_PIPE_GT] = ACTIONS(801), [anon_sym_COLON] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_AT] = ACTIONS(805), - [sym__hex_literal] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_AT] = ACTIONS(801), + [sym__hex_literal] = ACTIONS(801), [sym__number_literal] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_DQUOTE] = ACTIONS(805), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), [sym_dots] = ACTIONS(803), - [sym_dot_dot_i] = ACTIONS(805), + [sym_dot_dot_i] = ACTIONS(801), [sym_return] = ACTIONS(803), [sym_next] = ACTIONS(803), [sym_break] = ACTIONS(803), @@ -32060,60 +31724,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NA_complex_] = ACTIONS(803), [anon_sym_NA_character_] = ACTIONS(803), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(805), - [sym__semicolon] = ACTIONS(805), - [sym__raw_string_literal] = ACTIONS(805), - [sym__external_else] = ACTIONS(805), - [sym__external_open_parenthesis] = ACTIONS(805), - [sym__external_open_brace] = ACTIONS(805), - [sym__external_close_brace] = ACTIONS(805), - [sym__external_open_bracket] = ACTIONS(805), - [sym__external_open_bracket2] = ACTIONS(805), + [sym__newline] = ACTIONS(801), + [sym__semicolon] = ACTIONS(801), + [sym__raw_string_literal] = ACTIONS(801), + [sym__external_else] = ACTIONS(801), + [sym__external_open_parenthesis] = ACTIONS(801), + [sym__external_open_brace] = ACTIONS(801), + [sym__external_open_bracket] = ACTIONS(801), + [sym__external_open_bracket2] = ACTIONS(801), }, - [353] = { + [348] = { + [ts_builtin_sym_end] = ACTIONS(805), [sym_identifier] = ACTIONS(807), - [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_BSLASH] = ACTIONS(805), [anon_sym_function] = ACTIONS(807), [anon_sym_EQ] = ACTIONS(807), [anon_sym_if] = ACTIONS(807), [anon_sym_for] = ACTIONS(807), [anon_sym_while] = ACTIONS(807), [anon_sym_repeat] = ACTIONS(807), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_QMARK] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), [anon_sym_BANG] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(805), [anon_sym_DASH] = ACTIONS(807), - [anon_sym_LT_DASH] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(809), - [anon_sym_COLON_EQ] = ACTIONS(809), + [anon_sym_LT_DASH] = ACTIONS(805), + [anon_sym_LT_LT_DASH] = ACTIONS(805), + [anon_sym_COLON_EQ] = ACTIONS(805), [anon_sym_DASH_GT] = ACTIONS(807), - [anon_sym_DASH_GT_GT] = ACTIONS(809), + [anon_sym_DASH_GT_GT] = ACTIONS(805), [anon_sym_PIPE] = ACTIONS(807), [anon_sym_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(809), - [anon_sym_AMP_AMP] = ACTIONS(809), + [anon_sym_PIPE_PIPE] = ACTIONS(805), + [anon_sym_AMP_AMP] = ACTIONS(805), [anon_sym_LT] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_LT_EQ] = ACTIONS(805), [anon_sym_GT] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), [anon_sym_STAR] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(809), - [anon_sym_STAR_STAR] = ACTIONS(809), - [anon_sym_CARET] = ACTIONS(809), - [aux_sym_binary_operator_token1] = ACTIONS(809), - [anon_sym_PIPE_GT] = ACTIONS(809), + [anon_sym_SLASH] = ACTIONS(805), + [anon_sym_STAR_STAR] = ACTIONS(805), + [anon_sym_CARET] = ACTIONS(805), + [aux_sym_binary_operator_token1] = ACTIONS(805), + [anon_sym_PIPE_GT] = ACTIONS(805), [anon_sym_COLON] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [anon_sym_AT] = ACTIONS(809), - [sym__hex_literal] = ACTIONS(809), + [anon_sym_DOLLAR] = ACTIONS(805), + [anon_sym_AT] = ACTIONS(805), + [sym__hex_literal] = ACTIONS(805), [sym__number_literal] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(809), + [anon_sym_SQUOTE] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(805), [sym_dots] = ACTIONS(807), - [sym_dot_dot_i] = ACTIONS(809), + [sym_dot_dot_i] = ACTIONS(805), [sym_return] = ACTIONS(807), [sym_next] = ACTIONS(807), [sym_break] = ACTIONS(807), @@ -32128,60 +31792,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NA_complex_] = ACTIONS(807), [anon_sym_NA_character_] = ACTIONS(807), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(809), - [sym__semicolon] = ACTIONS(809), - [sym__raw_string_literal] = ACTIONS(809), - [sym__external_else] = ACTIONS(809), - [sym__external_open_parenthesis] = ACTIONS(809), - [sym__external_open_brace] = ACTIONS(809), - [sym__external_close_brace] = ACTIONS(809), - [sym__external_open_bracket] = ACTIONS(809), - [sym__external_open_bracket2] = ACTIONS(809), + [sym__newline] = ACTIONS(805), + [sym__semicolon] = ACTIONS(805), + [sym__raw_string_literal] = ACTIONS(805), + [sym__external_else] = ACTIONS(805), + [sym__external_open_parenthesis] = ACTIONS(805), + [sym__external_open_brace] = ACTIONS(805), + [sym__external_open_bracket] = ACTIONS(805), + [sym__external_open_bracket2] = ACTIONS(805), }, - [354] = { + [349] = { + [ts_builtin_sym_end] = ACTIONS(809), [sym_identifier] = ACTIONS(811), - [anon_sym_BSLASH] = ACTIONS(813), + [anon_sym_BSLASH] = ACTIONS(809), [anon_sym_function] = ACTIONS(811), [anon_sym_EQ] = ACTIONS(811), [anon_sym_if] = ACTIONS(811), [anon_sym_for] = ACTIONS(811), [anon_sym_while] = ACTIONS(811), [anon_sym_repeat] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(813), + [anon_sym_QMARK] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(809), [anon_sym_DASH] = ACTIONS(811), - [anon_sym_LT_DASH] = ACTIONS(813), - [anon_sym_LT_LT_DASH] = ACTIONS(813), - [anon_sym_COLON_EQ] = ACTIONS(813), + [anon_sym_LT_DASH] = ACTIONS(809), + [anon_sym_LT_LT_DASH] = ACTIONS(809), + [anon_sym_COLON_EQ] = ACTIONS(809), [anon_sym_DASH_GT] = ACTIONS(811), - [anon_sym_DASH_GT_GT] = ACTIONS(813), + [anon_sym_DASH_GT_GT] = ACTIONS(809), [anon_sym_PIPE] = ACTIONS(811), [anon_sym_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(813), - [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(809), + [anon_sym_AMP_AMP] = ACTIONS(809), [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_EQ] = ACTIONS(813), + [anon_sym_LT_EQ] = ACTIONS(809), [anon_sym_GT] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(813), - [anon_sym_EQ_EQ] = ACTIONS(813), - [anon_sym_BANG_EQ] = ACTIONS(813), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(813), - [anon_sym_CARET] = ACTIONS(813), - [aux_sym_binary_operator_token1] = ACTIONS(813), - [anon_sym_PIPE_GT] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(809), + [anon_sym_STAR_STAR] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(809), + [aux_sym_binary_operator_token1] = ACTIONS(809), + [anon_sym_PIPE_GT] = ACTIONS(809), [anon_sym_COLON] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_AT] = ACTIONS(813), - [sym__hex_literal] = ACTIONS(813), + [anon_sym_DOLLAR] = ACTIONS(809), + [anon_sym_AT] = ACTIONS(809), + [sym__hex_literal] = ACTIONS(809), [sym__number_literal] = ACTIONS(811), - [anon_sym_SQUOTE] = ACTIONS(813), - [anon_sym_DQUOTE] = ACTIONS(813), + [anon_sym_SQUOTE] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(809), [sym_dots] = ACTIONS(811), - [sym_dot_dot_i] = ACTIONS(813), + [sym_dot_dot_i] = ACTIONS(809), [sym_return] = ACTIONS(811), [sym_next] = ACTIONS(811), [sym_break] = ACTIONS(811), @@ -32196,129 +31860,1079 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NA_complex_] = ACTIONS(811), [anon_sym_NA_character_] = ACTIONS(811), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(809), + [sym__semicolon] = ACTIONS(809), + [sym__raw_string_literal] = ACTIONS(809), + [sym__external_else] = ACTIONS(809), + [sym__external_open_parenthesis] = ACTIONS(809), + [sym__external_open_brace] = ACTIONS(809), + [sym__external_open_bracket] = ACTIONS(809), + [sym__external_open_bracket2] = ACTIONS(809), + }, + [350] = { + [aux_sym_function_definition_repeat1] = STATE(350), + [sym_identifier] = ACTIONS(679), + [anon_sym_BSLASH] = ACTIONS(677), + [anon_sym_function] = ACTIONS(679), + [anon_sym_EQ] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [anon_sym_repeat] = ACTIONS(679), + [anon_sym_QMARK] = ACTIONS(677), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_LT_DASH] = ACTIONS(677), + [anon_sym_LT_LT_DASH] = ACTIONS(677), + [anon_sym_COLON_EQ] = ACTIONS(677), + [anon_sym_DASH_GT] = ACTIONS(679), + [anon_sym_DASH_GT_GT] = ACTIONS(677), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(677), + [anon_sym_AMP_AMP] = ACTIONS(677), + [anon_sym_LT] = ACTIONS(679), + [anon_sym_LT_EQ] = ACTIONS(677), + [anon_sym_GT] = ACTIONS(679), + [anon_sym_GT_EQ] = ACTIONS(677), + [anon_sym_EQ_EQ] = ACTIONS(677), + [anon_sym_BANG_EQ] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_SLASH] = ACTIONS(677), + [anon_sym_STAR_STAR] = ACTIONS(677), + [anon_sym_CARET] = ACTIONS(677), + [aux_sym_binary_operator_token1] = ACTIONS(677), + [anon_sym_PIPE_GT] = ACTIONS(677), + [anon_sym_COLON] = ACTIONS(679), + [anon_sym_DOLLAR] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(677), + [sym__hex_literal] = ACTIONS(677), + [sym__number_literal] = ACTIONS(679), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(677), + [sym_dots] = ACTIONS(679), + [sym_dot_dot_i] = ACTIONS(677), + [sym_return] = ACTIONS(679), + [sym_next] = ACTIONS(679), + [sym_break] = ACTIONS(679), + [sym_true] = ACTIONS(679), + [sym_false] = ACTIONS(679), + [sym_null] = ACTIONS(679), + [sym_inf] = ACTIONS(679), + [sym_nan] = ACTIONS(679), + [anon_sym_NA] = ACTIONS(679), + [anon_sym_NA_integer_] = ACTIONS(679), + [anon_sym_NA_real_] = ACTIONS(679), + [anon_sym_NA_complex_] = ACTIONS(679), + [anon_sym_NA_character_] = ACTIONS(679), + [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(813), - [sym__semicolon] = ACTIONS(813), - [sym__raw_string_literal] = ACTIONS(813), - [sym__external_else] = ACTIONS(813), - [sym__external_open_parenthesis] = ACTIONS(813), - [sym__external_open_brace] = ACTIONS(813), - [sym__external_close_brace] = ACTIONS(813), - [sym__external_open_bracket] = ACTIONS(813), - [sym__external_open_bracket2] = ACTIONS(813), + [sym__semicolon] = ACTIONS(677), + [sym__raw_string_literal] = ACTIONS(677), + [sym__external_open_parenthesis] = ACTIONS(677), + [sym__external_open_brace] = ACTIONS(677), + [sym__external_close_brace] = ACTIONS(677), + [sym__external_open_bracket] = ACTIONS(677), + [sym__external_open_bracket2] = ACTIONS(677), + }, + [351] = { + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(1779), + [aux_sym_braced_expression_repeat1] = STATE(438), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(816), + }, + [352] = { + [ts_builtin_sym_end] = ACTIONS(818), + [sym_identifier] = ACTIONS(820), + [anon_sym_BSLASH] = ACTIONS(818), + [anon_sym_function] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(820), + [anon_sym_if] = ACTIONS(820), + [anon_sym_for] = ACTIONS(820), + [anon_sym_while] = ACTIONS(820), + [anon_sym_repeat] = ACTIONS(820), + [anon_sym_QMARK] = ACTIONS(818), + [anon_sym_TILDE] = ACTIONS(818), + [anon_sym_BANG] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(818), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_LT_DASH] = ACTIONS(818), + [anon_sym_LT_LT_DASH] = ACTIONS(818), + [anon_sym_COLON_EQ] = ACTIONS(818), + [anon_sym_DASH_GT] = ACTIONS(820), + [anon_sym_DASH_GT_GT] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_GT_EQ] = ACTIONS(818), + [anon_sym_EQ_EQ] = ACTIONS(818), + [anon_sym_BANG_EQ] = ACTIONS(818), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(818), + [anon_sym_STAR_STAR] = ACTIONS(818), + [anon_sym_CARET] = ACTIONS(818), + [aux_sym_binary_operator_token1] = ACTIONS(818), + [anon_sym_PIPE_GT] = ACTIONS(818), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_DOLLAR] = ACTIONS(818), + [anon_sym_AT] = ACTIONS(818), + [sym__hex_literal] = ACTIONS(818), + [sym__number_literal] = ACTIONS(820), + [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(818), + [sym_dots] = ACTIONS(820), + [sym_dot_dot_i] = ACTIONS(818), + [sym_return] = ACTIONS(820), + [sym_next] = ACTIONS(820), + [sym_break] = ACTIONS(820), + [sym_true] = ACTIONS(820), + [sym_false] = ACTIONS(820), + [sym_null] = ACTIONS(820), + [sym_inf] = ACTIONS(820), + [sym_nan] = ACTIONS(820), + [anon_sym_NA] = ACTIONS(820), + [anon_sym_NA_integer_] = ACTIONS(820), + [anon_sym_NA_real_] = ACTIONS(820), + [anon_sym_NA_complex_] = ACTIONS(820), + [anon_sym_NA_character_] = ACTIONS(820), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(818), + [sym__semicolon] = ACTIONS(818), + [sym__raw_string_literal] = ACTIONS(818), + [sym__external_else] = ACTIONS(818), + [sym__external_open_parenthesis] = ACTIONS(818), + [sym__external_open_brace] = ACTIONS(818), + [sym__external_open_bracket] = ACTIONS(818), + [sym__external_open_bracket2] = ACTIONS(818), + }, + [353] = { + [ts_builtin_sym_end] = ACTIONS(822), + [sym_identifier] = ACTIONS(824), + [anon_sym_BSLASH] = ACTIONS(822), + [anon_sym_function] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_if] = ACTIONS(824), + [anon_sym_for] = ACTIONS(824), + [anon_sym_while] = ACTIONS(824), + [anon_sym_repeat] = ACTIONS(824), + [anon_sym_QMARK] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(824), + [anon_sym_LT_DASH] = ACTIONS(822), + [anon_sym_LT_LT_DASH] = ACTIONS(822), + [anon_sym_COLON_EQ] = ACTIONS(822), + [anon_sym_DASH_GT] = ACTIONS(824), + [anon_sym_DASH_GT_GT] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(822), + [anon_sym_AMP_AMP] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(824), + [anon_sym_LT_EQ] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(822), + [anon_sym_EQ_EQ] = ACTIONS(822), + [anon_sym_BANG_EQ] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(824), + [anon_sym_SLASH] = ACTIONS(822), + [anon_sym_STAR_STAR] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [aux_sym_binary_operator_token1] = ACTIONS(822), + [anon_sym_PIPE_GT] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(822), + [sym__hex_literal] = ACTIONS(822), + [sym__number_literal] = ACTIONS(824), + [anon_sym_SQUOTE] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym_dots] = ACTIONS(824), + [sym_dot_dot_i] = ACTIONS(822), + [sym_return] = ACTIONS(824), + [sym_next] = ACTIONS(824), + [sym_break] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_inf] = ACTIONS(824), + [sym_nan] = ACTIONS(824), + [anon_sym_NA] = ACTIONS(824), + [anon_sym_NA_integer_] = ACTIONS(824), + [anon_sym_NA_real_] = ACTIONS(824), + [anon_sym_NA_complex_] = ACTIONS(824), + [anon_sym_NA_character_] = ACTIONS(824), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(822), + [sym__semicolon] = ACTIONS(822), + [sym__raw_string_literal] = ACTIONS(822), + [sym__external_else] = ACTIONS(822), + [sym__external_open_parenthesis] = ACTIONS(822), + [sym__external_open_brace] = ACTIONS(822), + [sym__external_open_bracket] = ACTIONS(822), + [sym__external_open_bracket2] = ACTIONS(822), + }, + [354] = { + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(416), + [aux_sym_braced_expression_repeat1] = STATE(394), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(826), }, [355] = { - [sym_identifier] = ACTIONS(815), - [anon_sym_BSLASH] = ACTIONS(817), - [anon_sym_function] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_if] = ACTIONS(815), - [anon_sym_for] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [anon_sym_repeat] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(817), - [anon_sym_TILDE] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_LT_DASH] = ACTIONS(817), - [anon_sym_LT_LT_DASH] = ACTIONS(817), - [anon_sym_COLON_EQ] = ACTIONS(817), - [anon_sym_DASH_GT] = ACTIONS(815), - [anon_sym_DASH_GT_GT] = ACTIONS(817), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(815), - [anon_sym_PIPE_PIPE] = ACTIONS(817), - [anon_sym_AMP_AMP] = ACTIONS(817), - [anon_sym_LT] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(817), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_GT_EQ] = ACTIONS(817), - [anon_sym_EQ_EQ] = ACTIONS(817), - [anon_sym_BANG_EQ] = ACTIONS(817), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(817), - [anon_sym_STAR_STAR] = ACTIONS(817), - [anon_sym_CARET] = ACTIONS(817), - [aux_sym_binary_operator_token1] = ACTIONS(817), - [anon_sym_PIPE_GT] = ACTIONS(817), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(817), - [anon_sym_AT] = ACTIONS(817), - [sym__hex_literal] = ACTIONS(817), - [sym__number_literal] = ACTIONS(815), - [anon_sym_SQUOTE] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(817), - [sym_dots] = ACTIONS(815), - [sym_dot_dot_i] = ACTIONS(817), - [sym_return] = ACTIONS(815), - [sym_next] = ACTIONS(815), - [sym_break] = ACTIONS(815), - [sym_true] = ACTIONS(815), - [sym_false] = ACTIONS(815), - [sym_null] = ACTIONS(815), - [sym_inf] = ACTIONS(815), - [sym_nan] = ACTIONS(815), - [anon_sym_NA] = ACTIONS(815), - [anon_sym_NA_integer_] = ACTIONS(815), - [anon_sym_NA_real_] = ACTIONS(815), - [anon_sym_NA_complex_] = ACTIONS(815), - [anon_sym_NA_character_] = ACTIONS(815), + [sym_identifier] = ACTIONS(785), + [anon_sym_BSLASH] = ACTIONS(783), + [anon_sym_function] = ACTIONS(785), + [anon_sym_EQ] = ACTIONS(785), + [anon_sym_if] = ACTIONS(785), + [anon_sym_for] = ACTIONS(785), + [anon_sym_while] = ACTIONS(785), + [anon_sym_repeat] = ACTIONS(785), + [anon_sym_QMARK] = ACTIONS(783), + [anon_sym_TILDE] = ACTIONS(783), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_LT_DASH] = ACTIONS(783), + [anon_sym_LT_LT_DASH] = ACTIONS(783), + [anon_sym_COLON_EQ] = ACTIONS(783), + [anon_sym_DASH_GT] = ACTIONS(785), + [anon_sym_DASH_GT_GT] = ACTIONS(783), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(785), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_LT_EQ] = ACTIONS(783), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_GT_EQ] = ACTIONS(783), + [anon_sym_EQ_EQ] = ACTIONS(783), + [anon_sym_BANG_EQ] = ACTIONS(783), + [anon_sym_STAR] = ACTIONS(785), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_STAR_STAR] = ACTIONS(783), + [anon_sym_CARET] = ACTIONS(783), + [aux_sym_binary_operator_token1] = ACTIONS(783), + [anon_sym_PIPE_GT] = ACTIONS(783), + [anon_sym_COLON] = ACTIONS(785), + [anon_sym_DOLLAR] = ACTIONS(783), + [anon_sym_AT] = ACTIONS(783), + [sym__hex_literal] = ACTIONS(783), + [sym__number_literal] = ACTIONS(785), + [anon_sym_SQUOTE] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(783), + [sym_dots] = ACTIONS(785), + [sym_dot_dot_i] = ACTIONS(783), + [sym_return] = ACTIONS(785), + [sym_next] = ACTIONS(785), + [sym_break] = ACTIONS(785), + [sym_true] = ACTIONS(785), + [sym_false] = ACTIONS(785), + [sym_null] = ACTIONS(785), + [sym_inf] = ACTIONS(785), + [sym_nan] = ACTIONS(785), + [anon_sym_NA] = ACTIONS(785), + [anon_sym_NA_integer_] = ACTIONS(785), + [anon_sym_NA_real_] = ACTIONS(785), + [anon_sym_NA_complex_] = ACTIONS(785), + [anon_sym_NA_character_] = ACTIONS(785), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(817), - [sym__semicolon] = ACTIONS(817), - [sym__raw_string_literal] = ACTIONS(817), - [sym__external_else] = ACTIONS(817), - [sym__external_open_parenthesis] = ACTIONS(817), - [sym__external_open_brace] = ACTIONS(817), - [sym__external_close_brace] = ACTIONS(817), - [sym__external_open_bracket] = ACTIONS(817), - [sym__external_open_bracket2] = ACTIONS(817), + [sym__newline] = ACTIONS(783), + [sym__semicolon] = ACTIONS(783), + [sym__raw_string_literal] = ACTIONS(783), + [sym__external_else] = ACTIONS(783), + [sym__external_open_parenthesis] = ACTIONS(783), + [sym__external_open_brace] = ACTIONS(783), + [sym__external_close_brace] = ACTIONS(783), + [sym__external_open_bracket] = ACTIONS(783), + [sym__external_open_bracket2] = ACTIONS(783), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(805), + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(329), + [aux_sym_braced_expression_repeat1] = STATE(362), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(828), + }, + [357] = { + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(1756), + [aux_sym_braced_expression_repeat1] = STATE(334), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(830), + }, + [358] = { + [sym_identifier] = ACTIONS(781), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_if] = ACTIONS(781), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(781), + [anon_sym_repeat] = ACTIONS(781), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_COLON_EQ] = ACTIONS(779), + [anon_sym_DASH_GT] = ACTIONS(781), + [anon_sym_DASH_GT_GT] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(781), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_LT_EQ] = ACTIONS(779), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_EQ] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(779), + [anon_sym_BANG_EQ] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(779), + [anon_sym_STAR_STAR] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [aux_sym_binary_operator_token1] = ACTIONS(779), + [anon_sym_PIPE_GT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(781), + [anon_sym_DOLLAR] = ACTIONS(779), + [anon_sym_AT] = ACTIONS(779), + [sym__hex_literal] = ACTIONS(779), + [sym__number_literal] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [sym_dots] = ACTIONS(781), + [sym_dot_dot_i] = ACTIONS(779), + [sym_return] = ACTIONS(781), + [sym_next] = ACTIONS(781), + [sym_break] = ACTIONS(781), + [sym_true] = ACTIONS(781), + [sym_false] = ACTIONS(781), + [sym_null] = ACTIONS(781), + [sym_inf] = ACTIONS(781), + [sym_nan] = ACTIONS(781), + [anon_sym_NA] = ACTIONS(781), + [anon_sym_NA_integer_] = ACTIONS(781), + [anon_sym_NA_real_] = ACTIONS(781), + [anon_sym_NA_complex_] = ACTIONS(781), + [anon_sym_NA_character_] = ACTIONS(781), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(779), + [sym__semicolon] = ACTIONS(779), + [sym__raw_string_literal] = ACTIONS(779), + [sym__external_else] = ACTIONS(779), + [sym__external_open_parenthesis] = ACTIONS(779), + [sym__external_open_brace] = ACTIONS(779), + [sym__external_close_brace] = ACTIONS(779), + [sym__external_open_bracket] = ACTIONS(779), + [sym__external_open_bracket2] = ACTIONS(779), + }, + [359] = { + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(384), + [aux_sym_braced_expression_repeat1] = STATE(385), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(832), + }, + [360] = { + [sym_identifier] = ACTIONS(791), + [anon_sym_BSLASH] = ACTIONS(789), + [anon_sym_function] = ACTIONS(791), + [anon_sym_EQ] = ACTIONS(791), + [anon_sym_if] = ACTIONS(791), + [anon_sym_for] = ACTIONS(791), + [anon_sym_while] = ACTIONS(791), + [anon_sym_repeat] = ACTIONS(791), + [anon_sym_QMARK] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_LT_DASH] = ACTIONS(789), + [anon_sym_LT_LT_DASH] = ACTIONS(789), + [anon_sym_COLON_EQ] = ACTIONS(789), + [anon_sym_DASH_GT] = ACTIONS(791), + [anon_sym_DASH_GT_GT] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(789), + [anon_sym_AMP_AMP] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(789), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(789), + [anon_sym_EQ_EQ] = ACTIONS(789), + [anon_sym_BANG_EQ] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(789), + [anon_sym_CARET] = ACTIONS(789), + [aux_sym_binary_operator_token1] = ACTIONS(789), + [anon_sym_PIPE_GT] = ACTIONS(789), + [anon_sym_COLON] = ACTIONS(791), + [anon_sym_DOLLAR] = ACTIONS(789), + [anon_sym_AT] = ACTIONS(789), + [sym__hex_literal] = ACTIONS(789), + [sym__number_literal] = ACTIONS(791), + [anon_sym_SQUOTE] = ACTIONS(789), + [anon_sym_DQUOTE] = ACTIONS(789), + [sym_dots] = ACTIONS(791), + [sym_dot_dot_i] = ACTIONS(789), + [sym_return] = ACTIONS(791), + [sym_next] = ACTIONS(791), + [sym_break] = ACTIONS(791), + [sym_true] = ACTIONS(791), + [sym_false] = ACTIONS(791), + [sym_null] = ACTIONS(791), + [sym_inf] = ACTIONS(791), + [sym_nan] = ACTIONS(791), + [anon_sym_NA] = ACTIONS(791), + [anon_sym_NA_integer_] = ACTIONS(791), + [anon_sym_NA_real_] = ACTIONS(791), + [anon_sym_NA_complex_] = ACTIONS(791), + [anon_sym_NA_character_] = ACTIONS(791), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(789), + [sym__semicolon] = ACTIONS(789), + [sym__raw_string_literal] = ACTIONS(789), + [sym__external_else] = ACTIONS(789), + [sym__external_open_parenthesis] = ACTIONS(789), + [sym__external_open_brace] = ACTIONS(789), + [sym__external_close_brace] = ACTIONS(789), + [sym__external_open_bracket] = ACTIONS(789), + [sym__external_open_bracket2] = ACTIONS(789), + }, + [361] = { + [sym_identifier] = ACTIONS(777), + [anon_sym_BSLASH] = ACTIONS(775), + [anon_sym_function] = ACTIONS(777), + [anon_sym_EQ] = ACTIONS(777), + [anon_sym_if] = ACTIONS(777), + [anon_sym_for] = ACTIONS(777), + [anon_sym_while] = ACTIONS(777), + [anon_sym_repeat] = ACTIONS(777), + [anon_sym_QMARK] = ACTIONS(775), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_LT_DASH] = ACTIONS(775), + [anon_sym_LT_LT_DASH] = ACTIONS(775), + [anon_sym_COLON_EQ] = ACTIONS(775), + [anon_sym_DASH_GT] = ACTIONS(777), + [anon_sym_DASH_GT_GT] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(777), + [anon_sym_PIPE_PIPE] = ACTIONS(775), + [anon_sym_AMP_AMP] = ACTIONS(775), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_LT_EQ] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_EQ] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(775), + [anon_sym_BANG_EQ] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(777), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(775), + [anon_sym_CARET] = ACTIONS(775), + [aux_sym_binary_operator_token1] = ACTIONS(775), + [anon_sym_PIPE_GT] = ACTIONS(775), + [anon_sym_COLON] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(775), + [anon_sym_AT] = ACTIONS(775), + [sym__hex_literal] = ACTIONS(775), + [sym__number_literal] = ACTIONS(777), + [anon_sym_SQUOTE] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [sym_dots] = ACTIONS(777), + [sym_dot_dot_i] = ACTIONS(775), + [sym_return] = ACTIONS(777), + [sym_next] = ACTIONS(777), + [sym_break] = ACTIONS(777), + [sym_true] = ACTIONS(777), + [sym_false] = ACTIONS(777), + [sym_null] = ACTIONS(777), + [sym_inf] = ACTIONS(777), + [sym_nan] = ACTIONS(777), + [anon_sym_NA] = ACTIONS(777), + [anon_sym_NA_integer_] = ACTIONS(777), + [anon_sym_NA_real_] = ACTIONS(777), + [anon_sym_NA_complex_] = ACTIONS(777), + [anon_sym_NA_character_] = ACTIONS(777), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(775), + [sym__semicolon] = ACTIONS(775), + [sym__raw_string_literal] = ACTIONS(775), + [sym__external_else] = ACTIONS(775), + [sym__external_open_parenthesis] = ACTIONS(775), + [sym__external_open_brace] = ACTIONS(775), + [sym__external_close_brace] = ACTIONS(775), + [sym__external_open_bracket] = ACTIONS(775), + [sym__external_open_bracket2] = ACTIONS(775), + }, + [362] = { + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(380), + [aux_sym_braced_expression_repeat1] = STATE(438), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(834), + }, + [363] = { + [sym_identifier] = ACTIONS(836), + [anon_sym_BSLASH] = ACTIONS(838), + [anon_sym_function] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_for] = ACTIONS(836), + [anon_sym_while] = ACTIONS(836), + [anon_sym_repeat] = ACTIONS(836), + [anon_sym_QMARK] = ACTIONS(838), + [anon_sym_TILDE] = ACTIONS(838), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(838), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_LT_DASH] = ACTIONS(838), + [anon_sym_LT_LT_DASH] = ACTIONS(838), + [anon_sym_COLON_EQ] = ACTIONS(838), + [anon_sym_DASH_GT] = ACTIONS(836), + [anon_sym_DASH_GT_GT] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(838), + [anon_sym_AMP_AMP] = ACTIONS(838), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_LT_EQ] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_EQ] = ACTIONS(838), + [anon_sym_EQ_EQ] = ACTIONS(838), + [anon_sym_BANG_EQ] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(838), + [anon_sym_STAR_STAR] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(838), + [aux_sym_binary_operator_token1] = ACTIONS(838), + [anon_sym_PIPE_GT] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_AT] = ACTIONS(838), + [sym__hex_literal] = ACTIONS(838), + [sym__number_literal] = ACTIONS(836), + [anon_sym_SQUOTE] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [sym_dots] = ACTIONS(836), + [sym_dot_dot_i] = ACTIONS(838), + [sym_return] = ACTIONS(836), + [sym_next] = ACTIONS(836), + [sym_break] = ACTIONS(836), + [sym_true] = ACTIONS(836), + [sym_false] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [sym_inf] = ACTIONS(836), + [sym_nan] = ACTIONS(836), + [anon_sym_NA] = ACTIONS(836), + [anon_sym_NA_integer_] = ACTIONS(836), + [anon_sym_NA_real_] = ACTIONS(836), + [anon_sym_NA_complex_] = ACTIONS(836), + [anon_sym_NA_character_] = ACTIONS(836), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(838), + [sym__semicolon] = ACTIONS(838), + [sym__raw_string_literal] = ACTIONS(838), + [sym__external_else] = ACTIONS(838), + [sym__external_open_parenthesis] = ACTIONS(838), + [sym__external_open_brace] = ACTIONS(838), + [sym__external_close_brace] = ACTIONS(838), + [sym__external_open_bracket] = ACTIONS(838), + [sym__external_open_bracket2] = ACTIONS(838), + }, + [364] = { + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(1649), + [aux_sym_braced_expression_repeat1] = STATE(438), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(840), + }, + [365] = { [sym_identifier] = ACTIONS(803), - [anon_sym_BSLASH] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(801), [anon_sym_function] = ACTIONS(803), [anon_sym_EQ] = ACTIONS(803), [anon_sym_if] = ACTIONS(803), [anon_sym_for] = ACTIONS(803), [anon_sym_while] = ACTIONS(803), [anon_sym_repeat] = ACTIONS(803), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(803), - [anon_sym_LT_DASH] = ACTIONS(805), - [anon_sym_LT_LT_DASH] = ACTIONS(805), - [anon_sym_COLON_EQ] = ACTIONS(805), + [anon_sym_LT_DASH] = ACTIONS(801), + [anon_sym_LT_LT_DASH] = ACTIONS(801), + [anon_sym_COLON_EQ] = ACTIONS(801), [anon_sym_DASH_GT] = ACTIONS(803), - [anon_sym_DASH_GT_GT] = ACTIONS(805), + [anon_sym_DASH_GT_GT] = ACTIONS(801), [anon_sym_PIPE] = ACTIONS(803), [anon_sym_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(805), - [anon_sym_AMP_AMP] = ACTIONS(805), + [anon_sym_PIPE_PIPE] = ACTIONS(801), + [anon_sym_AMP_AMP] = ACTIONS(801), [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_LT_EQ] = ACTIONS(801), [anon_sym_GT] = ACTIONS(803), - [anon_sym_GT_EQ] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_STAR_STAR] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [aux_sym_binary_operator_token1] = ACTIONS(805), - [anon_sym_PIPE_GT] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [aux_sym_binary_operator_token1] = ACTIONS(801), + [anon_sym_PIPE_GT] = ACTIONS(801), [anon_sym_COLON] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_AT] = ACTIONS(805), - [sym__hex_literal] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_AT] = ACTIONS(801), + [sym__hex_literal] = ACTIONS(801), [sym__number_literal] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_DQUOTE] = ACTIONS(805), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), [sym_dots] = ACTIONS(803), - [sym_dot_dot_i] = ACTIONS(805), + [sym_dot_dot_i] = ACTIONS(801), [sym_return] = ACTIONS(803), [sym_next] = ACTIONS(803), [sym_break] = ACTIONS(803), @@ -32333,288 +32947,901 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NA_complex_] = ACTIONS(803), [anon_sym_NA_character_] = ACTIONS(803), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(805), - [sym__semicolon] = ACTIONS(805), - [sym__raw_string_literal] = ACTIONS(805), - [sym__external_else] = ACTIONS(805), - [sym__external_open_parenthesis] = ACTIONS(805), - [sym__external_open_brace] = ACTIONS(805), - [sym__external_open_bracket] = ACTIONS(805), - [sym__external_open_bracket2] = ACTIONS(805), + [sym__newline] = ACTIONS(801), + [sym__semicolon] = ACTIONS(801), + [sym__raw_string_literal] = ACTIONS(801), + [sym__external_else] = ACTIONS(801), + [sym__external_open_parenthesis] = ACTIONS(801), + [sym__external_open_brace] = ACTIONS(801), + [sym__external_close_brace] = ACTIONS(801), + [sym__external_open_bracket] = ACTIONS(801), + [sym__external_open_bracket2] = ACTIONS(801), + }, + [366] = { + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(1682), + [aux_sym_braced_expression_repeat1] = STATE(438), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(842), }, - [357] = { - [sym_identifier] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_function] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_if] = ACTIONS(819), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(819), - [anon_sym_repeat] = ACTIONS(819), - [anon_sym_QMARK] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_LT_DASH] = ACTIONS(821), - [anon_sym_LT_LT_DASH] = ACTIONS(821), - [anon_sym_COLON_EQ] = ACTIONS(821), - [anon_sym_DASH_GT] = ACTIONS(819), - [anon_sym_DASH_GT_GT] = ACTIONS(821), - [anon_sym_PIPE] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(819), - [anon_sym_PIPE_PIPE] = ACTIONS(821), - [anon_sym_AMP_AMP] = ACTIONS(821), - [anon_sym_LT] = ACTIONS(819), - [anon_sym_LT_EQ] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(819), - [anon_sym_GT_EQ] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(821), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(819), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_STAR_STAR] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(821), - [aux_sym_binary_operator_token1] = ACTIONS(821), - [anon_sym_PIPE_GT] = ACTIONS(821), - [anon_sym_COLON] = ACTIONS(819), - [anon_sym_DOLLAR] = ACTIONS(821), - [anon_sym_AT] = ACTIONS(821), - [sym__hex_literal] = ACTIONS(821), - [sym__number_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(821), - [sym_dots] = ACTIONS(819), - [sym_dot_dot_i] = ACTIONS(821), - [sym_return] = ACTIONS(819), - [sym_next] = ACTIONS(819), - [sym_break] = ACTIONS(819), - [sym_true] = ACTIONS(819), - [sym_false] = ACTIONS(819), - [sym_null] = ACTIONS(819), - [sym_inf] = ACTIONS(819), - [sym_nan] = ACTIONS(819), - [anon_sym_NA] = ACTIONS(819), - [anon_sym_NA_integer_] = ACTIONS(819), - [anon_sym_NA_real_] = ACTIONS(819), - [anon_sym_NA_complex_] = ACTIONS(819), - [anon_sym_NA_character_] = ACTIONS(819), + [367] = { + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(1662), + [aux_sym_braced_expression_repeat1] = STATE(438), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(821), - [sym__semicolon] = ACTIONS(821), - [sym__raw_string_literal] = ACTIONS(821), - [sym__external_else] = ACTIONS(821), - [sym__external_open_parenthesis] = ACTIONS(821), - [sym__external_open_brace] = ACTIONS(821), - [sym__external_close_brace] = ACTIONS(821), - [sym__external_open_bracket] = ACTIONS(821), - [sym__external_open_bracket2] = ACTIONS(821), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(844), }, - [358] = { - [sym_identifier] = ACTIONS(823), - [anon_sym_BSLASH] = ACTIONS(825), - [anon_sym_function] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_repeat] = ACTIONS(823), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_TILDE] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(825), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [anon_sym_LT_LT_DASH] = ACTIONS(825), - [anon_sym_COLON_EQ] = ACTIONS(825), - [anon_sym_DASH_GT] = ACTIONS(823), - [anon_sym_DASH_GT_GT] = ACTIONS(825), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_PIPE_PIPE] = ACTIONS(825), - [anon_sym_AMP_AMP] = ACTIONS(825), - [anon_sym_LT] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(825), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(825), - [anon_sym_EQ_EQ] = ACTIONS(825), - [anon_sym_BANG_EQ] = ACTIONS(825), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(825), - [anon_sym_STAR_STAR] = ACTIONS(825), - [anon_sym_CARET] = ACTIONS(825), - [aux_sym_binary_operator_token1] = ACTIONS(825), - [anon_sym_PIPE_GT] = ACTIONS(825), - [anon_sym_COLON] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [sym__hex_literal] = ACTIONS(825), - [sym__number_literal] = ACTIONS(823), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(825), - [sym_dots] = ACTIONS(823), - [sym_dot_dot_i] = ACTIONS(825), - [sym_return] = ACTIONS(823), - [sym_next] = ACTIONS(823), - [sym_break] = ACTIONS(823), - [sym_true] = ACTIONS(823), - [sym_false] = ACTIONS(823), - [sym_null] = ACTIONS(823), - [sym_inf] = ACTIONS(823), - [sym_nan] = ACTIONS(823), - [anon_sym_NA] = ACTIONS(823), - [anon_sym_NA_integer_] = ACTIONS(823), - [anon_sym_NA_real_] = ACTIONS(823), - [anon_sym_NA_complex_] = ACTIONS(823), - [anon_sym_NA_character_] = ACTIONS(823), + [368] = { + [sym_identifier] = ACTIONS(767), + [anon_sym_BSLASH] = ACTIONS(765), + [anon_sym_function] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(767), + [anon_sym_if] = ACTIONS(767), + [anon_sym_for] = ACTIONS(767), + [anon_sym_while] = ACTIONS(767), + [anon_sym_repeat] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_LT_DASH] = ACTIONS(765), + [anon_sym_LT_LT_DASH] = ACTIONS(765), + [anon_sym_COLON_EQ] = ACTIONS(765), + [anon_sym_DASH_GT] = ACTIONS(767), + [anon_sym_DASH_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [aux_sym_binary_operator_token1] = ACTIONS(765), + [anon_sym_PIPE_GT] = ACTIONS(765), + [anon_sym_COLON] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [sym__hex_literal] = ACTIONS(765), + [sym__number_literal] = ACTIONS(767), + [anon_sym_SQUOTE] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [sym_dots] = ACTIONS(767), + [sym_dot_dot_i] = ACTIONS(765), + [sym_return] = ACTIONS(767), + [sym_next] = ACTIONS(767), + [sym_break] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_inf] = ACTIONS(767), + [sym_nan] = ACTIONS(767), + [anon_sym_NA] = ACTIONS(767), + [anon_sym_NA_integer_] = ACTIONS(767), + [anon_sym_NA_real_] = ACTIONS(767), + [anon_sym_NA_complex_] = ACTIONS(767), + [anon_sym_NA_character_] = ACTIONS(767), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(825), - [sym__semicolon] = ACTIONS(825), - [sym__raw_string_literal] = ACTIONS(825), - [sym__external_else] = ACTIONS(825), - [sym__external_open_parenthesis] = ACTIONS(825), - [sym__external_open_brace] = ACTIONS(825), - [sym__external_close_brace] = ACTIONS(825), - [sym__external_open_bracket] = ACTIONS(825), - [sym__external_open_bracket2] = ACTIONS(825), + [sym__newline] = ACTIONS(765), + [sym__semicolon] = ACTIONS(765), + [sym__raw_string_literal] = ACTIONS(765), + [sym__external_else] = ACTIONS(765), + [sym__external_open_parenthesis] = ACTIONS(765), + [sym__external_open_brace] = ACTIONS(765), + [sym__external_close_brace] = ACTIONS(765), + [sym__external_open_bracket] = ACTIONS(765), + [sym__external_open_bracket2] = ACTIONS(765), }, - [359] = { - [sym_identifier] = ACTIONS(827), - [anon_sym_BSLASH] = ACTIONS(829), - [anon_sym_function] = ACTIONS(827), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_if] = ACTIONS(827), - [anon_sym_for] = ACTIONS(827), - [anon_sym_while] = ACTIONS(827), - [anon_sym_repeat] = ACTIONS(827), - [anon_sym_QMARK] = ACTIONS(829), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(827), - [anon_sym_LT_DASH] = ACTIONS(829), - [anon_sym_LT_LT_DASH] = ACTIONS(829), - [anon_sym_COLON_EQ] = ACTIONS(829), - [anon_sym_DASH_GT] = ACTIONS(827), - [anon_sym_DASH_GT_GT] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(827), - [anon_sym_AMP] = ACTIONS(827), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_LT] = ACTIONS(827), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(827), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(827), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [aux_sym_binary_operator_token1] = ACTIONS(829), - [anon_sym_PIPE_GT] = ACTIONS(829), - [anon_sym_COLON] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(829), - [sym__hex_literal] = ACTIONS(829), - [sym__number_literal] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [sym_dots] = ACTIONS(827), - [sym_dot_dot_i] = ACTIONS(829), - [sym_return] = ACTIONS(827), - [sym_next] = ACTIONS(827), - [sym_break] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_null] = ACTIONS(827), - [sym_inf] = ACTIONS(827), - [sym_nan] = ACTIONS(827), - [anon_sym_NA] = ACTIONS(827), - [anon_sym_NA_integer_] = ACTIONS(827), - [anon_sym_NA_real_] = ACTIONS(827), - [anon_sym_NA_complex_] = ACTIONS(827), - [anon_sym_NA_character_] = ACTIONS(827), + [369] = { + [sym_identifier] = ACTIONS(763), + [anon_sym_BSLASH] = ACTIONS(761), + [anon_sym_function] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_if] = ACTIONS(763), + [anon_sym_for] = ACTIONS(763), + [anon_sym_while] = ACTIONS(763), + [anon_sym_repeat] = ACTIONS(763), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_LT_DASH] = ACTIONS(761), + [anon_sym_LT_LT_DASH] = ACTIONS(761), + [anon_sym_COLON_EQ] = ACTIONS(761), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_DASH_GT_GT] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(761), + [anon_sym_AMP_AMP] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(761), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_CARET] = ACTIONS(761), + [aux_sym_binary_operator_token1] = ACTIONS(761), + [anon_sym_PIPE_GT] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(761), + [sym__hex_literal] = ACTIONS(761), + [sym__number_literal] = ACTIONS(763), + [anon_sym_SQUOTE] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(761), + [sym_dots] = ACTIONS(763), + [sym_dot_dot_i] = ACTIONS(761), + [sym_return] = ACTIONS(763), + [sym_next] = ACTIONS(763), + [sym_break] = ACTIONS(763), + [sym_true] = ACTIONS(763), + [sym_false] = ACTIONS(763), + [sym_null] = ACTIONS(763), + [sym_inf] = ACTIONS(763), + [sym_nan] = ACTIONS(763), + [anon_sym_NA] = ACTIONS(763), + [anon_sym_NA_integer_] = ACTIONS(763), + [anon_sym_NA_real_] = ACTIONS(763), + [anon_sym_NA_complex_] = ACTIONS(763), + [anon_sym_NA_character_] = ACTIONS(763), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(829), - [sym__semicolon] = ACTIONS(829), - [sym__raw_string_literal] = ACTIONS(829), - [sym__external_else] = ACTIONS(829), - [sym__external_open_parenthesis] = ACTIONS(829), - [sym__external_open_brace] = ACTIONS(829), - [sym__external_close_brace] = ACTIONS(829), - [sym__external_open_bracket] = ACTIONS(829), - [sym__external_open_bracket2] = ACTIONS(829), + [sym__newline] = ACTIONS(761), + [sym__semicolon] = ACTIONS(761), + [sym__raw_string_literal] = ACTIONS(761), + [sym__external_else] = ACTIONS(761), + [sym__external_open_parenthesis] = ACTIONS(761), + [sym__external_open_brace] = ACTIONS(761), + [sym__external_close_brace] = ACTIONS(761), + [sym__external_open_bracket] = ACTIONS(761), + [sym__external_open_bracket2] = ACTIONS(761), }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(809), - [sym_identifier] = ACTIONS(807), - [anon_sym_BSLASH] = ACTIONS(809), - [anon_sym_function] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_repeat] = ACTIONS(807), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_TILDE] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_LT_DASH] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(809), - [anon_sym_COLON_EQ] = ACTIONS(809), - [anon_sym_DASH_GT] = ACTIONS(807), - [anon_sym_DASH_GT_GT] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(809), - [anon_sym_AMP_AMP] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(809), - [anon_sym_STAR_STAR] = ACTIONS(809), - [anon_sym_CARET] = ACTIONS(809), - [aux_sym_binary_operator_token1] = ACTIONS(809), - [anon_sym_PIPE_GT] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [anon_sym_AT] = ACTIONS(809), - [sym__hex_literal] = ACTIONS(809), - [sym__number_literal] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(809), - [sym_dots] = ACTIONS(807), - [sym_dot_dot_i] = ACTIONS(809), - [sym_return] = ACTIONS(807), - [sym_next] = ACTIONS(807), - [sym_break] = ACTIONS(807), - [sym_true] = ACTIONS(807), - [sym_false] = ACTIONS(807), - [sym_null] = ACTIONS(807), - [sym_inf] = ACTIONS(807), - [sym_nan] = ACTIONS(807), - [anon_sym_NA] = ACTIONS(807), - [anon_sym_NA_integer_] = ACTIONS(807), - [anon_sym_NA_real_] = ACTIONS(807), - [anon_sym_NA_complex_] = ACTIONS(807), - [anon_sym_NA_character_] = ACTIONS(807), + [370] = { + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(430), + [aux_sym_braced_expression_repeat1] = STATE(386), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(809), - [sym__semicolon] = ACTIONS(809), - [sym__raw_string_literal] = ACTIONS(809), - [sym__external_else] = ACTIONS(809), - [sym__external_open_parenthesis] = ACTIONS(809), - [sym__external_open_brace] = ACTIONS(809), - [sym__external_open_bracket] = ACTIONS(809), - [sym__external_open_bracket2] = ACTIONS(809), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(846), }, - [361] = { + [371] = { + [sym_identifier] = ACTIONS(824), + [anon_sym_BSLASH] = ACTIONS(822), + [anon_sym_function] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_if] = ACTIONS(824), + [anon_sym_for] = ACTIONS(824), + [anon_sym_while] = ACTIONS(824), + [anon_sym_repeat] = ACTIONS(824), + [anon_sym_QMARK] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(824), + [anon_sym_LT_DASH] = ACTIONS(822), + [anon_sym_LT_LT_DASH] = ACTIONS(822), + [anon_sym_COLON_EQ] = ACTIONS(822), + [anon_sym_DASH_GT] = ACTIONS(824), + [anon_sym_DASH_GT_GT] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(822), + [anon_sym_AMP_AMP] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(824), + [anon_sym_LT_EQ] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(822), + [anon_sym_EQ_EQ] = ACTIONS(822), + [anon_sym_BANG_EQ] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(824), + [anon_sym_SLASH] = ACTIONS(822), + [anon_sym_STAR_STAR] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [aux_sym_binary_operator_token1] = ACTIONS(822), + [anon_sym_PIPE_GT] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(822), + [sym__hex_literal] = ACTIONS(822), + [sym__number_literal] = ACTIONS(824), + [anon_sym_SQUOTE] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym_dots] = ACTIONS(824), + [sym_dot_dot_i] = ACTIONS(822), + [sym_return] = ACTIONS(824), + [sym_next] = ACTIONS(824), + [sym_break] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_inf] = ACTIONS(824), + [sym_nan] = ACTIONS(824), + [anon_sym_NA] = ACTIONS(824), + [anon_sym_NA_integer_] = ACTIONS(824), + [anon_sym_NA_real_] = ACTIONS(824), + [anon_sym_NA_complex_] = ACTIONS(824), + [anon_sym_NA_character_] = ACTIONS(824), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(822), + [sym__semicolon] = ACTIONS(822), + [sym__raw_string_literal] = ACTIONS(822), + [sym__external_else] = ACTIONS(822), + [sym__external_open_parenthesis] = ACTIONS(822), + [sym__external_open_brace] = ACTIONS(822), + [sym__external_close_brace] = ACTIONS(822), + [sym__external_open_bracket] = ACTIONS(822), + [sym__external_open_bracket2] = ACTIONS(822), + }, + [372] = { + [sym_identifier] = ACTIONS(848), + [anon_sym_BSLASH] = ACTIONS(850), + [anon_sym_function] = ACTIONS(848), + [anon_sym_EQ] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_while] = ACTIONS(848), + [anon_sym_repeat] = ACTIONS(848), + [anon_sym_QMARK] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_LT_DASH] = ACTIONS(850), + [anon_sym_LT_LT_DASH] = ACTIONS(850), + [anon_sym_COLON_EQ] = ACTIONS(850), + [anon_sym_DASH_GT] = ACTIONS(848), + [anon_sym_DASH_GT_GT] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(848), + [anon_sym_AMP] = ACTIONS(848), + [anon_sym_PIPE_PIPE] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(850), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_LT_EQ] = ACTIONS(850), + [anon_sym_GT] = ACTIONS(848), + [anon_sym_GT_EQ] = ACTIONS(850), + [anon_sym_EQ_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(850), + [anon_sym_STAR_STAR] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [aux_sym_binary_operator_token1] = ACTIONS(850), + [anon_sym_PIPE_GT] = ACTIONS(850), + [anon_sym_COLON] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_AT] = ACTIONS(850), + [sym__hex_literal] = ACTIONS(850), + [sym__number_literal] = ACTIONS(848), + [anon_sym_SQUOTE] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym_dots] = ACTIONS(848), + [sym_dot_dot_i] = ACTIONS(850), + [sym_return] = ACTIONS(848), + [sym_next] = ACTIONS(848), + [sym_break] = ACTIONS(848), + [sym_true] = ACTIONS(848), + [sym_false] = ACTIONS(848), + [sym_null] = ACTIONS(848), + [sym_inf] = ACTIONS(848), + [sym_nan] = ACTIONS(848), + [anon_sym_NA] = ACTIONS(848), + [anon_sym_NA_integer_] = ACTIONS(848), + [anon_sym_NA_real_] = ACTIONS(848), + [anon_sym_NA_complex_] = ACTIONS(848), + [anon_sym_NA_character_] = ACTIONS(848), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(850), + [sym__semicolon] = ACTIONS(850), + [sym__raw_string_literal] = ACTIONS(850), + [sym__external_else] = ACTIONS(850), + [sym__external_open_parenthesis] = ACTIONS(850), + [sym__external_open_brace] = ACTIONS(850), + [sym__external_close_brace] = ACTIONS(850), + [sym__external_open_bracket] = ACTIONS(850), + [sym__external_open_bracket2] = ACTIONS(850), + }, + [373] = { + [sym_identifier] = ACTIONS(852), + [anon_sym_BSLASH] = ACTIONS(854), + [anon_sym_function] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_repeat] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(854), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_LT_DASH] = ACTIONS(854), + [anon_sym_LT_LT_DASH] = ACTIONS(854), + [anon_sym_COLON_EQ] = ACTIONS(854), + [anon_sym_DASH_GT] = ACTIONS(852), + [anon_sym_DASH_GT_GT] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(852), + [anon_sym_PIPE_PIPE] = ACTIONS(854), + [anon_sym_AMP_AMP] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(854), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(854), + [anon_sym_BANG_EQ] = ACTIONS(854), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_STAR_STAR] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(854), + [aux_sym_binary_operator_token1] = ACTIONS(854), + [anon_sym_PIPE_GT] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_AT] = ACTIONS(854), + [sym__hex_literal] = ACTIONS(854), + [sym__number_literal] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym_dots] = ACTIONS(852), + [sym_dot_dot_i] = ACTIONS(854), + [sym_return] = ACTIONS(852), + [sym_next] = ACTIONS(852), + [sym_break] = ACTIONS(852), + [sym_true] = ACTIONS(852), + [sym_false] = ACTIONS(852), + [sym_null] = ACTIONS(852), + [sym_inf] = ACTIONS(852), + [sym_nan] = ACTIONS(852), + [anon_sym_NA] = ACTIONS(852), + [anon_sym_NA_integer_] = ACTIONS(852), + [anon_sym_NA_real_] = ACTIONS(852), + [anon_sym_NA_complex_] = ACTIONS(852), + [anon_sym_NA_character_] = ACTIONS(852), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(854), + [sym__semicolon] = ACTIONS(854), + [sym__raw_string_literal] = ACTIONS(854), + [sym__external_else] = ACTIONS(854), + [sym__external_open_parenthesis] = ACTIONS(854), + [sym__external_open_brace] = ACTIONS(854), + [sym__external_close_brace] = ACTIONS(854), + [sym__external_open_bracket] = ACTIONS(854), + [sym__external_open_bracket2] = ACTIONS(854), + }, + [374] = { + [aux_sym_function_definition_repeat1] = STATE(374), + [ts_builtin_sym_end] = ACTIONS(677), + [sym_identifier] = ACTIONS(679), + [anon_sym_BSLASH] = ACTIONS(677), + [anon_sym_function] = ACTIONS(679), + [anon_sym_EQ] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [anon_sym_repeat] = ACTIONS(679), + [anon_sym_QMARK] = ACTIONS(677), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_LT_DASH] = ACTIONS(677), + [anon_sym_LT_LT_DASH] = ACTIONS(677), + [anon_sym_COLON_EQ] = ACTIONS(677), + [anon_sym_DASH_GT] = ACTIONS(679), + [anon_sym_DASH_GT_GT] = ACTIONS(677), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(677), + [anon_sym_AMP_AMP] = ACTIONS(677), + [anon_sym_LT] = ACTIONS(679), + [anon_sym_LT_EQ] = ACTIONS(677), + [anon_sym_GT] = ACTIONS(679), + [anon_sym_GT_EQ] = ACTIONS(677), + [anon_sym_EQ_EQ] = ACTIONS(677), + [anon_sym_BANG_EQ] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_SLASH] = ACTIONS(677), + [anon_sym_STAR_STAR] = ACTIONS(677), + [anon_sym_CARET] = ACTIONS(677), + [aux_sym_binary_operator_token1] = ACTIONS(677), + [anon_sym_PIPE_GT] = ACTIONS(677), + [anon_sym_COLON] = ACTIONS(679), + [anon_sym_DOLLAR] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(677), + [sym__hex_literal] = ACTIONS(677), + [sym__number_literal] = ACTIONS(679), + [anon_sym_SQUOTE] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(677), + [sym_dots] = ACTIONS(679), + [sym_dot_dot_i] = ACTIONS(677), + [sym_return] = ACTIONS(679), + [sym_next] = ACTIONS(679), + [sym_break] = ACTIONS(679), + [sym_true] = ACTIONS(679), + [sym_false] = ACTIONS(679), + [sym_null] = ACTIONS(679), + [sym_inf] = ACTIONS(679), + [sym_nan] = ACTIONS(679), + [anon_sym_NA] = ACTIONS(679), + [anon_sym_NA_integer_] = ACTIONS(679), + [anon_sym_NA_real_] = ACTIONS(679), + [anon_sym_NA_complex_] = ACTIONS(679), + [anon_sym_NA_character_] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(856), + [sym__semicolon] = ACTIONS(677), + [sym__raw_string_literal] = ACTIONS(677), + [sym__external_open_parenthesis] = ACTIONS(677), + [sym__external_open_brace] = ACTIONS(677), + [sym__external_open_bracket] = ACTIONS(677), + [sym__external_open_bracket2] = ACTIONS(677), + }, + [375] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_BSLASH] = ACTIONS(753), + [anon_sym_function] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_repeat] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_DASH] = ACTIONS(753), + [anon_sym_LT_LT_DASH] = ACTIONS(753), + [anon_sym_COLON_EQ] = ACTIONS(753), + [anon_sym_DASH_GT] = ACTIONS(755), + [anon_sym_DASH_GT_GT] = ACTIONS(753), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(753), + [anon_sym_AMP_AMP] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(753), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_CARET] = ACTIONS(753), + [aux_sym_binary_operator_token1] = ACTIONS(753), + [anon_sym_PIPE_GT] = ACTIONS(753), + [anon_sym_COLON] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(753), + [sym__hex_literal] = ACTIONS(753), + [sym__number_literal] = ACTIONS(755), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(753), + [sym_dots] = ACTIONS(755), + [sym_dot_dot_i] = ACTIONS(753), + [sym_return] = ACTIONS(755), + [sym_next] = ACTIONS(755), + [sym_break] = ACTIONS(755), + [sym_true] = ACTIONS(755), + [sym_false] = ACTIONS(755), + [sym_null] = ACTIONS(755), + [sym_inf] = ACTIONS(755), + [sym_nan] = ACTIONS(755), + [anon_sym_NA] = ACTIONS(755), + [anon_sym_NA_integer_] = ACTIONS(755), + [anon_sym_NA_real_] = ACTIONS(755), + [anon_sym_NA_complex_] = ACTIONS(755), + [anon_sym_NA_character_] = ACTIONS(755), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(753), + [sym__semicolon] = ACTIONS(753), + [sym__raw_string_literal] = ACTIONS(753), + [sym__external_else] = ACTIONS(753), + [sym__external_open_parenthesis] = ACTIONS(753), + [sym__external_open_brace] = ACTIONS(753), + [sym__external_close_brace] = ACTIONS(753), + [sym__external_open_bracket] = ACTIONS(753), + [sym__external_open_bracket2] = ACTIONS(753), + }, + [376] = { + [sym_identifier] = ACTIONS(751), + [anon_sym_BSLASH] = ACTIONS(749), + [anon_sym_function] = ACTIONS(751), + [anon_sym_EQ] = ACTIONS(751), + [anon_sym_if] = ACTIONS(751), + [anon_sym_for] = ACTIONS(751), + [anon_sym_while] = ACTIONS(751), + [anon_sym_repeat] = ACTIONS(751), + [anon_sym_QMARK] = ACTIONS(749), + [anon_sym_TILDE] = ACTIONS(749), + [anon_sym_BANG] = ACTIONS(751), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_LT_DASH] = ACTIONS(749), + [anon_sym_LT_LT_DASH] = ACTIONS(749), + [anon_sym_COLON_EQ] = ACTIONS(749), + [anon_sym_DASH_GT] = ACTIONS(751), + [anon_sym_DASH_GT_GT] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE_PIPE] = ACTIONS(749), + [anon_sym_AMP_AMP] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(749), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_CARET] = ACTIONS(749), + [aux_sym_binary_operator_token1] = ACTIONS(749), + [anon_sym_PIPE_GT] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(751), + [anon_sym_DOLLAR] = ACTIONS(749), + [anon_sym_AT] = ACTIONS(749), + [sym__hex_literal] = ACTIONS(749), + [sym__number_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(749), + [sym_dots] = ACTIONS(751), + [sym_dot_dot_i] = ACTIONS(749), + [sym_return] = ACTIONS(751), + [sym_next] = ACTIONS(751), + [sym_break] = ACTIONS(751), + [sym_true] = ACTIONS(751), + [sym_false] = ACTIONS(751), + [sym_null] = ACTIONS(751), + [sym_inf] = ACTIONS(751), + [sym_nan] = ACTIONS(751), + [anon_sym_NA] = ACTIONS(751), + [anon_sym_NA_integer_] = ACTIONS(751), + [anon_sym_NA_real_] = ACTIONS(751), + [anon_sym_NA_complex_] = ACTIONS(751), + [anon_sym_NA_character_] = ACTIONS(751), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(749), + [sym__semicolon] = ACTIONS(749), + [sym__raw_string_literal] = ACTIONS(749), + [sym__external_else] = ACTIONS(749), + [sym__external_open_parenthesis] = ACTIONS(749), + [sym__external_open_brace] = ACTIONS(749), + [sym__external_close_brace] = ACTIONS(749), + [sym__external_open_bracket] = ACTIONS(749), + [sym__external_open_bracket2] = ACTIONS(749), + }, + [377] = { + [sym_identifier] = ACTIONS(859), + [anon_sym_BSLASH] = ACTIONS(861), + [anon_sym_function] = ACTIONS(859), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [anon_sym_repeat] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LT_DASH] = ACTIONS(861), + [anon_sym_LT_LT_DASH] = ACTIONS(861), + [anon_sym_COLON_EQ] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(859), + [anon_sym_DASH_GT_GT] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_STAR_STAR] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [aux_sym_binary_operator_token1] = ACTIONS(861), + [anon_sym_PIPE_GT] = ACTIONS(861), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(861), + [sym__hex_literal] = ACTIONS(861), + [sym__number_literal] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym_dots] = ACTIONS(859), + [sym_dot_dot_i] = ACTIONS(861), + [sym_return] = ACTIONS(859), + [sym_next] = ACTIONS(859), + [sym_break] = ACTIONS(859), + [sym_true] = ACTIONS(859), + [sym_false] = ACTIONS(859), + [sym_null] = ACTIONS(859), + [sym_inf] = ACTIONS(859), + [sym_nan] = ACTIONS(859), + [anon_sym_NA] = ACTIONS(859), + [anon_sym_NA_integer_] = ACTIONS(859), + [anon_sym_NA_real_] = ACTIONS(859), + [anon_sym_NA_complex_] = ACTIONS(859), + [anon_sym_NA_character_] = ACTIONS(859), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(861), + [sym__semicolon] = ACTIONS(861), + [sym__raw_string_literal] = ACTIONS(861), + [sym__external_else] = ACTIONS(861), + [sym__external_open_parenthesis] = ACTIONS(861), + [sym__external_open_brace] = ACTIONS(861), + [sym__external_close_brace] = ACTIONS(861), + [sym__external_open_bracket] = ACTIONS(861), + [sym__external_open_bracket2] = ACTIONS(861), + }, + [378] = { + [sym_identifier] = ACTIONS(863), + [anon_sym_BSLASH] = ACTIONS(865), + [anon_sym_function] = ACTIONS(863), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [anon_sym_repeat] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_LT_DASH] = ACTIONS(865), + [anon_sym_LT_LT_DASH] = ACTIONS(865), + [anon_sym_COLON_EQ] = ACTIONS(865), + [anon_sym_DASH_GT] = ACTIONS(863), + [anon_sym_DASH_GT_GT] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(865), + [aux_sym_binary_operator_token1] = ACTIONS(865), + [anon_sym_PIPE_GT] = ACTIONS(865), + [anon_sym_COLON] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(865), + [sym__hex_literal] = ACTIONS(865), + [sym__number_literal] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym_dots] = ACTIONS(863), + [sym_dot_dot_i] = ACTIONS(865), + [sym_return] = ACTIONS(863), + [sym_next] = ACTIONS(863), + [sym_break] = ACTIONS(863), + [sym_true] = ACTIONS(863), + [sym_false] = ACTIONS(863), + [sym_null] = ACTIONS(863), + [sym_inf] = ACTIONS(863), + [sym_nan] = ACTIONS(863), + [anon_sym_NA] = ACTIONS(863), + [anon_sym_NA_integer_] = ACTIONS(863), + [anon_sym_NA_real_] = ACTIONS(863), + [anon_sym_NA_complex_] = ACTIONS(863), + [anon_sym_NA_character_] = ACTIONS(863), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(865), + [sym__semicolon] = ACTIONS(865), + [sym__raw_string_literal] = ACTIONS(865), + [sym__external_else] = ACTIONS(865), + [sym__external_open_parenthesis] = ACTIONS(865), + [sym__external_open_brace] = ACTIONS(865), + [sym__external_close_brace] = ACTIONS(865), + [sym__external_open_bracket] = ACTIONS(865), + [sym__external_open_bracket2] = ACTIONS(865), + }, + [379] = { [sym_identifier] = ACTIONS(795), [anon_sym_BSLASH] = ACTIONS(793), [anon_sym_function] = ACTIONS(795), @@ -32682,2923 +33909,1766 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(793), [sym__external_open_bracket2] = ACTIONS(793), }, - [362] = { - [ts_builtin_sym_end] = ACTIONS(813), - [sym_identifier] = ACTIONS(811), - [anon_sym_BSLASH] = ACTIONS(813), - [anon_sym_function] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(811), - [anon_sym_if] = ACTIONS(811), - [anon_sym_for] = ACTIONS(811), - [anon_sym_while] = ACTIONS(811), - [anon_sym_repeat] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_LT_DASH] = ACTIONS(813), - [anon_sym_LT_LT_DASH] = ACTIONS(813), - [anon_sym_COLON_EQ] = ACTIONS(813), - [anon_sym_DASH_GT] = ACTIONS(811), - [anon_sym_DASH_GT_GT] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(813), - [anon_sym_AMP_AMP] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_EQ] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(813), - [anon_sym_EQ_EQ] = ACTIONS(813), - [anon_sym_BANG_EQ] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(813), - [anon_sym_CARET] = ACTIONS(813), - [aux_sym_binary_operator_token1] = ACTIONS(813), - [anon_sym_PIPE_GT] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_AT] = ACTIONS(813), - [sym__hex_literal] = ACTIONS(813), - [sym__number_literal] = ACTIONS(811), - [anon_sym_SQUOTE] = ACTIONS(813), - [anon_sym_DQUOTE] = ACTIONS(813), - [sym_dots] = ACTIONS(811), - [sym_dot_dot_i] = ACTIONS(813), - [sym_return] = ACTIONS(811), - [sym_next] = ACTIONS(811), - [sym_break] = ACTIONS(811), - [sym_true] = ACTIONS(811), - [sym_false] = ACTIONS(811), - [sym_null] = ACTIONS(811), - [sym_inf] = ACTIONS(811), - [sym_nan] = ACTIONS(811), - [anon_sym_NA] = ACTIONS(811), - [anon_sym_NA_integer_] = ACTIONS(811), - [anon_sym_NA_real_] = ACTIONS(811), - [anon_sym_NA_complex_] = ACTIONS(811), - [anon_sym_NA_character_] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(813), - [sym__semicolon] = ACTIONS(813), - [sym__raw_string_literal] = ACTIONS(813), - [sym__external_else] = ACTIONS(813), - [sym__external_open_parenthesis] = ACTIONS(813), - [sym__external_open_brace] = ACTIONS(813), - [sym__external_open_bracket] = ACTIONS(813), - [sym__external_open_bracket2] = ACTIONS(813), - }, - [363] = { - [ts_builtin_sym_end] = ACTIONS(817), - [sym_identifier] = ACTIONS(815), - [anon_sym_BSLASH] = ACTIONS(817), - [anon_sym_function] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_if] = ACTIONS(815), - [anon_sym_for] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [anon_sym_repeat] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(817), - [anon_sym_TILDE] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_LT_DASH] = ACTIONS(817), - [anon_sym_LT_LT_DASH] = ACTIONS(817), - [anon_sym_COLON_EQ] = ACTIONS(817), - [anon_sym_DASH_GT] = ACTIONS(815), - [anon_sym_DASH_GT_GT] = ACTIONS(817), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(815), - [anon_sym_PIPE_PIPE] = ACTIONS(817), - [anon_sym_AMP_AMP] = ACTIONS(817), - [anon_sym_LT] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(817), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_GT_EQ] = ACTIONS(817), - [anon_sym_EQ_EQ] = ACTIONS(817), - [anon_sym_BANG_EQ] = ACTIONS(817), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(817), - [anon_sym_STAR_STAR] = ACTIONS(817), - [anon_sym_CARET] = ACTIONS(817), - [aux_sym_binary_operator_token1] = ACTIONS(817), - [anon_sym_PIPE_GT] = ACTIONS(817), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(817), - [anon_sym_AT] = ACTIONS(817), - [sym__hex_literal] = ACTIONS(817), - [sym__number_literal] = ACTIONS(815), - [anon_sym_SQUOTE] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(817), - [sym_dots] = ACTIONS(815), - [sym_dot_dot_i] = ACTIONS(817), - [sym_return] = ACTIONS(815), - [sym_next] = ACTIONS(815), - [sym_break] = ACTIONS(815), - [sym_true] = ACTIONS(815), - [sym_false] = ACTIONS(815), - [sym_null] = ACTIONS(815), - [sym_inf] = ACTIONS(815), - [sym_nan] = ACTIONS(815), - [anon_sym_NA] = ACTIONS(815), - [anon_sym_NA_integer_] = ACTIONS(815), - [anon_sym_NA_real_] = ACTIONS(815), - [anon_sym_NA_complex_] = ACTIONS(815), - [anon_sym_NA_character_] = ACTIONS(815), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(817), - [sym__semicolon] = ACTIONS(817), - [sym__raw_string_literal] = ACTIONS(817), - [sym__external_else] = ACTIONS(817), - [sym__external_open_parenthesis] = ACTIONS(817), - [sym__external_open_brace] = ACTIONS(817), - [sym__external_open_bracket] = ACTIONS(817), - [sym__external_open_bracket2] = ACTIONS(817), - }, - [364] = { - [ts_builtin_sym_end] = ACTIONS(821), - [sym_identifier] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_function] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_if] = ACTIONS(819), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(819), - [anon_sym_repeat] = ACTIONS(819), - [anon_sym_QMARK] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_LT_DASH] = ACTIONS(821), - [anon_sym_LT_LT_DASH] = ACTIONS(821), - [anon_sym_COLON_EQ] = ACTIONS(821), - [anon_sym_DASH_GT] = ACTIONS(819), - [anon_sym_DASH_GT_GT] = ACTIONS(821), - [anon_sym_PIPE] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(819), - [anon_sym_PIPE_PIPE] = ACTIONS(821), - [anon_sym_AMP_AMP] = ACTIONS(821), - [anon_sym_LT] = ACTIONS(819), - [anon_sym_LT_EQ] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(819), - [anon_sym_GT_EQ] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(821), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(819), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_STAR_STAR] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(821), - [aux_sym_binary_operator_token1] = ACTIONS(821), - [anon_sym_PIPE_GT] = ACTIONS(821), - [anon_sym_COLON] = ACTIONS(819), - [anon_sym_DOLLAR] = ACTIONS(821), - [anon_sym_AT] = ACTIONS(821), - [sym__hex_literal] = ACTIONS(821), - [sym__number_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(821), - [sym_dots] = ACTIONS(819), - [sym_dot_dot_i] = ACTIONS(821), - [sym_return] = ACTIONS(819), - [sym_next] = ACTIONS(819), - [sym_break] = ACTIONS(819), - [sym_true] = ACTIONS(819), - [sym_false] = ACTIONS(819), - [sym_null] = ACTIONS(819), - [sym_inf] = ACTIONS(819), - [sym_nan] = ACTIONS(819), - [anon_sym_NA] = ACTIONS(819), - [anon_sym_NA_integer_] = ACTIONS(819), - [anon_sym_NA_real_] = ACTIONS(819), - [anon_sym_NA_complex_] = ACTIONS(819), - [anon_sym_NA_character_] = ACTIONS(819), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(821), - [sym__semicolon] = ACTIONS(821), - [sym__raw_string_literal] = ACTIONS(821), - [sym__external_else] = ACTIONS(821), - [sym__external_open_parenthesis] = ACTIONS(821), - [sym__external_open_brace] = ACTIONS(821), - [sym__external_open_bracket] = ACTIONS(821), - [sym__external_open_bracket2] = ACTIONS(821), - }, - [365] = { - [ts_builtin_sym_end] = ACTIONS(825), - [sym_identifier] = ACTIONS(823), - [anon_sym_BSLASH] = ACTIONS(825), - [anon_sym_function] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_repeat] = ACTIONS(823), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_TILDE] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(825), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [anon_sym_LT_LT_DASH] = ACTIONS(825), - [anon_sym_COLON_EQ] = ACTIONS(825), - [anon_sym_DASH_GT] = ACTIONS(823), - [anon_sym_DASH_GT_GT] = ACTIONS(825), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_PIPE_PIPE] = ACTIONS(825), - [anon_sym_AMP_AMP] = ACTIONS(825), - [anon_sym_LT] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(825), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(825), - [anon_sym_EQ_EQ] = ACTIONS(825), - [anon_sym_BANG_EQ] = ACTIONS(825), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(825), - [anon_sym_STAR_STAR] = ACTIONS(825), - [anon_sym_CARET] = ACTIONS(825), - [aux_sym_binary_operator_token1] = ACTIONS(825), - [anon_sym_PIPE_GT] = ACTIONS(825), - [anon_sym_COLON] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [sym__hex_literal] = ACTIONS(825), - [sym__number_literal] = ACTIONS(823), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(825), - [sym_dots] = ACTIONS(823), - [sym_dot_dot_i] = ACTIONS(825), - [sym_return] = ACTIONS(823), - [sym_next] = ACTIONS(823), - [sym_break] = ACTIONS(823), - [sym_true] = ACTIONS(823), - [sym_false] = ACTIONS(823), - [sym_null] = ACTIONS(823), - [sym_inf] = ACTIONS(823), - [sym_nan] = ACTIONS(823), - [anon_sym_NA] = ACTIONS(823), - [anon_sym_NA_integer_] = ACTIONS(823), - [anon_sym_NA_real_] = ACTIONS(823), - [anon_sym_NA_complex_] = ACTIONS(823), - [anon_sym_NA_character_] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(825), - [sym__semicolon] = ACTIONS(825), - [sym__raw_string_literal] = ACTIONS(825), - [sym__external_else] = ACTIONS(825), - [sym__external_open_parenthesis] = ACTIONS(825), - [sym__external_open_brace] = ACTIONS(825), - [sym__external_open_bracket] = ACTIONS(825), - [sym__external_open_bracket2] = ACTIONS(825), - }, - [366] = { - [ts_builtin_sym_end] = ACTIONS(829), - [sym_identifier] = ACTIONS(827), - [anon_sym_BSLASH] = ACTIONS(829), - [anon_sym_function] = ACTIONS(827), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_if] = ACTIONS(827), - [anon_sym_for] = ACTIONS(827), - [anon_sym_while] = ACTIONS(827), - [anon_sym_repeat] = ACTIONS(827), - [anon_sym_QMARK] = ACTIONS(829), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(827), - [anon_sym_LT_DASH] = ACTIONS(829), - [anon_sym_LT_LT_DASH] = ACTIONS(829), - [anon_sym_COLON_EQ] = ACTIONS(829), - [anon_sym_DASH_GT] = ACTIONS(827), - [anon_sym_DASH_GT_GT] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(827), - [anon_sym_AMP] = ACTIONS(827), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_LT] = ACTIONS(827), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(827), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(827), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [aux_sym_binary_operator_token1] = ACTIONS(829), - [anon_sym_PIPE_GT] = ACTIONS(829), - [anon_sym_COLON] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(829), - [sym__hex_literal] = ACTIONS(829), - [sym__number_literal] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [sym_dots] = ACTIONS(827), - [sym_dot_dot_i] = ACTIONS(829), - [sym_return] = ACTIONS(827), - [sym_next] = ACTIONS(827), - [sym_break] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_null] = ACTIONS(827), - [sym_inf] = ACTIONS(827), - [sym_nan] = ACTIONS(827), - [anon_sym_NA] = ACTIONS(827), - [anon_sym_NA_integer_] = ACTIONS(827), - [anon_sym_NA_real_] = ACTIONS(827), - [anon_sym_NA_complex_] = ACTIONS(827), - [anon_sym_NA_character_] = ACTIONS(827), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(829), - [sym__semicolon] = ACTIONS(829), - [sym__raw_string_literal] = ACTIONS(829), - [sym__external_else] = ACTIONS(829), - [sym__external_open_parenthesis] = ACTIONS(829), - [sym__external_open_brace] = ACTIONS(829), - [sym__external_open_bracket] = ACTIONS(829), - [sym__external_open_bracket2] = ACTIONS(829), - }, - [367] = { - [ts_builtin_sym_end] = ACTIONS(755), - [sym_identifier] = ACTIONS(753), - [anon_sym_BSLASH] = ACTIONS(755), - [anon_sym_function] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [anon_sym_repeat] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_TILDE] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(755), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_LT_DASH] = ACTIONS(755), - [anon_sym_LT_LT_DASH] = ACTIONS(755), - [anon_sym_COLON_EQ] = ACTIONS(755), - [anon_sym_DASH_GT] = ACTIONS(753), - [anon_sym_DASH_GT_GT] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(753), - [anon_sym_PIPE_PIPE] = ACTIONS(755), - [anon_sym_AMP_AMP] = ACTIONS(755), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_LT_EQ] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(755), - [anon_sym_EQ_EQ] = ACTIONS(755), - [anon_sym_BANG_EQ] = ACTIONS(755), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(755), - [anon_sym_STAR_STAR] = ACTIONS(755), - [anon_sym_CARET] = ACTIONS(755), - [aux_sym_binary_operator_token1] = ACTIONS(755), - [anon_sym_PIPE_GT] = ACTIONS(755), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(755), - [sym__hex_literal] = ACTIONS(755), - [sym__number_literal] = ACTIONS(753), - [anon_sym_SQUOTE] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(755), - [sym_dots] = ACTIONS(753), - [sym_dot_dot_i] = ACTIONS(755), - [sym_return] = ACTIONS(753), - [sym_next] = ACTIONS(753), - [sym_break] = ACTIONS(753), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_null] = ACTIONS(753), - [sym_inf] = ACTIONS(753), - [sym_nan] = ACTIONS(753), - [anon_sym_NA] = ACTIONS(753), - [anon_sym_NA_integer_] = ACTIONS(753), - [anon_sym_NA_real_] = ACTIONS(753), - [anon_sym_NA_complex_] = ACTIONS(753), - [anon_sym_NA_character_] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(755), - [sym__semicolon] = ACTIONS(755), - [sym__raw_string_literal] = ACTIONS(755), - [sym__external_else] = ACTIONS(755), - [sym__external_open_parenthesis] = ACTIONS(755), - [sym__external_open_brace] = ACTIONS(755), - [sym__external_open_bracket] = ACTIONS(755), - [sym__external_open_bracket2] = ACTIONS(755), - }, - [368] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(1708), - [aux_sym_braced_expression_repeat1] = STATE(397), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(831), - }, - [369] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(1662), - [aux_sym_braced_expression_repeat1] = STATE(397), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(833), - }, - [370] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(1756), - [aux_sym_braced_expression_repeat1] = STATE(396), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(835), - }, - [371] = { - [ts_builtin_sym_end] = ACTIONS(759), - [sym_identifier] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_function] = ACTIONS(757), - [anon_sym_EQ] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_repeat] = ACTIONS(757), - [anon_sym_QMARK] = ACTIONS(759), - [anon_sym_TILDE] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LT_DASH] = ACTIONS(759), - [anon_sym_LT_LT_DASH] = ACTIONS(759), - [anon_sym_COLON_EQ] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(757), - [anon_sym_DASH_GT_GT] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_AMP] = ACTIONS(757), - [anon_sym_PIPE_PIPE] = ACTIONS(759), - [anon_sym_AMP_AMP] = ACTIONS(759), - [anon_sym_LT] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(759), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(759), - [anon_sym_EQ_EQ] = ACTIONS(759), - [anon_sym_BANG_EQ] = ACTIONS(759), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(759), - [aux_sym_binary_operator_token1] = ACTIONS(759), - [anon_sym_PIPE_GT] = ACTIONS(759), - [anon_sym_COLON] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(759), - [anon_sym_AT] = ACTIONS(759), - [sym__hex_literal] = ACTIONS(759), - [sym__number_literal] = ACTIONS(757), - [anon_sym_SQUOTE] = ACTIONS(759), - [anon_sym_DQUOTE] = ACTIONS(759), - [sym_dots] = ACTIONS(757), - [sym_dot_dot_i] = ACTIONS(759), - [sym_return] = ACTIONS(757), - [sym_next] = ACTIONS(757), - [sym_break] = ACTIONS(757), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_null] = ACTIONS(757), - [sym_inf] = ACTIONS(757), - [sym_nan] = ACTIONS(757), - [anon_sym_NA] = ACTIONS(757), - [anon_sym_NA_integer_] = ACTIONS(757), - [anon_sym_NA_real_] = ACTIONS(757), - [anon_sym_NA_complex_] = ACTIONS(757), - [anon_sym_NA_character_] = ACTIONS(757), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(759), - [sym__semicolon] = ACTIONS(759), - [sym__raw_string_literal] = ACTIONS(759), - [sym__external_else] = ACTIONS(759), - [sym__external_open_parenthesis] = ACTIONS(759), - [sym__external_open_brace] = ACTIONS(759), - [sym__external_open_bracket] = ACTIONS(759), - [sym__external_open_bracket2] = ACTIONS(759), - }, - [372] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(402), - [aux_sym_braced_expression_repeat1] = STATE(392), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(837), - }, - [373] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(1731), - [aux_sym_braced_expression_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(839), - }, - [374] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(1710), - [aux_sym_braced_expression_repeat1] = STATE(397), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(841), - }, - [375] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(1742), - [aux_sym_braced_expression_repeat1] = STATE(397), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(843), - }, - [376] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(1748), - [aux_sym_braced_expression_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(845), - }, - [377] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(1669), - [aux_sym_braced_expression_repeat1] = STATE(397), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(847), - }, - [378] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(443), - [aux_sym_braced_expression_repeat1] = STATE(332), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(849), - }, - [379] = { - [ts_builtin_sym_end] = ACTIONS(763), - [sym_identifier] = ACTIONS(761), - [anon_sym_BSLASH] = ACTIONS(763), - [anon_sym_function] = ACTIONS(761), - [anon_sym_EQ] = ACTIONS(761), - [anon_sym_if] = ACTIONS(761), - [anon_sym_for] = ACTIONS(761), - [anon_sym_while] = ACTIONS(761), - [anon_sym_repeat] = ACTIONS(761), - [anon_sym_QMARK] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_LT_DASH] = ACTIONS(763), - [anon_sym_LT_LT_DASH] = ACTIONS(763), - [anon_sym_COLON_EQ] = ACTIONS(763), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DASH_GT_GT] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(761), - [anon_sym_AMP] = ACTIONS(761), - [anon_sym_PIPE_PIPE] = ACTIONS(763), - [anon_sym_AMP_AMP] = ACTIONS(763), - [anon_sym_LT] = ACTIONS(761), - [anon_sym_LT_EQ] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(761), - [anon_sym_GT_EQ] = ACTIONS(763), - [anon_sym_EQ_EQ] = ACTIONS(763), - [anon_sym_BANG_EQ] = ACTIONS(763), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(763), - [anon_sym_CARET] = ACTIONS(763), - [aux_sym_binary_operator_token1] = ACTIONS(763), - [anon_sym_PIPE_GT] = ACTIONS(763), - [anon_sym_COLON] = ACTIONS(761), - [anon_sym_DOLLAR] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(763), - [sym__hex_literal] = ACTIONS(763), - [sym__number_literal] = ACTIONS(761), - [anon_sym_SQUOTE] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(763), - [sym_dots] = ACTIONS(761), - [sym_dot_dot_i] = ACTIONS(763), - [sym_return] = ACTIONS(761), - [sym_next] = ACTIONS(761), - [sym_break] = ACTIONS(761), - [sym_true] = ACTIONS(761), - [sym_false] = ACTIONS(761), - [sym_null] = ACTIONS(761), - [sym_inf] = ACTIONS(761), - [sym_nan] = ACTIONS(761), - [anon_sym_NA] = ACTIONS(761), - [anon_sym_NA_integer_] = ACTIONS(761), - [anon_sym_NA_real_] = ACTIONS(761), - [anon_sym_NA_complex_] = ACTIONS(761), - [anon_sym_NA_character_] = ACTIONS(761), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(763), - [sym__semicolon] = ACTIONS(763), - [sym__raw_string_literal] = ACTIONS(763), - [sym__external_else] = ACTIONS(763), - [sym__external_open_parenthesis] = ACTIONS(763), - [sym__external_open_brace] = ACTIONS(763), - [sym__external_open_bracket] = ACTIONS(763), - [sym__external_open_bracket2] = ACTIONS(763), - }, [380] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(346), - [aux_sym_braced_expression_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), + [ts_builtin_sym_end] = ACTIONS(838), + [sym_identifier] = ACTIONS(836), + [anon_sym_BSLASH] = ACTIONS(838), + [anon_sym_function] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_for] = ACTIONS(836), + [anon_sym_while] = ACTIONS(836), + [anon_sym_repeat] = ACTIONS(836), + [anon_sym_QMARK] = ACTIONS(838), + [anon_sym_TILDE] = ACTIONS(838), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(838), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_LT_DASH] = ACTIONS(838), + [anon_sym_LT_LT_DASH] = ACTIONS(838), + [anon_sym_COLON_EQ] = ACTIONS(838), + [anon_sym_DASH_GT] = ACTIONS(836), + [anon_sym_DASH_GT_GT] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(838), + [anon_sym_AMP_AMP] = ACTIONS(838), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_LT_EQ] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_EQ] = ACTIONS(838), + [anon_sym_EQ_EQ] = ACTIONS(838), + [anon_sym_BANG_EQ] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(838), + [anon_sym_STAR_STAR] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(838), + [aux_sym_binary_operator_token1] = ACTIONS(838), + [anon_sym_PIPE_GT] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_AT] = ACTIONS(838), + [sym__hex_literal] = ACTIONS(838), + [sym__number_literal] = ACTIONS(836), + [anon_sym_SQUOTE] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [sym_dots] = ACTIONS(836), + [sym_dot_dot_i] = ACTIONS(838), + [sym_return] = ACTIONS(836), + [sym_next] = ACTIONS(836), + [sym_break] = ACTIONS(836), + [sym_true] = ACTIONS(836), + [sym_false] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [sym_inf] = ACTIONS(836), + [sym_nan] = ACTIONS(836), + [anon_sym_NA] = ACTIONS(836), + [anon_sym_NA_integer_] = ACTIONS(836), + [anon_sym_NA_real_] = ACTIONS(836), + [anon_sym_NA_complex_] = ACTIONS(836), + [anon_sym_NA_character_] = ACTIONS(836), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(851), + [sym__newline] = ACTIONS(838), + [sym__semicolon] = ACTIONS(838), + [sym__raw_string_literal] = ACTIONS(838), + [sym__external_else] = ACTIONS(838), + [sym__external_open_parenthesis] = ACTIONS(838), + [sym__external_open_brace] = ACTIONS(838), + [sym__external_open_bracket] = ACTIONS(838), + [sym__external_open_bracket2] = ACTIONS(838), }, [381] = { - [sym_identifier] = ACTIONS(853), - [anon_sym_BSLASH] = ACTIONS(855), - [anon_sym_function] = ACTIONS(853), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_if] = ACTIONS(853), - [anon_sym_for] = ACTIONS(853), - [anon_sym_while] = ACTIONS(853), - [anon_sym_repeat] = ACTIONS(853), - [anon_sym_QMARK] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_LT_DASH] = ACTIONS(855), - [anon_sym_LT_LT_DASH] = ACTIONS(855), - [anon_sym_COLON_EQ] = ACTIONS(855), - [anon_sym_DASH_GT] = ACTIONS(853), - [anon_sym_DASH_GT_GT] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(855), - [anon_sym_AMP_AMP] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_STAR] = ACTIONS(853), - [anon_sym_SLASH] = ACTIONS(855), - [anon_sym_STAR_STAR] = ACTIONS(855), - [anon_sym_CARET] = ACTIONS(855), - [aux_sym_binary_operator_token1] = ACTIONS(855), - [anon_sym_PIPE_GT] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_AT] = ACTIONS(855), - [sym__hex_literal] = ACTIONS(855), - [sym__number_literal] = ACTIONS(853), - [anon_sym_SQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_dots] = ACTIONS(853), - [sym_dot_dot_i] = ACTIONS(855), - [sym_return] = ACTIONS(853), - [sym_next] = ACTIONS(853), - [sym_break] = ACTIONS(853), - [sym_true] = ACTIONS(853), - [sym_false] = ACTIONS(853), - [sym_null] = ACTIONS(853), - [sym_inf] = ACTIONS(853), - [sym_nan] = ACTIONS(853), - [anon_sym_NA] = ACTIONS(853), - [anon_sym_NA_integer_] = ACTIONS(853), - [anon_sym_NA_real_] = ACTIONS(853), - [anon_sym_NA_complex_] = ACTIONS(853), - [anon_sym_NA_character_] = ACTIONS(853), + [sym_identifier] = ACTIONS(799), + [anon_sym_BSLASH] = ACTIONS(797), + [anon_sym_function] = ACTIONS(799), + [anon_sym_EQ] = ACTIONS(799), + [anon_sym_if] = ACTIONS(799), + [anon_sym_for] = ACTIONS(799), + [anon_sym_while] = ACTIONS(799), + [anon_sym_repeat] = ACTIONS(799), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_BANG] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(797), + [anon_sym_LT_LT_DASH] = ACTIONS(797), + [anon_sym_COLON_EQ] = ACTIONS(797), + [anon_sym_DASH_GT] = ACTIONS(799), + [anon_sym_DASH_GT_GT] = ACTIONS(797), + [anon_sym_PIPE] = ACTIONS(799), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_LT_EQ] = ACTIONS(797), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_EQ] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_BANG_EQ] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_STAR_STAR] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [aux_sym_binary_operator_token1] = ACTIONS(797), + [anon_sym_PIPE_GT] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(799), + [anon_sym_DOLLAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [sym__hex_literal] = ACTIONS(797), + [sym__number_literal] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(797), + [sym_dots] = ACTIONS(799), + [sym_dot_dot_i] = ACTIONS(797), + [sym_return] = ACTIONS(799), + [sym_next] = ACTIONS(799), + [sym_break] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_null] = ACTIONS(799), + [sym_inf] = ACTIONS(799), + [sym_nan] = ACTIONS(799), + [anon_sym_NA] = ACTIONS(799), + [anon_sym_NA_integer_] = ACTIONS(799), + [anon_sym_NA_real_] = ACTIONS(799), + [anon_sym_NA_complex_] = ACTIONS(799), + [anon_sym_NA_character_] = ACTIONS(799), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), - [sym__semicolon] = ACTIONS(855), - [sym__raw_string_literal] = ACTIONS(855), - [sym__external_else] = ACTIONS(855), - [sym__external_open_parenthesis] = ACTIONS(855), - [sym__external_open_brace] = ACTIONS(855), - [sym__external_close_brace] = ACTIONS(855), - [sym__external_open_bracket] = ACTIONS(855), - [sym__external_open_bracket2] = ACTIONS(855), + [sym__newline] = ACTIONS(797), + [sym__semicolon] = ACTIONS(797), + [sym__raw_string_literal] = ACTIONS(797), + [sym__external_else] = ACTIONS(797), + [sym__external_open_parenthesis] = ACTIONS(797), + [sym__external_open_brace] = ACTIONS(797), + [sym__external_close_brace] = ACTIONS(797), + [sym__external_open_bracket] = ACTIONS(797), + [sym__external_open_bracket2] = ACTIONS(797), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(767), - [sym_identifier] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_function] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_if] = ACTIONS(765), - [anon_sym_for] = ACTIONS(765), - [anon_sym_while] = ACTIONS(765), - [anon_sym_repeat] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(767), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LT_DASH] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(767), - [anon_sym_COLON_EQ] = ACTIONS(767), - [anon_sym_DASH_GT] = ACTIONS(765), - [anon_sym_DASH_GT_GT] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_LT_EQ] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_GT_EQ] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(767), - [anon_sym_BANG_EQ] = ACTIONS(767), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(767), - [anon_sym_CARET] = ACTIONS(767), - [aux_sym_binary_operator_token1] = ACTIONS(767), - [anon_sym_PIPE_GT] = ACTIONS(767), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [anon_sym_AT] = ACTIONS(767), - [sym__hex_literal] = ACTIONS(767), - [sym__number_literal] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(767), - [sym_dots] = ACTIONS(765), - [sym_dot_dot_i] = ACTIONS(767), - [sym_return] = ACTIONS(765), - [sym_next] = ACTIONS(765), - [sym_break] = ACTIONS(765), - [sym_true] = ACTIONS(765), - [sym_false] = ACTIONS(765), - [sym_null] = ACTIONS(765), - [sym_inf] = ACTIONS(765), - [sym_nan] = ACTIONS(765), - [anon_sym_NA] = ACTIONS(765), - [anon_sym_NA_integer_] = ACTIONS(765), - [anon_sym_NA_real_] = ACTIONS(765), - [anon_sym_NA_complex_] = ACTIONS(765), - [anon_sym_NA_character_] = ACTIONS(765), + [sym_identifier] = ACTIONS(771), + [anon_sym_BSLASH] = ACTIONS(769), + [anon_sym_function] = ACTIONS(771), + [anon_sym_EQ] = ACTIONS(771), + [anon_sym_if] = ACTIONS(771), + [anon_sym_for] = ACTIONS(771), + [anon_sym_while] = ACTIONS(771), + [anon_sym_repeat] = ACTIONS(771), + [anon_sym_QMARK] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(771), + [anon_sym_LT_DASH] = ACTIONS(769), + [anon_sym_LT_LT_DASH] = ACTIONS(769), + [anon_sym_COLON_EQ] = ACTIONS(769), + [anon_sym_DASH_GT] = ACTIONS(771), + [anon_sym_DASH_GT_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), + [aux_sym_binary_operator_token1] = ACTIONS(769), + [anon_sym_PIPE_GT] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(769), + [sym__hex_literal] = ACTIONS(769), + [sym__number_literal] = ACTIONS(771), + [anon_sym_SQUOTE] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [sym_dots] = ACTIONS(771), + [sym_dot_dot_i] = ACTIONS(769), + [sym_return] = ACTIONS(771), + [sym_next] = ACTIONS(771), + [sym_break] = ACTIONS(771), + [sym_true] = ACTIONS(771), + [sym_false] = ACTIONS(771), + [sym_null] = ACTIONS(771), + [sym_inf] = ACTIONS(771), + [sym_nan] = ACTIONS(771), + [anon_sym_NA] = ACTIONS(771), + [anon_sym_NA_integer_] = ACTIONS(771), + [anon_sym_NA_real_] = ACTIONS(771), + [anon_sym_NA_complex_] = ACTIONS(771), + [anon_sym_NA_character_] = ACTIONS(771), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(767), - [sym__semicolon] = ACTIONS(767), - [sym__raw_string_literal] = ACTIONS(767), - [sym__external_else] = ACTIONS(767), - [sym__external_open_parenthesis] = ACTIONS(767), - [sym__external_open_brace] = ACTIONS(767), - [sym__external_open_bracket] = ACTIONS(767), - [sym__external_open_bracket2] = ACTIONS(767), + [sym__newline] = ACTIONS(769), + [sym__semicolon] = ACTIONS(769), + [sym__raw_string_literal] = ACTIONS(769), + [sym__external_else] = ACTIONS(769), + [sym__external_open_parenthesis] = ACTIONS(769), + [sym__external_open_brace] = ACTIONS(769), + [sym__external_close_brace] = ACTIONS(769), + [sym__external_open_bracket] = ACTIONS(769), + [sym__external_open_bracket2] = ACTIONS(769), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(771), - [sym_identifier] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_function] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(769), - [anon_sym_if] = ACTIONS(769), - [anon_sym_for] = ACTIONS(769), - [anon_sym_while] = ACTIONS(769), - [anon_sym_repeat] = ACTIONS(769), - [anon_sym_QMARK] = ACTIONS(771), - [anon_sym_TILDE] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_LT_DASH] = ACTIONS(771), - [anon_sym_LT_LT_DASH] = ACTIONS(771), - [anon_sym_COLON_EQ] = ACTIONS(771), - [anon_sym_DASH_GT] = ACTIONS(769), - [anon_sym_DASH_GT_GT] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(769), - [anon_sym_LT_EQ] = ACTIONS(771), - [anon_sym_GT] = ACTIONS(769), - [anon_sym_GT_EQ] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(771), - [anon_sym_BANG_EQ] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(771), - [aux_sym_binary_operator_token1] = ACTIONS(771), - [anon_sym_PIPE_GT] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [anon_sym_AT] = ACTIONS(771), - [sym__hex_literal] = ACTIONS(771), - [sym__number_literal] = ACTIONS(769), - [anon_sym_SQUOTE] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(771), - [sym_dots] = ACTIONS(769), - [sym_dot_dot_i] = ACTIONS(771), - [sym_return] = ACTIONS(769), - [sym_next] = ACTIONS(769), - [sym_break] = ACTIONS(769), - [sym_true] = ACTIONS(769), - [sym_false] = ACTIONS(769), - [sym_null] = ACTIONS(769), - [sym_inf] = ACTIONS(769), - [sym_nan] = ACTIONS(769), - [anon_sym_NA] = ACTIONS(769), - [anon_sym_NA_integer_] = ACTIONS(769), - [anon_sym_NA_real_] = ACTIONS(769), - [anon_sym_NA_complex_] = ACTIONS(769), - [anon_sym_NA_character_] = ACTIONS(769), + [sym_identifier] = ACTIONS(745), + [anon_sym_BSLASH] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_EQ] = ACTIONS(745), + [anon_sym_if] = ACTIONS(745), + [anon_sym_for] = ACTIONS(745), + [anon_sym_while] = ACTIONS(745), + [anon_sym_repeat] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(743), + [anon_sym_TILDE] = ACTIONS(743), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_LT_DASH] = ACTIONS(743), + [anon_sym_LT_LT_DASH] = ACTIONS(743), + [anon_sym_COLON_EQ] = ACTIONS(743), + [anon_sym_DASH_GT] = ACTIONS(745), + [anon_sym_DASH_GT_GT] = ACTIONS(743), + [anon_sym_PIPE] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(743), + [anon_sym_LT] = ACTIONS(745), + [anon_sym_LT_EQ] = ACTIONS(743), + [anon_sym_GT] = ACTIONS(745), + [anon_sym_GT_EQ] = ACTIONS(743), + [anon_sym_EQ_EQ] = ACTIONS(743), + [anon_sym_BANG_EQ] = ACTIONS(743), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(743), + [anon_sym_STAR_STAR] = ACTIONS(743), + [anon_sym_CARET] = ACTIONS(743), + [aux_sym_binary_operator_token1] = ACTIONS(743), + [anon_sym_PIPE_GT] = ACTIONS(743), + [anon_sym_COLON] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(743), + [sym__hex_literal] = ACTIONS(743), + [sym__number_literal] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(743), + [sym_dots] = ACTIONS(745), + [sym_dot_dot_i] = ACTIONS(743), + [sym_return] = ACTIONS(745), + [sym_next] = ACTIONS(745), + [sym_break] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [sym_null] = ACTIONS(745), + [sym_inf] = ACTIONS(745), + [sym_nan] = ACTIONS(745), + [anon_sym_NA] = ACTIONS(745), + [anon_sym_NA_integer_] = ACTIONS(745), + [anon_sym_NA_real_] = ACTIONS(745), + [anon_sym_NA_complex_] = ACTIONS(745), + [anon_sym_NA_character_] = ACTIONS(745), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(771), - [sym__semicolon] = ACTIONS(771), - [sym__raw_string_literal] = ACTIONS(771), - [sym__external_else] = ACTIONS(771), - [sym__external_open_parenthesis] = ACTIONS(771), - [sym__external_open_brace] = ACTIONS(771), - [sym__external_open_bracket] = ACTIONS(771), - [sym__external_open_bracket2] = ACTIONS(771), + [sym__newline] = ACTIONS(743), + [sym__semicolon] = ACTIONS(743), + [sym__raw_string_literal] = ACTIONS(743), + [sym__external_else] = ACTIONS(743), + [sym__external_open_parenthesis] = ACTIONS(743), + [sym__external_open_brace] = ACTIONS(743), + [sym__external_close_brace] = ACTIONS(743), + [sym__external_open_bracket] = ACTIONS(743), + [sym__external_open_bracket2] = ACTIONS(743), }, [384] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(1650), - [aux_sym_braced_expression_repeat1] = STATE(377), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), + [sym_identifier] = ACTIONS(741), + [anon_sym_BSLASH] = ACTIONS(739), + [anon_sym_function] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(741), + [anon_sym_if] = ACTIONS(741), + [anon_sym_for] = ACTIONS(741), + [anon_sym_while] = ACTIONS(741), + [anon_sym_repeat] = ACTIONS(741), + [anon_sym_QMARK] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_LT_DASH] = ACTIONS(739), + [anon_sym_LT_LT_DASH] = ACTIONS(739), + [anon_sym_COLON_EQ] = ACTIONS(739), + [anon_sym_DASH_GT] = ACTIONS(741), + [anon_sym_DASH_GT_GT] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(739), + [anon_sym_STAR] = ACTIONS(741), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(739), + [anon_sym_CARET] = ACTIONS(739), + [aux_sym_binary_operator_token1] = ACTIONS(739), + [anon_sym_PIPE_GT] = ACTIONS(739), + [anon_sym_COLON] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(739), + [anon_sym_AT] = ACTIONS(739), + [sym__hex_literal] = ACTIONS(739), + [sym__number_literal] = ACTIONS(741), + [anon_sym_SQUOTE] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [sym_dots] = ACTIONS(741), + [sym_dot_dot_i] = ACTIONS(739), + [sym_return] = ACTIONS(741), + [sym_next] = ACTIONS(741), + [sym_break] = ACTIONS(741), + [sym_true] = ACTIONS(741), + [sym_false] = ACTIONS(741), + [sym_null] = ACTIONS(741), + [sym_inf] = ACTIONS(741), + [sym_nan] = ACTIONS(741), [anon_sym_NA] = ACTIONS(741), [anon_sym_NA_integer_] = ACTIONS(741), [anon_sym_NA_real_] = ACTIONS(741), [anon_sym_NA_complex_] = ACTIONS(741), [anon_sym_NA_character_] = ACTIONS(741), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(857), + [sym__newline] = ACTIONS(739), + [sym__semicolon] = ACTIONS(739), + [sym__raw_string_literal] = ACTIONS(739), + [sym__external_else] = ACTIONS(739), + [sym__external_open_parenthesis] = ACTIONS(739), + [sym__external_open_brace] = ACTIONS(739), + [sym__external_close_brace] = ACTIONS(739), + [sym__external_open_bracket] = ACTIONS(739), + [sym__external_open_bracket2] = ACTIONS(739), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(697), + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(363), + [aux_sym_braced_expression_repeat1] = STATE(438), [sym_identifier] = ACTIONS(695), [anon_sym_BSLASH] = ACTIONS(697), - [anon_sym_function] = ACTIONS(695), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_if] = ACTIONS(695), - [anon_sym_for] = ACTIONS(695), - [anon_sym_while] = ACTIONS(695), - [anon_sym_repeat] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_LT_DASH] = ACTIONS(697), - [anon_sym_LT_LT_DASH] = ACTIONS(697), - [anon_sym_COLON_EQ] = ACTIONS(697), - [anon_sym_DASH_GT] = ACTIONS(695), - [anon_sym_DASH_GT_GT] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_LT_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(697), - [anon_sym_EQ_EQ] = ACTIONS(697), - [anon_sym_BANG_EQ] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_STAR_STAR] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [aux_sym_binary_operator_token1] = ACTIONS(697), - [anon_sym_PIPE_GT] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [sym__hex_literal] = ACTIONS(697), - [sym__number_literal] = ACTIONS(695), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), [sym_dots] = ACTIONS(695), - [sym_dot_dot_i] = ACTIONS(697), - [sym_return] = ACTIONS(695), - [sym_next] = ACTIONS(695), - [sym_break] = ACTIONS(695), - [sym_true] = ACTIONS(695), - [sym_false] = ACTIONS(695), - [sym_null] = ACTIONS(695), - [sym_inf] = ACTIONS(695), - [sym_nan] = ACTIONS(695), - [anon_sym_NA] = ACTIONS(695), - [anon_sym_NA_integer_] = ACTIONS(695), - [anon_sym_NA_real_] = ACTIONS(695), - [anon_sym_NA_complex_] = ACTIONS(695), - [anon_sym_NA_character_] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(697), - [sym__semicolon] = ACTIONS(697), - [sym__raw_string_literal] = ACTIONS(697), - [sym__external_else] = ACTIONS(697), - [sym__external_open_parenthesis] = ACTIONS(697), - [sym__external_open_brace] = ACTIONS(697), - [sym__external_open_bracket] = ACTIONS(697), - [sym__external_open_bracket2] = ACTIONS(697), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(867), }, [386] = { - [aux_sym_function_definition_repeat1] = STATE(386), - [sym_identifier] = ACTIONS(683), - [anon_sym_BSLASH] = ACTIONS(681), - [anon_sym_function] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [anon_sym_repeat] = ACTIONS(683), - [anon_sym_QMARK] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(683), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_LT_DASH] = ACTIONS(681), - [anon_sym_LT_LT_DASH] = ACTIONS(681), - [anon_sym_COLON_EQ] = ACTIONS(681), - [anon_sym_DASH_GT] = ACTIONS(683), - [anon_sym_DASH_GT_GT] = ACTIONS(681), - [anon_sym_PIPE] = ACTIONS(683), - [anon_sym_AMP] = ACTIONS(683), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [anon_sym_AMP_AMP] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(683), - [anon_sym_LT_EQ] = ACTIONS(681), - [anon_sym_GT] = ACTIONS(683), - [anon_sym_GT_EQ] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(681), - [anon_sym_BANG_EQ] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_SLASH] = ACTIONS(681), - [anon_sym_STAR_STAR] = ACTIONS(681), - [anon_sym_CARET] = ACTIONS(681), - [aux_sym_binary_operator_token1] = ACTIONS(681), - [anon_sym_PIPE_GT] = ACTIONS(681), - [anon_sym_COLON] = ACTIONS(683), - [anon_sym_DOLLAR] = ACTIONS(681), - [anon_sym_AT] = ACTIONS(681), - [sym__hex_literal] = ACTIONS(681), - [sym__number_literal] = ACTIONS(683), - [anon_sym_SQUOTE] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_dots] = ACTIONS(683), - [sym_dot_dot_i] = ACTIONS(681), - [sym_return] = ACTIONS(683), - [sym_next] = ACTIONS(683), - [sym_break] = ACTIONS(683), - [sym_true] = ACTIONS(683), - [sym_false] = ACTIONS(683), - [sym_null] = ACTIONS(683), - [sym_inf] = ACTIONS(683), - [sym_nan] = ACTIONS(683), - [anon_sym_NA] = ACTIONS(683), - [anon_sym_NA_integer_] = ACTIONS(683), - [anon_sym_NA_real_] = ACTIONS(683), - [anon_sym_NA_complex_] = ACTIONS(683), - [anon_sym_NA_character_] = ACTIONS(683), + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(439), + [aux_sym_braced_expression_repeat1] = STATE(438), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(859), - [sym__semicolon] = ACTIONS(681), - [sym__raw_string_literal] = ACTIONS(681), - [sym__external_open_parenthesis] = ACTIONS(681), - [sym__external_open_brace] = ACTIONS(681), - [sym__external_close_brace] = ACTIONS(681), - [sym__external_open_bracket] = ACTIONS(681), - [sym__external_open_bracket2] = ACTIONS(681), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(869), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(775), - [sym_identifier] = ACTIONS(773), - [anon_sym_BSLASH] = ACTIONS(775), - [anon_sym_function] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(773), - [anon_sym_if] = ACTIONS(773), - [anon_sym_for] = ACTIONS(773), - [anon_sym_while] = ACTIONS(773), - [anon_sym_repeat] = ACTIONS(773), - [anon_sym_QMARK] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_LT_DASH] = ACTIONS(775), - [anon_sym_LT_LT_DASH] = ACTIONS(775), - [anon_sym_COLON_EQ] = ACTIONS(775), - [anon_sym_DASH_GT] = ACTIONS(773), - [anon_sym_DASH_GT_GT] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_LT_EQ] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_GT_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [aux_sym_binary_operator_token1] = ACTIONS(775), - [anon_sym_PIPE_GT] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(775), - [anon_sym_AT] = ACTIONS(775), - [sym__hex_literal] = ACTIONS(775), - [sym__number_literal] = ACTIONS(773), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(775), - [sym_dots] = ACTIONS(773), - [sym_dot_dot_i] = ACTIONS(775), - [sym_return] = ACTIONS(773), - [sym_next] = ACTIONS(773), - [sym_break] = ACTIONS(773), - [sym_true] = ACTIONS(773), - [sym_false] = ACTIONS(773), - [sym_null] = ACTIONS(773), - [sym_inf] = ACTIONS(773), - [sym_nan] = ACTIONS(773), - [anon_sym_NA] = ACTIONS(773), - [anon_sym_NA_integer_] = ACTIONS(773), - [anon_sym_NA_real_] = ACTIONS(773), - [anon_sym_NA_complex_] = ACTIONS(773), - [anon_sym_NA_character_] = ACTIONS(773), + [sym_identifier] = ACTIONS(737), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_function] = ACTIONS(737), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_if] = ACTIONS(737), + [anon_sym_for] = ACTIONS(737), + [anon_sym_while] = ACTIONS(737), + [anon_sym_repeat] = ACTIONS(737), + [anon_sym_QMARK] = ACTIONS(735), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(735), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LT_DASH] = ACTIONS(735), + [anon_sym_LT_LT_DASH] = ACTIONS(735), + [anon_sym_COLON_EQ] = ACTIONS(735), + [anon_sym_DASH_GT] = ACTIONS(737), + [anon_sym_DASH_GT_GT] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_LT_EQ] = ACTIONS(735), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_GT_EQ] = ACTIONS(735), + [anon_sym_EQ_EQ] = ACTIONS(735), + [anon_sym_BANG_EQ] = ACTIONS(735), + [anon_sym_STAR] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(735), + [anon_sym_STAR_STAR] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(735), + [aux_sym_binary_operator_token1] = ACTIONS(735), + [anon_sym_PIPE_GT] = ACTIONS(735), + [anon_sym_COLON] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(735), + [anon_sym_AT] = ACTIONS(735), + [sym__hex_literal] = ACTIONS(735), + [sym__number_literal] = ACTIONS(737), + [anon_sym_SQUOTE] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [sym_dots] = ACTIONS(737), + [sym_dot_dot_i] = ACTIONS(735), + [sym_return] = ACTIONS(737), + [sym_next] = ACTIONS(737), + [sym_break] = ACTIONS(737), + [sym_true] = ACTIONS(737), + [sym_false] = ACTIONS(737), + [sym_null] = ACTIONS(737), + [sym_inf] = ACTIONS(737), + [sym_nan] = ACTIONS(737), + [anon_sym_NA] = ACTIONS(737), + [anon_sym_NA_integer_] = ACTIONS(737), + [anon_sym_NA_real_] = ACTIONS(737), + [anon_sym_NA_complex_] = ACTIONS(737), + [anon_sym_NA_character_] = ACTIONS(737), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(775), - [sym__semicolon] = ACTIONS(775), - [sym__raw_string_literal] = ACTIONS(775), - [sym__external_else] = ACTIONS(775), - [sym__external_open_parenthesis] = ACTIONS(775), - [sym__external_open_brace] = ACTIONS(775), - [sym__external_open_bracket] = ACTIONS(775), - [sym__external_open_bracket2] = ACTIONS(775), + [sym__newline] = ACTIONS(735), + [sym__semicolon] = ACTIONS(735), + [sym__raw_string_literal] = ACTIONS(735), + [sym__external_else] = ACTIONS(735), + [sym__external_open_parenthesis] = ACTIONS(735), + [sym__external_open_brace] = ACTIONS(735), + [sym__external_close_brace] = ACTIONS(735), + [sym__external_open_bracket] = ACTIONS(735), + [sym__external_open_bracket2] = ACTIONS(735), }, [388] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(330), - [aux_sym_braced_expression_repeat1] = STATE(331), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(1635), + [aux_sym_braced_expression_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(862), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(871), }, [389] = { - [ts_builtin_sym_end] = ACTIONS(855), - [sym_identifier] = ACTIONS(853), - [anon_sym_BSLASH] = ACTIONS(855), - [anon_sym_function] = ACTIONS(853), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_if] = ACTIONS(853), - [anon_sym_for] = ACTIONS(853), - [anon_sym_while] = ACTIONS(853), - [anon_sym_repeat] = ACTIONS(853), - [anon_sym_QMARK] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_LT_DASH] = ACTIONS(855), - [anon_sym_LT_LT_DASH] = ACTIONS(855), - [anon_sym_COLON_EQ] = ACTIONS(855), - [anon_sym_DASH_GT] = ACTIONS(853), - [anon_sym_DASH_GT_GT] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(855), - [anon_sym_AMP_AMP] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_STAR] = ACTIONS(853), - [anon_sym_SLASH] = ACTIONS(855), - [anon_sym_STAR_STAR] = ACTIONS(855), - [anon_sym_CARET] = ACTIONS(855), - [aux_sym_binary_operator_token1] = ACTIONS(855), - [anon_sym_PIPE_GT] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_AT] = ACTIONS(855), - [sym__hex_literal] = ACTIONS(855), - [sym__number_literal] = ACTIONS(853), - [anon_sym_SQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_dots] = ACTIONS(853), - [sym_dot_dot_i] = ACTIONS(855), - [sym_return] = ACTIONS(853), - [sym_next] = ACTIONS(853), - [sym_break] = ACTIONS(853), - [sym_true] = ACTIONS(853), - [sym_false] = ACTIONS(853), - [sym_null] = ACTIONS(853), - [sym_inf] = ACTIONS(853), - [sym_nan] = ACTIONS(853), - [anon_sym_NA] = ACTIONS(853), - [anon_sym_NA_integer_] = ACTIONS(853), - [anon_sym_NA_real_] = ACTIONS(853), - [anon_sym_NA_complex_] = ACTIONS(853), - [anon_sym_NA_character_] = ACTIONS(853), + [sym_identifier] = ACTIONS(820), + [anon_sym_BSLASH] = ACTIONS(818), + [anon_sym_function] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(820), + [anon_sym_if] = ACTIONS(820), + [anon_sym_for] = ACTIONS(820), + [anon_sym_while] = ACTIONS(820), + [anon_sym_repeat] = ACTIONS(820), + [anon_sym_QMARK] = ACTIONS(818), + [anon_sym_TILDE] = ACTIONS(818), + [anon_sym_BANG] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(818), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_LT_DASH] = ACTIONS(818), + [anon_sym_LT_LT_DASH] = ACTIONS(818), + [anon_sym_COLON_EQ] = ACTIONS(818), + [anon_sym_DASH_GT] = ACTIONS(820), + [anon_sym_DASH_GT_GT] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_GT_EQ] = ACTIONS(818), + [anon_sym_EQ_EQ] = ACTIONS(818), + [anon_sym_BANG_EQ] = ACTIONS(818), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(818), + [anon_sym_STAR_STAR] = ACTIONS(818), + [anon_sym_CARET] = ACTIONS(818), + [aux_sym_binary_operator_token1] = ACTIONS(818), + [anon_sym_PIPE_GT] = ACTIONS(818), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_DOLLAR] = ACTIONS(818), + [anon_sym_AT] = ACTIONS(818), + [sym__hex_literal] = ACTIONS(818), + [sym__number_literal] = ACTIONS(820), + [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(818), + [sym_dots] = ACTIONS(820), + [sym_dot_dot_i] = ACTIONS(818), + [sym_return] = ACTIONS(820), + [sym_next] = ACTIONS(820), + [sym_break] = ACTIONS(820), + [sym_true] = ACTIONS(820), + [sym_false] = ACTIONS(820), + [sym_null] = ACTIONS(820), + [sym_inf] = ACTIONS(820), + [sym_nan] = ACTIONS(820), + [anon_sym_NA] = ACTIONS(820), + [anon_sym_NA_integer_] = ACTIONS(820), + [anon_sym_NA_real_] = ACTIONS(820), + [anon_sym_NA_complex_] = ACTIONS(820), + [anon_sym_NA_character_] = ACTIONS(820), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), - [sym__semicolon] = ACTIONS(855), - [sym__raw_string_literal] = ACTIONS(855), - [sym__external_else] = ACTIONS(855), - [sym__external_open_parenthesis] = ACTIONS(855), - [sym__external_open_brace] = ACTIONS(855), - [sym__external_open_bracket] = ACTIONS(855), - [sym__external_open_bracket2] = ACTIONS(855), + [sym__newline] = ACTIONS(818), + [sym__semicolon] = ACTIONS(818), + [sym__raw_string_literal] = ACTIONS(818), + [sym__external_else] = ACTIONS(818), + [sym__external_open_parenthesis] = ACTIONS(818), + [sym__external_open_brace] = ACTIONS(818), + [sym__external_close_brace] = ACTIONS(818), + [sym__external_open_bracket] = ACTIONS(818), + [sym__external_open_bracket2] = ACTIONS(818), }, [390] = { - [aux_sym_function_definition_repeat1] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(681), - [sym_identifier] = ACTIONS(683), - [anon_sym_BSLASH] = ACTIONS(681), - [anon_sym_function] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [anon_sym_repeat] = ACTIONS(683), - [anon_sym_QMARK] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(683), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_LT_DASH] = ACTIONS(681), - [anon_sym_LT_LT_DASH] = ACTIONS(681), - [anon_sym_COLON_EQ] = ACTIONS(681), - [anon_sym_DASH_GT] = ACTIONS(683), - [anon_sym_DASH_GT_GT] = ACTIONS(681), - [anon_sym_PIPE] = ACTIONS(683), - [anon_sym_AMP] = ACTIONS(683), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [anon_sym_AMP_AMP] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(683), - [anon_sym_LT_EQ] = ACTIONS(681), - [anon_sym_GT] = ACTIONS(683), - [anon_sym_GT_EQ] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(681), - [anon_sym_BANG_EQ] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_SLASH] = ACTIONS(681), - [anon_sym_STAR_STAR] = ACTIONS(681), - [anon_sym_CARET] = ACTIONS(681), - [aux_sym_binary_operator_token1] = ACTIONS(681), - [anon_sym_PIPE_GT] = ACTIONS(681), - [anon_sym_COLON] = ACTIONS(683), - [anon_sym_DOLLAR] = ACTIONS(681), - [anon_sym_AT] = ACTIONS(681), - [sym__hex_literal] = ACTIONS(681), - [sym__number_literal] = ACTIONS(683), - [anon_sym_SQUOTE] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_dots] = ACTIONS(683), - [sym_dot_dot_i] = ACTIONS(681), - [sym_return] = ACTIONS(683), - [sym_next] = ACTIONS(683), - [sym_break] = ACTIONS(683), - [sym_true] = ACTIONS(683), - [sym_false] = ACTIONS(683), - [sym_null] = ACTIONS(683), - [sym_inf] = ACTIONS(683), - [sym_nan] = ACTIONS(683), - [anon_sym_NA] = ACTIONS(683), - [anon_sym_NA_integer_] = ACTIONS(683), - [anon_sym_NA_real_] = ACTIONS(683), - [anon_sym_NA_complex_] = ACTIONS(683), - [anon_sym_NA_character_] = ACTIONS(683), + [ts_builtin_sym_end] = ACTIONS(865), + [sym_identifier] = ACTIONS(863), + [anon_sym_BSLASH] = ACTIONS(865), + [anon_sym_function] = ACTIONS(863), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [anon_sym_repeat] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_LT_DASH] = ACTIONS(865), + [anon_sym_LT_LT_DASH] = ACTIONS(865), + [anon_sym_COLON_EQ] = ACTIONS(865), + [anon_sym_DASH_GT] = ACTIONS(863), + [anon_sym_DASH_GT_GT] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(865), + [aux_sym_binary_operator_token1] = ACTIONS(865), + [anon_sym_PIPE_GT] = ACTIONS(865), + [anon_sym_COLON] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(865), + [sym__hex_literal] = ACTIONS(865), + [sym__number_literal] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym_dots] = ACTIONS(863), + [sym_dot_dot_i] = ACTIONS(865), + [sym_return] = ACTIONS(863), + [sym_next] = ACTIONS(863), + [sym_break] = ACTIONS(863), + [sym_true] = ACTIONS(863), + [sym_false] = ACTIONS(863), + [sym_null] = ACTIONS(863), + [sym_inf] = ACTIONS(863), + [sym_nan] = ACTIONS(863), + [anon_sym_NA] = ACTIONS(863), + [anon_sym_NA_integer_] = ACTIONS(863), + [anon_sym_NA_real_] = ACTIONS(863), + [anon_sym_NA_complex_] = ACTIONS(863), + [anon_sym_NA_character_] = ACTIONS(863), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(864), - [sym__semicolon] = ACTIONS(681), - [sym__raw_string_literal] = ACTIONS(681), - [sym__external_open_parenthesis] = ACTIONS(681), - [sym__external_open_brace] = ACTIONS(681), - [sym__external_open_bracket] = ACTIONS(681), - [sym__external_open_bracket2] = ACTIONS(681), + [sym__newline] = ACTIONS(865), + [sym__semicolon] = ACTIONS(865), + [sym__raw_string_literal] = ACTIONS(865), + [sym__external_else] = ACTIONS(865), + [sym__external_open_parenthesis] = ACTIONS(865), + [sym__external_open_brace] = ACTIONS(865), + [sym__external_open_bracket] = ACTIONS(865), + [sym__external_open_bracket2] = ACTIONS(865), }, [391] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(1649), - [aux_sym_braced_expression_repeat1] = STATE(368), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), + [sym_identifier] = ACTIONS(811), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_function] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(811), + [anon_sym_if] = ACTIONS(811), + [anon_sym_for] = ACTIONS(811), + [anon_sym_while] = ACTIONS(811), + [anon_sym_repeat] = ACTIONS(811), + [anon_sym_QMARK] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_LT_DASH] = ACTIONS(809), + [anon_sym_LT_LT_DASH] = ACTIONS(809), + [anon_sym_COLON_EQ] = ACTIONS(809), + [anon_sym_DASH_GT] = ACTIONS(811), + [anon_sym_DASH_GT_GT] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(809), + [anon_sym_AMP_AMP] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_SLASH] = ACTIONS(809), + [anon_sym_STAR_STAR] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(809), + [aux_sym_binary_operator_token1] = ACTIONS(809), + [anon_sym_PIPE_GT] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(809), + [anon_sym_AT] = ACTIONS(809), + [sym__hex_literal] = ACTIONS(809), + [sym__number_literal] = ACTIONS(811), + [anon_sym_SQUOTE] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(809), + [sym_dots] = ACTIONS(811), + [sym_dot_dot_i] = ACTIONS(809), + [sym_return] = ACTIONS(811), + [sym_next] = ACTIONS(811), + [sym_break] = ACTIONS(811), + [sym_true] = ACTIONS(811), + [sym_false] = ACTIONS(811), + [sym_null] = ACTIONS(811), + [sym_inf] = ACTIONS(811), + [sym_nan] = ACTIONS(811), + [anon_sym_NA] = ACTIONS(811), + [anon_sym_NA_integer_] = ACTIONS(811), + [anon_sym_NA_real_] = ACTIONS(811), + [anon_sym_NA_complex_] = ACTIONS(811), + [anon_sym_NA_character_] = ACTIONS(811), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(867), + [sym__newline] = ACTIONS(809), + [sym__semicolon] = ACTIONS(809), + [sym__raw_string_literal] = ACTIONS(809), + [sym__external_else] = ACTIONS(809), + [sym__external_open_parenthesis] = ACTIONS(809), + [sym__external_open_brace] = ACTIONS(809), + [sym__external_close_brace] = ACTIONS(809), + [sym__external_open_bracket] = ACTIONS(809), + [sym__external_open_bracket2] = ACTIONS(809), }, [392] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(420), - [aux_sym_braced_expression_repeat1] = STATE(397), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), + [sym_identifier] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(805), + [anon_sym_function] = ACTIONS(807), + [anon_sym_EQ] = ACTIONS(807), + [anon_sym_if] = ACTIONS(807), + [anon_sym_for] = ACTIONS(807), + [anon_sym_while] = ACTIONS(807), + [anon_sym_repeat] = ACTIONS(807), + [anon_sym_QMARK] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_LT_DASH] = ACTIONS(805), + [anon_sym_LT_LT_DASH] = ACTIONS(805), + [anon_sym_COLON_EQ] = ACTIONS(805), + [anon_sym_DASH_GT] = ACTIONS(807), + [anon_sym_DASH_GT_GT] = ACTIONS(805), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(805), + [anon_sym_AMP_AMP] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(805), + [anon_sym_STAR_STAR] = ACTIONS(805), + [anon_sym_CARET] = ACTIONS(805), + [aux_sym_binary_operator_token1] = ACTIONS(805), + [anon_sym_PIPE_GT] = ACTIONS(805), + [anon_sym_COLON] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(805), + [anon_sym_AT] = ACTIONS(805), + [sym__hex_literal] = ACTIONS(805), + [sym__number_literal] = ACTIONS(807), + [anon_sym_SQUOTE] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(805), + [sym_dots] = ACTIONS(807), + [sym_dot_dot_i] = ACTIONS(805), + [sym_return] = ACTIONS(807), + [sym_next] = ACTIONS(807), + [sym_break] = ACTIONS(807), + [sym_true] = ACTIONS(807), + [sym_false] = ACTIONS(807), + [sym_null] = ACTIONS(807), + [sym_inf] = ACTIONS(807), + [sym_nan] = ACTIONS(807), + [anon_sym_NA] = ACTIONS(807), + [anon_sym_NA_integer_] = ACTIONS(807), + [anon_sym_NA_real_] = ACTIONS(807), + [anon_sym_NA_complex_] = ACTIONS(807), + [anon_sym_NA_character_] = ACTIONS(807), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(869), + [sym__newline] = ACTIONS(805), + [sym__semicolon] = ACTIONS(805), + [sym__raw_string_literal] = ACTIONS(805), + [sym__external_else] = ACTIONS(805), + [sym__external_open_parenthesis] = ACTIONS(805), + [sym__external_open_brace] = ACTIONS(805), + [sym__external_close_brace] = ACTIONS(805), + [sym__external_open_bracket] = ACTIONS(805), + [sym__external_open_bracket2] = ACTIONS(805), }, [393] = { - [sym_identifier] = ACTIONS(779), - [anon_sym_BSLASH] = ACTIONS(777), - [anon_sym_function] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(779), - [anon_sym_if] = ACTIONS(779), - [anon_sym_for] = ACTIONS(779), - [anon_sym_while] = ACTIONS(779), - [anon_sym_repeat] = ACTIONS(779), - [anon_sym_QMARK] = ACTIONS(777), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LT_DASH] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(777), - [anon_sym_COLON_EQ] = ACTIONS(777), - [anon_sym_DASH_GT] = ACTIONS(779), - [anon_sym_DASH_GT_GT] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(779), - [anon_sym_PIPE_PIPE] = ACTIONS(777), - [anon_sym_AMP_AMP] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(779), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(779), - [anon_sym_GT_EQ] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(779), - [anon_sym_SLASH] = ACTIONS(777), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_CARET] = ACTIONS(777), - [aux_sym_binary_operator_token1] = ACTIONS(777), - [anon_sym_PIPE_GT] = ACTIONS(777), - [anon_sym_COLON] = ACTIONS(779), - [anon_sym_DOLLAR] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(777), - [sym__hex_literal] = ACTIONS(777), - [sym__number_literal] = ACTIONS(779), - [anon_sym_SQUOTE] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [sym_dots] = ACTIONS(779), - [sym_dot_dot_i] = ACTIONS(777), - [sym_return] = ACTIONS(779), - [sym_next] = ACTIONS(779), - [sym_break] = ACTIONS(779), - [sym_true] = ACTIONS(779), - [sym_false] = ACTIONS(779), - [sym_null] = ACTIONS(779), - [sym_inf] = ACTIONS(779), - [sym_nan] = ACTIONS(779), - [anon_sym_NA] = ACTIONS(779), - [anon_sym_NA_integer_] = ACTIONS(779), - [anon_sym_NA_real_] = ACTIONS(779), - [anon_sym_NA_complex_] = ACTIONS(779), - [anon_sym_NA_character_] = ACTIONS(779), + [ts_builtin_sym_end] = ACTIONS(861), + [sym_identifier] = ACTIONS(859), + [anon_sym_BSLASH] = ACTIONS(861), + [anon_sym_function] = ACTIONS(859), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [anon_sym_repeat] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LT_DASH] = ACTIONS(861), + [anon_sym_LT_LT_DASH] = ACTIONS(861), + [anon_sym_COLON_EQ] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(859), + [anon_sym_DASH_GT_GT] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_STAR_STAR] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [aux_sym_binary_operator_token1] = ACTIONS(861), + [anon_sym_PIPE_GT] = ACTIONS(861), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(861), + [sym__hex_literal] = ACTIONS(861), + [sym__number_literal] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym_dots] = ACTIONS(859), + [sym_dot_dot_i] = ACTIONS(861), + [sym_return] = ACTIONS(859), + [sym_next] = ACTIONS(859), + [sym_break] = ACTIONS(859), + [sym_true] = ACTIONS(859), + [sym_false] = ACTIONS(859), + [sym_null] = ACTIONS(859), + [sym_inf] = ACTIONS(859), + [sym_nan] = ACTIONS(859), + [anon_sym_NA] = ACTIONS(859), + [anon_sym_NA_integer_] = ACTIONS(859), + [anon_sym_NA_real_] = ACTIONS(859), + [anon_sym_NA_complex_] = ACTIONS(859), + [anon_sym_NA_character_] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(777), - [sym__semicolon] = ACTIONS(777), - [sym__raw_string_literal] = ACTIONS(777), - [sym__external_else] = ACTIONS(777), - [sym__external_open_parenthesis] = ACTIONS(777), - [sym__external_open_brace] = ACTIONS(777), - [sym__external_close_brace] = ACTIONS(777), - [sym__external_open_bracket] = ACTIONS(777), - [sym__external_open_bracket2] = ACTIONS(777), + [sym__newline] = ACTIONS(861), + [sym__semicolon] = ACTIONS(861), + [sym__raw_string_literal] = ACTIONS(861), + [sym__external_else] = ACTIONS(861), + [sym__external_open_parenthesis] = ACTIONS(861), + [sym__external_open_brace] = ACTIONS(861), + [sym__external_open_bracket] = ACTIONS(861), + [sym__external_open_bracket2] = ACTIONS(861), }, [394] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(1657), - [aux_sym_braced_expression_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [sym__close_brace] = STATE(400), + [aux_sym_braced_expression_repeat1] = STATE(438), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(699), + [anon_sym_if] = ACTIONS(701), + [anon_sym_for] = ACTIONS(703), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [sym__hex_literal] = ACTIONS(717), + [sym__number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(721), + [sym_return] = ACTIONS(723), + [sym_next] = ACTIONS(723), + [sym_break] = ACTIONS(723), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_null] = ACTIONS(723), + [sym_inf] = ACTIONS(723), + [sym_nan] = ACTIONS(723), + [anon_sym_NA] = ACTIONS(725), + [anon_sym_NA_integer_] = ACTIONS(725), + [anon_sym_NA_real_] = ACTIONS(725), + [anon_sym_NA_complex_] = ACTIONS(725), + [anon_sym_NA_character_] = ACTIONS(725), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(871), + [sym__newline] = ACTIONS(727), + [sym__semicolon] = ACTIONS(727), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(729), + [sym__external_open_brace] = ACTIONS(731), + [sym__external_close_brace] = ACTIONS(873), }, [395] = { - [sym_identifier] = ACTIONS(783), - [anon_sym_BSLASH] = ACTIONS(781), - [anon_sym_function] = ACTIONS(783), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_if] = ACTIONS(783), - [anon_sym_for] = ACTIONS(783), - [anon_sym_while] = ACTIONS(783), - [anon_sym_repeat] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_LT_DASH] = ACTIONS(781), - [anon_sym_LT_LT_DASH] = ACTIONS(781), - [anon_sym_COLON_EQ] = ACTIONS(781), - [anon_sym_DASH_GT] = ACTIONS(783), - [anon_sym_DASH_GT_GT] = ACTIONS(781), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PIPE_PIPE] = ACTIONS(781), - [anon_sym_AMP_AMP] = ACTIONS(781), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_LT_EQ] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(781), - [anon_sym_EQ_EQ] = ACTIONS(781), - [anon_sym_BANG_EQ] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(781), - [anon_sym_STAR_STAR] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [aux_sym_binary_operator_token1] = ACTIONS(781), - [anon_sym_PIPE_GT] = ACTIONS(781), - [anon_sym_COLON] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_AT] = ACTIONS(781), - [sym__hex_literal] = ACTIONS(781), - [sym__number_literal] = ACTIONS(783), - [anon_sym_SQUOTE] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym_dots] = ACTIONS(783), - [sym_dot_dot_i] = ACTIONS(781), - [sym_return] = ACTIONS(783), - [sym_next] = ACTIONS(783), - [sym_break] = ACTIONS(783), - [sym_true] = ACTIONS(783), - [sym_false] = ACTIONS(783), - [sym_null] = ACTIONS(783), - [sym_inf] = ACTIONS(783), - [sym_nan] = ACTIONS(783), - [anon_sym_NA] = ACTIONS(783), - [anon_sym_NA_integer_] = ACTIONS(783), - [anon_sym_NA_real_] = ACTIONS(783), - [anon_sym_NA_complex_] = ACTIONS(783), - [anon_sym_NA_character_] = ACTIONS(783), + [ts_builtin_sym_end] = ACTIONS(854), + [sym_identifier] = ACTIONS(852), + [anon_sym_BSLASH] = ACTIONS(854), + [anon_sym_function] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_repeat] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(854), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_LT_DASH] = ACTIONS(854), + [anon_sym_LT_LT_DASH] = ACTIONS(854), + [anon_sym_COLON_EQ] = ACTIONS(854), + [anon_sym_DASH_GT] = ACTIONS(852), + [anon_sym_DASH_GT_GT] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(852), + [anon_sym_PIPE_PIPE] = ACTIONS(854), + [anon_sym_AMP_AMP] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(854), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(854), + [anon_sym_BANG_EQ] = ACTIONS(854), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_STAR_STAR] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(854), + [aux_sym_binary_operator_token1] = ACTIONS(854), + [anon_sym_PIPE_GT] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_AT] = ACTIONS(854), + [sym__hex_literal] = ACTIONS(854), + [sym__number_literal] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym_dots] = ACTIONS(852), + [sym_dot_dot_i] = ACTIONS(854), + [sym_return] = ACTIONS(852), + [sym_next] = ACTIONS(852), + [sym_break] = ACTIONS(852), + [sym_true] = ACTIONS(852), + [sym_false] = ACTIONS(852), + [sym_null] = ACTIONS(852), + [sym_inf] = ACTIONS(852), + [sym_nan] = ACTIONS(852), + [anon_sym_NA] = ACTIONS(852), + [anon_sym_NA_integer_] = ACTIONS(852), + [anon_sym_NA_real_] = ACTIONS(852), + [anon_sym_NA_complex_] = ACTIONS(852), + [anon_sym_NA_character_] = ACTIONS(852), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(781), - [sym__semicolon] = ACTIONS(781), - [sym__raw_string_literal] = ACTIONS(781), - [sym__external_else] = ACTIONS(781), - [sym__external_open_parenthesis] = ACTIONS(781), - [sym__external_open_brace] = ACTIONS(781), - [sym__external_close_brace] = ACTIONS(781), - [sym__external_open_bracket] = ACTIONS(781), - [sym__external_open_bracket2] = ACTIONS(781), + [sym__newline] = ACTIONS(854), + [sym__semicolon] = ACTIONS(854), + [sym__raw_string_literal] = ACTIONS(854), + [sym__external_else] = ACTIONS(854), + [sym__external_open_parenthesis] = ACTIONS(854), + [sym__external_open_brace] = ACTIONS(854), + [sym__external_open_bracket] = ACTIONS(854), + [sym__external_open_bracket2] = ACTIONS(854), }, [396] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [sym__close_brace] = STATE(1751), - [aux_sym_braced_expression_repeat1] = STATE(397), - [sym_identifier] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_if] = ACTIONS(717), - [anon_sym_for] = ACTIONS(719), - [anon_sym_while] = ACTIONS(721), - [anon_sym_repeat] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [sym__hex_literal] = ACTIONS(733), - [sym__number_literal] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(491), - [sym_dots] = ACTIONS(711), - [sym_dot_dot_i] = ACTIONS(737), - [sym_return] = ACTIONS(739), - [sym_next] = ACTIONS(739), - [sym_break] = ACTIONS(739), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_inf] = ACTIONS(739), - [sym_nan] = ACTIONS(739), - [anon_sym_NA] = ACTIONS(741), - [anon_sym_NA_integer_] = ACTIONS(741), - [anon_sym_NA_real_] = ACTIONS(741), - [anon_sym_NA_complex_] = ACTIONS(741), - [anon_sym_NA_character_] = ACTIONS(741), + [ts_builtin_sym_end] = ACTIONS(850), + [sym_identifier] = ACTIONS(848), + [anon_sym_BSLASH] = ACTIONS(850), + [anon_sym_function] = ACTIONS(848), + [anon_sym_EQ] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_while] = ACTIONS(848), + [anon_sym_repeat] = ACTIONS(848), + [anon_sym_QMARK] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_LT_DASH] = ACTIONS(850), + [anon_sym_LT_LT_DASH] = ACTIONS(850), + [anon_sym_COLON_EQ] = ACTIONS(850), + [anon_sym_DASH_GT] = ACTIONS(848), + [anon_sym_DASH_GT_GT] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(848), + [anon_sym_AMP] = ACTIONS(848), + [anon_sym_PIPE_PIPE] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(850), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_LT_EQ] = ACTIONS(850), + [anon_sym_GT] = ACTIONS(848), + [anon_sym_GT_EQ] = ACTIONS(850), + [anon_sym_EQ_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(850), + [anon_sym_STAR_STAR] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [aux_sym_binary_operator_token1] = ACTIONS(850), + [anon_sym_PIPE_GT] = ACTIONS(850), + [anon_sym_COLON] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_AT] = ACTIONS(850), + [sym__hex_literal] = ACTIONS(850), + [sym__number_literal] = ACTIONS(848), + [anon_sym_SQUOTE] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym_dots] = ACTIONS(848), + [sym_dot_dot_i] = ACTIONS(850), + [sym_return] = ACTIONS(848), + [sym_next] = ACTIONS(848), + [sym_break] = ACTIONS(848), + [sym_true] = ACTIONS(848), + [sym_false] = ACTIONS(848), + [sym_null] = ACTIONS(848), + [sym_inf] = ACTIONS(848), + [sym_nan] = ACTIONS(848), + [anon_sym_NA] = ACTIONS(848), + [anon_sym_NA_integer_] = ACTIONS(848), + [anon_sym_NA_real_] = ACTIONS(848), + [anon_sym_NA_complex_] = ACTIONS(848), + [anon_sym_NA_character_] = ACTIONS(848), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - [sym__semicolon] = ACTIONS(743), - [sym__raw_string_literal] = ACTIONS(495), - [sym__external_open_parenthesis] = ACTIONS(745), - [sym__external_open_brace] = ACTIONS(747), - [sym__external_close_brace] = ACTIONS(873), + [sym__newline] = ACTIONS(850), + [sym__semicolon] = ACTIONS(850), + [sym__raw_string_literal] = ACTIONS(850), + [sym__external_else] = ACTIONS(850), + [sym__external_open_parenthesis] = ACTIONS(850), + [sym__external_open_brace] = ACTIONS(850), + [sym__external_open_bracket] = ACTIONS(850), + [sym__external_open_bracket2] = ACTIONS(850), }, [397] = { - [sym_function_definition] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_repeat_statement] = STATE(189), - [sym_braced_expression] = STATE(189), - [sym_parenthesized_expression] = STATE(189), - [sym_call] = STATE(189), - [sym_subset] = STATE(189), - [sym_subset2] = STATE(189), - [sym_unary_operator] = STATE(189), - [sym_binary_operator] = STATE(189), - [sym_extract_operator] = STATE(189), - [sym_namespace_operator] = STATE(189), - [sym_integer] = STATE(189), - [sym_complex] = STATE(189), - [sym_float] = STATE(189), - [sym__float_literal] = STATE(313), - [sym_string] = STATE(309), - [sym__single_quoted_string] = STATE(315), - [sym__double_quoted_string] = STATE(317), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), - [sym_na] = STATE(189), - [sym__expression] = STATE(189), - [sym__open_parenthesis] = STATE(1117), - [sym__open_brace] = STATE(372), - [aux_sym_braced_expression_repeat1] = STATE(397), - [sym_identifier] = ACTIONS(875), - [anon_sym_BSLASH] = ACTIONS(878), - [anon_sym_function] = ACTIONS(881), - [anon_sym_if] = ACTIONS(884), - [anon_sym_for] = ACTIONS(887), - [anon_sym_while] = ACTIONS(890), - [anon_sym_repeat] = ACTIONS(893), - [anon_sym_QMARK] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [sym__hex_literal] = ACTIONS(908), - [sym__number_literal] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym_dots] = ACTIONS(875), - [sym_dot_dot_i] = ACTIONS(920), - [sym_return] = ACTIONS(923), - [sym_next] = ACTIONS(923), - [sym_break] = ACTIONS(923), - [sym_true] = ACTIONS(923), - [sym_false] = ACTIONS(923), - [sym_null] = ACTIONS(923), - [sym_inf] = ACTIONS(923), - [sym_nan] = ACTIONS(923), - [anon_sym_NA] = ACTIONS(926), - [anon_sym_NA_integer_] = ACTIONS(926), - [anon_sym_NA_real_] = ACTIONS(926), - [anon_sym_NA_complex_] = ACTIONS(926), - [anon_sym_NA_character_] = ACTIONS(926), + [sym_identifier] = ACTIONS(785), + [anon_sym_BSLASH] = ACTIONS(783), + [anon_sym_function] = ACTIONS(785), + [anon_sym_EQ] = ACTIONS(785), + [anon_sym_if] = ACTIONS(785), + [anon_sym_for] = ACTIONS(785), + [anon_sym_while] = ACTIONS(785), + [anon_sym_repeat] = ACTIONS(785), + [anon_sym_QMARK] = ACTIONS(783), + [anon_sym_TILDE] = ACTIONS(783), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_LT_DASH] = ACTIONS(783), + [anon_sym_LT_LT_DASH] = ACTIONS(783), + [anon_sym_COLON_EQ] = ACTIONS(783), + [anon_sym_DASH_GT] = ACTIONS(785), + [anon_sym_DASH_GT_GT] = ACTIONS(783), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(785), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_LT_EQ] = ACTIONS(783), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_GT_EQ] = ACTIONS(783), + [anon_sym_EQ_EQ] = ACTIONS(783), + [anon_sym_BANG_EQ] = ACTIONS(783), + [anon_sym_STAR] = ACTIONS(785), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_STAR_STAR] = ACTIONS(783), + [anon_sym_CARET] = ACTIONS(783), + [aux_sym_binary_operator_token1] = ACTIONS(783), + [anon_sym_PIPE_GT] = ACTIONS(783), + [anon_sym_COLON] = ACTIONS(785), + [anon_sym_DOLLAR] = ACTIONS(783), + [anon_sym_AT] = ACTIONS(783), + [sym__hex_literal] = ACTIONS(783), + [sym__number_literal] = ACTIONS(785), + [anon_sym_SQUOTE] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(783), + [sym_dots] = ACTIONS(785), + [sym_dot_dot_i] = ACTIONS(783), + [sym_return] = ACTIONS(785), + [sym_next] = ACTIONS(785), + [sym_break] = ACTIONS(785), + [sym_true] = ACTIONS(785), + [sym_false] = ACTIONS(785), + [sym_null] = ACTIONS(785), + [sym_inf] = ACTIONS(785), + [sym_nan] = ACTIONS(785), + [anon_sym_NA] = ACTIONS(785), + [anon_sym_NA_integer_] = ACTIONS(785), + [anon_sym_NA_real_] = ACTIONS(785), + [anon_sym_NA_complex_] = ACTIONS(785), + [anon_sym_NA_character_] = ACTIONS(785), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(929), - [sym__semicolon] = ACTIONS(929), - [sym__raw_string_literal] = ACTIONS(932), - [sym__external_open_parenthesis] = ACTIONS(935), - [sym__external_open_brace] = ACTIONS(938), - [sym__external_close_brace] = ACTIONS(941), + [sym__newline] = ACTIONS(783), + [sym__semicolon] = ACTIONS(783), + [sym__raw_string_literal] = ACTIONS(783), + [sym__external_open_parenthesis] = ACTIONS(783), + [sym__external_open_brace] = ACTIONS(783), + [sym__external_close_brace] = ACTIONS(783), + [sym__external_open_bracket] = ACTIONS(783), + [sym__external_open_bracket2] = ACTIONS(783), }, [398] = { - [sym_function_definition] = STATE(166), - [sym_if_statement] = STATE(166), - [sym_for_statement] = STATE(166), - [sym_while_statement] = STATE(166), - [sym_repeat_statement] = STATE(166), - [sym_braced_expression] = STATE(166), - [sym_parenthesized_expression] = STATE(166), - [sym_call] = STATE(166), - [sym_subset] = STATE(166), - [sym_subset2] = STATE(166), - [sym_unary_operator] = STATE(166), - [sym_binary_operator] = STATE(166), - [sym_extract_operator] = STATE(166), - [sym_namespace_operator] = STATE(166), - [sym_integer] = STATE(166), - [sym_complex] = STATE(166), - [sym_float] = STATE(166), - [sym__float_literal] = STATE(323), - [sym_string] = STATE(320), - [sym__single_quoted_string] = STATE(325), - [sym__double_quoted_string] = STATE(326), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2049), - [sym_na] = STATE(166), - [sym__expression] = STATE(166), - [sym__open_parenthesis] = STATE(1053), - [sym__open_brace] = STATE(378), - [aux_sym_program_repeat1] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(943), - [sym_identifier] = ACTIONS(945), - [anon_sym_BSLASH] = ACTIONS(948), - [anon_sym_function] = ACTIONS(951), - [anon_sym_if] = ACTIONS(954), - [anon_sym_for] = ACTIONS(957), - [anon_sym_while] = ACTIONS(960), - [anon_sym_repeat] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [sym__hex_literal] = ACTIONS(978), - [sym__number_literal] = ACTIONS(981), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym_dots] = ACTIONS(945), - [sym_dot_dot_i] = ACTIONS(990), - [sym_return] = ACTIONS(993), - [sym_next] = ACTIONS(993), - [sym_break] = ACTIONS(993), - [sym_true] = ACTIONS(993), - [sym_false] = ACTIONS(993), - [sym_null] = ACTIONS(993), - [sym_inf] = ACTIONS(993), - [sym_nan] = ACTIONS(993), - [anon_sym_NA] = ACTIONS(996), - [anon_sym_NA_integer_] = ACTIONS(996), - [anon_sym_NA_real_] = ACTIONS(996), - [anon_sym_NA_complex_] = ACTIONS(996), - [anon_sym_NA_character_] = ACTIONS(996), + [ts_builtin_sym_end] = ACTIONS(769), + [sym_identifier] = ACTIONS(771), + [anon_sym_BSLASH] = ACTIONS(769), + [anon_sym_function] = ACTIONS(771), + [anon_sym_EQ] = ACTIONS(771), + [anon_sym_if] = ACTIONS(771), + [anon_sym_for] = ACTIONS(771), + [anon_sym_while] = ACTIONS(771), + [anon_sym_repeat] = ACTIONS(771), + [anon_sym_QMARK] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(771), + [anon_sym_LT_DASH] = ACTIONS(769), + [anon_sym_LT_LT_DASH] = ACTIONS(769), + [anon_sym_COLON_EQ] = ACTIONS(769), + [anon_sym_DASH_GT] = ACTIONS(771), + [anon_sym_DASH_GT_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), + [aux_sym_binary_operator_token1] = ACTIONS(769), + [anon_sym_PIPE_GT] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(769), + [sym__hex_literal] = ACTIONS(769), + [sym__number_literal] = ACTIONS(771), + [anon_sym_SQUOTE] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [sym_dots] = ACTIONS(771), + [sym_dot_dot_i] = ACTIONS(769), + [sym_return] = ACTIONS(771), + [sym_next] = ACTIONS(771), + [sym_break] = ACTIONS(771), + [sym_true] = ACTIONS(771), + [sym_false] = ACTIONS(771), + [sym_null] = ACTIONS(771), + [sym_inf] = ACTIONS(771), + [sym_nan] = ACTIONS(771), + [anon_sym_NA] = ACTIONS(771), + [anon_sym_NA_integer_] = ACTIONS(771), + [anon_sym_NA_real_] = ACTIONS(771), + [anon_sym_NA_complex_] = ACTIONS(771), + [anon_sym_NA_character_] = ACTIONS(771), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(999), - [sym__semicolon] = ACTIONS(999), - [sym__raw_string_literal] = ACTIONS(1002), - [sym__external_open_parenthesis] = ACTIONS(1005), - [sym__external_open_brace] = ACTIONS(1008), + [sym__newline] = ACTIONS(769), + [sym__semicolon] = ACTIONS(769), + [sym__raw_string_literal] = ACTIONS(769), + [sym__external_open_parenthesis] = ACTIONS(769), + [sym__external_open_brace] = ACTIONS(769), + [sym__external_open_bracket] = ACTIONS(769), + [sym__external_open_bracket2] = ACTIONS(769), }, [399] = { - [sym_identifier] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_function] = ACTIONS(757), - [anon_sym_EQ] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_repeat] = ACTIONS(757), - [anon_sym_QMARK] = ACTIONS(759), - [anon_sym_TILDE] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LT_DASH] = ACTIONS(759), - [anon_sym_LT_LT_DASH] = ACTIONS(759), - [anon_sym_COLON_EQ] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(757), - [anon_sym_DASH_GT_GT] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_AMP] = ACTIONS(757), - [anon_sym_PIPE_PIPE] = ACTIONS(759), - [anon_sym_AMP_AMP] = ACTIONS(759), - [anon_sym_LT] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(759), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(759), - [anon_sym_EQ_EQ] = ACTIONS(759), - [anon_sym_BANG_EQ] = ACTIONS(759), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(759), - [aux_sym_binary_operator_token1] = ACTIONS(759), - [anon_sym_PIPE_GT] = ACTIONS(759), - [anon_sym_COLON] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(759), - [anon_sym_AT] = ACTIONS(759), - [sym__hex_literal] = ACTIONS(759), - [sym__number_literal] = ACTIONS(757), - [anon_sym_SQUOTE] = ACTIONS(759), - [anon_sym_DQUOTE] = ACTIONS(759), - [sym_dots] = ACTIONS(757), - [sym_dot_dot_i] = ACTIONS(759), - [sym_return] = ACTIONS(757), - [sym_next] = ACTIONS(757), - [sym_break] = ACTIONS(757), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_null] = ACTIONS(757), - [sym_inf] = ACTIONS(757), - [sym_nan] = ACTIONS(757), - [anon_sym_NA] = ACTIONS(757), - [anon_sym_NA_integer_] = ACTIONS(757), - [anon_sym_NA_real_] = ACTIONS(757), - [anon_sym_NA_complex_] = ACTIONS(757), - [anon_sym_NA_character_] = ACTIONS(757), + [ts_builtin_sym_end] = ACTIONS(797), + [sym_identifier] = ACTIONS(799), + [anon_sym_BSLASH] = ACTIONS(797), + [anon_sym_function] = ACTIONS(799), + [anon_sym_EQ] = ACTIONS(799), + [anon_sym_if] = ACTIONS(799), + [anon_sym_for] = ACTIONS(799), + [anon_sym_while] = ACTIONS(799), + [anon_sym_repeat] = ACTIONS(799), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_BANG] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(797), + [anon_sym_LT_LT_DASH] = ACTIONS(797), + [anon_sym_COLON_EQ] = ACTIONS(797), + [anon_sym_DASH_GT] = ACTIONS(799), + [anon_sym_DASH_GT_GT] = ACTIONS(797), + [anon_sym_PIPE] = ACTIONS(799), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_LT_EQ] = ACTIONS(797), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_EQ] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_BANG_EQ] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_STAR_STAR] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [aux_sym_binary_operator_token1] = ACTIONS(797), + [anon_sym_PIPE_GT] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(799), + [anon_sym_DOLLAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [sym__hex_literal] = ACTIONS(797), + [sym__number_literal] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(797), + [sym_dots] = ACTIONS(799), + [sym_dot_dot_i] = ACTIONS(797), + [sym_return] = ACTIONS(799), + [sym_next] = ACTIONS(799), + [sym_break] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_null] = ACTIONS(799), + [sym_inf] = ACTIONS(799), + [sym_nan] = ACTIONS(799), + [anon_sym_NA] = ACTIONS(799), + [anon_sym_NA_integer_] = ACTIONS(799), + [anon_sym_NA_real_] = ACTIONS(799), + [anon_sym_NA_complex_] = ACTIONS(799), + [anon_sym_NA_character_] = ACTIONS(799), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(759), - [sym__semicolon] = ACTIONS(759), - [sym__raw_string_literal] = ACTIONS(759), - [sym__external_open_parenthesis] = ACTIONS(759), - [sym__external_open_brace] = ACTIONS(759), - [sym__external_close_brace] = ACTIONS(759), - [sym__external_open_bracket] = ACTIONS(759), - [sym__external_open_bracket2] = ACTIONS(759), + [sym__newline] = ACTIONS(797), + [sym__semicolon] = ACTIONS(797), + [sym__raw_string_literal] = ACTIONS(797), + [sym__external_open_parenthesis] = ACTIONS(797), + [sym__external_open_brace] = ACTIONS(797), + [sym__external_open_bracket] = ACTIONS(797), + [sym__external_open_bracket2] = ACTIONS(797), }, [400] = { - [sym_identifier] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_function] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(769), - [anon_sym_if] = ACTIONS(769), - [anon_sym_for] = ACTIONS(769), - [anon_sym_while] = ACTIONS(769), - [anon_sym_repeat] = ACTIONS(769), - [anon_sym_QMARK] = ACTIONS(771), - [anon_sym_TILDE] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_LT_DASH] = ACTIONS(771), - [anon_sym_LT_LT_DASH] = ACTIONS(771), - [anon_sym_COLON_EQ] = ACTIONS(771), - [anon_sym_DASH_GT] = ACTIONS(769), - [anon_sym_DASH_GT_GT] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(769), - [anon_sym_LT_EQ] = ACTIONS(771), - [anon_sym_GT] = ACTIONS(769), - [anon_sym_GT_EQ] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(771), - [anon_sym_BANG_EQ] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(771), - [aux_sym_binary_operator_token1] = ACTIONS(771), - [anon_sym_PIPE_GT] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [anon_sym_AT] = ACTIONS(771), - [sym__hex_literal] = ACTIONS(771), - [sym__number_literal] = ACTIONS(769), - [anon_sym_SQUOTE] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(771), - [sym_dots] = ACTIONS(769), - [sym_dot_dot_i] = ACTIONS(771), - [sym_return] = ACTIONS(769), - [sym_next] = ACTIONS(769), - [sym_break] = ACTIONS(769), - [sym_true] = ACTIONS(769), - [sym_false] = ACTIONS(769), - [sym_null] = ACTIONS(769), - [sym_inf] = ACTIONS(769), - [sym_nan] = ACTIONS(769), - [anon_sym_NA] = ACTIONS(769), - [anon_sym_NA_integer_] = ACTIONS(769), - [anon_sym_NA_real_] = ACTIONS(769), - [anon_sym_NA_complex_] = ACTIONS(769), - [anon_sym_NA_character_] = ACTIONS(769), + [sym_identifier] = ACTIONS(836), + [anon_sym_BSLASH] = ACTIONS(838), + [anon_sym_function] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_for] = ACTIONS(836), + [anon_sym_while] = ACTIONS(836), + [anon_sym_repeat] = ACTIONS(836), + [anon_sym_QMARK] = ACTIONS(838), + [anon_sym_TILDE] = ACTIONS(838), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(838), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_LT_DASH] = ACTIONS(838), + [anon_sym_LT_LT_DASH] = ACTIONS(838), + [anon_sym_COLON_EQ] = ACTIONS(838), + [anon_sym_DASH_GT] = ACTIONS(836), + [anon_sym_DASH_GT_GT] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(838), + [anon_sym_AMP_AMP] = ACTIONS(838), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_LT_EQ] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_EQ] = ACTIONS(838), + [anon_sym_EQ_EQ] = ACTIONS(838), + [anon_sym_BANG_EQ] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(838), + [anon_sym_STAR_STAR] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(838), + [aux_sym_binary_operator_token1] = ACTIONS(838), + [anon_sym_PIPE_GT] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_AT] = ACTIONS(838), + [sym__hex_literal] = ACTIONS(838), + [sym__number_literal] = ACTIONS(836), + [anon_sym_SQUOTE] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [sym_dots] = ACTIONS(836), + [sym_dot_dot_i] = ACTIONS(838), + [sym_return] = ACTIONS(836), + [sym_next] = ACTIONS(836), + [sym_break] = ACTIONS(836), + [sym_true] = ACTIONS(836), + [sym_false] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [sym_inf] = ACTIONS(836), + [sym_nan] = ACTIONS(836), + [anon_sym_NA] = ACTIONS(836), + [anon_sym_NA_integer_] = ACTIONS(836), + [anon_sym_NA_real_] = ACTIONS(836), + [anon_sym_NA_complex_] = ACTIONS(836), + [anon_sym_NA_character_] = ACTIONS(836), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(771), - [sym__semicolon] = ACTIONS(771), - [sym__raw_string_literal] = ACTIONS(771), - [sym__external_open_parenthesis] = ACTIONS(771), - [sym__external_open_brace] = ACTIONS(771), - [sym__external_close_brace] = ACTIONS(771), - [sym__external_open_bracket] = ACTIONS(771), - [sym__external_open_bracket2] = ACTIONS(771), + [sym__newline] = ACTIONS(838), + [sym__semicolon] = ACTIONS(838), + [sym__raw_string_literal] = ACTIONS(838), + [sym__external_open_parenthesis] = ACTIONS(838), + [sym__external_open_brace] = ACTIONS(838), + [sym__external_close_brace] = ACTIONS(838), + [sym__external_open_bracket] = ACTIONS(838), + [sym__external_open_bracket2] = ACTIONS(838), }, [401] = { - [sym_identifier] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_if] = ACTIONS(787), - [anon_sym_for] = ACTIONS(787), - [anon_sym_while] = ACTIONS(787), - [anon_sym_repeat] = ACTIONS(787), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_TILDE] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LT_DASH] = ACTIONS(785), - [anon_sym_LT_LT_DASH] = ACTIONS(785), - [anon_sym_COLON_EQ] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(787), - [anon_sym_DASH_GT_GT] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_SLASH] = ACTIONS(785), - [anon_sym_STAR_STAR] = ACTIONS(785), - [anon_sym_CARET] = ACTIONS(785), - [aux_sym_binary_operator_token1] = ACTIONS(785), - [anon_sym_PIPE_GT] = ACTIONS(785), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_AT] = ACTIONS(785), - [sym__hex_literal] = ACTIONS(785), - [sym__number_literal] = ACTIONS(787), - [anon_sym_SQUOTE] = ACTIONS(785), - [anon_sym_DQUOTE] = ACTIONS(785), - [sym_dots] = ACTIONS(787), - [sym_dot_dot_i] = ACTIONS(785), - [sym_return] = ACTIONS(787), - [sym_next] = ACTIONS(787), - [sym_break] = ACTIONS(787), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_null] = ACTIONS(787), - [sym_inf] = ACTIONS(787), - [sym_nan] = ACTIONS(787), - [anon_sym_NA] = ACTIONS(787), - [anon_sym_NA_integer_] = ACTIONS(787), - [anon_sym_NA_real_] = ACTIONS(787), - [anon_sym_NA_complex_] = ACTIONS(787), - [anon_sym_NA_character_] = ACTIONS(787), + [sym_identifier] = ACTIONS(824), + [anon_sym_BSLASH] = ACTIONS(822), + [anon_sym_function] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_if] = ACTIONS(824), + [anon_sym_for] = ACTIONS(824), + [anon_sym_while] = ACTIONS(824), + [anon_sym_repeat] = ACTIONS(824), + [anon_sym_QMARK] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(824), + [anon_sym_LT_DASH] = ACTIONS(822), + [anon_sym_LT_LT_DASH] = ACTIONS(822), + [anon_sym_COLON_EQ] = ACTIONS(822), + [anon_sym_DASH_GT] = ACTIONS(824), + [anon_sym_DASH_GT_GT] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(822), + [anon_sym_AMP_AMP] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(824), + [anon_sym_LT_EQ] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(822), + [anon_sym_EQ_EQ] = ACTIONS(822), + [anon_sym_BANG_EQ] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(824), + [anon_sym_SLASH] = ACTIONS(822), + [anon_sym_STAR_STAR] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [aux_sym_binary_operator_token1] = ACTIONS(822), + [anon_sym_PIPE_GT] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(822), + [sym__hex_literal] = ACTIONS(822), + [sym__number_literal] = ACTIONS(824), + [anon_sym_SQUOTE] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym_dots] = ACTIONS(824), + [sym_dot_dot_i] = ACTIONS(822), + [sym_return] = ACTIONS(824), + [sym_next] = ACTIONS(824), + [sym_break] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_inf] = ACTIONS(824), + [sym_nan] = ACTIONS(824), + [anon_sym_NA] = ACTIONS(824), + [anon_sym_NA_integer_] = ACTIONS(824), + [anon_sym_NA_real_] = ACTIONS(824), + [anon_sym_NA_complex_] = ACTIONS(824), + [anon_sym_NA_character_] = ACTIONS(824), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(785), - [sym__semicolon] = ACTIONS(785), - [sym__raw_string_literal] = ACTIONS(785), - [sym__external_open_parenthesis] = ACTIONS(785), - [sym__external_open_brace] = ACTIONS(785), - [sym__external_close_brace] = ACTIONS(785), - [sym__external_open_bracket] = ACTIONS(785), - [sym__external_open_bracket2] = ACTIONS(785), + [sym__newline] = ACTIONS(822), + [sym__semicolon] = ACTIONS(822), + [sym__raw_string_literal] = ACTIONS(822), + [sym__external_open_parenthesis] = ACTIONS(822), + [sym__external_open_brace] = ACTIONS(822), + [sym__external_close_brace] = ACTIONS(822), + [sym__external_open_bracket] = ACTIONS(822), + [sym__external_open_bracket2] = ACTIONS(822), }, [402] = { - [sym_identifier] = ACTIONS(707), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_function] = ACTIONS(707), - [anon_sym_EQ] = ACTIONS(707), - [anon_sym_if] = ACTIONS(707), - [anon_sym_for] = ACTIONS(707), - [anon_sym_while] = ACTIONS(707), - [anon_sym_repeat] = ACTIONS(707), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_LT_DASH] = ACTIONS(709), - [anon_sym_LT_LT_DASH] = ACTIONS(709), - [anon_sym_COLON_EQ] = ACTIONS(709), - [anon_sym_DASH_GT] = ACTIONS(707), - [anon_sym_DASH_GT_GT] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(707), - [anon_sym_PIPE_PIPE] = ACTIONS(709), - [anon_sym_AMP_AMP] = ACTIONS(709), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_LT_EQ] = ACTIONS(709), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_EQ] = ACTIONS(709), - [anon_sym_EQ_EQ] = ACTIONS(709), - [anon_sym_BANG_EQ] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(707), - [anon_sym_SLASH] = ACTIONS(709), - [anon_sym_STAR_STAR] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [aux_sym_binary_operator_token1] = ACTIONS(709), - [anon_sym_PIPE_GT] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(709), - [sym__hex_literal] = ACTIONS(709), - [sym__number_literal] = ACTIONS(707), - [anon_sym_SQUOTE] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_dots] = ACTIONS(707), - [sym_dot_dot_i] = ACTIONS(709), - [sym_return] = ACTIONS(707), - [sym_next] = ACTIONS(707), - [sym_break] = ACTIONS(707), - [sym_true] = ACTIONS(707), - [sym_false] = ACTIONS(707), - [sym_null] = ACTIONS(707), - [sym_inf] = ACTIONS(707), - [sym_nan] = ACTIONS(707), - [anon_sym_NA] = ACTIONS(707), - [anon_sym_NA_integer_] = ACTIONS(707), - [anon_sym_NA_real_] = ACTIONS(707), - [anon_sym_NA_complex_] = ACTIONS(707), - [anon_sym_NA_character_] = ACTIONS(707), + [sym_identifier] = ACTIONS(848), + [anon_sym_BSLASH] = ACTIONS(850), + [anon_sym_function] = ACTIONS(848), + [anon_sym_EQ] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_while] = ACTIONS(848), + [anon_sym_repeat] = ACTIONS(848), + [anon_sym_QMARK] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_LT_DASH] = ACTIONS(850), + [anon_sym_LT_LT_DASH] = ACTIONS(850), + [anon_sym_COLON_EQ] = ACTIONS(850), + [anon_sym_DASH_GT] = ACTIONS(848), + [anon_sym_DASH_GT_GT] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(848), + [anon_sym_AMP] = ACTIONS(848), + [anon_sym_PIPE_PIPE] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(850), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_LT_EQ] = ACTIONS(850), + [anon_sym_GT] = ACTIONS(848), + [anon_sym_GT_EQ] = ACTIONS(850), + [anon_sym_EQ_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(850), + [anon_sym_STAR_STAR] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [aux_sym_binary_operator_token1] = ACTIONS(850), + [anon_sym_PIPE_GT] = ACTIONS(850), + [anon_sym_COLON] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_AT] = ACTIONS(850), + [sym__hex_literal] = ACTIONS(850), + [sym__number_literal] = ACTIONS(848), + [anon_sym_SQUOTE] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym_dots] = ACTIONS(848), + [sym_dot_dot_i] = ACTIONS(850), + [sym_return] = ACTIONS(848), + [sym_next] = ACTIONS(848), + [sym_break] = ACTIONS(848), + [sym_true] = ACTIONS(848), + [sym_false] = ACTIONS(848), + [sym_null] = ACTIONS(848), + [sym_inf] = ACTIONS(848), + [sym_nan] = ACTIONS(848), + [anon_sym_NA] = ACTIONS(848), + [anon_sym_NA_integer_] = ACTIONS(848), + [anon_sym_NA_real_] = ACTIONS(848), + [anon_sym_NA_complex_] = ACTIONS(848), + [anon_sym_NA_character_] = ACTIONS(848), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(709), - [sym__semicolon] = ACTIONS(709), - [sym__raw_string_literal] = ACTIONS(709), - [sym__external_open_parenthesis] = ACTIONS(709), - [sym__external_open_brace] = ACTIONS(709), - [sym__external_close_brace] = ACTIONS(709), - [sym__external_open_bracket] = ACTIONS(709), - [sym__external_open_bracket2] = ACTIONS(709), + [sym__newline] = ACTIONS(850), + [sym__semicolon] = ACTIONS(850), + [sym__raw_string_literal] = ACTIONS(850), + [sym__external_open_parenthesis] = ACTIONS(850), + [sym__external_open_brace] = ACTIONS(850), + [sym__external_close_brace] = ACTIONS(850), + [sym__external_open_bracket] = ACTIONS(850), + [sym__external_open_bracket2] = ACTIONS(850), }, [403] = { - [ts_builtin_sym_end] = ACTIONS(701), - [sym_identifier] = ACTIONS(699), - [anon_sym_BSLASH] = ACTIONS(701), - [anon_sym_function] = ACTIONS(699), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_if] = ACTIONS(699), - [anon_sym_for] = ACTIONS(699), - [anon_sym_while] = ACTIONS(699), - [anon_sym_repeat] = ACTIONS(699), - [anon_sym_QMARK] = ACTIONS(701), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_BANG] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_LT_DASH] = ACTIONS(701), - [anon_sym_LT_LT_DASH] = ACTIONS(701), - [anon_sym_COLON_EQ] = ACTIONS(701), - [anon_sym_DASH_GT] = ACTIONS(699), - [anon_sym_DASH_GT_GT] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE_PIPE] = ACTIONS(701), - [anon_sym_AMP_AMP] = ACTIONS(701), - [anon_sym_LT] = ACTIONS(699), - [anon_sym_LT_EQ] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_GT_EQ] = ACTIONS(701), - [anon_sym_EQ_EQ] = ACTIONS(701), - [anon_sym_BANG_EQ] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(701), - [anon_sym_STAR_STAR] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [aux_sym_binary_operator_token1] = ACTIONS(701), - [anon_sym_PIPE_GT] = ACTIONS(701), - [anon_sym_COLON] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(701), - [anon_sym_AT] = ACTIONS(701), - [sym__hex_literal] = ACTIONS(701), - [sym__number_literal] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(701), - [sym_dots] = ACTIONS(699), - [sym_dot_dot_i] = ACTIONS(701), - [sym_return] = ACTIONS(699), - [sym_next] = ACTIONS(699), - [sym_break] = ACTIONS(699), - [sym_true] = ACTIONS(699), - [sym_false] = ACTIONS(699), - [sym_null] = ACTIONS(699), - [sym_inf] = ACTIONS(699), - [sym_nan] = ACTIONS(699), - [anon_sym_NA] = ACTIONS(699), - [anon_sym_NA_integer_] = ACTIONS(699), - [anon_sym_NA_real_] = ACTIONS(699), - [anon_sym_NA_complex_] = ACTIONS(699), - [anon_sym_NA_character_] = ACTIONS(699), + [sym_identifier] = ACTIONS(852), + [anon_sym_BSLASH] = ACTIONS(854), + [anon_sym_function] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_repeat] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(854), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_LT_DASH] = ACTIONS(854), + [anon_sym_LT_LT_DASH] = ACTIONS(854), + [anon_sym_COLON_EQ] = ACTIONS(854), + [anon_sym_DASH_GT] = ACTIONS(852), + [anon_sym_DASH_GT_GT] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(852), + [anon_sym_PIPE_PIPE] = ACTIONS(854), + [anon_sym_AMP_AMP] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(854), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(854), + [anon_sym_BANG_EQ] = ACTIONS(854), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_STAR_STAR] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(854), + [aux_sym_binary_operator_token1] = ACTIONS(854), + [anon_sym_PIPE_GT] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_AT] = ACTIONS(854), + [sym__hex_literal] = ACTIONS(854), + [sym__number_literal] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym_dots] = ACTIONS(852), + [sym_dot_dot_i] = ACTIONS(854), + [sym_return] = ACTIONS(852), + [sym_next] = ACTIONS(852), + [sym_break] = ACTIONS(852), + [sym_true] = ACTIONS(852), + [sym_false] = ACTIONS(852), + [sym_null] = ACTIONS(852), + [sym_inf] = ACTIONS(852), + [sym_nan] = ACTIONS(852), + [anon_sym_NA] = ACTIONS(852), + [anon_sym_NA_integer_] = ACTIONS(852), + [anon_sym_NA_real_] = ACTIONS(852), + [anon_sym_NA_complex_] = ACTIONS(852), + [anon_sym_NA_character_] = ACTIONS(852), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(701), - [sym__semicolon] = ACTIONS(701), - [sym__raw_string_literal] = ACTIONS(701), - [sym__external_open_parenthesis] = ACTIONS(701), - [sym__external_open_brace] = ACTIONS(701), - [sym__external_open_bracket] = ACTIONS(701), - [sym__external_open_bracket2] = ACTIONS(701), + [sym__newline] = ACTIONS(854), + [sym__semicolon] = ACTIONS(854), + [sym__raw_string_literal] = ACTIONS(854), + [sym__external_open_parenthesis] = ACTIONS(854), + [sym__external_open_brace] = ACTIONS(854), + [sym__external_close_brace] = ACTIONS(854), + [sym__external_open_bracket] = ACTIONS(854), + [sym__external_open_bracket2] = ACTIONS(854), }, [404] = { - [sym_identifier] = ACTIONS(753), - [anon_sym_BSLASH] = ACTIONS(755), - [anon_sym_function] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [anon_sym_repeat] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_TILDE] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(755), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_LT_DASH] = ACTIONS(755), - [anon_sym_LT_LT_DASH] = ACTIONS(755), - [anon_sym_COLON_EQ] = ACTIONS(755), - [anon_sym_DASH_GT] = ACTIONS(753), - [anon_sym_DASH_GT_GT] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(753), - [anon_sym_PIPE_PIPE] = ACTIONS(755), - [anon_sym_AMP_AMP] = ACTIONS(755), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_LT_EQ] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(755), - [anon_sym_EQ_EQ] = ACTIONS(755), - [anon_sym_BANG_EQ] = ACTIONS(755), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(755), - [anon_sym_STAR_STAR] = ACTIONS(755), - [anon_sym_CARET] = ACTIONS(755), - [aux_sym_binary_operator_token1] = ACTIONS(755), - [anon_sym_PIPE_GT] = ACTIONS(755), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(755), - [sym__hex_literal] = ACTIONS(755), - [sym__number_literal] = ACTIONS(753), - [anon_sym_SQUOTE] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(755), - [sym_dots] = ACTIONS(753), - [sym_dot_dot_i] = ACTIONS(755), - [sym_return] = ACTIONS(753), - [sym_next] = ACTIONS(753), - [sym_break] = ACTIONS(753), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_null] = ACTIONS(753), - [sym_inf] = ACTIONS(753), - [sym_nan] = ACTIONS(753), - [anon_sym_NA] = ACTIONS(753), - [anon_sym_NA_integer_] = ACTIONS(753), - [anon_sym_NA_real_] = ACTIONS(753), - [anon_sym_NA_complex_] = ACTIONS(753), - [anon_sym_NA_character_] = ACTIONS(753), + [sym_identifier] = ACTIONS(859), + [anon_sym_BSLASH] = ACTIONS(861), + [anon_sym_function] = ACTIONS(859), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [anon_sym_repeat] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LT_DASH] = ACTIONS(861), + [anon_sym_LT_LT_DASH] = ACTIONS(861), + [anon_sym_COLON_EQ] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(859), + [anon_sym_DASH_GT_GT] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_STAR_STAR] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [aux_sym_binary_operator_token1] = ACTIONS(861), + [anon_sym_PIPE_GT] = ACTIONS(861), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(861), + [sym__hex_literal] = ACTIONS(861), + [sym__number_literal] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym_dots] = ACTIONS(859), + [sym_dot_dot_i] = ACTIONS(861), + [sym_return] = ACTIONS(859), + [sym_next] = ACTIONS(859), + [sym_break] = ACTIONS(859), + [sym_true] = ACTIONS(859), + [sym_false] = ACTIONS(859), + [sym_null] = ACTIONS(859), + [sym_inf] = ACTIONS(859), + [sym_nan] = ACTIONS(859), + [anon_sym_NA] = ACTIONS(859), + [anon_sym_NA_integer_] = ACTIONS(859), + [anon_sym_NA_real_] = ACTIONS(859), + [anon_sym_NA_complex_] = ACTIONS(859), + [anon_sym_NA_character_] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(755), - [sym__semicolon] = ACTIONS(755), - [sym__raw_string_literal] = ACTIONS(755), - [sym__external_open_parenthesis] = ACTIONS(755), - [sym__external_open_brace] = ACTIONS(755), - [sym__external_close_brace] = ACTIONS(755), - [sym__external_open_bracket] = ACTIONS(755), - [sym__external_open_bracket2] = ACTIONS(755), + [sym__newline] = ACTIONS(861), + [sym__semicolon] = ACTIONS(861), + [sym__raw_string_literal] = ACTIONS(861), + [sym__external_open_parenthesis] = ACTIONS(861), + [sym__external_open_brace] = ACTIONS(861), + [sym__external_close_brace] = ACTIONS(861), + [sym__external_open_bracket] = ACTIONS(861), + [sym__external_open_bracket2] = ACTIONS(861), }, [405] = { + [ts_builtin_sym_end] = ACTIONS(793), + [sym_identifier] = ACTIONS(795), + [anon_sym_BSLASH] = ACTIONS(793), + [anon_sym_function] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(795), + [anon_sym_if] = ACTIONS(795), + [anon_sym_for] = ACTIONS(795), + [anon_sym_while] = ACTIONS(795), + [anon_sym_repeat] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_LT_DASH] = ACTIONS(793), + [anon_sym_LT_LT_DASH] = ACTIONS(793), + [anon_sym_COLON_EQ] = ACTIONS(793), + [anon_sym_DASH_GT] = ACTIONS(795), + [anon_sym_DASH_GT_GT] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [aux_sym_binary_operator_token1] = ACTIONS(793), + [anon_sym_PIPE_GT] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_DOLLAR] = ACTIONS(793), + [anon_sym_AT] = ACTIONS(793), + [sym__hex_literal] = ACTIONS(793), + [sym__number_literal] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(793), + [sym_dots] = ACTIONS(795), + [sym_dot_dot_i] = ACTIONS(793), + [sym_return] = ACTIONS(795), + [sym_next] = ACTIONS(795), + [sym_break] = ACTIONS(795), + [sym_true] = ACTIONS(795), + [sym_false] = ACTIONS(795), + [sym_null] = ACTIONS(795), + [sym_inf] = ACTIONS(795), + [sym_nan] = ACTIONS(795), + [anon_sym_NA] = ACTIONS(795), + [anon_sym_NA_integer_] = ACTIONS(795), + [anon_sym_NA_real_] = ACTIONS(795), + [anon_sym_NA_complex_] = ACTIONS(795), + [anon_sym_NA_character_] = ACTIONS(795), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(793), + [sym__semicolon] = ACTIONS(793), + [sym__raw_string_literal] = ACTIONS(793), + [sym__external_open_parenthesis] = ACTIONS(793), + [sym__external_open_brace] = ACTIONS(793), + [sym__external_open_bracket] = ACTIONS(793), + [sym__external_open_bracket2] = ACTIONS(793), + }, + [406] = { [ts_builtin_sym_end] = ACTIONS(789), [sym_identifier] = ACTIONS(791), [anon_sym_BSLASH] = ACTIONS(789), @@ -35665,855 +35735,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(789), [sym__external_open_bracket2] = ACTIONS(789), }, - [406] = { - [ts_builtin_sym_end] = ACTIONS(759), - [sym_identifier] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_function] = ACTIONS(757), - [anon_sym_EQ] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_repeat] = ACTIONS(757), - [anon_sym_QMARK] = ACTIONS(759), - [anon_sym_TILDE] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LT_DASH] = ACTIONS(759), - [anon_sym_LT_LT_DASH] = ACTIONS(759), - [anon_sym_COLON_EQ] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(757), - [anon_sym_DASH_GT_GT] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_AMP] = ACTIONS(757), - [anon_sym_PIPE_PIPE] = ACTIONS(759), - [anon_sym_AMP_AMP] = ACTIONS(759), - [anon_sym_LT] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(759), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(759), - [anon_sym_EQ_EQ] = ACTIONS(759), - [anon_sym_BANG_EQ] = ACTIONS(759), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(759), - [aux_sym_binary_operator_token1] = ACTIONS(759), - [anon_sym_PIPE_GT] = ACTIONS(759), - [anon_sym_COLON] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(759), - [anon_sym_AT] = ACTIONS(759), - [sym__hex_literal] = ACTIONS(759), - [sym__number_literal] = ACTIONS(757), - [anon_sym_SQUOTE] = ACTIONS(759), - [anon_sym_DQUOTE] = ACTIONS(759), - [sym_dots] = ACTIONS(757), - [sym_dot_dot_i] = ACTIONS(759), - [sym_return] = ACTIONS(757), - [sym_next] = ACTIONS(757), - [sym_break] = ACTIONS(757), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_null] = ACTIONS(757), - [sym_inf] = ACTIONS(757), - [sym_nan] = ACTIONS(757), - [anon_sym_NA] = ACTIONS(757), - [anon_sym_NA_integer_] = ACTIONS(757), - [anon_sym_NA_real_] = ACTIONS(757), - [anon_sym_NA_complex_] = ACTIONS(757), - [anon_sym_NA_character_] = ACTIONS(757), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(759), - [sym__semicolon] = ACTIONS(759), - [sym__raw_string_literal] = ACTIONS(759), - [sym__external_open_parenthesis] = ACTIONS(759), - [sym__external_open_brace] = ACTIONS(759), - [sym__external_open_bracket] = ACTIONS(759), - [sym__external_open_bracket2] = ACTIONS(759), - }, [407] = { - [sym_identifier] = ACTIONS(827), - [anon_sym_BSLASH] = ACTIONS(829), - [anon_sym_function] = ACTIONS(827), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_if] = ACTIONS(827), - [anon_sym_for] = ACTIONS(827), - [anon_sym_while] = ACTIONS(827), - [anon_sym_repeat] = ACTIONS(827), - [anon_sym_QMARK] = ACTIONS(829), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(827), - [anon_sym_LT_DASH] = ACTIONS(829), - [anon_sym_LT_LT_DASH] = ACTIONS(829), - [anon_sym_COLON_EQ] = ACTIONS(829), - [anon_sym_DASH_GT] = ACTIONS(827), - [anon_sym_DASH_GT_GT] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(827), - [anon_sym_AMP] = ACTIONS(827), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_LT] = ACTIONS(827), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(827), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(827), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [aux_sym_binary_operator_token1] = ACTIONS(829), - [anon_sym_PIPE_GT] = ACTIONS(829), - [anon_sym_COLON] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(829), - [sym__hex_literal] = ACTIONS(829), - [sym__number_literal] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [sym_dots] = ACTIONS(827), - [sym_dot_dot_i] = ACTIONS(829), - [sym_return] = ACTIONS(827), - [sym_next] = ACTIONS(827), - [sym_break] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_null] = ACTIONS(827), - [sym_inf] = ACTIONS(827), - [sym_nan] = ACTIONS(827), - [anon_sym_NA] = ACTIONS(827), - [anon_sym_NA_integer_] = ACTIONS(827), - [anon_sym_NA_real_] = ACTIONS(827), - [anon_sym_NA_complex_] = ACTIONS(827), - [anon_sym_NA_character_] = ACTIONS(827), + [sym_identifier] = ACTIONS(863), + [anon_sym_BSLASH] = ACTIONS(865), + [anon_sym_function] = ACTIONS(863), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [anon_sym_repeat] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_LT_DASH] = ACTIONS(865), + [anon_sym_LT_LT_DASH] = ACTIONS(865), + [anon_sym_COLON_EQ] = ACTIONS(865), + [anon_sym_DASH_GT] = ACTIONS(863), + [anon_sym_DASH_GT_GT] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(865), + [aux_sym_binary_operator_token1] = ACTIONS(865), + [anon_sym_PIPE_GT] = ACTIONS(865), + [anon_sym_COLON] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(865), + [sym__hex_literal] = ACTIONS(865), + [sym__number_literal] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym_dots] = ACTIONS(863), + [sym_dot_dot_i] = ACTIONS(865), + [sym_return] = ACTIONS(863), + [sym_next] = ACTIONS(863), + [sym_break] = ACTIONS(863), + [sym_true] = ACTIONS(863), + [sym_false] = ACTIONS(863), + [sym_null] = ACTIONS(863), + [sym_inf] = ACTIONS(863), + [sym_nan] = ACTIONS(863), + [anon_sym_NA] = ACTIONS(863), + [anon_sym_NA_integer_] = ACTIONS(863), + [anon_sym_NA_real_] = ACTIONS(863), + [anon_sym_NA_complex_] = ACTIONS(863), + [anon_sym_NA_character_] = ACTIONS(863), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(829), - [sym__semicolon] = ACTIONS(829), - [sym__raw_string_literal] = ACTIONS(829), - [sym__external_open_parenthesis] = ACTIONS(829), - [sym__external_open_brace] = ACTIONS(829), - [sym__external_close_brace] = ACTIONS(829), - [sym__external_open_bracket] = ACTIONS(829), - [sym__external_open_bracket2] = ACTIONS(829), + [sym__newline] = ACTIONS(865), + [sym__semicolon] = ACTIONS(865), + [sym__raw_string_literal] = ACTIONS(865), + [sym__external_open_parenthesis] = ACTIONS(865), + [sym__external_open_brace] = ACTIONS(865), + [sym__external_close_brace] = ACTIONS(865), + [sym__external_open_bracket] = ACTIONS(865), + [sym__external_open_bracket2] = ACTIONS(865), }, [408] = { - [ts_builtin_sym_end] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [anon_sym_BSLASH] = ACTIONS(799), - [anon_sym_function] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(801), - [anon_sym_if] = ACTIONS(801), - [anon_sym_for] = ACTIONS(801), - [anon_sym_while] = ACTIONS(801), - [anon_sym_repeat] = ACTIONS(801), - [anon_sym_QMARK] = ACTIONS(799), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_LT_DASH] = ACTIONS(799), - [anon_sym_LT_LT_DASH] = ACTIONS(799), - [anon_sym_COLON_EQ] = ACTIONS(799), - [anon_sym_DASH_GT] = ACTIONS(801), - [anon_sym_DASH_GT_GT] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(801), - [anon_sym_PIPE_PIPE] = ACTIONS(799), - [anon_sym_AMP_AMP] = ACTIONS(799), - [anon_sym_LT] = ACTIONS(801), - [anon_sym_LT_EQ] = ACTIONS(799), - [anon_sym_GT] = ACTIONS(801), - [anon_sym_GT_EQ] = ACTIONS(799), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_BANG_EQ] = ACTIONS(799), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_SLASH] = ACTIONS(799), - [anon_sym_STAR_STAR] = ACTIONS(799), - [anon_sym_CARET] = ACTIONS(799), - [aux_sym_binary_operator_token1] = ACTIONS(799), - [anon_sym_PIPE_GT] = ACTIONS(799), - [anon_sym_COLON] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(799), - [sym__hex_literal] = ACTIONS(799), - [sym__number_literal] = ACTIONS(801), - [anon_sym_SQUOTE] = ACTIONS(799), - [anon_sym_DQUOTE] = ACTIONS(799), - [sym_dots] = ACTIONS(801), - [sym_dot_dot_i] = ACTIONS(799), - [sym_return] = ACTIONS(801), - [sym_next] = ACTIONS(801), - [sym_break] = ACTIONS(801), - [sym_true] = ACTIONS(801), - [sym_false] = ACTIONS(801), - [sym_null] = ACTIONS(801), - [sym_inf] = ACTIONS(801), - [sym_nan] = ACTIONS(801), - [anon_sym_NA] = ACTIONS(801), - [anon_sym_NA_integer_] = ACTIONS(801), - [anon_sym_NA_real_] = ACTIONS(801), - [anon_sym_NA_complex_] = ACTIONS(801), - [anon_sym_NA_character_] = ACTIONS(801), + [ts_builtin_sym_end] = ACTIONS(805), + [sym_identifier] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(805), + [anon_sym_function] = ACTIONS(807), + [anon_sym_EQ] = ACTIONS(807), + [anon_sym_if] = ACTIONS(807), + [anon_sym_for] = ACTIONS(807), + [anon_sym_while] = ACTIONS(807), + [anon_sym_repeat] = ACTIONS(807), + [anon_sym_QMARK] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_LT_DASH] = ACTIONS(805), + [anon_sym_LT_LT_DASH] = ACTIONS(805), + [anon_sym_COLON_EQ] = ACTIONS(805), + [anon_sym_DASH_GT] = ACTIONS(807), + [anon_sym_DASH_GT_GT] = ACTIONS(805), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(805), + [anon_sym_AMP_AMP] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(805), + [anon_sym_STAR_STAR] = ACTIONS(805), + [anon_sym_CARET] = ACTIONS(805), + [aux_sym_binary_operator_token1] = ACTIONS(805), + [anon_sym_PIPE_GT] = ACTIONS(805), + [anon_sym_COLON] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(805), + [anon_sym_AT] = ACTIONS(805), + [sym__hex_literal] = ACTIONS(805), + [sym__number_literal] = ACTIONS(807), + [anon_sym_SQUOTE] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(805), + [sym_dots] = ACTIONS(807), + [sym_dot_dot_i] = ACTIONS(805), + [sym_return] = ACTIONS(807), + [sym_next] = ACTIONS(807), + [sym_break] = ACTIONS(807), + [sym_true] = ACTIONS(807), + [sym_false] = ACTIONS(807), + [sym_null] = ACTIONS(807), + [sym_inf] = ACTIONS(807), + [sym_nan] = ACTIONS(807), + [anon_sym_NA] = ACTIONS(807), + [anon_sym_NA_integer_] = ACTIONS(807), + [anon_sym_NA_real_] = ACTIONS(807), + [anon_sym_NA_complex_] = ACTIONS(807), + [anon_sym_NA_character_] = ACTIONS(807), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(799), - [sym__semicolon] = ACTIONS(799), - [sym__raw_string_literal] = ACTIONS(799), - [sym__external_open_parenthesis] = ACTIONS(799), - [sym__external_open_brace] = ACTIONS(799), - [sym__external_open_bracket] = ACTIONS(799), - [sym__external_open_bracket2] = ACTIONS(799), + [sym__newline] = ACTIONS(805), + [sym__semicolon] = ACTIONS(805), + [sym__raw_string_literal] = ACTIONS(805), + [sym__external_open_parenthesis] = ACTIONS(805), + [sym__external_open_brace] = ACTIONS(805), + [sym__external_open_bracket] = ACTIONS(805), + [sym__external_open_bracket2] = ACTIONS(805), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(763), - [sym_identifier] = ACTIONS(761), - [anon_sym_BSLASH] = ACTIONS(763), - [anon_sym_function] = ACTIONS(761), - [anon_sym_EQ] = ACTIONS(761), - [anon_sym_if] = ACTIONS(761), - [anon_sym_for] = ACTIONS(761), - [anon_sym_while] = ACTIONS(761), - [anon_sym_repeat] = ACTIONS(761), - [anon_sym_QMARK] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_LT_DASH] = ACTIONS(763), - [anon_sym_LT_LT_DASH] = ACTIONS(763), - [anon_sym_COLON_EQ] = ACTIONS(763), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DASH_GT_GT] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(761), - [anon_sym_AMP] = ACTIONS(761), - [anon_sym_PIPE_PIPE] = ACTIONS(763), - [anon_sym_AMP_AMP] = ACTIONS(763), - [anon_sym_LT] = ACTIONS(761), - [anon_sym_LT_EQ] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(761), - [anon_sym_GT_EQ] = ACTIONS(763), - [anon_sym_EQ_EQ] = ACTIONS(763), - [anon_sym_BANG_EQ] = ACTIONS(763), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(763), - [anon_sym_CARET] = ACTIONS(763), - [aux_sym_binary_operator_token1] = ACTIONS(763), - [anon_sym_PIPE_GT] = ACTIONS(763), - [anon_sym_COLON] = ACTIONS(761), - [anon_sym_DOLLAR] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(763), - [sym__hex_literal] = ACTIONS(763), - [sym__number_literal] = ACTIONS(761), - [anon_sym_SQUOTE] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(763), - [sym_dots] = ACTIONS(761), - [sym_dot_dot_i] = ACTIONS(763), - [sym_return] = ACTIONS(761), - [sym_next] = ACTIONS(761), - [sym_break] = ACTIONS(761), - [sym_true] = ACTIONS(761), - [sym_false] = ACTIONS(761), - [sym_null] = ACTIONS(761), - [sym_inf] = ACTIONS(761), - [sym_nan] = ACTIONS(761), - [anon_sym_NA] = ACTIONS(761), - [anon_sym_NA_integer_] = ACTIONS(761), - [anon_sym_NA_real_] = ACTIONS(761), - [anon_sym_NA_complex_] = ACTIONS(761), - [anon_sym_NA_character_] = ACTIONS(761), + [ts_builtin_sym_end] = ACTIONS(783), + [sym_identifier] = ACTIONS(785), + [anon_sym_BSLASH] = ACTIONS(783), + [anon_sym_function] = ACTIONS(785), + [anon_sym_EQ] = ACTIONS(785), + [anon_sym_if] = ACTIONS(785), + [anon_sym_for] = ACTIONS(785), + [anon_sym_while] = ACTIONS(785), + [anon_sym_repeat] = ACTIONS(785), + [anon_sym_QMARK] = ACTIONS(783), + [anon_sym_TILDE] = ACTIONS(783), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_LT_DASH] = ACTIONS(783), + [anon_sym_LT_LT_DASH] = ACTIONS(783), + [anon_sym_COLON_EQ] = ACTIONS(783), + [anon_sym_DASH_GT] = ACTIONS(785), + [anon_sym_DASH_GT_GT] = ACTIONS(783), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(785), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_LT_EQ] = ACTIONS(783), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_GT_EQ] = ACTIONS(783), + [anon_sym_EQ_EQ] = ACTIONS(783), + [anon_sym_BANG_EQ] = ACTIONS(783), + [anon_sym_STAR] = ACTIONS(785), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_STAR_STAR] = ACTIONS(783), + [anon_sym_CARET] = ACTIONS(783), + [aux_sym_binary_operator_token1] = ACTIONS(783), + [anon_sym_PIPE_GT] = ACTIONS(783), + [anon_sym_COLON] = ACTIONS(785), + [anon_sym_DOLLAR] = ACTIONS(783), + [anon_sym_AT] = ACTIONS(783), + [sym__hex_literal] = ACTIONS(783), + [sym__number_literal] = ACTIONS(785), + [anon_sym_SQUOTE] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(783), + [sym_dots] = ACTIONS(785), + [sym_dot_dot_i] = ACTIONS(783), + [sym_return] = ACTIONS(785), + [sym_next] = ACTIONS(785), + [sym_break] = ACTIONS(785), + [sym_true] = ACTIONS(785), + [sym_false] = ACTIONS(785), + [sym_null] = ACTIONS(785), + [sym_inf] = ACTIONS(785), + [sym_nan] = ACTIONS(785), + [anon_sym_NA] = ACTIONS(785), + [anon_sym_NA_integer_] = ACTIONS(785), + [anon_sym_NA_real_] = ACTIONS(785), + [anon_sym_NA_complex_] = ACTIONS(785), + [anon_sym_NA_character_] = ACTIONS(785), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(763), - [sym__semicolon] = ACTIONS(763), - [sym__raw_string_literal] = ACTIONS(763), - [sym__external_open_parenthesis] = ACTIONS(763), - [sym__external_open_brace] = ACTIONS(763), - [sym__external_open_bracket] = ACTIONS(763), - [sym__external_open_bracket2] = ACTIONS(763), + [sym__newline] = ACTIONS(783), + [sym__semicolon] = ACTIONS(783), + [sym__raw_string_literal] = ACTIONS(783), + [sym__external_open_parenthesis] = ACTIONS(783), + [sym__external_open_brace] = ACTIONS(783), + [sym__external_open_bracket] = ACTIONS(783), + [sym__external_open_bracket2] = ACTIONS(783), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(705), - [sym_identifier] = ACTIONS(703), - [anon_sym_BSLASH] = ACTIONS(705), - [anon_sym_function] = ACTIONS(703), - [anon_sym_EQ] = ACTIONS(703), - [anon_sym_if] = ACTIONS(703), - [anon_sym_for] = ACTIONS(703), - [anon_sym_while] = ACTIONS(703), - [anon_sym_repeat] = ACTIONS(703), - [anon_sym_QMARK] = ACTIONS(705), - [anon_sym_TILDE] = ACTIONS(705), - [anon_sym_BANG] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(705), - [anon_sym_DASH] = ACTIONS(703), - [anon_sym_LT_DASH] = ACTIONS(705), - [anon_sym_LT_LT_DASH] = ACTIONS(705), - [anon_sym_COLON_EQ] = ACTIONS(705), - [anon_sym_DASH_GT] = ACTIONS(703), - [anon_sym_DASH_GT_GT] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(703), - [anon_sym_AMP] = ACTIONS(703), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(703), - [anon_sym_LT_EQ] = ACTIONS(705), - [anon_sym_GT] = ACTIONS(703), - [anon_sym_GT_EQ] = ACTIONS(705), - [anon_sym_EQ_EQ] = ACTIONS(705), - [anon_sym_BANG_EQ] = ACTIONS(705), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_SLASH] = ACTIONS(705), - [anon_sym_STAR_STAR] = ACTIONS(705), - [anon_sym_CARET] = ACTIONS(705), - [aux_sym_binary_operator_token1] = ACTIONS(705), - [anon_sym_PIPE_GT] = ACTIONS(705), - [anon_sym_COLON] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [anon_sym_AT] = ACTIONS(705), - [sym__hex_literal] = ACTIONS(705), - [sym__number_literal] = ACTIONS(703), - [anon_sym_SQUOTE] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [sym_dots] = ACTIONS(703), - [sym_dot_dot_i] = ACTIONS(705), - [sym_return] = ACTIONS(703), - [sym_next] = ACTIONS(703), - [sym_break] = ACTIONS(703), - [sym_true] = ACTIONS(703), - [sym_false] = ACTIONS(703), - [sym_null] = ACTIONS(703), - [sym_inf] = ACTIONS(703), - [sym_nan] = ACTIONS(703), - [anon_sym_NA] = ACTIONS(703), - [anon_sym_NA_integer_] = ACTIONS(703), - [anon_sym_NA_real_] = ACTIONS(703), - [anon_sym_NA_complex_] = ACTIONS(703), - [anon_sym_NA_character_] = ACTIONS(703), + [ts_builtin_sym_end] = ACTIONS(779), + [sym_identifier] = ACTIONS(781), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_if] = ACTIONS(781), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(781), + [anon_sym_repeat] = ACTIONS(781), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_COLON_EQ] = ACTIONS(779), + [anon_sym_DASH_GT] = ACTIONS(781), + [anon_sym_DASH_GT_GT] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(781), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_LT_EQ] = ACTIONS(779), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_EQ] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(779), + [anon_sym_BANG_EQ] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(779), + [anon_sym_STAR_STAR] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [aux_sym_binary_operator_token1] = ACTIONS(779), + [anon_sym_PIPE_GT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(781), + [anon_sym_DOLLAR] = ACTIONS(779), + [anon_sym_AT] = ACTIONS(779), + [sym__hex_literal] = ACTIONS(779), + [sym__number_literal] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [sym_dots] = ACTIONS(781), + [sym_dot_dot_i] = ACTIONS(779), + [sym_return] = ACTIONS(781), + [sym_next] = ACTIONS(781), + [sym_break] = ACTIONS(781), + [sym_true] = ACTIONS(781), + [sym_false] = ACTIONS(781), + [sym_null] = ACTIONS(781), + [sym_inf] = ACTIONS(781), + [sym_nan] = ACTIONS(781), + [anon_sym_NA] = ACTIONS(781), + [anon_sym_NA_integer_] = ACTIONS(781), + [anon_sym_NA_real_] = ACTIONS(781), + [anon_sym_NA_complex_] = ACTIONS(781), + [anon_sym_NA_character_] = ACTIONS(781), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(705), - [sym__semicolon] = ACTIONS(705), - [sym__raw_string_literal] = ACTIONS(705), - [sym__external_open_parenthesis] = ACTIONS(705), - [sym__external_open_brace] = ACTIONS(705), - [sym__external_open_bracket] = ACTIONS(705), - [sym__external_open_bracket2] = ACTIONS(705), + [sym__newline] = ACTIONS(779), + [sym__semicolon] = ACTIONS(779), + [sym__raw_string_literal] = ACTIONS(779), + [sym__external_open_parenthesis] = ACTIONS(779), + [sym__external_open_brace] = ACTIONS(779), + [sym__external_open_bracket] = ACTIONS(779), + [sym__external_open_bracket2] = ACTIONS(779), }, [411] = { - [ts_builtin_sym_end] = ACTIONS(767), - [sym_identifier] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_function] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_if] = ACTIONS(765), - [anon_sym_for] = ACTIONS(765), - [anon_sym_while] = ACTIONS(765), - [anon_sym_repeat] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(767), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LT_DASH] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(767), - [anon_sym_COLON_EQ] = ACTIONS(767), - [anon_sym_DASH_GT] = ACTIONS(765), - [anon_sym_DASH_GT_GT] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_LT_EQ] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_GT_EQ] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(767), - [anon_sym_BANG_EQ] = ACTIONS(767), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(767), - [anon_sym_CARET] = ACTIONS(767), - [aux_sym_binary_operator_token1] = ACTIONS(767), - [anon_sym_PIPE_GT] = ACTIONS(767), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [anon_sym_AT] = ACTIONS(767), - [sym__hex_literal] = ACTIONS(767), - [sym__number_literal] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(767), - [sym_dots] = ACTIONS(765), - [sym_dot_dot_i] = ACTIONS(767), - [sym_return] = ACTIONS(765), - [sym_next] = ACTIONS(765), - [sym_break] = ACTIONS(765), - [sym_true] = ACTIONS(765), - [sym_false] = ACTIONS(765), - [sym_null] = ACTIONS(765), - [sym_inf] = ACTIONS(765), - [sym_nan] = ACTIONS(765), - [anon_sym_NA] = ACTIONS(765), - [anon_sym_NA_integer_] = ACTIONS(765), - [anon_sym_NA_real_] = ACTIONS(765), - [anon_sym_NA_complex_] = ACTIONS(765), - [anon_sym_NA_character_] = ACTIONS(765), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(767), - [sym__semicolon] = ACTIONS(767), - [sym__raw_string_literal] = ACTIONS(767), - [sym__external_open_parenthesis] = ACTIONS(767), - [sym__external_open_brace] = ACTIONS(767), - [sym__external_open_bracket] = ACTIONS(767), - [sym__external_open_bracket2] = ACTIONS(767), - }, - [412] = { - [ts_builtin_sym_end] = ACTIONS(771), - [sym_identifier] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_function] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(769), - [anon_sym_if] = ACTIONS(769), - [anon_sym_for] = ACTIONS(769), - [anon_sym_while] = ACTIONS(769), - [anon_sym_repeat] = ACTIONS(769), - [anon_sym_QMARK] = ACTIONS(771), - [anon_sym_TILDE] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_LT_DASH] = ACTIONS(771), - [anon_sym_LT_LT_DASH] = ACTIONS(771), - [anon_sym_COLON_EQ] = ACTIONS(771), - [anon_sym_DASH_GT] = ACTIONS(769), - [anon_sym_DASH_GT_GT] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(769), - [anon_sym_LT_EQ] = ACTIONS(771), - [anon_sym_GT] = ACTIONS(769), - [anon_sym_GT_EQ] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(771), - [anon_sym_BANG_EQ] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(771), - [aux_sym_binary_operator_token1] = ACTIONS(771), - [anon_sym_PIPE_GT] = ACTIONS(771), - [anon_sym_COLON] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [anon_sym_AT] = ACTIONS(771), - [sym__hex_literal] = ACTIONS(771), - [sym__number_literal] = ACTIONS(769), - [anon_sym_SQUOTE] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(771), - [sym_dots] = ACTIONS(769), - [sym_dot_dot_i] = ACTIONS(771), - [sym_return] = ACTIONS(769), - [sym_next] = ACTIONS(769), - [sym_break] = ACTIONS(769), - [sym_true] = ACTIONS(769), - [sym_false] = ACTIONS(769), - [sym_null] = ACTIONS(769), - [sym_inf] = ACTIONS(769), - [sym_nan] = ACTIONS(769), - [anon_sym_NA] = ACTIONS(769), - [anon_sym_NA_integer_] = ACTIONS(769), - [anon_sym_NA_real_] = ACTIONS(769), - [anon_sym_NA_complex_] = ACTIONS(769), - [anon_sym_NA_character_] = ACTIONS(769), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(771), - [sym__semicolon] = ACTIONS(771), - [sym__raw_string_literal] = ACTIONS(771), - [sym__external_open_parenthesis] = ACTIONS(771), - [sym__external_open_brace] = ACTIONS(771), - [sym__external_open_bracket] = ACTIONS(771), - [sym__external_open_bracket2] = ACTIONS(771), - }, - [413] = { - [sym_identifier] = ACTIONS(779), - [anon_sym_BSLASH] = ACTIONS(777), - [anon_sym_function] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(779), - [anon_sym_if] = ACTIONS(779), - [anon_sym_for] = ACTIONS(779), - [anon_sym_while] = ACTIONS(779), - [anon_sym_repeat] = ACTIONS(779), - [anon_sym_QMARK] = ACTIONS(777), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LT_DASH] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(777), - [anon_sym_COLON_EQ] = ACTIONS(777), - [anon_sym_DASH_GT] = ACTIONS(779), - [anon_sym_DASH_GT_GT] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(779), - [anon_sym_PIPE_PIPE] = ACTIONS(777), - [anon_sym_AMP_AMP] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(779), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(779), - [anon_sym_GT_EQ] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(779), - [anon_sym_SLASH] = ACTIONS(777), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_CARET] = ACTIONS(777), - [aux_sym_binary_operator_token1] = ACTIONS(777), - [anon_sym_PIPE_GT] = ACTIONS(777), - [anon_sym_COLON] = ACTIONS(779), - [anon_sym_DOLLAR] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(777), - [sym__hex_literal] = ACTIONS(777), - [sym__number_literal] = ACTIONS(779), - [anon_sym_SQUOTE] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [sym_dots] = ACTIONS(779), - [sym_dot_dot_i] = ACTIONS(777), - [sym_return] = ACTIONS(779), - [sym_next] = ACTIONS(779), - [sym_break] = ACTIONS(779), - [sym_true] = ACTIONS(779), - [sym_false] = ACTIONS(779), - [sym_null] = ACTIONS(779), - [sym_inf] = ACTIONS(779), - [sym_nan] = ACTIONS(779), - [anon_sym_NA] = ACTIONS(779), - [anon_sym_NA_integer_] = ACTIONS(779), - [anon_sym_NA_real_] = ACTIONS(779), - [anon_sym_NA_complex_] = ACTIONS(779), - [anon_sym_NA_character_] = ACTIONS(779), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(777), - [sym__semicolon] = ACTIONS(777), - [sym__raw_string_literal] = ACTIONS(777), - [sym__external_open_parenthesis] = ACTIONS(777), - [sym__external_open_brace] = ACTIONS(777), - [sym__external_close_brace] = ACTIONS(777), - [sym__external_open_bracket] = ACTIONS(777), - [sym__external_open_bracket2] = ACTIONS(777), - }, - [414] = { - [sym_identifier] = ACTIONS(783), - [anon_sym_BSLASH] = ACTIONS(781), - [anon_sym_function] = ACTIONS(783), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_if] = ACTIONS(783), - [anon_sym_for] = ACTIONS(783), - [anon_sym_while] = ACTIONS(783), - [anon_sym_repeat] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_LT_DASH] = ACTIONS(781), - [anon_sym_LT_LT_DASH] = ACTIONS(781), - [anon_sym_COLON_EQ] = ACTIONS(781), - [anon_sym_DASH_GT] = ACTIONS(783), - [anon_sym_DASH_GT_GT] = ACTIONS(781), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PIPE_PIPE] = ACTIONS(781), - [anon_sym_AMP_AMP] = ACTIONS(781), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_LT_EQ] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(781), - [anon_sym_EQ_EQ] = ACTIONS(781), - [anon_sym_BANG_EQ] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(781), - [anon_sym_STAR_STAR] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [aux_sym_binary_operator_token1] = ACTIONS(781), - [anon_sym_PIPE_GT] = ACTIONS(781), - [anon_sym_COLON] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_AT] = ACTIONS(781), - [sym__hex_literal] = ACTIONS(781), - [sym__number_literal] = ACTIONS(783), - [anon_sym_SQUOTE] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym_dots] = ACTIONS(783), - [sym_dot_dot_i] = ACTIONS(781), - [sym_return] = ACTIONS(783), - [sym_next] = ACTIONS(783), - [sym_break] = ACTIONS(783), - [sym_true] = ACTIONS(783), - [sym_false] = ACTIONS(783), - [sym_null] = ACTIONS(783), - [sym_inf] = ACTIONS(783), - [sym_nan] = ACTIONS(783), - [anon_sym_NA] = ACTIONS(783), - [anon_sym_NA_integer_] = ACTIONS(783), - [anon_sym_NA_real_] = ACTIONS(783), - [anon_sym_NA_complex_] = ACTIONS(783), - [anon_sym_NA_character_] = ACTIONS(783), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(781), - [sym__semicolon] = ACTIONS(781), - [sym__raw_string_literal] = ACTIONS(781), - [sym__external_open_parenthesis] = ACTIONS(781), - [sym__external_open_brace] = ACTIONS(781), - [sym__external_close_brace] = ACTIONS(781), - [sym__external_open_bracket] = ACTIONS(781), - [sym__external_open_bracket2] = ACTIONS(781), - }, - [415] = { - [ts_builtin_sym_end] = ACTIONS(697), - [sym_identifier] = ACTIONS(695), - [anon_sym_BSLASH] = ACTIONS(697), - [anon_sym_function] = ACTIONS(695), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_if] = ACTIONS(695), - [anon_sym_for] = ACTIONS(695), - [anon_sym_while] = ACTIONS(695), - [anon_sym_repeat] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_LT_DASH] = ACTIONS(697), - [anon_sym_LT_LT_DASH] = ACTIONS(697), - [anon_sym_COLON_EQ] = ACTIONS(697), - [anon_sym_DASH_GT] = ACTIONS(695), - [anon_sym_DASH_GT_GT] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_LT_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(697), - [anon_sym_EQ_EQ] = ACTIONS(697), - [anon_sym_BANG_EQ] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_STAR_STAR] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [aux_sym_binary_operator_token1] = ACTIONS(697), - [anon_sym_PIPE_GT] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [sym__hex_literal] = ACTIONS(697), - [sym__number_literal] = ACTIONS(695), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(697), - [sym_dots] = ACTIONS(695), - [sym_dot_dot_i] = ACTIONS(697), - [sym_return] = ACTIONS(695), - [sym_next] = ACTIONS(695), - [sym_break] = ACTIONS(695), - [sym_true] = ACTIONS(695), - [sym_false] = ACTIONS(695), - [sym_null] = ACTIONS(695), - [sym_inf] = ACTIONS(695), - [sym_nan] = ACTIONS(695), - [anon_sym_NA] = ACTIONS(695), - [anon_sym_NA_integer_] = ACTIONS(695), - [anon_sym_NA_real_] = ACTIONS(695), - [anon_sym_NA_complex_] = ACTIONS(695), - [anon_sym_NA_character_] = ACTIONS(695), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(697), - [sym__semicolon] = ACTIONS(697), - [sym__raw_string_literal] = ACTIONS(697), - [sym__external_open_parenthesis] = ACTIONS(697), - [sym__external_open_brace] = ACTIONS(697), - [sym__external_open_bracket] = ACTIONS(697), - [sym__external_open_bracket2] = ACTIONS(697), - }, - [416] = { - [ts_builtin_sym_end] = ACTIONS(775), - [sym_identifier] = ACTIONS(773), - [anon_sym_BSLASH] = ACTIONS(775), - [anon_sym_function] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(773), - [anon_sym_if] = ACTIONS(773), - [anon_sym_for] = ACTIONS(773), - [anon_sym_while] = ACTIONS(773), - [anon_sym_repeat] = ACTIONS(773), - [anon_sym_QMARK] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_LT_DASH] = ACTIONS(775), - [anon_sym_LT_LT_DASH] = ACTIONS(775), - [anon_sym_COLON_EQ] = ACTIONS(775), - [anon_sym_DASH_GT] = ACTIONS(773), - [anon_sym_DASH_GT_GT] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_LT_EQ] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_GT_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [aux_sym_binary_operator_token1] = ACTIONS(775), - [anon_sym_PIPE_GT] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(775), - [anon_sym_AT] = ACTIONS(775), - [sym__hex_literal] = ACTIONS(775), - [sym__number_literal] = ACTIONS(773), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(775), - [sym_dots] = ACTIONS(773), - [sym_dot_dot_i] = ACTIONS(775), - [sym_return] = ACTIONS(773), - [sym_next] = ACTIONS(773), - [sym_break] = ACTIONS(773), - [sym_true] = ACTIONS(773), - [sym_false] = ACTIONS(773), - [sym_null] = ACTIONS(773), - [sym_inf] = ACTIONS(773), - [sym_nan] = ACTIONS(773), - [anon_sym_NA] = ACTIONS(773), - [anon_sym_NA_integer_] = ACTIONS(773), - [anon_sym_NA_real_] = ACTIONS(773), - [anon_sym_NA_complex_] = ACTIONS(773), - [anon_sym_NA_character_] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(775), - [sym__semicolon] = ACTIONS(775), - [sym__raw_string_literal] = ACTIONS(775), - [sym__external_open_parenthesis] = ACTIONS(775), - [sym__external_open_brace] = ACTIONS(775), - [sym__external_open_bracket] = ACTIONS(775), - [sym__external_open_bracket2] = ACTIONS(775), - }, - [417] = { - [sym_identifier] = ACTIONS(795), - [anon_sym_BSLASH] = ACTIONS(793), - [anon_sym_function] = ACTIONS(795), - [anon_sym_EQ] = ACTIONS(795), - [anon_sym_if] = ACTIONS(795), - [anon_sym_for] = ACTIONS(795), - [anon_sym_while] = ACTIONS(795), - [anon_sym_repeat] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(793), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(793), - [anon_sym_LT_LT_DASH] = ACTIONS(793), - [anon_sym_COLON_EQ] = ACTIONS(793), - [anon_sym_DASH_GT] = ACTIONS(795), - [anon_sym_DASH_GT_GT] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_PIPE_PIPE] = ACTIONS(793), - [anon_sym_AMP_AMP] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(795), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_SLASH] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), - [aux_sym_binary_operator_token1] = ACTIONS(793), - [anon_sym_PIPE_GT] = ACTIONS(793), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_AT] = ACTIONS(793), - [sym__hex_literal] = ACTIONS(793), - [sym__number_literal] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym_dots] = ACTIONS(795), - [sym_dot_dot_i] = ACTIONS(793), - [sym_return] = ACTIONS(795), - [sym_next] = ACTIONS(795), - [sym_break] = ACTIONS(795), - [sym_true] = ACTIONS(795), - [sym_false] = ACTIONS(795), - [sym_null] = ACTIONS(795), - [sym_inf] = ACTIONS(795), - [sym_nan] = ACTIONS(795), - [anon_sym_NA] = ACTIONS(795), - [anon_sym_NA_integer_] = ACTIONS(795), - [anon_sym_NA_real_] = ACTIONS(795), - [anon_sym_NA_complex_] = ACTIONS(795), - [anon_sym_NA_character_] = ACTIONS(795), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(793), - [sym__semicolon] = ACTIONS(793), - [sym__raw_string_literal] = ACTIONS(793), - [sym__external_open_parenthesis] = ACTIONS(793), - [sym__external_open_brace] = ACTIONS(793), - [sym__external_close_brace] = ACTIONS(793), - [sym__external_open_bracket] = ACTIONS(793), - [sym__external_open_bracket2] = ACTIONS(793), - }, - [418] = { - [ts_builtin_sym_end] = ACTIONS(805), + [ts_builtin_sym_end] = ACTIONS(801), [sym_identifier] = ACTIONS(803), - [anon_sym_BSLASH] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(801), [anon_sym_function] = ACTIONS(803), [anon_sym_EQ] = ACTIONS(803), [anon_sym_if] = ACTIONS(803), [anon_sym_for] = ACTIONS(803), [anon_sym_while] = ACTIONS(803), [anon_sym_repeat] = ACTIONS(803), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(803), - [anon_sym_LT_DASH] = ACTIONS(805), - [anon_sym_LT_LT_DASH] = ACTIONS(805), - [anon_sym_COLON_EQ] = ACTIONS(805), + [anon_sym_LT_DASH] = ACTIONS(801), + [anon_sym_LT_LT_DASH] = ACTIONS(801), + [anon_sym_COLON_EQ] = ACTIONS(801), [anon_sym_DASH_GT] = ACTIONS(803), - [anon_sym_DASH_GT_GT] = ACTIONS(805), + [anon_sym_DASH_GT_GT] = ACTIONS(801), [anon_sym_PIPE] = ACTIONS(803), [anon_sym_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(805), - [anon_sym_AMP_AMP] = ACTIONS(805), + [anon_sym_PIPE_PIPE] = ACTIONS(801), + [anon_sym_AMP_AMP] = ACTIONS(801), [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_LT_EQ] = ACTIONS(801), [anon_sym_GT] = ACTIONS(803), - [anon_sym_GT_EQ] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_STAR_STAR] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [aux_sym_binary_operator_token1] = ACTIONS(805), - [anon_sym_PIPE_GT] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [aux_sym_binary_operator_token1] = ACTIONS(801), + [anon_sym_PIPE_GT] = ACTIONS(801), [anon_sym_COLON] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_AT] = ACTIONS(805), - [sym__hex_literal] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_AT] = ACTIONS(801), + [sym__hex_literal] = ACTIONS(801), [sym__number_literal] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_DQUOTE] = ACTIONS(805), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), [sym_dots] = ACTIONS(803), - [sym_dot_dot_i] = ACTIONS(805), + [sym_dot_dot_i] = ACTIONS(801), [sym_return] = ACTIONS(803), [sym_next] = ACTIONS(803), [sym_break] = ACTIONS(803), @@ -36528,138 +36062,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NA_complex_] = ACTIONS(803), [anon_sym_NA_character_] = ACTIONS(803), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(805), - [sym__semicolon] = ACTIONS(805), - [sym__raw_string_literal] = ACTIONS(805), - [sym__external_open_parenthesis] = ACTIONS(805), - [sym__external_open_brace] = ACTIONS(805), - [sym__external_open_bracket] = ACTIONS(805), - [sym__external_open_bracket2] = ACTIONS(805), - }, - [419] = { - [sym_identifier] = ACTIONS(853), - [anon_sym_BSLASH] = ACTIONS(855), - [anon_sym_function] = ACTIONS(853), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_if] = ACTIONS(853), - [anon_sym_for] = ACTIONS(853), - [anon_sym_while] = ACTIONS(853), - [anon_sym_repeat] = ACTIONS(853), - [anon_sym_QMARK] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_LT_DASH] = ACTIONS(855), - [anon_sym_LT_LT_DASH] = ACTIONS(855), - [anon_sym_COLON_EQ] = ACTIONS(855), - [anon_sym_DASH_GT] = ACTIONS(853), - [anon_sym_DASH_GT_GT] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(855), - [anon_sym_AMP_AMP] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_STAR] = ACTIONS(853), - [anon_sym_SLASH] = ACTIONS(855), - [anon_sym_STAR_STAR] = ACTIONS(855), - [anon_sym_CARET] = ACTIONS(855), - [aux_sym_binary_operator_token1] = ACTIONS(855), - [anon_sym_PIPE_GT] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_AT] = ACTIONS(855), - [sym__hex_literal] = ACTIONS(855), - [sym__number_literal] = ACTIONS(853), - [anon_sym_SQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_dots] = ACTIONS(853), - [sym_dot_dot_i] = ACTIONS(855), - [sym_return] = ACTIONS(853), - [sym_next] = ACTIONS(853), - [sym_break] = ACTIONS(853), - [sym_true] = ACTIONS(853), - [sym_false] = ACTIONS(853), - [sym_null] = ACTIONS(853), - [sym_inf] = ACTIONS(853), - [sym_nan] = ACTIONS(853), - [anon_sym_NA] = ACTIONS(853), - [anon_sym_NA_integer_] = ACTIONS(853), - [anon_sym_NA_real_] = ACTIONS(853), - [anon_sym_NA_complex_] = ACTIONS(853), - [anon_sym_NA_character_] = ACTIONS(853), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), - [sym__semicolon] = ACTIONS(855), - [sym__raw_string_literal] = ACTIONS(855), - [sym__external_open_parenthesis] = ACTIONS(855), - [sym__external_open_brace] = ACTIONS(855), - [sym__external_close_brace] = ACTIONS(855), - [sym__external_open_bracket] = ACTIONS(855), - [sym__external_open_bracket2] = ACTIONS(855), + [sym__newline] = ACTIONS(801), + [sym__semicolon] = ACTIONS(801), + [sym__raw_string_literal] = ACTIONS(801), + [sym__external_open_parenthesis] = ACTIONS(801), + [sym__external_open_brace] = ACTIONS(801), + [sym__external_open_bracket] = ACTIONS(801), + [sym__external_open_bracket2] = ACTIONS(801), }, - [420] = { - [sym_identifier] = ACTIONS(773), + [412] = { + [sym_identifier] = ACTIONS(777), [anon_sym_BSLASH] = ACTIONS(775), - [anon_sym_function] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(773), - [anon_sym_if] = ACTIONS(773), - [anon_sym_for] = ACTIONS(773), - [anon_sym_while] = ACTIONS(773), - [anon_sym_repeat] = ACTIONS(773), + [anon_sym_function] = ACTIONS(777), + [anon_sym_EQ] = ACTIONS(777), + [anon_sym_if] = ACTIONS(777), + [anon_sym_for] = ACTIONS(777), + [anon_sym_while] = ACTIONS(777), + [anon_sym_repeat] = ACTIONS(777), [anon_sym_QMARK] = ACTIONS(775), [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(773), + [anon_sym_BANG] = ACTIONS(777), [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(777), [anon_sym_LT_DASH] = ACTIONS(775), [anon_sym_LT_LT_DASH] = ACTIONS(775), [anon_sym_COLON_EQ] = ACTIONS(775), - [anon_sym_DASH_GT] = ACTIONS(773), + [anon_sym_DASH_GT] = ACTIONS(777), [anon_sym_DASH_GT_GT] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(777), [anon_sym_PIPE_PIPE] = ACTIONS(775), [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(777), [anon_sym_LT_EQ] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(777), [anon_sym_GT_EQ] = ACTIONS(775), [anon_sym_EQ_EQ] = ACTIONS(775), [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(777), [anon_sym_SLASH] = ACTIONS(775), [anon_sym_STAR_STAR] = ACTIONS(775), [anon_sym_CARET] = ACTIONS(775), [aux_sym_binary_operator_token1] = ACTIONS(775), [anon_sym_PIPE_GT] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(773), + [anon_sym_COLON] = ACTIONS(777), [anon_sym_DOLLAR] = ACTIONS(775), [anon_sym_AT] = ACTIONS(775), [sym__hex_literal] = ACTIONS(775), - [sym__number_literal] = ACTIONS(773), + [sym__number_literal] = ACTIONS(777), [anon_sym_SQUOTE] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(775), - [sym_dots] = ACTIONS(773), + [sym_dots] = ACTIONS(777), [sym_dot_dot_i] = ACTIONS(775), - [sym_return] = ACTIONS(773), - [sym_next] = ACTIONS(773), - [sym_break] = ACTIONS(773), - [sym_true] = ACTIONS(773), - [sym_false] = ACTIONS(773), - [sym_null] = ACTIONS(773), - [sym_inf] = ACTIONS(773), - [sym_nan] = ACTIONS(773), - [anon_sym_NA] = ACTIONS(773), - [anon_sym_NA_integer_] = ACTIONS(773), - [anon_sym_NA_real_] = ACTIONS(773), - [anon_sym_NA_complex_] = ACTIONS(773), - [anon_sym_NA_character_] = ACTIONS(773), + [sym_return] = ACTIONS(777), + [sym_next] = ACTIONS(777), + [sym_break] = ACTIONS(777), + [sym_true] = ACTIONS(777), + [sym_false] = ACTIONS(777), + [sym_null] = ACTIONS(777), + [sym_inf] = ACTIONS(777), + [sym_nan] = ACTIONS(777), + [anon_sym_NA] = ACTIONS(777), + [anon_sym_NA_integer_] = ACTIONS(777), + [anon_sym_NA_real_] = ACTIONS(777), + [anon_sym_NA_complex_] = ACTIONS(777), + [anon_sym_NA_character_] = ACTIONS(777), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(775), [sym__semicolon] = ACTIONS(775), @@ -36670,787 +36137,452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(775), [sym__external_open_bracket2] = ACTIONS(775), }, - [421] = { - [ts_builtin_sym_end] = ACTIONS(809), - [sym_identifier] = ACTIONS(807), - [anon_sym_BSLASH] = ACTIONS(809), - [anon_sym_function] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_repeat] = ACTIONS(807), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_TILDE] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_LT_DASH] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(809), - [anon_sym_COLON_EQ] = ACTIONS(809), - [anon_sym_DASH_GT] = ACTIONS(807), - [anon_sym_DASH_GT_GT] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(809), - [anon_sym_AMP_AMP] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(809), - [anon_sym_STAR_STAR] = ACTIONS(809), - [anon_sym_CARET] = ACTIONS(809), - [aux_sym_binary_operator_token1] = ACTIONS(809), - [anon_sym_PIPE_GT] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [anon_sym_AT] = ACTIONS(809), - [sym__hex_literal] = ACTIONS(809), - [sym__number_literal] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(809), - [sym_dots] = ACTIONS(807), - [sym_dot_dot_i] = ACTIONS(809), - [sym_return] = ACTIONS(807), - [sym_next] = ACTIONS(807), - [sym_break] = ACTIONS(807), - [sym_true] = ACTIONS(807), - [sym_false] = ACTIONS(807), - [sym_null] = ACTIONS(807), - [sym_inf] = ACTIONS(807), - [sym_nan] = ACTIONS(807), - [anon_sym_NA] = ACTIONS(807), - [anon_sym_NA_integer_] = ACTIONS(807), - [anon_sym_NA_real_] = ACTIONS(807), - [anon_sym_NA_complex_] = ACTIONS(807), - [anon_sym_NA_character_] = ACTIONS(807), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(809), - [sym__semicolon] = ACTIONS(809), - [sym__raw_string_literal] = ACTIONS(809), - [sym__external_open_parenthesis] = ACTIONS(809), - [sym__external_open_brace] = ACTIONS(809), - [sym__external_open_bracket] = ACTIONS(809), - [sym__external_open_bracket2] = ACTIONS(809), - }, - [422] = { - [sym_identifier] = ACTIONS(801), - [anon_sym_BSLASH] = ACTIONS(799), - [anon_sym_function] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(801), - [anon_sym_if] = ACTIONS(801), - [anon_sym_for] = ACTIONS(801), - [anon_sym_while] = ACTIONS(801), - [anon_sym_repeat] = ACTIONS(801), - [anon_sym_QMARK] = ACTIONS(799), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_LT_DASH] = ACTIONS(799), - [anon_sym_LT_LT_DASH] = ACTIONS(799), - [anon_sym_COLON_EQ] = ACTIONS(799), - [anon_sym_DASH_GT] = ACTIONS(801), - [anon_sym_DASH_GT_GT] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(801), - [anon_sym_PIPE_PIPE] = ACTIONS(799), - [anon_sym_AMP_AMP] = ACTIONS(799), - [anon_sym_LT] = ACTIONS(801), - [anon_sym_LT_EQ] = ACTIONS(799), - [anon_sym_GT] = ACTIONS(801), - [anon_sym_GT_EQ] = ACTIONS(799), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_BANG_EQ] = ACTIONS(799), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_SLASH] = ACTIONS(799), - [anon_sym_STAR_STAR] = ACTIONS(799), - [anon_sym_CARET] = ACTIONS(799), - [aux_sym_binary_operator_token1] = ACTIONS(799), - [anon_sym_PIPE_GT] = ACTIONS(799), - [anon_sym_COLON] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(799), - [sym__hex_literal] = ACTIONS(799), - [sym__number_literal] = ACTIONS(801), - [anon_sym_SQUOTE] = ACTIONS(799), - [anon_sym_DQUOTE] = ACTIONS(799), - [sym_dots] = ACTIONS(801), - [sym_dot_dot_i] = ACTIONS(799), - [sym_return] = ACTIONS(801), - [sym_next] = ACTIONS(801), - [sym_break] = ACTIONS(801), - [sym_true] = ACTIONS(801), - [sym_false] = ACTIONS(801), - [sym_null] = ACTIONS(801), - [sym_inf] = ACTIONS(801), - [sym_nan] = ACTIONS(801), - [anon_sym_NA] = ACTIONS(801), - [anon_sym_NA_integer_] = ACTIONS(801), - [anon_sym_NA_real_] = ACTIONS(801), - [anon_sym_NA_complex_] = ACTIONS(801), - [anon_sym_NA_character_] = ACTIONS(801), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(799), - [sym__semicolon] = ACTIONS(799), - [sym__raw_string_literal] = ACTIONS(799), - [sym__external_open_parenthesis] = ACTIONS(799), - [sym__external_open_brace] = ACTIONS(799), - [sym__external_close_brace] = ACTIONS(799), - [sym__external_open_bracket] = ACTIONS(799), - [sym__external_open_bracket2] = ACTIONS(799), - }, - [423] = { - [ts_builtin_sym_end] = ACTIONS(813), - [sym_identifier] = ACTIONS(811), - [anon_sym_BSLASH] = ACTIONS(813), - [anon_sym_function] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(811), - [anon_sym_if] = ACTIONS(811), - [anon_sym_for] = ACTIONS(811), - [anon_sym_while] = ACTIONS(811), - [anon_sym_repeat] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_LT_DASH] = ACTIONS(813), - [anon_sym_LT_LT_DASH] = ACTIONS(813), - [anon_sym_COLON_EQ] = ACTIONS(813), - [anon_sym_DASH_GT] = ACTIONS(811), - [anon_sym_DASH_GT_GT] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(813), - [anon_sym_AMP_AMP] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_EQ] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(813), - [anon_sym_EQ_EQ] = ACTIONS(813), - [anon_sym_BANG_EQ] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(813), - [anon_sym_CARET] = ACTIONS(813), - [aux_sym_binary_operator_token1] = ACTIONS(813), - [anon_sym_PIPE_GT] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_AT] = ACTIONS(813), - [sym__hex_literal] = ACTIONS(813), - [sym__number_literal] = ACTIONS(811), - [anon_sym_SQUOTE] = ACTIONS(813), - [anon_sym_DQUOTE] = ACTIONS(813), - [sym_dots] = ACTIONS(811), - [sym_dot_dot_i] = ACTIONS(813), - [sym_return] = ACTIONS(811), - [sym_next] = ACTIONS(811), - [sym_break] = ACTIONS(811), - [sym_true] = ACTIONS(811), - [sym_false] = ACTIONS(811), - [sym_null] = ACTIONS(811), - [sym_inf] = ACTIONS(811), - [sym_nan] = ACTIONS(811), - [anon_sym_NA] = ACTIONS(811), - [anon_sym_NA_integer_] = ACTIONS(811), - [anon_sym_NA_real_] = ACTIONS(811), - [anon_sym_NA_complex_] = ACTIONS(811), - [anon_sym_NA_character_] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(813), - [sym__semicolon] = ACTIONS(813), - [sym__raw_string_literal] = ACTIONS(813), - [sym__external_open_parenthesis] = ACTIONS(813), - [sym__external_open_brace] = ACTIONS(813), - [sym__external_open_bracket] = ACTIONS(813), - [sym__external_open_bracket2] = ACTIONS(813), - }, - [424] = { - [ts_builtin_sym_end] = ACTIONS(817), - [sym_identifier] = ACTIONS(815), - [anon_sym_BSLASH] = ACTIONS(817), - [anon_sym_function] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_if] = ACTIONS(815), - [anon_sym_for] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [anon_sym_repeat] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(817), - [anon_sym_TILDE] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_LT_DASH] = ACTIONS(817), - [anon_sym_LT_LT_DASH] = ACTIONS(817), - [anon_sym_COLON_EQ] = ACTIONS(817), - [anon_sym_DASH_GT] = ACTIONS(815), - [anon_sym_DASH_GT_GT] = ACTIONS(817), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(815), - [anon_sym_PIPE_PIPE] = ACTIONS(817), - [anon_sym_AMP_AMP] = ACTIONS(817), - [anon_sym_LT] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(817), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_GT_EQ] = ACTIONS(817), - [anon_sym_EQ_EQ] = ACTIONS(817), - [anon_sym_BANG_EQ] = ACTIONS(817), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(817), - [anon_sym_STAR_STAR] = ACTIONS(817), - [anon_sym_CARET] = ACTIONS(817), - [aux_sym_binary_operator_token1] = ACTIONS(817), - [anon_sym_PIPE_GT] = ACTIONS(817), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(817), - [anon_sym_AT] = ACTIONS(817), - [sym__hex_literal] = ACTIONS(817), - [sym__number_literal] = ACTIONS(815), - [anon_sym_SQUOTE] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(817), - [sym_dots] = ACTIONS(815), - [sym_dot_dot_i] = ACTIONS(817), - [sym_return] = ACTIONS(815), - [sym_next] = ACTIONS(815), - [sym_break] = ACTIONS(815), - [sym_true] = ACTIONS(815), - [sym_false] = ACTIONS(815), - [sym_null] = ACTIONS(815), - [sym_inf] = ACTIONS(815), - [sym_nan] = ACTIONS(815), - [anon_sym_NA] = ACTIONS(815), - [anon_sym_NA_integer_] = ACTIONS(815), - [anon_sym_NA_real_] = ACTIONS(815), - [anon_sym_NA_complex_] = ACTIONS(815), - [anon_sym_NA_character_] = ACTIONS(815), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(817), - [sym__semicolon] = ACTIONS(817), - [sym__raw_string_literal] = ACTIONS(817), - [sym__external_open_parenthesis] = ACTIONS(817), - [sym__external_open_brace] = ACTIONS(817), - [sym__external_open_bracket] = ACTIONS(817), - [sym__external_open_bracket2] = ACTIONS(817), - }, - [425] = { - [ts_builtin_sym_end] = ACTIONS(777), - [sym_identifier] = ACTIONS(779), - [anon_sym_BSLASH] = ACTIONS(777), - [anon_sym_function] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(779), - [anon_sym_if] = ACTIONS(779), - [anon_sym_for] = ACTIONS(779), - [anon_sym_while] = ACTIONS(779), - [anon_sym_repeat] = ACTIONS(779), - [anon_sym_QMARK] = ACTIONS(777), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LT_DASH] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(777), - [anon_sym_COLON_EQ] = ACTIONS(777), - [anon_sym_DASH_GT] = ACTIONS(779), - [anon_sym_DASH_GT_GT] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(779), - [anon_sym_PIPE_PIPE] = ACTIONS(777), - [anon_sym_AMP_AMP] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(779), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(779), - [anon_sym_GT_EQ] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(779), - [anon_sym_SLASH] = ACTIONS(777), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_CARET] = ACTIONS(777), - [aux_sym_binary_operator_token1] = ACTIONS(777), - [anon_sym_PIPE_GT] = ACTIONS(777), - [anon_sym_COLON] = ACTIONS(779), - [anon_sym_DOLLAR] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(777), - [sym__hex_literal] = ACTIONS(777), - [sym__number_literal] = ACTIONS(779), - [anon_sym_SQUOTE] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [sym_dots] = ACTIONS(779), - [sym_dot_dot_i] = ACTIONS(777), - [sym_return] = ACTIONS(779), - [sym_next] = ACTIONS(779), - [sym_break] = ACTIONS(779), - [sym_true] = ACTIONS(779), - [sym_false] = ACTIONS(779), - [sym_null] = ACTIONS(779), - [sym_inf] = ACTIONS(779), - [sym_nan] = ACTIONS(779), - [anon_sym_NA] = ACTIONS(779), - [anon_sym_NA_integer_] = ACTIONS(779), - [anon_sym_NA_real_] = ACTIONS(779), - [anon_sym_NA_complex_] = ACTIONS(779), - [anon_sym_NA_character_] = ACTIONS(779), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(777), - [sym__semicolon] = ACTIONS(777), - [sym__raw_string_literal] = ACTIONS(777), - [sym__external_open_parenthesis] = ACTIONS(777), - [sym__external_open_brace] = ACTIONS(777), - [sym__external_open_bracket] = ACTIONS(777), - [sym__external_open_bracket2] = ACTIONS(777), - }, - [426] = { - [sym_identifier] = ACTIONS(703), - [anon_sym_BSLASH] = ACTIONS(705), - [anon_sym_function] = ACTIONS(703), - [anon_sym_EQ] = ACTIONS(703), - [anon_sym_if] = ACTIONS(703), - [anon_sym_for] = ACTIONS(703), - [anon_sym_while] = ACTIONS(703), - [anon_sym_repeat] = ACTIONS(703), - [anon_sym_QMARK] = ACTIONS(705), - [anon_sym_TILDE] = ACTIONS(705), - [anon_sym_BANG] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(705), - [anon_sym_DASH] = ACTIONS(703), - [anon_sym_LT_DASH] = ACTIONS(705), - [anon_sym_LT_LT_DASH] = ACTIONS(705), - [anon_sym_COLON_EQ] = ACTIONS(705), - [anon_sym_DASH_GT] = ACTIONS(703), - [anon_sym_DASH_GT_GT] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(703), - [anon_sym_AMP] = ACTIONS(703), - [anon_sym_PIPE_PIPE] = ACTIONS(705), - [anon_sym_AMP_AMP] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(703), - [anon_sym_LT_EQ] = ACTIONS(705), - [anon_sym_GT] = ACTIONS(703), - [anon_sym_GT_EQ] = ACTIONS(705), - [anon_sym_EQ_EQ] = ACTIONS(705), - [anon_sym_BANG_EQ] = ACTIONS(705), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_SLASH] = ACTIONS(705), - [anon_sym_STAR_STAR] = ACTIONS(705), - [anon_sym_CARET] = ACTIONS(705), - [aux_sym_binary_operator_token1] = ACTIONS(705), - [anon_sym_PIPE_GT] = ACTIONS(705), - [anon_sym_COLON] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [anon_sym_AT] = ACTIONS(705), - [sym__hex_literal] = ACTIONS(705), - [sym__number_literal] = ACTIONS(703), - [anon_sym_SQUOTE] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [sym_dots] = ACTIONS(703), - [sym_dot_dot_i] = ACTIONS(705), - [sym_return] = ACTIONS(703), - [sym_next] = ACTIONS(703), - [sym_break] = ACTIONS(703), - [sym_true] = ACTIONS(703), - [sym_false] = ACTIONS(703), - [sym_null] = ACTIONS(703), - [sym_inf] = ACTIONS(703), - [sym_nan] = ACTIONS(703), - [anon_sym_NA] = ACTIONS(703), - [anon_sym_NA_integer_] = ACTIONS(703), - [anon_sym_NA_real_] = ACTIONS(703), - [anon_sym_NA_complex_] = ACTIONS(703), - [anon_sym_NA_character_] = ACTIONS(703), + [413] = { + [sym_identifier] = ACTIONS(755), + [anon_sym_BSLASH] = ACTIONS(753), + [anon_sym_function] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_repeat] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_DASH] = ACTIONS(753), + [anon_sym_LT_LT_DASH] = ACTIONS(753), + [anon_sym_COLON_EQ] = ACTIONS(753), + [anon_sym_DASH_GT] = ACTIONS(755), + [anon_sym_DASH_GT_GT] = ACTIONS(753), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(753), + [anon_sym_AMP_AMP] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(753), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_CARET] = ACTIONS(753), + [aux_sym_binary_operator_token1] = ACTIONS(753), + [anon_sym_PIPE_GT] = ACTIONS(753), + [anon_sym_COLON] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(753), + [sym__hex_literal] = ACTIONS(753), + [sym__number_literal] = ACTIONS(755), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(753), + [sym_dots] = ACTIONS(755), + [sym_dot_dot_i] = ACTIONS(753), + [sym_return] = ACTIONS(755), + [sym_next] = ACTIONS(755), + [sym_break] = ACTIONS(755), + [sym_true] = ACTIONS(755), + [sym_false] = ACTIONS(755), + [sym_null] = ACTIONS(755), + [sym_inf] = ACTIONS(755), + [sym_nan] = ACTIONS(755), + [anon_sym_NA] = ACTIONS(755), + [anon_sym_NA_integer_] = ACTIONS(755), + [anon_sym_NA_real_] = ACTIONS(755), + [anon_sym_NA_complex_] = ACTIONS(755), + [anon_sym_NA_character_] = ACTIONS(755), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(705), - [sym__semicolon] = ACTIONS(705), - [sym__raw_string_literal] = ACTIONS(705), - [sym__external_open_parenthesis] = ACTIONS(705), - [sym__external_open_brace] = ACTIONS(705), - [sym__external_close_brace] = ACTIONS(705), - [sym__external_open_bracket] = ACTIONS(705), - [sym__external_open_bracket2] = ACTIONS(705), + [sym__newline] = ACTIONS(753), + [sym__semicolon] = ACTIONS(753), + [sym__raw_string_literal] = ACTIONS(753), + [sym__external_open_parenthesis] = ACTIONS(753), + [sym__external_open_brace] = ACTIONS(753), + [sym__external_close_brace] = ACTIONS(753), + [sym__external_open_bracket] = ACTIONS(753), + [sym__external_open_bracket2] = ACTIONS(753), }, - [427] = { - [sym_identifier] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_function] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_if] = ACTIONS(819), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(819), - [anon_sym_repeat] = ACTIONS(819), - [anon_sym_QMARK] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_LT_DASH] = ACTIONS(821), - [anon_sym_LT_LT_DASH] = ACTIONS(821), - [anon_sym_COLON_EQ] = ACTIONS(821), - [anon_sym_DASH_GT] = ACTIONS(819), - [anon_sym_DASH_GT_GT] = ACTIONS(821), - [anon_sym_PIPE] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(819), - [anon_sym_PIPE_PIPE] = ACTIONS(821), - [anon_sym_AMP_AMP] = ACTIONS(821), - [anon_sym_LT] = ACTIONS(819), - [anon_sym_LT_EQ] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(819), - [anon_sym_GT_EQ] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(821), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(819), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_STAR_STAR] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(821), - [aux_sym_binary_operator_token1] = ACTIONS(821), - [anon_sym_PIPE_GT] = ACTIONS(821), - [anon_sym_COLON] = ACTIONS(819), - [anon_sym_DOLLAR] = ACTIONS(821), - [anon_sym_AT] = ACTIONS(821), - [sym__hex_literal] = ACTIONS(821), - [sym__number_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(821), - [sym_dots] = ACTIONS(819), - [sym_dot_dot_i] = ACTIONS(821), - [sym_return] = ACTIONS(819), - [sym_next] = ACTIONS(819), - [sym_break] = ACTIONS(819), - [sym_true] = ACTIONS(819), - [sym_false] = ACTIONS(819), - [sym_null] = ACTIONS(819), - [sym_inf] = ACTIONS(819), - [sym_nan] = ACTIONS(819), - [anon_sym_NA] = ACTIONS(819), - [anon_sym_NA_integer_] = ACTIONS(819), - [anon_sym_NA_real_] = ACTIONS(819), - [anon_sym_NA_complex_] = ACTIONS(819), - [anon_sym_NA_character_] = ACTIONS(819), + [414] = { + [sym_identifier] = ACTIONS(751), + [anon_sym_BSLASH] = ACTIONS(749), + [anon_sym_function] = ACTIONS(751), + [anon_sym_EQ] = ACTIONS(751), + [anon_sym_if] = ACTIONS(751), + [anon_sym_for] = ACTIONS(751), + [anon_sym_while] = ACTIONS(751), + [anon_sym_repeat] = ACTIONS(751), + [anon_sym_QMARK] = ACTIONS(749), + [anon_sym_TILDE] = ACTIONS(749), + [anon_sym_BANG] = ACTIONS(751), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_LT_DASH] = ACTIONS(749), + [anon_sym_LT_LT_DASH] = ACTIONS(749), + [anon_sym_COLON_EQ] = ACTIONS(749), + [anon_sym_DASH_GT] = ACTIONS(751), + [anon_sym_DASH_GT_GT] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE_PIPE] = ACTIONS(749), + [anon_sym_AMP_AMP] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(749), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_CARET] = ACTIONS(749), + [aux_sym_binary_operator_token1] = ACTIONS(749), + [anon_sym_PIPE_GT] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(751), + [anon_sym_DOLLAR] = ACTIONS(749), + [anon_sym_AT] = ACTIONS(749), + [sym__hex_literal] = ACTIONS(749), + [sym__number_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(749), + [sym_dots] = ACTIONS(751), + [sym_dot_dot_i] = ACTIONS(749), + [sym_return] = ACTIONS(751), + [sym_next] = ACTIONS(751), + [sym_break] = ACTIONS(751), + [sym_true] = ACTIONS(751), + [sym_false] = ACTIONS(751), + [sym_null] = ACTIONS(751), + [sym_inf] = ACTIONS(751), + [sym_nan] = ACTIONS(751), + [anon_sym_NA] = ACTIONS(751), + [anon_sym_NA_integer_] = ACTIONS(751), + [anon_sym_NA_real_] = ACTIONS(751), + [anon_sym_NA_complex_] = ACTIONS(751), + [anon_sym_NA_character_] = ACTIONS(751), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(821), - [sym__semicolon] = ACTIONS(821), - [sym__raw_string_literal] = ACTIONS(821), - [sym__external_open_parenthesis] = ACTIONS(821), - [sym__external_open_brace] = ACTIONS(821), - [sym__external_close_brace] = ACTIONS(821), - [sym__external_open_bracket] = ACTIONS(821), - [sym__external_open_bracket2] = ACTIONS(821), + [sym__newline] = ACTIONS(749), + [sym__semicolon] = ACTIONS(749), + [sym__raw_string_literal] = ACTIONS(749), + [sym__external_open_parenthesis] = ACTIONS(749), + [sym__external_open_brace] = ACTIONS(749), + [sym__external_close_brace] = ACTIONS(749), + [sym__external_open_bracket] = ACTIONS(749), + [sym__external_open_bracket2] = ACTIONS(749), }, - [428] = { - [sym_identifier] = ACTIONS(761), - [anon_sym_BSLASH] = ACTIONS(763), - [anon_sym_function] = ACTIONS(761), - [anon_sym_EQ] = ACTIONS(761), - [anon_sym_if] = ACTIONS(761), - [anon_sym_for] = ACTIONS(761), - [anon_sym_while] = ACTIONS(761), - [anon_sym_repeat] = ACTIONS(761), - [anon_sym_QMARK] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_LT_DASH] = ACTIONS(763), - [anon_sym_LT_LT_DASH] = ACTIONS(763), - [anon_sym_COLON_EQ] = ACTIONS(763), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DASH_GT_GT] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(761), - [anon_sym_AMP] = ACTIONS(761), - [anon_sym_PIPE_PIPE] = ACTIONS(763), - [anon_sym_AMP_AMP] = ACTIONS(763), - [anon_sym_LT] = ACTIONS(761), - [anon_sym_LT_EQ] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(761), - [anon_sym_GT_EQ] = ACTIONS(763), - [anon_sym_EQ_EQ] = ACTIONS(763), - [anon_sym_BANG_EQ] = ACTIONS(763), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(763), - [anon_sym_CARET] = ACTIONS(763), - [aux_sym_binary_operator_token1] = ACTIONS(763), - [anon_sym_PIPE_GT] = ACTIONS(763), - [anon_sym_COLON] = ACTIONS(761), - [anon_sym_DOLLAR] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(763), - [sym__hex_literal] = ACTIONS(763), - [sym__number_literal] = ACTIONS(761), - [anon_sym_SQUOTE] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(763), - [sym_dots] = ACTIONS(761), - [sym_dot_dot_i] = ACTIONS(763), - [sym_return] = ACTIONS(761), - [sym_next] = ACTIONS(761), - [sym_break] = ACTIONS(761), - [sym_true] = ACTIONS(761), - [sym_false] = ACTIONS(761), - [sym_null] = ACTIONS(761), - [sym_inf] = ACTIONS(761), - [sym_nan] = ACTIONS(761), - [anon_sym_NA] = ACTIONS(761), - [anon_sym_NA_integer_] = ACTIONS(761), - [anon_sym_NA_real_] = ACTIONS(761), - [anon_sym_NA_complex_] = ACTIONS(761), - [anon_sym_NA_character_] = ACTIONS(761), + [415] = { + [sym_identifier] = ACTIONS(745), + [anon_sym_BSLASH] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_EQ] = ACTIONS(745), + [anon_sym_if] = ACTIONS(745), + [anon_sym_for] = ACTIONS(745), + [anon_sym_while] = ACTIONS(745), + [anon_sym_repeat] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(743), + [anon_sym_TILDE] = ACTIONS(743), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_LT_DASH] = ACTIONS(743), + [anon_sym_LT_LT_DASH] = ACTIONS(743), + [anon_sym_COLON_EQ] = ACTIONS(743), + [anon_sym_DASH_GT] = ACTIONS(745), + [anon_sym_DASH_GT_GT] = ACTIONS(743), + [anon_sym_PIPE] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(743), + [anon_sym_LT] = ACTIONS(745), + [anon_sym_LT_EQ] = ACTIONS(743), + [anon_sym_GT] = ACTIONS(745), + [anon_sym_GT_EQ] = ACTIONS(743), + [anon_sym_EQ_EQ] = ACTIONS(743), + [anon_sym_BANG_EQ] = ACTIONS(743), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(743), + [anon_sym_STAR_STAR] = ACTIONS(743), + [anon_sym_CARET] = ACTIONS(743), + [aux_sym_binary_operator_token1] = ACTIONS(743), + [anon_sym_PIPE_GT] = ACTIONS(743), + [anon_sym_COLON] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(743), + [sym__hex_literal] = ACTIONS(743), + [sym__number_literal] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(743), + [sym_dots] = ACTIONS(745), + [sym_dot_dot_i] = ACTIONS(743), + [sym_return] = ACTIONS(745), + [sym_next] = ACTIONS(745), + [sym_break] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [sym_null] = ACTIONS(745), + [sym_inf] = ACTIONS(745), + [sym_nan] = ACTIONS(745), + [anon_sym_NA] = ACTIONS(745), + [anon_sym_NA_integer_] = ACTIONS(745), + [anon_sym_NA_real_] = ACTIONS(745), + [anon_sym_NA_complex_] = ACTIONS(745), + [anon_sym_NA_character_] = ACTIONS(745), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(763), - [sym__semicolon] = ACTIONS(763), - [sym__raw_string_literal] = ACTIONS(763), - [sym__external_open_parenthesis] = ACTIONS(763), - [sym__external_open_brace] = ACTIONS(763), - [sym__external_close_brace] = ACTIONS(763), - [sym__external_open_bracket] = ACTIONS(763), - [sym__external_open_bracket2] = ACTIONS(763), + [sym__newline] = ACTIONS(743), + [sym__semicolon] = ACTIONS(743), + [sym__raw_string_literal] = ACTIONS(743), + [sym__external_open_parenthesis] = ACTIONS(743), + [sym__external_open_brace] = ACTIONS(743), + [sym__external_close_brace] = ACTIONS(743), + [sym__external_open_bracket] = ACTIONS(743), + [sym__external_open_bracket2] = ACTIONS(743), }, - [429] = { - [ts_builtin_sym_end] = ACTIONS(821), - [sym_identifier] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_function] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_if] = ACTIONS(819), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(819), - [anon_sym_repeat] = ACTIONS(819), - [anon_sym_QMARK] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_LT_DASH] = ACTIONS(821), - [anon_sym_LT_LT_DASH] = ACTIONS(821), - [anon_sym_COLON_EQ] = ACTIONS(821), - [anon_sym_DASH_GT] = ACTIONS(819), - [anon_sym_DASH_GT_GT] = ACTIONS(821), - [anon_sym_PIPE] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(819), - [anon_sym_PIPE_PIPE] = ACTIONS(821), - [anon_sym_AMP_AMP] = ACTIONS(821), - [anon_sym_LT] = ACTIONS(819), - [anon_sym_LT_EQ] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(819), - [anon_sym_GT_EQ] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(821), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(819), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_STAR_STAR] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(821), - [aux_sym_binary_operator_token1] = ACTIONS(821), - [anon_sym_PIPE_GT] = ACTIONS(821), - [anon_sym_COLON] = ACTIONS(819), - [anon_sym_DOLLAR] = ACTIONS(821), - [anon_sym_AT] = ACTIONS(821), - [sym__hex_literal] = ACTIONS(821), - [sym__number_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(821), - [sym_dots] = ACTIONS(819), - [sym_dot_dot_i] = ACTIONS(821), - [sym_return] = ACTIONS(819), - [sym_next] = ACTIONS(819), - [sym_break] = ACTIONS(819), - [sym_true] = ACTIONS(819), - [sym_false] = ACTIONS(819), - [sym_null] = ACTIONS(819), - [sym_inf] = ACTIONS(819), - [sym_nan] = ACTIONS(819), - [anon_sym_NA] = ACTIONS(819), - [anon_sym_NA_integer_] = ACTIONS(819), - [anon_sym_NA_real_] = ACTIONS(819), - [anon_sym_NA_complex_] = ACTIONS(819), - [anon_sym_NA_character_] = ACTIONS(819), + [416] = { + [sym_identifier] = ACTIONS(741), + [anon_sym_BSLASH] = ACTIONS(739), + [anon_sym_function] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(741), + [anon_sym_if] = ACTIONS(741), + [anon_sym_for] = ACTIONS(741), + [anon_sym_while] = ACTIONS(741), + [anon_sym_repeat] = ACTIONS(741), + [anon_sym_QMARK] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_LT_DASH] = ACTIONS(739), + [anon_sym_LT_LT_DASH] = ACTIONS(739), + [anon_sym_COLON_EQ] = ACTIONS(739), + [anon_sym_DASH_GT] = ACTIONS(741), + [anon_sym_DASH_GT_GT] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(739), + [anon_sym_STAR] = ACTIONS(741), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(739), + [anon_sym_CARET] = ACTIONS(739), + [aux_sym_binary_operator_token1] = ACTIONS(739), + [anon_sym_PIPE_GT] = ACTIONS(739), + [anon_sym_COLON] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(739), + [anon_sym_AT] = ACTIONS(739), + [sym__hex_literal] = ACTIONS(739), + [sym__number_literal] = ACTIONS(741), + [anon_sym_SQUOTE] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [sym_dots] = ACTIONS(741), + [sym_dot_dot_i] = ACTIONS(739), + [sym_return] = ACTIONS(741), + [sym_next] = ACTIONS(741), + [sym_break] = ACTIONS(741), + [sym_true] = ACTIONS(741), + [sym_false] = ACTIONS(741), + [sym_null] = ACTIONS(741), + [sym_inf] = ACTIONS(741), + [sym_nan] = ACTIONS(741), + [anon_sym_NA] = ACTIONS(741), + [anon_sym_NA_integer_] = ACTIONS(741), + [anon_sym_NA_real_] = ACTIONS(741), + [anon_sym_NA_complex_] = ACTIONS(741), + [anon_sym_NA_character_] = ACTIONS(741), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(821), - [sym__semicolon] = ACTIONS(821), - [sym__raw_string_literal] = ACTIONS(821), - [sym__external_open_parenthesis] = ACTIONS(821), - [sym__external_open_brace] = ACTIONS(821), - [sym__external_open_bracket] = ACTIONS(821), - [sym__external_open_bracket2] = ACTIONS(821), + [sym__newline] = ACTIONS(739), + [sym__semicolon] = ACTIONS(739), + [sym__raw_string_literal] = ACTIONS(739), + [sym__external_open_parenthesis] = ACTIONS(739), + [sym__external_open_brace] = ACTIONS(739), + [sym__external_close_brace] = ACTIONS(739), + [sym__external_open_bracket] = ACTIONS(739), + [sym__external_open_bracket2] = ACTIONS(739), }, - [430] = { - [ts_builtin_sym_end] = ACTIONS(825), - [sym_identifier] = ACTIONS(823), - [anon_sym_BSLASH] = ACTIONS(825), - [anon_sym_function] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_repeat] = ACTIONS(823), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_TILDE] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(825), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [anon_sym_LT_LT_DASH] = ACTIONS(825), - [anon_sym_COLON_EQ] = ACTIONS(825), - [anon_sym_DASH_GT] = ACTIONS(823), - [anon_sym_DASH_GT_GT] = ACTIONS(825), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_PIPE_PIPE] = ACTIONS(825), - [anon_sym_AMP_AMP] = ACTIONS(825), - [anon_sym_LT] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(825), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(825), - [anon_sym_EQ_EQ] = ACTIONS(825), - [anon_sym_BANG_EQ] = ACTIONS(825), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(825), - [anon_sym_STAR_STAR] = ACTIONS(825), - [anon_sym_CARET] = ACTIONS(825), - [aux_sym_binary_operator_token1] = ACTIONS(825), - [anon_sym_PIPE_GT] = ACTIONS(825), - [anon_sym_COLON] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [sym__hex_literal] = ACTIONS(825), - [sym__number_literal] = ACTIONS(823), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(825), - [sym_dots] = ACTIONS(823), - [sym_dot_dot_i] = ACTIONS(825), - [sym_return] = ACTIONS(823), - [sym_next] = ACTIONS(823), - [sym_break] = ACTIONS(823), - [sym_true] = ACTIONS(823), - [sym_false] = ACTIONS(823), - [sym_null] = ACTIONS(823), - [sym_inf] = ACTIONS(823), - [sym_nan] = ACTIONS(823), - [anon_sym_NA] = ACTIONS(823), - [anon_sym_NA_integer_] = ACTIONS(823), - [anon_sym_NA_real_] = ACTIONS(823), - [anon_sym_NA_complex_] = ACTIONS(823), - [anon_sym_NA_character_] = ACTIONS(823), + [417] = { + [sym_identifier] = ACTIONS(771), + [anon_sym_BSLASH] = ACTIONS(769), + [anon_sym_function] = ACTIONS(771), + [anon_sym_EQ] = ACTIONS(771), + [anon_sym_if] = ACTIONS(771), + [anon_sym_for] = ACTIONS(771), + [anon_sym_while] = ACTIONS(771), + [anon_sym_repeat] = ACTIONS(771), + [anon_sym_QMARK] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(771), + [anon_sym_LT_DASH] = ACTIONS(769), + [anon_sym_LT_LT_DASH] = ACTIONS(769), + [anon_sym_COLON_EQ] = ACTIONS(769), + [anon_sym_DASH_GT] = ACTIONS(771), + [anon_sym_DASH_GT_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), + [aux_sym_binary_operator_token1] = ACTIONS(769), + [anon_sym_PIPE_GT] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(769), + [sym__hex_literal] = ACTIONS(769), + [sym__number_literal] = ACTIONS(771), + [anon_sym_SQUOTE] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [sym_dots] = ACTIONS(771), + [sym_dot_dot_i] = ACTIONS(769), + [sym_return] = ACTIONS(771), + [sym_next] = ACTIONS(771), + [sym_break] = ACTIONS(771), + [sym_true] = ACTIONS(771), + [sym_false] = ACTIONS(771), + [sym_null] = ACTIONS(771), + [sym_inf] = ACTIONS(771), + [sym_nan] = ACTIONS(771), + [anon_sym_NA] = ACTIONS(771), + [anon_sym_NA_integer_] = ACTIONS(771), + [anon_sym_NA_real_] = ACTIONS(771), + [anon_sym_NA_complex_] = ACTIONS(771), + [anon_sym_NA_character_] = ACTIONS(771), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(825), - [sym__semicolon] = ACTIONS(825), - [sym__raw_string_literal] = ACTIONS(825), - [sym__external_open_parenthesis] = ACTIONS(825), - [sym__external_open_brace] = ACTIONS(825), - [sym__external_open_bracket] = ACTIONS(825), - [sym__external_open_bracket2] = ACTIONS(825), + [sym__newline] = ACTIONS(769), + [sym__semicolon] = ACTIONS(769), + [sym__raw_string_literal] = ACTIONS(769), + [sym__external_open_parenthesis] = ACTIONS(769), + [sym__external_open_brace] = ACTIONS(769), + [sym__external_close_brace] = ACTIONS(769), + [sym__external_open_bracket] = ACTIONS(769), + [sym__external_open_bracket2] = ACTIONS(769), }, - [431] = { - [ts_builtin_sym_end] = ACTIONS(829), - [sym_identifier] = ACTIONS(827), - [anon_sym_BSLASH] = ACTIONS(829), - [anon_sym_function] = ACTIONS(827), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_if] = ACTIONS(827), - [anon_sym_for] = ACTIONS(827), - [anon_sym_while] = ACTIONS(827), - [anon_sym_repeat] = ACTIONS(827), - [anon_sym_QMARK] = ACTIONS(829), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(827), - [anon_sym_LT_DASH] = ACTIONS(829), - [anon_sym_LT_LT_DASH] = ACTIONS(829), - [anon_sym_COLON_EQ] = ACTIONS(829), - [anon_sym_DASH_GT] = ACTIONS(827), - [anon_sym_DASH_GT_GT] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(827), - [anon_sym_AMP] = ACTIONS(827), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_LT] = ACTIONS(827), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(827), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(827), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [aux_sym_binary_operator_token1] = ACTIONS(829), - [anon_sym_PIPE_GT] = ACTIONS(829), - [anon_sym_COLON] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(829), - [sym__hex_literal] = ACTIONS(829), - [sym__number_literal] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [sym_dots] = ACTIONS(827), - [sym_dot_dot_i] = ACTIONS(829), - [sym_return] = ACTIONS(827), - [sym_next] = ACTIONS(827), - [sym_break] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_null] = ACTIONS(827), - [sym_inf] = ACTIONS(827), - [sym_nan] = ACTIONS(827), - [anon_sym_NA] = ACTIONS(827), - [anon_sym_NA_integer_] = ACTIONS(827), - [anon_sym_NA_real_] = ACTIONS(827), - [anon_sym_NA_complex_] = ACTIONS(827), - [anon_sym_NA_character_] = ACTIONS(827), + [418] = { + [sym_function_definition] = STATE(134), + [sym_if_statement] = STATE(134), + [sym_for_statement] = STATE(134), + [sym_while_statement] = STATE(134), + [sym_repeat_statement] = STATE(134), + [sym_braced_expression] = STATE(134), + [sym_parenthesized_expression] = STATE(134), + [sym_call] = STATE(134), + [sym_subset] = STATE(134), + [sym_subset2] = STATE(134), + [sym_unary_operator] = STATE(134), + [sym_binary_operator] = STATE(134), + [sym_extract_operator] = STATE(134), + [sym_namespace_operator] = STATE(134), + [sym_integer] = STATE(134), + [sym_complex] = STATE(134), + [sym_float] = STATE(134), + [sym__float_literal] = STATE(319), + [sym_string] = STATE(322), + [sym__single_quoted_string] = STATE(318), + [sym__double_quoted_string] = STATE(317), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2036), + [sym_na] = STATE(134), + [sym__expression] = STATE(134), + [sym__open_parenthesis] = STATE(1092), + [sym__open_brace] = STATE(370), + [aux_sym_program_repeat1] = STATE(418), + [ts_builtin_sym_end] = ACTIONS(875), + [sym_identifier] = ACTIONS(877), + [anon_sym_BSLASH] = ACTIONS(880), + [anon_sym_function] = ACTIONS(883), + [anon_sym_if] = ACTIONS(886), + [anon_sym_for] = ACTIONS(889), + [anon_sym_while] = ACTIONS(892), + [anon_sym_repeat] = ACTIONS(895), + [anon_sym_QMARK] = ACTIONS(898), + [anon_sym_TILDE] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [sym__hex_literal] = ACTIONS(910), + [sym__number_literal] = ACTIONS(913), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(919), + [sym_dots] = ACTIONS(877), + [sym_dot_dot_i] = ACTIONS(922), + [sym_return] = ACTIONS(925), + [sym_next] = ACTIONS(925), + [sym_break] = ACTIONS(925), + [sym_true] = ACTIONS(925), + [sym_false] = ACTIONS(925), + [sym_null] = ACTIONS(925), + [sym_inf] = ACTIONS(925), + [sym_nan] = ACTIONS(925), + [anon_sym_NA] = ACTIONS(928), + [anon_sym_NA_integer_] = ACTIONS(928), + [anon_sym_NA_real_] = ACTIONS(928), + [anon_sym_NA_complex_] = ACTIONS(928), + [anon_sym_NA_character_] = ACTIONS(928), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(829), - [sym__semicolon] = ACTIONS(829), - [sym__raw_string_literal] = ACTIONS(829), - [sym__external_open_parenthesis] = ACTIONS(829), - [sym__external_open_brace] = ACTIONS(829), - [sym__external_open_bracket] = ACTIONS(829), - [sym__external_open_bracket2] = ACTIONS(829), + [sym__newline] = ACTIONS(931), + [sym__semicolon] = ACTIONS(931), + [sym__raw_string_literal] = ACTIONS(934), + [sym__external_open_parenthesis] = ACTIONS(937), + [sym__external_open_brace] = ACTIONS(940), }, - [432] = { + [419] = { [sym_identifier] = ACTIONS(803), - [anon_sym_BSLASH] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(801), [anon_sym_function] = ACTIONS(803), [anon_sym_EQ] = ACTIONS(803), [anon_sym_if] = ACTIONS(803), [anon_sym_for] = ACTIONS(803), [anon_sym_while] = ACTIONS(803), [anon_sym_repeat] = ACTIONS(803), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(803), - [anon_sym_LT_DASH] = ACTIONS(805), - [anon_sym_LT_LT_DASH] = ACTIONS(805), - [anon_sym_COLON_EQ] = ACTIONS(805), + [anon_sym_LT_DASH] = ACTIONS(801), + [anon_sym_LT_LT_DASH] = ACTIONS(801), + [anon_sym_COLON_EQ] = ACTIONS(801), [anon_sym_DASH_GT] = ACTIONS(803), - [anon_sym_DASH_GT_GT] = ACTIONS(805), + [anon_sym_DASH_GT_GT] = ACTIONS(801), [anon_sym_PIPE] = ACTIONS(803), [anon_sym_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(805), - [anon_sym_AMP_AMP] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_GT_EQ] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_STAR_STAR] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [aux_sym_binary_operator_token1] = ACTIONS(805), - [anon_sym_PIPE_GT] = ACTIONS(805), + [anon_sym_PIPE_PIPE] = ACTIONS(801), + [anon_sym_AMP_AMP] = ACTIONS(801), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [aux_sym_binary_operator_token1] = ACTIONS(801), + [anon_sym_PIPE_GT] = ACTIONS(801), [anon_sym_COLON] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_AT] = ACTIONS(805), - [sym__hex_literal] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_AT] = ACTIONS(801), + [sym__hex_literal] = ACTIONS(801), [sym__number_literal] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_DQUOTE] = ACTIONS(805), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), [sym_dots] = ACTIONS(803), - [sym_dot_dot_i] = ACTIONS(805), + [sym_dot_dot_i] = ACTIONS(801), [sym_return] = ACTIONS(803), [sym_next] = ACTIONS(803), [sym_break] = ACTIONS(803), @@ -37465,260 +36597,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NA_complex_] = ACTIONS(803), [anon_sym_NA_character_] = ACTIONS(803), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(805), - [sym__semicolon] = ACTIONS(805), - [sym__raw_string_literal] = ACTIONS(805), - [sym__external_open_parenthesis] = ACTIONS(805), - [sym__external_open_brace] = ACTIONS(805), - [sym__external_close_brace] = ACTIONS(805), - [sym__external_open_bracket] = ACTIONS(805), - [sym__external_open_bracket2] = ACTIONS(805), - }, - [433] = { - [ts_builtin_sym_end] = ACTIONS(781), - [sym_identifier] = ACTIONS(783), - [anon_sym_BSLASH] = ACTIONS(781), - [anon_sym_function] = ACTIONS(783), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_if] = ACTIONS(783), - [anon_sym_for] = ACTIONS(783), - [anon_sym_while] = ACTIONS(783), - [anon_sym_repeat] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_LT_DASH] = ACTIONS(781), - [anon_sym_LT_LT_DASH] = ACTIONS(781), - [anon_sym_COLON_EQ] = ACTIONS(781), - [anon_sym_DASH_GT] = ACTIONS(783), - [anon_sym_DASH_GT_GT] = ACTIONS(781), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PIPE_PIPE] = ACTIONS(781), - [anon_sym_AMP_AMP] = ACTIONS(781), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_LT_EQ] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(781), - [anon_sym_EQ_EQ] = ACTIONS(781), - [anon_sym_BANG_EQ] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(781), - [anon_sym_STAR_STAR] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [aux_sym_binary_operator_token1] = ACTIONS(781), - [anon_sym_PIPE_GT] = ACTIONS(781), - [anon_sym_COLON] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_AT] = ACTIONS(781), - [sym__hex_literal] = ACTIONS(781), - [sym__number_literal] = ACTIONS(783), - [anon_sym_SQUOTE] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym_dots] = ACTIONS(783), - [sym_dot_dot_i] = ACTIONS(781), - [sym_return] = ACTIONS(783), - [sym_next] = ACTIONS(783), - [sym_break] = ACTIONS(783), - [sym_true] = ACTIONS(783), - [sym_false] = ACTIONS(783), - [sym_null] = ACTIONS(783), - [sym_inf] = ACTIONS(783), - [sym_nan] = ACTIONS(783), - [anon_sym_NA] = ACTIONS(783), - [anon_sym_NA_integer_] = ACTIONS(783), - [anon_sym_NA_real_] = ACTIONS(783), - [anon_sym_NA_complex_] = ACTIONS(783), - [anon_sym_NA_character_] = ACTIONS(783), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(781), - [sym__semicolon] = ACTIONS(781), - [sym__raw_string_literal] = ACTIONS(781), - [sym__external_open_parenthesis] = ACTIONS(781), - [sym__external_open_brace] = ACTIONS(781), - [sym__external_open_bracket] = ACTIONS(781), - [sym__external_open_bracket2] = ACTIONS(781), + [sym__newline] = ACTIONS(801), + [sym__semicolon] = ACTIONS(801), + [sym__raw_string_literal] = ACTIONS(801), + [sym__external_open_parenthesis] = ACTIONS(801), + [sym__external_open_brace] = ACTIONS(801), + [sym__external_close_brace] = ACTIONS(801), + [sym__external_open_bracket] = ACTIONS(801), + [sym__external_open_bracket2] = ACTIONS(801), }, - [434] = { - [sym_identifier] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_function] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_if] = ACTIONS(765), - [anon_sym_for] = ACTIONS(765), - [anon_sym_while] = ACTIONS(765), - [anon_sym_repeat] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(767), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LT_DASH] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(767), - [anon_sym_COLON_EQ] = ACTIONS(767), - [anon_sym_DASH_GT] = ACTIONS(765), - [anon_sym_DASH_GT_GT] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_LT_EQ] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_GT_EQ] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(767), - [anon_sym_BANG_EQ] = ACTIONS(767), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_STAR_STAR] = ACTIONS(767), - [anon_sym_CARET] = ACTIONS(767), - [aux_sym_binary_operator_token1] = ACTIONS(767), - [anon_sym_PIPE_GT] = ACTIONS(767), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [anon_sym_AT] = ACTIONS(767), - [sym__hex_literal] = ACTIONS(767), - [sym__number_literal] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(767), - [sym_dots] = ACTIONS(765), - [sym_dot_dot_i] = ACTIONS(767), - [sym_return] = ACTIONS(765), - [sym_next] = ACTIONS(765), - [sym_break] = ACTIONS(765), - [sym_true] = ACTIONS(765), - [sym_false] = ACTIONS(765), - [sym_null] = ACTIONS(765), - [sym_inf] = ACTIONS(765), - [sym_nan] = ACTIONS(765), - [anon_sym_NA] = ACTIONS(765), - [anon_sym_NA_integer_] = ACTIONS(765), - [anon_sym_NA_real_] = ACTIONS(765), - [anon_sym_NA_complex_] = ACTIONS(765), - [anon_sym_NA_character_] = ACTIONS(765), + [420] = { + [ts_builtin_sym_end] = ACTIONS(818), + [sym_identifier] = ACTIONS(820), + [anon_sym_BSLASH] = ACTIONS(818), + [anon_sym_function] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(820), + [anon_sym_if] = ACTIONS(820), + [anon_sym_for] = ACTIONS(820), + [anon_sym_while] = ACTIONS(820), + [anon_sym_repeat] = ACTIONS(820), + [anon_sym_QMARK] = ACTIONS(818), + [anon_sym_TILDE] = ACTIONS(818), + [anon_sym_BANG] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(818), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_LT_DASH] = ACTIONS(818), + [anon_sym_LT_LT_DASH] = ACTIONS(818), + [anon_sym_COLON_EQ] = ACTIONS(818), + [anon_sym_DASH_GT] = ACTIONS(820), + [anon_sym_DASH_GT_GT] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_GT_EQ] = ACTIONS(818), + [anon_sym_EQ_EQ] = ACTIONS(818), + [anon_sym_BANG_EQ] = ACTIONS(818), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(818), + [anon_sym_STAR_STAR] = ACTIONS(818), + [anon_sym_CARET] = ACTIONS(818), + [aux_sym_binary_operator_token1] = ACTIONS(818), + [anon_sym_PIPE_GT] = ACTIONS(818), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_DOLLAR] = ACTIONS(818), + [anon_sym_AT] = ACTIONS(818), + [sym__hex_literal] = ACTIONS(818), + [sym__number_literal] = ACTIONS(820), + [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(818), + [sym_dots] = ACTIONS(820), + [sym_dot_dot_i] = ACTIONS(818), + [sym_return] = ACTIONS(820), + [sym_next] = ACTIONS(820), + [sym_break] = ACTIONS(820), + [sym_true] = ACTIONS(820), + [sym_false] = ACTIONS(820), + [sym_null] = ACTIONS(820), + [sym_inf] = ACTIONS(820), + [sym_nan] = ACTIONS(820), + [anon_sym_NA] = ACTIONS(820), + [anon_sym_NA_integer_] = ACTIONS(820), + [anon_sym_NA_real_] = ACTIONS(820), + [anon_sym_NA_complex_] = ACTIONS(820), + [anon_sym_NA_character_] = ACTIONS(820), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(767), - [sym__semicolon] = ACTIONS(767), - [sym__raw_string_literal] = ACTIONS(767), - [sym__external_open_parenthesis] = ACTIONS(767), - [sym__external_open_brace] = ACTIONS(767), - [sym__external_close_brace] = ACTIONS(767), - [sym__external_open_bracket] = ACTIONS(767), - [sym__external_open_bracket2] = ACTIONS(767), + [sym__newline] = ACTIONS(818), + [sym__semicolon] = ACTIONS(818), + [sym__raw_string_literal] = ACTIONS(818), + [sym__external_open_parenthesis] = ACTIONS(818), + [sym__external_open_brace] = ACTIONS(818), + [sym__external_open_bracket] = ACTIONS(818), + [sym__external_open_bracket2] = ACTIONS(818), }, - [435] = { - [sym_identifier] = ACTIONS(807), + [421] = { + [ts_builtin_sym_end] = ACTIONS(809), + [sym_identifier] = ACTIONS(811), [anon_sym_BSLASH] = ACTIONS(809), - [anon_sym_function] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_repeat] = ACTIONS(807), + [anon_sym_function] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(811), + [anon_sym_if] = ACTIONS(811), + [anon_sym_for] = ACTIONS(811), + [anon_sym_while] = ACTIONS(811), + [anon_sym_repeat] = ACTIONS(811), [anon_sym_QMARK] = ACTIONS(809), [anon_sym_TILDE] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(811), [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(811), [anon_sym_LT_DASH] = ACTIONS(809), [anon_sym_LT_LT_DASH] = ACTIONS(809), [anon_sym_COLON_EQ] = ACTIONS(809), - [anon_sym_DASH_GT] = ACTIONS(807), + [anon_sym_DASH_GT] = ACTIONS(811), [anon_sym_DASH_GT_GT] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), [anon_sym_PIPE_PIPE] = ACTIONS(809), [anon_sym_AMP_AMP] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(811), [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(811), [anon_sym_GT_EQ] = ACTIONS(809), [anon_sym_EQ_EQ] = ACTIONS(809), [anon_sym_BANG_EQ] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(811), [anon_sym_SLASH] = ACTIONS(809), [anon_sym_STAR_STAR] = ACTIONS(809), [anon_sym_CARET] = ACTIONS(809), [aux_sym_binary_operator_token1] = ACTIONS(809), [anon_sym_PIPE_GT] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(807), + [anon_sym_COLON] = ACTIONS(811), [anon_sym_DOLLAR] = ACTIONS(809), [anon_sym_AT] = ACTIONS(809), [sym__hex_literal] = ACTIONS(809), - [sym__number_literal] = ACTIONS(807), + [sym__number_literal] = ACTIONS(811), [anon_sym_SQUOTE] = ACTIONS(809), [anon_sym_DQUOTE] = ACTIONS(809), - [sym_dots] = ACTIONS(807), - [sym_dot_dot_i] = ACTIONS(809), - [sym_return] = ACTIONS(807), - [sym_next] = ACTIONS(807), - [sym_break] = ACTIONS(807), - [sym_true] = ACTIONS(807), - [sym_false] = ACTIONS(807), - [sym_null] = ACTIONS(807), - [sym_inf] = ACTIONS(807), - [sym_nan] = ACTIONS(807), - [anon_sym_NA] = ACTIONS(807), - [anon_sym_NA_integer_] = ACTIONS(807), - [anon_sym_NA_real_] = ACTIONS(807), - [anon_sym_NA_complex_] = ACTIONS(807), - [anon_sym_NA_character_] = ACTIONS(807), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(809), - [sym__semicolon] = ACTIONS(809), - [sym__raw_string_literal] = ACTIONS(809), - [sym__external_open_parenthesis] = ACTIONS(809), - [sym__external_open_brace] = ACTIONS(809), - [sym__external_close_brace] = ACTIONS(809), - [sym__external_open_bracket] = ACTIONS(809), - [sym__external_open_bracket2] = ACTIONS(809), - }, - [436] = { - [sym_identifier] = ACTIONS(811), - [anon_sym_BSLASH] = ACTIONS(813), - [anon_sym_function] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(811), - [anon_sym_if] = ACTIONS(811), - [anon_sym_for] = ACTIONS(811), - [anon_sym_while] = ACTIONS(811), - [anon_sym_repeat] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_LT_DASH] = ACTIONS(813), - [anon_sym_LT_LT_DASH] = ACTIONS(813), - [anon_sym_COLON_EQ] = ACTIONS(813), - [anon_sym_DASH_GT] = ACTIONS(811), - [anon_sym_DASH_GT_GT] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(813), - [anon_sym_AMP_AMP] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_EQ] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(813), - [anon_sym_EQ_EQ] = ACTIONS(813), - [anon_sym_BANG_EQ] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(813), - [anon_sym_CARET] = ACTIONS(813), - [aux_sym_binary_operator_token1] = ACTIONS(813), - [anon_sym_PIPE_GT] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_AT] = ACTIONS(813), - [sym__hex_literal] = ACTIONS(813), - [sym__number_literal] = ACTIONS(811), - [anon_sym_SQUOTE] = ACTIONS(813), - [anon_sym_DQUOTE] = ACTIONS(813), [sym_dots] = ACTIONS(811), - [sym_dot_dot_i] = ACTIONS(813), + [sym_dot_dot_i] = ACTIONS(809), [sym_return] = ACTIONS(811), [sym_next] = ACTIONS(811), [sym_break] = ACTIONS(811), @@ -37733,218 +36732,417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NA_complex_] = ACTIONS(811), [anon_sym_NA_character_] = ACTIONS(811), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(813), - [sym__semicolon] = ACTIONS(813), - [sym__raw_string_literal] = ACTIONS(813), - [sym__external_open_parenthesis] = ACTIONS(813), - [sym__external_open_brace] = ACTIONS(813), - [sym__external_close_brace] = ACTIONS(813), - [sym__external_open_bracket] = ACTIONS(813), - [sym__external_open_bracket2] = ACTIONS(813), + [sym__newline] = ACTIONS(809), + [sym__semicolon] = ACTIONS(809), + [sym__raw_string_literal] = ACTIONS(809), + [sym__external_open_parenthesis] = ACTIONS(809), + [sym__external_open_brace] = ACTIONS(809), + [sym__external_open_bracket] = ACTIONS(809), + [sym__external_open_bracket2] = ACTIONS(809), }, - [437] = { - [sym_identifier] = ACTIONS(815), - [anon_sym_BSLASH] = ACTIONS(817), - [anon_sym_function] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_if] = ACTIONS(815), - [anon_sym_for] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [anon_sym_repeat] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(817), - [anon_sym_TILDE] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_LT_DASH] = ACTIONS(817), - [anon_sym_LT_LT_DASH] = ACTIONS(817), - [anon_sym_COLON_EQ] = ACTIONS(817), - [anon_sym_DASH_GT] = ACTIONS(815), - [anon_sym_DASH_GT_GT] = ACTIONS(817), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(815), - [anon_sym_PIPE_PIPE] = ACTIONS(817), - [anon_sym_AMP_AMP] = ACTIONS(817), - [anon_sym_LT] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(817), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_GT_EQ] = ACTIONS(817), - [anon_sym_EQ_EQ] = ACTIONS(817), - [anon_sym_BANG_EQ] = ACTIONS(817), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(817), - [anon_sym_STAR_STAR] = ACTIONS(817), - [anon_sym_CARET] = ACTIONS(817), - [aux_sym_binary_operator_token1] = ACTIONS(817), - [anon_sym_PIPE_GT] = ACTIONS(817), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(817), - [anon_sym_AT] = ACTIONS(817), - [sym__hex_literal] = ACTIONS(817), - [sym__number_literal] = ACTIONS(815), - [anon_sym_SQUOTE] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(817), - [sym_dots] = ACTIONS(815), - [sym_dot_dot_i] = ACTIONS(817), - [sym_return] = ACTIONS(815), - [sym_next] = ACTIONS(815), - [sym_break] = ACTIONS(815), - [sym_true] = ACTIONS(815), - [sym_false] = ACTIONS(815), - [sym_null] = ACTIONS(815), - [sym_inf] = ACTIONS(815), - [sym_nan] = ACTIONS(815), - [anon_sym_NA] = ACTIONS(815), - [anon_sym_NA_integer_] = ACTIONS(815), - [anon_sym_NA_real_] = ACTIONS(815), - [anon_sym_NA_complex_] = ACTIONS(815), - [anon_sym_NA_character_] = ACTIONS(815), + [422] = { + [sym_function_definition] = STATE(134), + [sym_if_statement] = STATE(134), + [sym_for_statement] = STATE(134), + [sym_while_statement] = STATE(134), + [sym_repeat_statement] = STATE(134), + [sym_braced_expression] = STATE(134), + [sym_parenthesized_expression] = STATE(134), + [sym_call] = STATE(134), + [sym_subset] = STATE(134), + [sym_subset2] = STATE(134), + [sym_unary_operator] = STATE(134), + [sym_binary_operator] = STATE(134), + [sym_extract_operator] = STATE(134), + [sym_namespace_operator] = STATE(134), + [sym_integer] = STATE(134), + [sym_complex] = STATE(134), + [sym_float] = STATE(134), + [sym__float_literal] = STATE(319), + [sym_string] = STATE(322), + [sym__single_quoted_string] = STATE(318), + [sym__double_quoted_string] = STATE(317), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2036), + [sym_na] = STATE(134), + [sym__expression] = STATE(134), + [sym__open_parenthesis] = STATE(1092), + [sym__open_brace] = STATE(370), + [aux_sym_program_repeat1] = STATE(418), + [ts_builtin_sym_end] = ACTIONS(943), + [sym_identifier] = ACTIONS(945), + [anon_sym_BSLASH] = ACTIONS(947), + [anon_sym_function] = ACTIONS(949), + [anon_sym_if] = ACTIONS(951), + [anon_sym_for] = ACTIONS(953), + [anon_sym_while] = ACTIONS(955), + [anon_sym_repeat] = ACTIONS(957), + [anon_sym_QMARK] = ACTIONS(959), + [anon_sym_TILDE] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [sym__hex_literal] = ACTIONS(967), + [sym__number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_DQUOTE] = ACTIONS(541), + [sym_dots] = ACTIONS(945), + [sym_dot_dot_i] = ACTIONS(971), + [sym_return] = ACTIONS(973), + [sym_next] = ACTIONS(973), + [sym_break] = ACTIONS(973), + [sym_true] = ACTIONS(973), + [sym_false] = ACTIONS(973), + [sym_null] = ACTIONS(973), + [sym_inf] = ACTIONS(973), + [sym_nan] = ACTIONS(973), + [anon_sym_NA] = ACTIONS(975), + [anon_sym_NA_integer_] = ACTIONS(975), + [anon_sym_NA_real_] = ACTIONS(975), + [anon_sym_NA_complex_] = ACTIONS(975), + [anon_sym_NA_character_] = ACTIONS(975), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(817), - [sym__semicolon] = ACTIONS(817), - [sym__raw_string_literal] = ACTIONS(817), - [sym__external_open_parenthesis] = ACTIONS(817), - [sym__external_open_brace] = ACTIONS(817), - [sym__external_close_brace] = ACTIONS(817), - [sym__external_open_bracket] = ACTIONS(817), - [sym__external_open_bracket2] = ACTIONS(817), + [sym__newline] = ACTIONS(977), + [sym__semicolon] = ACTIONS(977), + [sym__raw_string_literal] = ACTIONS(547), + [sym__external_open_parenthesis] = ACTIONS(979), + [sym__external_open_brace] = ACTIONS(981), }, - [438] = { - [sym_function_definition] = STATE(166), - [sym_if_statement] = STATE(166), - [sym_for_statement] = STATE(166), - [sym_while_statement] = STATE(166), - [sym_repeat_statement] = STATE(166), - [sym_braced_expression] = STATE(166), - [sym_parenthesized_expression] = STATE(166), - [sym_call] = STATE(166), - [sym_subset] = STATE(166), - [sym_subset2] = STATE(166), - [sym_unary_operator] = STATE(166), - [sym_binary_operator] = STATE(166), - [sym_extract_operator] = STATE(166), - [sym_namespace_operator] = STATE(166), - [sym_integer] = STATE(166), - [sym_complex] = STATE(166), - [sym_float] = STATE(166), - [sym__float_literal] = STATE(323), - [sym_string] = STATE(320), - [sym__single_quoted_string] = STATE(325), - [sym__double_quoted_string] = STATE(326), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2049), - [sym_na] = STATE(166), - [sym__expression] = STATE(166), - [sym__open_parenthesis] = STATE(1053), - [sym__open_brace] = STATE(378), - [aux_sym_program_repeat1] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(1011), - [sym_identifier] = ACTIONS(1013), - [anon_sym_BSLASH] = ACTIONS(1015), - [anon_sym_function] = ACTIONS(1017), - [anon_sym_if] = ACTIONS(1019), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_repeat] = ACTIONS(1025), - [anon_sym_QMARK] = ACTIONS(1027), - [anon_sym_TILDE] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [sym__hex_literal] = ACTIONS(1035), - [sym__number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(501), - [sym_dots] = ACTIONS(1013), - [sym_dot_dot_i] = ACTIONS(1039), - [sym_return] = ACTIONS(1041), - [sym_next] = ACTIONS(1041), - [sym_break] = ACTIONS(1041), - [sym_true] = ACTIONS(1041), - [sym_false] = ACTIONS(1041), - [sym_null] = ACTIONS(1041), - [sym_inf] = ACTIONS(1041), - [sym_nan] = ACTIONS(1041), - [anon_sym_NA] = ACTIONS(1043), - [anon_sym_NA_integer_] = ACTIONS(1043), - [anon_sym_NA_real_] = ACTIONS(1043), - [anon_sym_NA_complex_] = ACTIONS(1043), - [anon_sym_NA_character_] = ACTIONS(1043), + [423] = { + [ts_builtin_sym_end] = ACTIONS(775), + [sym_identifier] = ACTIONS(777), + [anon_sym_BSLASH] = ACTIONS(775), + [anon_sym_function] = ACTIONS(777), + [anon_sym_EQ] = ACTIONS(777), + [anon_sym_if] = ACTIONS(777), + [anon_sym_for] = ACTIONS(777), + [anon_sym_while] = ACTIONS(777), + [anon_sym_repeat] = ACTIONS(777), + [anon_sym_QMARK] = ACTIONS(775), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_LT_DASH] = ACTIONS(775), + [anon_sym_LT_LT_DASH] = ACTIONS(775), + [anon_sym_COLON_EQ] = ACTIONS(775), + [anon_sym_DASH_GT] = ACTIONS(777), + [anon_sym_DASH_GT_GT] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(777), + [anon_sym_PIPE_PIPE] = ACTIONS(775), + [anon_sym_AMP_AMP] = ACTIONS(775), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_LT_EQ] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_EQ] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(775), + [anon_sym_BANG_EQ] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(777), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(775), + [anon_sym_CARET] = ACTIONS(775), + [aux_sym_binary_operator_token1] = ACTIONS(775), + [anon_sym_PIPE_GT] = ACTIONS(775), + [anon_sym_COLON] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(775), + [anon_sym_AT] = ACTIONS(775), + [sym__hex_literal] = ACTIONS(775), + [sym__number_literal] = ACTIONS(777), + [anon_sym_SQUOTE] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [sym_dots] = ACTIONS(777), + [sym_dot_dot_i] = ACTIONS(775), + [sym_return] = ACTIONS(777), + [sym_next] = ACTIONS(777), + [sym_break] = ACTIONS(777), + [sym_true] = ACTIONS(777), + [sym_false] = ACTIONS(777), + [sym_null] = ACTIONS(777), + [sym_inf] = ACTIONS(777), + [sym_nan] = ACTIONS(777), + [anon_sym_NA] = ACTIONS(777), + [anon_sym_NA_integer_] = ACTIONS(777), + [anon_sym_NA_real_] = ACTIONS(777), + [anon_sym_NA_complex_] = ACTIONS(777), + [anon_sym_NA_character_] = ACTIONS(777), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1045), - [sym__semicolon] = ACTIONS(1045), - [sym__raw_string_literal] = ACTIONS(505), - [sym__external_open_parenthesis] = ACTIONS(1047), - [sym__external_open_brace] = ACTIONS(1049), + [sym__newline] = ACTIONS(775), + [sym__semicolon] = ACTIONS(775), + [sym__raw_string_literal] = ACTIONS(775), + [sym__external_open_parenthesis] = ACTIONS(775), + [sym__external_open_brace] = ACTIONS(775), + [sym__external_open_bracket] = ACTIONS(775), + [sym__external_open_bracket2] = ACTIONS(775), }, - [439] = { - [sym_identifier] = ACTIONS(699), - [anon_sym_BSLASH] = ACTIONS(701), - [anon_sym_function] = ACTIONS(699), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_if] = ACTIONS(699), - [anon_sym_for] = ACTIONS(699), - [anon_sym_while] = ACTIONS(699), - [anon_sym_repeat] = ACTIONS(699), - [anon_sym_QMARK] = ACTIONS(701), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_BANG] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_LT_DASH] = ACTIONS(701), - [anon_sym_LT_LT_DASH] = ACTIONS(701), - [anon_sym_COLON_EQ] = ACTIONS(701), - [anon_sym_DASH_GT] = ACTIONS(699), - [anon_sym_DASH_GT_GT] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE_PIPE] = ACTIONS(701), - [anon_sym_AMP_AMP] = ACTIONS(701), - [anon_sym_LT] = ACTIONS(699), - [anon_sym_LT_EQ] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_GT_EQ] = ACTIONS(701), - [anon_sym_EQ_EQ] = ACTIONS(701), - [anon_sym_BANG_EQ] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(701), - [anon_sym_STAR_STAR] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [aux_sym_binary_operator_token1] = ACTIONS(701), - [anon_sym_PIPE_GT] = ACTIONS(701), - [anon_sym_COLON] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(701), - [anon_sym_AT] = ACTIONS(701), - [sym__hex_literal] = ACTIONS(701), - [sym__number_literal] = ACTIONS(699), - [anon_sym_SQUOTE] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(701), - [sym_dots] = ACTIONS(699), - [sym_dot_dot_i] = ACTIONS(701), - [sym_return] = ACTIONS(699), - [sym_next] = ACTIONS(699), - [sym_break] = ACTIONS(699), - [sym_true] = ACTIONS(699), - [sym_false] = ACTIONS(699), - [sym_null] = ACTIONS(699), - [sym_inf] = ACTIONS(699), - [sym_nan] = ACTIONS(699), - [anon_sym_NA] = ACTIONS(699), - [anon_sym_NA_integer_] = ACTIONS(699), - [anon_sym_NA_real_] = ACTIONS(699), - [anon_sym_NA_complex_] = ACTIONS(699), - [anon_sym_NA_character_] = ACTIONS(699), + [424] = { + [ts_builtin_sym_end] = ACTIONS(735), + [sym_identifier] = ACTIONS(737), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_function] = ACTIONS(737), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_if] = ACTIONS(737), + [anon_sym_for] = ACTIONS(737), + [anon_sym_while] = ACTIONS(737), + [anon_sym_repeat] = ACTIONS(737), + [anon_sym_QMARK] = ACTIONS(735), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(735), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LT_DASH] = ACTIONS(735), + [anon_sym_LT_LT_DASH] = ACTIONS(735), + [anon_sym_COLON_EQ] = ACTIONS(735), + [anon_sym_DASH_GT] = ACTIONS(737), + [anon_sym_DASH_GT_GT] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_LT_EQ] = ACTIONS(735), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_GT_EQ] = ACTIONS(735), + [anon_sym_EQ_EQ] = ACTIONS(735), + [anon_sym_BANG_EQ] = ACTIONS(735), + [anon_sym_STAR] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(735), + [anon_sym_STAR_STAR] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(735), + [aux_sym_binary_operator_token1] = ACTIONS(735), + [anon_sym_PIPE_GT] = ACTIONS(735), + [anon_sym_COLON] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(735), + [anon_sym_AT] = ACTIONS(735), + [sym__hex_literal] = ACTIONS(735), + [sym__number_literal] = ACTIONS(737), + [anon_sym_SQUOTE] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [sym_dots] = ACTIONS(737), + [sym_dot_dot_i] = ACTIONS(735), + [sym_return] = ACTIONS(737), + [sym_next] = ACTIONS(737), + [sym_break] = ACTIONS(737), + [sym_true] = ACTIONS(737), + [sym_false] = ACTIONS(737), + [sym_null] = ACTIONS(737), + [sym_inf] = ACTIONS(737), + [sym_nan] = ACTIONS(737), + [anon_sym_NA] = ACTIONS(737), + [anon_sym_NA_integer_] = ACTIONS(737), + [anon_sym_NA_real_] = ACTIONS(737), + [anon_sym_NA_complex_] = ACTIONS(737), + [anon_sym_NA_character_] = ACTIONS(737), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(701), - [sym__semicolon] = ACTIONS(701), - [sym__raw_string_literal] = ACTIONS(701), - [sym__external_open_parenthesis] = ACTIONS(701), - [sym__external_open_brace] = ACTIONS(701), - [sym__external_close_brace] = ACTIONS(701), - [sym__external_open_bracket] = ACTIONS(701), - [sym__external_open_bracket2] = ACTIONS(701), + [sym__newline] = ACTIONS(735), + [sym__semicolon] = ACTIONS(735), + [sym__raw_string_literal] = ACTIONS(735), + [sym__external_open_parenthesis] = ACTIONS(735), + [sym__external_open_brace] = ACTIONS(735), + [sym__external_open_bracket] = ACTIONS(735), + [sym__external_open_bracket2] = ACTIONS(735), }, - [440] = { - [ts_builtin_sym_end] = ACTIONS(793), + [425] = { + [ts_builtin_sym_end] = ACTIONS(761), + [sym_identifier] = ACTIONS(763), + [anon_sym_BSLASH] = ACTIONS(761), + [anon_sym_function] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_if] = ACTIONS(763), + [anon_sym_for] = ACTIONS(763), + [anon_sym_while] = ACTIONS(763), + [anon_sym_repeat] = ACTIONS(763), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_LT_DASH] = ACTIONS(761), + [anon_sym_LT_LT_DASH] = ACTIONS(761), + [anon_sym_COLON_EQ] = ACTIONS(761), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_DASH_GT_GT] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(761), + [anon_sym_AMP_AMP] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(761), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_CARET] = ACTIONS(761), + [aux_sym_binary_operator_token1] = ACTIONS(761), + [anon_sym_PIPE_GT] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(761), + [sym__hex_literal] = ACTIONS(761), + [sym__number_literal] = ACTIONS(763), + [anon_sym_SQUOTE] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(761), + [sym_dots] = ACTIONS(763), + [sym_dot_dot_i] = ACTIONS(761), + [sym_return] = ACTIONS(763), + [sym_next] = ACTIONS(763), + [sym_break] = ACTIONS(763), + [sym_true] = ACTIONS(763), + [sym_false] = ACTIONS(763), + [sym_null] = ACTIONS(763), + [sym_inf] = ACTIONS(763), + [sym_nan] = ACTIONS(763), + [anon_sym_NA] = ACTIONS(763), + [anon_sym_NA_integer_] = ACTIONS(763), + [anon_sym_NA_real_] = ACTIONS(763), + [anon_sym_NA_complex_] = ACTIONS(763), + [anon_sym_NA_character_] = ACTIONS(763), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(761), + [sym__semicolon] = ACTIONS(761), + [sym__raw_string_literal] = ACTIONS(761), + [sym__external_open_parenthesis] = ACTIONS(761), + [sym__external_open_brace] = ACTIONS(761), + [sym__external_open_bracket] = ACTIONS(761), + [sym__external_open_bracket2] = ACTIONS(761), + }, + [426] = { + [sym_identifier] = ACTIONS(781), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_if] = ACTIONS(781), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(781), + [anon_sym_repeat] = ACTIONS(781), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_COLON_EQ] = ACTIONS(779), + [anon_sym_DASH_GT] = ACTIONS(781), + [anon_sym_DASH_GT_GT] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(781), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_LT_EQ] = ACTIONS(779), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_EQ] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(779), + [anon_sym_BANG_EQ] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(779), + [anon_sym_STAR_STAR] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [aux_sym_binary_operator_token1] = ACTIONS(779), + [anon_sym_PIPE_GT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(781), + [anon_sym_DOLLAR] = ACTIONS(779), + [anon_sym_AT] = ACTIONS(779), + [sym__hex_literal] = ACTIONS(779), + [sym__number_literal] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [sym_dots] = ACTIONS(781), + [sym_dot_dot_i] = ACTIONS(779), + [sym_return] = ACTIONS(781), + [sym_next] = ACTIONS(781), + [sym_break] = ACTIONS(781), + [sym_true] = ACTIONS(781), + [sym_false] = ACTIONS(781), + [sym_null] = ACTIONS(781), + [sym_inf] = ACTIONS(781), + [sym_nan] = ACTIONS(781), + [anon_sym_NA] = ACTIONS(781), + [anon_sym_NA_integer_] = ACTIONS(781), + [anon_sym_NA_real_] = ACTIONS(781), + [anon_sym_NA_complex_] = ACTIONS(781), + [anon_sym_NA_character_] = ACTIONS(781), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(779), + [sym__semicolon] = ACTIONS(779), + [sym__raw_string_literal] = ACTIONS(779), + [sym__external_open_parenthesis] = ACTIONS(779), + [sym__external_open_brace] = ACTIONS(779), + [sym__external_close_brace] = ACTIONS(779), + [sym__external_open_bracket] = ACTIONS(779), + [sym__external_open_bracket2] = ACTIONS(779), + }, + [427] = { + [sym_identifier] = ACTIONS(791), + [anon_sym_BSLASH] = ACTIONS(789), + [anon_sym_function] = ACTIONS(791), + [anon_sym_EQ] = ACTIONS(791), + [anon_sym_if] = ACTIONS(791), + [anon_sym_for] = ACTIONS(791), + [anon_sym_while] = ACTIONS(791), + [anon_sym_repeat] = ACTIONS(791), + [anon_sym_QMARK] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_LT_DASH] = ACTIONS(789), + [anon_sym_LT_LT_DASH] = ACTIONS(789), + [anon_sym_COLON_EQ] = ACTIONS(789), + [anon_sym_DASH_GT] = ACTIONS(791), + [anon_sym_DASH_GT_GT] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(789), + [anon_sym_AMP_AMP] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(789), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(789), + [anon_sym_EQ_EQ] = ACTIONS(789), + [anon_sym_BANG_EQ] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(789), + [anon_sym_CARET] = ACTIONS(789), + [aux_sym_binary_operator_token1] = ACTIONS(789), + [anon_sym_PIPE_GT] = ACTIONS(789), + [anon_sym_COLON] = ACTIONS(791), + [anon_sym_DOLLAR] = ACTIONS(789), + [anon_sym_AT] = ACTIONS(789), + [sym__hex_literal] = ACTIONS(789), + [sym__number_literal] = ACTIONS(791), + [anon_sym_SQUOTE] = ACTIONS(789), + [anon_sym_DQUOTE] = ACTIONS(789), + [sym_dots] = ACTIONS(791), + [sym_dot_dot_i] = ACTIONS(789), + [sym_return] = ACTIONS(791), + [sym_next] = ACTIONS(791), + [sym_break] = ACTIONS(791), + [sym_true] = ACTIONS(791), + [sym_false] = ACTIONS(791), + [sym_null] = ACTIONS(791), + [sym_inf] = ACTIONS(791), + [sym_nan] = ACTIONS(791), + [anon_sym_NA] = ACTIONS(791), + [anon_sym_NA_integer_] = ACTIONS(791), + [anon_sym_NA_real_] = ACTIONS(791), + [anon_sym_NA_complex_] = ACTIONS(791), + [anon_sym_NA_character_] = ACTIONS(791), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(789), + [sym__semicolon] = ACTIONS(789), + [sym__raw_string_literal] = ACTIONS(789), + [sym__external_open_parenthesis] = ACTIONS(789), + [sym__external_open_brace] = ACTIONS(789), + [sym__external_close_brace] = ACTIONS(789), + [sym__external_open_bracket] = ACTIONS(789), + [sym__external_open_bracket2] = ACTIONS(789), + }, + [428] = { [sym_identifier] = ACTIONS(795), [anon_sym_BSLASH] = ACTIONS(793), [anon_sym_function] = ACTIONS(795), @@ -38007,544 +37205,1349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal] = ACTIONS(793), [sym__external_open_parenthesis] = ACTIONS(793), [sym__external_open_brace] = ACTIONS(793), + [sym__external_close_brace] = ACTIONS(793), [sym__external_open_bracket] = ACTIONS(793), [sym__external_open_bracket2] = ACTIONS(793), }, + [429] = { + [sym_identifier] = ACTIONS(799), + [anon_sym_BSLASH] = ACTIONS(797), + [anon_sym_function] = ACTIONS(799), + [anon_sym_EQ] = ACTIONS(799), + [anon_sym_if] = ACTIONS(799), + [anon_sym_for] = ACTIONS(799), + [anon_sym_while] = ACTIONS(799), + [anon_sym_repeat] = ACTIONS(799), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_BANG] = ACTIONS(799), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(797), + [anon_sym_LT_LT_DASH] = ACTIONS(797), + [anon_sym_COLON_EQ] = ACTIONS(797), + [anon_sym_DASH_GT] = ACTIONS(799), + [anon_sym_DASH_GT_GT] = ACTIONS(797), + [anon_sym_PIPE] = ACTIONS(799), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_LT_EQ] = ACTIONS(797), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_EQ] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_BANG_EQ] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_STAR_STAR] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [aux_sym_binary_operator_token1] = ACTIONS(797), + [anon_sym_PIPE_GT] = ACTIONS(797), + [anon_sym_COLON] = ACTIONS(799), + [anon_sym_DOLLAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [sym__hex_literal] = ACTIONS(797), + [sym__number_literal] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(797), + [sym_dots] = ACTIONS(799), + [sym_dot_dot_i] = ACTIONS(797), + [sym_return] = ACTIONS(799), + [sym_next] = ACTIONS(799), + [sym_break] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_null] = ACTIONS(799), + [sym_inf] = ACTIONS(799), + [sym_nan] = ACTIONS(799), + [anon_sym_NA] = ACTIONS(799), + [anon_sym_NA_integer_] = ACTIONS(799), + [anon_sym_NA_real_] = ACTIONS(799), + [anon_sym_NA_complex_] = ACTIONS(799), + [anon_sym_NA_character_] = ACTIONS(799), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(797), + [sym__semicolon] = ACTIONS(797), + [sym__raw_string_literal] = ACTIONS(797), + [sym__external_open_parenthesis] = ACTIONS(797), + [sym__external_open_brace] = ACTIONS(797), + [sym__external_close_brace] = ACTIONS(797), + [sym__external_open_bracket] = ACTIONS(797), + [sym__external_open_bracket2] = ACTIONS(797), + }, + [430] = { + [ts_builtin_sym_end] = ACTIONS(739), + [sym_identifier] = ACTIONS(741), + [anon_sym_BSLASH] = ACTIONS(739), + [anon_sym_function] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(741), + [anon_sym_if] = ACTIONS(741), + [anon_sym_for] = ACTIONS(741), + [anon_sym_while] = ACTIONS(741), + [anon_sym_repeat] = ACTIONS(741), + [anon_sym_QMARK] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_LT_DASH] = ACTIONS(739), + [anon_sym_LT_LT_DASH] = ACTIONS(739), + [anon_sym_COLON_EQ] = ACTIONS(739), + [anon_sym_DASH_GT] = ACTIONS(741), + [anon_sym_DASH_GT_GT] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_LT_EQ] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(739), + [anon_sym_STAR] = ACTIONS(741), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(739), + [anon_sym_CARET] = ACTIONS(739), + [aux_sym_binary_operator_token1] = ACTIONS(739), + [anon_sym_PIPE_GT] = ACTIONS(739), + [anon_sym_COLON] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(739), + [anon_sym_AT] = ACTIONS(739), + [sym__hex_literal] = ACTIONS(739), + [sym__number_literal] = ACTIONS(741), + [anon_sym_SQUOTE] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [sym_dots] = ACTIONS(741), + [sym_dot_dot_i] = ACTIONS(739), + [sym_return] = ACTIONS(741), + [sym_next] = ACTIONS(741), + [sym_break] = ACTIONS(741), + [sym_true] = ACTIONS(741), + [sym_false] = ACTIONS(741), + [sym_null] = ACTIONS(741), + [sym_inf] = ACTIONS(741), + [sym_nan] = ACTIONS(741), + [anon_sym_NA] = ACTIONS(741), + [anon_sym_NA_integer_] = ACTIONS(741), + [anon_sym_NA_real_] = ACTIONS(741), + [anon_sym_NA_complex_] = ACTIONS(741), + [anon_sym_NA_character_] = ACTIONS(741), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(739), + [sym__semicolon] = ACTIONS(739), + [sym__raw_string_literal] = ACTIONS(739), + [sym__external_open_parenthesis] = ACTIONS(739), + [sym__external_open_brace] = ACTIONS(739), + [sym__external_open_bracket] = ACTIONS(739), + [sym__external_open_bracket2] = ACTIONS(739), + }, + [431] = { + [sym_identifier] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(805), + [anon_sym_function] = ACTIONS(807), + [anon_sym_EQ] = ACTIONS(807), + [anon_sym_if] = ACTIONS(807), + [anon_sym_for] = ACTIONS(807), + [anon_sym_while] = ACTIONS(807), + [anon_sym_repeat] = ACTIONS(807), + [anon_sym_QMARK] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_LT_DASH] = ACTIONS(805), + [anon_sym_LT_LT_DASH] = ACTIONS(805), + [anon_sym_COLON_EQ] = ACTIONS(805), + [anon_sym_DASH_GT] = ACTIONS(807), + [anon_sym_DASH_GT_GT] = ACTIONS(805), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(805), + [anon_sym_AMP_AMP] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(805), + [anon_sym_STAR_STAR] = ACTIONS(805), + [anon_sym_CARET] = ACTIONS(805), + [aux_sym_binary_operator_token1] = ACTIONS(805), + [anon_sym_PIPE_GT] = ACTIONS(805), + [anon_sym_COLON] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(805), + [anon_sym_AT] = ACTIONS(805), + [sym__hex_literal] = ACTIONS(805), + [sym__number_literal] = ACTIONS(807), + [anon_sym_SQUOTE] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(805), + [sym_dots] = ACTIONS(807), + [sym_dot_dot_i] = ACTIONS(805), + [sym_return] = ACTIONS(807), + [sym_next] = ACTIONS(807), + [sym_break] = ACTIONS(807), + [sym_true] = ACTIONS(807), + [sym_false] = ACTIONS(807), + [sym_null] = ACTIONS(807), + [sym_inf] = ACTIONS(807), + [sym_nan] = ACTIONS(807), + [anon_sym_NA] = ACTIONS(807), + [anon_sym_NA_integer_] = ACTIONS(807), + [anon_sym_NA_real_] = ACTIONS(807), + [anon_sym_NA_complex_] = ACTIONS(807), + [anon_sym_NA_character_] = ACTIONS(807), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(805), + [sym__semicolon] = ACTIONS(805), + [sym__raw_string_literal] = ACTIONS(805), + [sym__external_open_parenthesis] = ACTIONS(805), + [sym__external_open_brace] = ACTIONS(805), + [sym__external_close_brace] = ACTIONS(805), + [sym__external_open_bracket] = ACTIONS(805), + [sym__external_open_bracket2] = ACTIONS(805), + }, + [432] = { + [sym_identifier] = ACTIONS(811), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_function] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(811), + [anon_sym_if] = ACTIONS(811), + [anon_sym_for] = ACTIONS(811), + [anon_sym_while] = ACTIONS(811), + [anon_sym_repeat] = ACTIONS(811), + [anon_sym_QMARK] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_LT_DASH] = ACTIONS(809), + [anon_sym_LT_LT_DASH] = ACTIONS(809), + [anon_sym_COLON_EQ] = ACTIONS(809), + [anon_sym_DASH_GT] = ACTIONS(811), + [anon_sym_DASH_GT_GT] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(809), + [anon_sym_AMP_AMP] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_SLASH] = ACTIONS(809), + [anon_sym_STAR_STAR] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(809), + [aux_sym_binary_operator_token1] = ACTIONS(809), + [anon_sym_PIPE_GT] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(809), + [anon_sym_AT] = ACTIONS(809), + [sym__hex_literal] = ACTIONS(809), + [sym__number_literal] = ACTIONS(811), + [anon_sym_SQUOTE] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(809), + [sym_dots] = ACTIONS(811), + [sym_dot_dot_i] = ACTIONS(809), + [sym_return] = ACTIONS(811), + [sym_next] = ACTIONS(811), + [sym_break] = ACTIONS(811), + [sym_true] = ACTIONS(811), + [sym_false] = ACTIONS(811), + [sym_null] = ACTIONS(811), + [sym_inf] = ACTIONS(811), + [sym_nan] = ACTIONS(811), + [anon_sym_NA] = ACTIONS(811), + [anon_sym_NA_integer_] = ACTIONS(811), + [anon_sym_NA_real_] = ACTIONS(811), + [anon_sym_NA_complex_] = ACTIONS(811), + [anon_sym_NA_character_] = ACTIONS(811), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(809), + [sym__semicolon] = ACTIONS(809), + [sym__raw_string_literal] = ACTIONS(809), + [sym__external_open_parenthesis] = ACTIONS(809), + [sym__external_open_brace] = ACTIONS(809), + [sym__external_close_brace] = ACTIONS(809), + [sym__external_open_bracket] = ACTIONS(809), + [sym__external_open_bracket2] = ACTIONS(809), + }, + [433] = { + [sym_identifier] = ACTIONS(820), + [anon_sym_BSLASH] = ACTIONS(818), + [anon_sym_function] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(820), + [anon_sym_if] = ACTIONS(820), + [anon_sym_for] = ACTIONS(820), + [anon_sym_while] = ACTIONS(820), + [anon_sym_repeat] = ACTIONS(820), + [anon_sym_QMARK] = ACTIONS(818), + [anon_sym_TILDE] = ACTIONS(818), + [anon_sym_BANG] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(818), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_LT_DASH] = ACTIONS(818), + [anon_sym_LT_LT_DASH] = ACTIONS(818), + [anon_sym_COLON_EQ] = ACTIONS(818), + [anon_sym_DASH_GT] = ACTIONS(820), + [anon_sym_DASH_GT_GT] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_GT_EQ] = ACTIONS(818), + [anon_sym_EQ_EQ] = ACTIONS(818), + [anon_sym_BANG_EQ] = ACTIONS(818), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(818), + [anon_sym_STAR_STAR] = ACTIONS(818), + [anon_sym_CARET] = ACTIONS(818), + [aux_sym_binary_operator_token1] = ACTIONS(818), + [anon_sym_PIPE_GT] = ACTIONS(818), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_DOLLAR] = ACTIONS(818), + [anon_sym_AT] = ACTIONS(818), + [sym__hex_literal] = ACTIONS(818), + [sym__number_literal] = ACTIONS(820), + [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(818), + [sym_dots] = ACTIONS(820), + [sym_dot_dot_i] = ACTIONS(818), + [sym_return] = ACTIONS(820), + [sym_next] = ACTIONS(820), + [sym_break] = ACTIONS(820), + [sym_true] = ACTIONS(820), + [sym_false] = ACTIONS(820), + [sym_null] = ACTIONS(820), + [sym_inf] = ACTIONS(820), + [sym_nan] = ACTIONS(820), + [anon_sym_NA] = ACTIONS(820), + [anon_sym_NA_integer_] = ACTIONS(820), + [anon_sym_NA_real_] = ACTIONS(820), + [anon_sym_NA_complex_] = ACTIONS(820), + [anon_sym_NA_character_] = ACTIONS(820), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(818), + [sym__semicolon] = ACTIONS(818), + [sym__raw_string_literal] = ACTIONS(818), + [sym__external_open_parenthesis] = ACTIONS(818), + [sym__external_open_brace] = ACTIONS(818), + [sym__external_close_brace] = ACTIONS(818), + [sym__external_open_bracket] = ACTIONS(818), + [sym__external_open_bracket2] = ACTIONS(818), + }, + [434] = { + [ts_builtin_sym_end] = ACTIONS(861), + [sym_identifier] = ACTIONS(859), + [anon_sym_BSLASH] = ACTIONS(861), + [anon_sym_function] = ACTIONS(859), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [anon_sym_repeat] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LT_DASH] = ACTIONS(861), + [anon_sym_LT_LT_DASH] = ACTIONS(861), + [anon_sym_COLON_EQ] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(859), + [anon_sym_DASH_GT_GT] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_STAR_STAR] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [aux_sym_binary_operator_token1] = ACTIONS(861), + [anon_sym_PIPE_GT] = ACTIONS(861), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(861), + [sym__hex_literal] = ACTIONS(861), + [sym__number_literal] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym_dots] = ACTIONS(859), + [sym_dot_dot_i] = ACTIONS(861), + [sym_return] = ACTIONS(859), + [sym_next] = ACTIONS(859), + [sym_break] = ACTIONS(859), + [sym_true] = ACTIONS(859), + [sym_false] = ACTIONS(859), + [sym_null] = ACTIONS(859), + [sym_inf] = ACTIONS(859), + [sym_nan] = ACTIONS(859), + [anon_sym_NA] = ACTIONS(859), + [anon_sym_NA_integer_] = ACTIONS(859), + [anon_sym_NA_real_] = ACTIONS(859), + [anon_sym_NA_complex_] = ACTIONS(859), + [anon_sym_NA_character_] = ACTIONS(859), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(861), + [sym__semicolon] = ACTIONS(861), + [sym__raw_string_literal] = ACTIONS(861), + [sym__external_open_parenthesis] = ACTIONS(861), + [sym__external_open_brace] = ACTIONS(861), + [sym__external_open_bracket] = ACTIONS(861), + [sym__external_open_bracket2] = ACTIONS(861), + }, + [435] = { + [sym_function_definition] = STATE(134), + [sym_if_statement] = STATE(134), + [sym_for_statement] = STATE(134), + [sym_while_statement] = STATE(134), + [sym_repeat_statement] = STATE(134), + [sym_braced_expression] = STATE(134), + [sym_parenthesized_expression] = STATE(134), + [sym_call] = STATE(134), + [sym_subset] = STATE(134), + [sym_subset2] = STATE(134), + [sym_unary_operator] = STATE(134), + [sym_binary_operator] = STATE(134), + [sym_extract_operator] = STATE(134), + [sym_namespace_operator] = STATE(134), + [sym_integer] = STATE(134), + [sym_complex] = STATE(134), + [sym_float] = STATE(134), + [sym__float_literal] = STATE(319), + [sym_string] = STATE(322), + [sym__single_quoted_string] = STATE(318), + [sym__double_quoted_string] = STATE(317), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2036), + [sym_na] = STATE(134), + [sym__expression] = STATE(134), + [sym__open_parenthesis] = STATE(1092), + [sym__open_brace] = STATE(370), + [aux_sym_program_repeat1] = STATE(422), + [ts_builtin_sym_end] = ACTIONS(983), + [sym_identifier] = ACTIONS(945), + [anon_sym_BSLASH] = ACTIONS(947), + [anon_sym_function] = ACTIONS(949), + [anon_sym_if] = ACTIONS(951), + [anon_sym_for] = ACTIONS(953), + [anon_sym_while] = ACTIONS(955), + [anon_sym_repeat] = ACTIONS(957), + [anon_sym_QMARK] = ACTIONS(959), + [anon_sym_TILDE] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [sym__hex_literal] = ACTIONS(967), + [sym__number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_DQUOTE] = ACTIONS(541), + [sym_dots] = ACTIONS(945), + [sym_dot_dot_i] = ACTIONS(971), + [sym_return] = ACTIONS(973), + [sym_next] = ACTIONS(973), + [sym_break] = ACTIONS(973), + [sym_true] = ACTIONS(973), + [sym_false] = ACTIONS(973), + [sym_null] = ACTIONS(973), + [sym_inf] = ACTIONS(973), + [sym_nan] = ACTIONS(973), + [anon_sym_NA] = ACTIONS(975), + [anon_sym_NA_integer_] = ACTIONS(975), + [anon_sym_NA_real_] = ACTIONS(975), + [anon_sym_NA_complex_] = ACTIONS(975), + [anon_sym_NA_character_] = ACTIONS(975), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(985), + [sym__semicolon] = ACTIONS(985), + [sym__raw_string_literal] = ACTIONS(547), + [sym__external_open_parenthesis] = ACTIONS(979), + [sym__external_open_brace] = ACTIONS(981), + }, + [436] = { + [sym_identifier] = ACTIONS(767), + [anon_sym_BSLASH] = ACTIONS(765), + [anon_sym_function] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(767), + [anon_sym_if] = ACTIONS(767), + [anon_sym_for] = ACTIONS(767), + [anon_sym_while] = ACTIONS(767), + [anon_sym_repeat] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_LT_DASH] = ACTIONS(765), + [anon_sym_LT_LT_DASH] = ACTIONS(765), + [anon_sym_COLON_EQ] = ACTIONS(765), + [anon_sym_DASH_GT] = ACTIONS(767), + [anon_sym_DASH_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [aux_sym_binary_operator_token1] = ACTIONS(765), + [anon_sym_PIPE_GT] = ACTIONS(765), + [anon_sym_COLON] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [sym__hex_literal] = ACTIONS(765), + [sym__number_literal] = ACTIONS(767), + [anon_sym_SQUOTE] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [sym_dots] = ACTIONS(767), + [sym_dot_dot_i] = ACTIONS(765), + [sym_return] = ACTIONS(767), + [sym_next] = ACTIONS(767), + [sym_break] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_inf] = ACTIONS(767), + [sym_nan] = ACTIONS(767), + [anon_sym_NA] = ACTIONS(767), + [anon_sym_NA_integer_] = ACTIONS(767), + [anon_sym_NA_real_] = ACTIONS(767), + [anon_sym_NA_complex_] = ACTIONS(767), + [anon_sym_NA_character_] = ACTIONS(767), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(765), + [sym__semicolon] = ACTIONS(765), + [sym__raw_string_literal] = ACTIONS(765), + [sym__external_open_parenthesis] = ACTIONS(765), + [sym__external_open_brace] = ACTIONS(765), + [sym__external_close_brace] = ACTIONS(765), + [sym__external_open_bracket] = ACTIONS(765), + [sym__external_open_bracket2] = ACTIONS(765), + }, + [437] = { + [sym_identifier] = ACTIONS(763), + [anon_sym_BSLASH] = ACTIONS(761), + [anon_sym_function] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_if] = ACTIONS(763), + [anon_sym_for] = ACTIONS(763), + [anon_sym_while] = ACTIONS(763), + [anon_sym_repeat] = ACTIONS(763), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_LT_DASH] = ACTIONS(761), + [anon_sym_LT_LT_DASH] = ACTIONS(761), + [anon_sym_COLON_EQ] = ACTIONS(761), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_DASH_GT_GT] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(761), + [anon_sym_AMP_AMP] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(761), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_CARET] = ACTIONS(761), + [aux_sym_binary_operator_token1] = ACTIONS(761), + [anon_sym_PIPE_GT] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(761), + [sym__hex_literal] = ACTIONS(761), + [sym__number_literal] = ACTIONS(763), + [anon_sym_SQUOTE] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(761), + [sym_dots] = ACTIONS(763), + [sym_dot_dot_i] = ACTIONS(761), + [sym_return] = ACTIONS(763), + [sym_next] = ACTIONS(763), + [sym_break] = ACTIONS(763), + [sym_true] = ACTIONS(763), + [sym_false] = ACTIONS(763), + [sym_null] = ACTIONS(763), + [sym_inf] = ACTIONS(763), + [sym_nan] = ACTIONS(763), + [anon_sym_NA] = ACTIONS(763), + [anon_sym_NA_integer_] = ACTIONS(763), + [anon_sym_NA_real_] = ACTIONS(763), + [anon_sym_NA_complex_] = ACTIONS(763), + [anon_sym_NA_character_] = ACTIONS(763), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(761), + [sym__semicolon] = ACTIONS(761), + [sym__raw_string_literal] = ACTIONS(761), + [sym__external_open_parenthesis] = ACTIONS(761), + [sym__external_open_brace] = ACTIONS(761), + [sym__external_close_brace] = ACTIONS(761), + [sym__external_open_bracket] = ACTIONS(761), + [sym__external_open_bracket2] = ACTIONS(761), + }, + [438] = { + [sym_function_definition] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_repeat_statement] = STATE(239), + [sym_braced_expression] = STATE(239), + [sym_parenthesized_expression] = STATE(239), + [sym_call] = STATE(239), + [sym_subset] = STATE(239), + [sym_subset2] = STATE(239), + [sym_unary_operator] = STATE(239), + [sym_binary_operator] = STATE(239), + [sym_extract_operator] = STATE(239), + [sym_namespace_operator] = STATE(239), + [sym_integer] = STATE(239), + [sym_complex] = STATE(239), + [sym_float] = STATE(239), + [sym__float_literal] = STATE(309), + [sym_string] = STATE(310), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(314), + [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2051), + [sym_na] = STATE(239), + [sym__expression] = STATE(239), + [sym__open_parenthesis] = STATE(1106), + [sym__open_brace] = STATE(354), + [aux_sym_braced_expression_repeat1] = STATE(438), + [sym_identifier] = ACTIONS(987), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_function] = ACTIONS(993), + [anon_sym_if] = ACTIONS(996), + [anon_sym_for] = ACTIONS(999), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_repeat] = ACTIONS(1005), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_TILDE] = ACTIONS(1011), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [sym__hex_literal] = ACTIONS(1020), + [sym__number_literal] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym_dots] = ACTIONS(987), + [sym_dot_dot_i] = ACTIONS(1032), + [sym_return] = ACTIONS(1035), + [sym_next] = ACTIONS(1035), + [sym_break] = ACTIONS(1035), + [sym_true] = ACTIONS(1035), + [sym_false] = ACTIONS(1035), + [sym_null] = ACTIONS(1035), + [sym_inf] = ACTIONS(1035), + [sym_nan] = ACTIONS(1035), + [anon_sym_NA] = ACTIONS(1038), + [anon_sym_NA_integer_] = ACTIONS(1038), + [anon_sym_NA_real_] = ACTIONS(1038), + [anon_sym_NA_complex_] = ACTIONS(1038), + [anon_sym_NA_character_] = ACTIONS(1038), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1041), + [sym__semicolon] = ACTIONS(1041), + [sym__raw_string_literal] = ACTIONS(1044), + [sym__external_open_parenthesis] = ACTIONS(1047), + [sym__external_open_brace] = ACTIONS(1050), + [sym__external_close_brace] = ACTIONS(1053), + }, + [439] = { + [ts_builtin_sym_end] = ACTIONS(838), + [sym_identifier] = ACTIONS(836), + [anon_sym_BSLASH] = ACTIONS(838), + [anon_sym_function] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_for] = ACTIONS(836), + [anon_sym_while] = ACTIONS(836), + [anon_sym_repeat] = ACTIONS(836), + [anon_sym_QMARK] = ACTIONS(838), + [anon_sym_TILDE] = ACTIONS(838), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(838), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_LT_DASH] = ACTIONS(838), + [anon_sym_LT_LT_DASH] = ACTIONS(838), + [anon_sym_COLON_EQ] = ACTIONS(838), + [anon_sym_DASH_GT] = ACTIONS(836), + [anon_sym_DASH_GT_GT] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(838), + [anon_sym_AMP_AMP] = ACTIONS(838), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_LT_EQ] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_EQ] = ACTIONS(838), + [anon_sym_EQ_EQ] = ACTIONS(838), + [anon_sym_BANG_EQ] = ACTIONS(838), + [anon_sym_STAR] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(838), + [anon_sym_STAR_STAR] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(838), + [aux_sym_binary_operator_token1] = ACTIONS(838), + [anon_sym_PIPE_GT] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_AT] = ACTIONS(838), + [sym__hex_literal] = ACTIONS(838), + [sym__number_literal] = ACTIONS(836), + [anon_sym_SQUOTE] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [sym_dots] = ACTIONS(836), + [sym_dot_dot_i] = ACTIONS(838), + [sym_return] = ACTIONS(836), + [sym_next] = ACTIONS(836), + [sym_break] = ACTIONS(836), + [sym_true] = ACTIONS(836), + [sym_false] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [sym_inf] = ACTIONS(836), + [sym_nan] = ACTIONS(836), + [anon_sym_NA] = ACTIONS(836), + [anon_sym_NA_integer_] = ACTIONS(836), + [anon_sym_NA_real_] = ACTIONS(836), + [anon_sym_NA_complex_] = ACTIONS(836), + [anon_sym_NA_character_] = ACTIONS(836), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(838), + [sym__semicolon] = ACTIONS(838), + [sym__raw_string_literal] = ACTIONS(838), + [sym__external_open_parenthesis] = ACTIONS(838), + [sym__external_open_brace] = ACTIONS(838), + [sym__external_open_bracket] = ACTIONS(838), + [sym__external_open_bracket2] = ACTIONS(838), + }, + [440] = { + [ts_builtin_sym_end] = ACTIONS(822), + [sym_identifier] = ACTIONS(824), + [anon_sym_BSLASH] = ACTIONS(822), + [anon_sym_function] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_if] = ACTIONS(824), + [anon_sym_for] = ACTIONS(824), + [anon_sym_while] = ACTIONS(824), + [anon_sym_repeat] = ACTIONS(824), + [anon_sym_QMARK] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(824), + [anon_sym_LT_DASH] = ACTIONS(822), + [anon_sym_LT_LT_DASH] = ACTIONS(822), + [anon_sym_COLON_EQ] = ACTIONS(822), + [anon_sym_DASH_GT] = ACTIONS(824), + [anon_sym_DASH_GT_GT] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(822), + [anon_sym_AMP_AMP] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(824), + [anon_sym_LT_EQ] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(822), + [anon_sym_EQ_EQ] = ACTIONS(822), + [anon_sym_BANG_EQ] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(824), + [anon_sym_SLASH] = ACTIONS(822), + [anon_sym_STAR_STAR] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [aux_sym_binary_operator_token1] = ACTIONS(822), + [anon_sym_PIPE_GT] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(822), + [sym__hex_literal] = ACTIONS(822), + [sym__number_literal] = ACTIONS(824), + [anon_sym_SQUOTE] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym_dots] = ACTIONS(824), + [sym_dot_dot_i] = ACTIONS(822), + [sym_return] = ACTIONS(824), + [sym_next] = ACTIONS(824), + [sym_break] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_inf] = ACTIONS(824), + [sym_nan] = ACTIONS(824), + [anon_sym_NA] = ACTIONS(824), + [anon_sym_NA_integer_] = ACTIONS(824), + [anon_sym_NA_real_] = ACTIONS(824), + [anon_sym_NA_complex_] = ACTIONS(824), + [anon_sym_NA_character_] = ACTIONS(824), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(822), + [sym__semicolon] = ACTIONS(822), + [sym__raw_string_literal] = ACTIONS(822), + [sym__external_open_parenthesis] = ACTIONS(822), + [sym__external_open_brace] = ACTIONS(822), + [sym__external_open_bracket] = ACTIONS(822), + [sym__external_open_bracket2] = ACTIONS(822), + }, [441] = { - [ts_builtin_sym_end] = ACTIONS(785), - [sym_identifier] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_if] = ACTIONS(787), - [anon_sym_for] = ACTIONS(787), - [anon_sym_while] = ACTIONS(787), - [anon_sym_repeat] = ACTIONS(787), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_TILDE] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LT_DASH] = ACTIONS(785), - [anon_sym_LT_LT_DASH] = ACTIONS(785), - [anon_sym_COLON_EQ] = ACTIONS(785), - [anon_sym_DASH_GT] = ACTIONS(787), - [anon_sym_DASH_GT_GT] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_SLASH] = ACTIONS(785), - [anon_sym_STAR_STAR] = ACTIONS(785), - [anon_sym_CARET] = ACTIONS(785), - [aux_sym_binary_operator_token1] = ACTIONS(785), - [anon_sym_PIPE_GT] = ACTIONS(785), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_AT] = ACTIONS(785), - [sym__hex_literal] = ACTIONS(785), - [sym__number_literal] = ACTIONS(787), - [anon_sym_SQUOTE] = ACTIONS(785), - [anon_sym_DQUOTE] = ACTIONS(785), - [sym_dots] = ACTIONS(787), - [sym_dot_dot_i] = ACTIONS(785), - [sym_return] = ACTIONS(787), - [sym_next] = ACTIONS(787), - [sym_break] = ACTIONS(787), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_null] = ACTIONS(787), - [sym_inf] = ACTIONS(787), - [sym_nan] = ACTIONS(787), - [anon_sym_NA] = ACTIONS(787), - [anon_sym_NA_integer_] = ACTIONS(787), - [anon_sym_NA_real_] = ACTIONS(787), - [anon_sym_NA_complex_] = ACTIONS(787), - [anon_sym_NA_character_] = ACTIONS(787), + [ts_builtin_sym_end] = ACTIONS(743), + [sym_identifier] = ACTIONS(745), + [anon_sym_BSLASH] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_EQ] = ACTIONS(745), + [anon_sym_if] = ACTIONS(745), + [anon_sym_for] = ACTIONS(745), + [anon_sym_while] = ACTIONS(745), + [anon_sym_repeat] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(743), + [anon_sym_TILDE] = ACTIONS(743), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_LT_DASH] = ACTIONS(743), + [anon_sym_LT_LT_DASH] = ACTIONS(743), + [anon_sym_COLON_EQ] = ACTIONS(743), + [anon_sym_DASH_GT] = ACTIONS(745), + [anon_sym_DASH_GT_GT] = ACTIONS(743), + [anon_sym_PIPE] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(743), + [anon_sym_LT] = ACTIONS(745), + [anon_sym_LT_EQ] = ACTIONS(743), + [anon_sym_GT] = ACTIONS(745), + [anon_sym_GT_EQ] = ACTIONS(743), + [anon_sym_EQ_EQ] = ACTIONS(743), + [anon_sym_BANG_EQ] = ACTIONS(743), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(743), + [anon_sym_STAR_STAR] = ACTIONS(743), + [anon_sym_CARET] = ACTIONS(743), + [aux_sym_binary_operator_token1] = ACTIONS(743), + [anon_sym_PIPE_GT] = ACTIONS(743), + [anon_sym_COLON] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(743), + [sym__hex_literal] = ACTIONS(743), + [sym__number_literal] = ACTIONS(745), + [anon_sym_SQUOTE] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(743), + [sym_dots] = ACTIONS(745), + [sym_dot_dot_i] = ACTIONS(743), + [sym_return] = ACTIONS(745), + [sym_next] = ACTIONS(745), + [sym_break] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [sym_null] = ACTIONS(745), + [sym_inf] = ACTIONS(745), + [sym_nan] = ACTIONS(745), + [anon_sym_NA] = ACTIONS(745), + [anon_sym_NA_integer_] = ACTIONS(745), + [anon_sym_NA_real_] = ACTIONS(745), + [anon_sym_NA_complex_] = ACTIONS(745), + [anon_sym_NA_character_] = ACTIONS(745), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(785), - [sym__semicolon] = ACTIONS(785), - [sym__raw_string_literal] = ACTIONS(785), - [sym__external_open_parenthesis] = ACTIONS(785), - [sym__external_open_brace] = ACTIONS(785), - [sym__external_open_bracket] = ACTIONS(785), - [sym__external_open_bracket2] = ACTIONS(785), + [sym__newline] = ACTIONS(743), + [sym__semicolon] = ACTIONS(743), + [sym__raw_string_literal] = ACTIONS(743), + [sym__external_open_parenthesis] = ACTIONS(743), + [sym__external_open_brace] = ACTIONS(743), + [sym__external_open_bracket] = ACTIONS(743), + [sym__external_open_bracket2] = ACTIONS(743), }, [442] = { - [ts_builtin_sym_end] = ACTIONS(855), - [sym_identifier] = ACTIONS(853), - [anon_sym_BSLASH] = ACTIONS(855), - [anon_sym_function] = ACTIONS(853), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_if] = ACTIONS(853), - [anon_sym_for] = ACTIONS(853), - [anon_sym_while] = ACTIONS(853), - [anon_sym_repeat] = ACTIONS(853), - [anon_sym_QMARK] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_LT_DASH] = ACTIONS(855), - [anon_sym_LT_LT_DASH] = ACTIONS(855), - [anon_sym_COLON_EQ] = ACTIONS(855), - [anon_sym_DASH_GT] = ACTIONS(853), - [anon_sym_DASH_GT_GT] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(855), - [anon_sym_AMP_AMP] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_STAR] = ACTIONS(853), - [anon_sym_SLASH] = ACTIONS(855), - [anon_sym_STAR_STAR] = ACTIONS(855), - [anon_sym_CARET] = ACTIONS(855), - [aux_sym_binary_operator_token1] = ACTIONS(855), - [anon_sym_PIPE_GT] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_AT] = ACTIONS(855), - [sym__hex_literal] = ACTIONS(855), - [sym__number_literal] = ACTIONS(853), - [anon_sym_SQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_dots] = ACTIONS(853), - [sym_dot_dot_i] = ACTIONS(855), - [sym_return] = ACTIONS(853), - [sym_next] = ACTIONS(853), - [sym_break] = ACTIONS(853), - [sym_true] = ACTIONS(853), - [sym_false] = ACTIONS(853), - [sym_null] = ACTIONS(853), - [sym_inf] = ACTIONS(853), - [sym_nan] = ACTIONS(853), - [anon_sym_NA] = ACTIONS(853), - [anon_sym_NA_integer_] = ACTIONS(853), - [anon_sym_NA_real_] = ACTIONS(853), - [anon_sym_NA_complex_] = ACTIONS(853), - [anon_sym_NA_character_] = ACTIONS(853), + [ts_builtin_sym_end] = ACTIONS(749), + [sym_identifier] = ACTIONS(751), + [anon_sym_BSLASH] = ACTIONS(749), + [anon_sym_function] = ACTIONS(751), + [anon_sym_EQ] = ACTIONS(751), + [anon_sym_if] = ACTIONS(751), + [anon_sym_for] = ACTIONS(751), + [anon_sym_while] = ACTIONS(751), + [anon_sym_repeat] = ACTIONS(751), + [anon_sym_QMARK] = ACTIONS(749), + [anon_sym_TILDE] = ACTIONS(749), + [anon_sym_BANG] = ACTIONS(751), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_LT_DASH] = ACTIONS(749), + [anon_sym_LT_LT_DASH] = ACTIONS(749), + [anon_sym_COLON_EQ] = ACTIONS(749), + [anon_sym_DASH_GT] = ACTIONS(751), + [anon_sym_DASH_GT_GT] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(751), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_PIPE_PIPE] = ACTIONS(749), + [anon_sym_AMP_AMP] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(751), + [anon_sym_GT_EQ] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_SLASH] = ACTIONS(749), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_CARET] = ACTIONS(749), + [aux_sym_binary_operator_token1] = ACTIONS(749), + [anon_sym_PIPE_GT] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(751), + [anon_sym_DOLLAR] = ACTIONS(749), + [anon_sym_AT] = ACTIONS(749), + [sym__hex_literal] = ACTIONS(749), + [sym__number_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(749), + [sym_dots] = ACTIONS(751), + [sym_dot_dot_i] = ACTIONS(749), + [sym_return] = ACTIONS(751), + [sym_next] = ACTIONS(751), + [sym_break] = ACTIONS(751), + [sym_true] = ACTIONS(751), + [sym_false] = ACTIONS(751), + [sym_null] = ACTIONS(751), + [sym_inf] = ACTIONS(751), + [sym_nan] = ACTIONS(751), + [anon_sym_NA] = ACTIONS(751), + [anon_sym_NA_integer_] = ACTIONS(751), + [anon_sym_NA_real_] = ACTIONS(751), + [anon_sym_NA_complex_] = ACTIONS(751), + [anon_sym_NA_character_] = ACTIONS(751), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), - [sym__semicolon] = ACTIONS(855), - [sym__raw_string_literal] = ACTIONS(855), - [sym__external_open_parenthesis] = ACTIONS(855), - [sym__external_open_brace] = ACTIONS(855), - [sym__external_open_bracket] = ACTIONS(855), - [sym__external_open_bracket2] = ACTIONS(855), + [sym__newline] = ACTIONS(749), + [sym__semicolon] = ACTIONS(749), + [sym__raw_string_literal] = ACTIONS(749), + [sym__external_open_parenthesis] = ACTIONS(749), + [sym__external_open_brace] = ACTIONS(749), + [sym__external_open_bracket] = ACTIONS(749), + [sym__external_open_bracket2] = ACTIONS(749), }, [443] = { - [ts_builtin_sym_end] = ACTIONS(709), - [sym_identifier] = ACTIONS(707), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_function] = ACTIONS(707), - [anon_sym_EQ] = ACTIONS(707), - [anon_sym_if] = ACTIONS(707), - [anon_sym_for] = ACTIONS(707), - [anon_sym_while] = ACTIONS(707), - [anon_sym_repeat] = ACTIONS(707), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_LT_DASH] = ACTIONS(709), - [anon_sym_LT_LT_DASH] = ACTIONS(709), - [anon_sym_COLON_EQ] = ACTIONS(709), - [anon_sym_DASH_GT] = ACTIONS(707), - [anon_sym_DASH_GT_GT] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(707), - [anon_sym_PIPE_PIPE] = ACTIONS(709), - [anon_sym_AMP_AMP] = ACTIONS(709), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_LT_EQ] = ACTIONS(709), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_EQ] = ACTIONS(709), - [anon_sym_EQ_EQ] = ACTIONS(709), - [anon_sym_BANG_EQ] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(707), - [anon_sym_SLASH] = ACTIONS(709), - [anon_sym_STAR_STAR] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [aux_sym_binary_operator_token1] = ACTIONS(709), - [anon_sym_PIPE_GT] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(709), - [sym__hex_literal] = ACTIONS(709), - [sym__number_literal] = ACTIONS(707), - [anon_sym_SQUOTE] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_dots] = ACTIONS(707), - [sym_dot_dot_i] = ACTIONS(709), - [sym_return] = ACTIONS(707), - [sym_next] = ACTIONS(707), - [sym_break] = ACTIONS(707), - [sym_true] = ACTIONS(707), - [sym_false] = ACTIONS(707), - [sym_null] = ACTIONS(707), - [sym_inf] = ACTIONS(707), - [sym_nan] = ACTIONS(707), - [anon_sym_NA] = ACTIONS(707), - [anon_sym_NA_integer_] = ACTIONS(707), - [anon_sym_NA_real_] = ACTIONS(707), - [anon_sym_NA_complex_] = ACTIONS(707), - [anon_sym_NA_character_] = ACTIONS(707), + [ts_builtin_sym_end] = ACTIONS(753), + [sym_identifier] = ACTIONS(755), + [anon_sym_BSLASH] = ACTIONS(753), + [anon_sym_function] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_if] = ACTIONS(755), + [anon_sym_for] = ACTIONS(755), + [anon_sym_while] = ACTIONS(755), + [anon_sym_repeat] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_LT_DASH] = ACTIONS(753), + [anon_sym_LT_LT_DASH] = ACTIONS(753), + [anon_sym_COLON_EQ] = ACTIONS(753), + [anon_sym_DASH_GT] = ACTIONS(755), + [anon_sym_DASH_GT_GT] = ACTIONS(753), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(753), + [anon_sym_AMP_AMP] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(753), + [anon_sym_STAR_STAR] = ACTIONS(753), + [anon_sym_CARET] = ACTIONS(753), + [aux_sym_binary_operator_token1] = ACTIONS(753), + [anon_sym_PIPE_GT] = ACTIONS(753), + [anon_sym_COLON] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(753), + [sym__hex_literal] = ACTIONS(753), + [sym__number_literal] = ACTIONS(755), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(753), + [sym_dots] = ACTIONS(755), + [sym_dot_dot_i] = ACTIONS(753), + [sym_return] = ACTIONS(755), + [sym_next] = ACTIONS(755), + [sym_break] = ACTIONS(755), + [sym_true] = ACTIONS(755), + [sym_false] = ACTIONS(755), + [sym_null] = ACTIONS(755), + [sym_inf] = ACTIONS(755), + [sym_nan] = ACTIONS(755), + [anon_sym_NA] = ACTIONS(755), + [anon_sym_NA_integer_] = ACTIONS(755), + [anon_sym_NA_real_] = ACTIONS(755), + [anon_sym_NA_complex_] = ACTIONS(755), + [anon_sym_NA_character_] = ACTIONS(755), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(709), - [sym__semicolon] = ACTIONS(709), - [sym__raw_string_literal] = ACTIONS(709), - [sym__external_open_parenthesis] = ACTIONS(709), - [sym__external_open_brace] = ACTIONS(709), - [sym__external_open_bracket] = ACTIONS(709), - [sym__external_open_bracket2] = ACTIONS(709), + [sym__newline] = ACTIONS(753), + [sym__semicolon] = ACTIONS(753), + [sym__raw_string_literal] = ACTIONS(753), + [sym__external_open_parenthesis] = ACTIONS(753), + [sym__external_open_brace] = ACTIONS(753), + [sym__external_open_bracket] = ACTIONS(753), + [sym__external_open_bracket2] = ACTIONS(753), }, [444] = { - [sym_identifier] = ACTIONS(823), - [anon_sym_BSLASH] = ACTIONS(825), - [anon_sym_function] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_repeat] = ACTIONS(823), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_TILDE] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(825), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [anon_sym_LT_LT_DASH] = ACTIONS(825), - [anon_sym_COLON_EQ] = ACTIONS(825), - [anon_sym_DASH_GT] = ACTIONS(823), - [anon_sym_DASH_GT_GT] = ACTIONS(825), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_PIPE_PIPE] = ACTIONS(825), - [anon_sym_AMP_AMP] = ACTIONS(825), - [anon_sym_LT] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(825), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(825), - [anon_sym_EQ_EQ] = ACTIONS(825), - [anon_sym_BANG_EQ] = ACTIONS(825), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(825), - [anon_sym_STAR_STAR] = ACTIONS(825), - [anon_sym_CARET] = ACTIONS(825), - [aux_sym_binary_operator_token1] = ACTIONS(825), - [anon_sym_PIPE_GT] = ACTIONS(825), - [anon_sym_COLON] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [sym__hex_literal] = ACTIONS(825), - [sym__number_literal] = ACTIONS(823), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(825), - [sym_dots] = ACTIONS(823), - [sym_dot_dot_i] = ACTIONS(825), - [sym_return] = ACTIONS(823), - [sym_next] = ACTIONS(823), - [sym_break] = ACTIONS(823), - [sym_true] = ACTIONS(823), - [sym_false] = ACTIONS(823), - [sym_null] = ACTIONS(823), - [sym_inf] = ACTIONS(823), - [sym_nan] = ACTIONS(823), - [anon_sym_NA] = ACTIONS(823), - [anon_sym_NA_integer_] = ACTIONS(823), - [anon_sym_NA_real_] = ACTIONS(823), - [anon_sym_NA_complex_] = ACTIONS(823), - [anon_sym_NA_character_] = ACTIONS(823), + [sym_identifier] = ACTIONS(737), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_function] = ACTIONS(737), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_if] = ACTIONS(737), + [anon_sym_for] = ACTIONS(737), + [anon_sym_while] = ACTIONS(737), + [anon_sym_repeat] = ACTIONS(737), + [anon_sym_QMARK] = ACTIONS(735), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(735), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LT_DASH] = ACTIONS(735), + [anon_sym_LT_LT_DASH] = ACTIONS(735), + [anon_sym_COLON_EQ] = ACTIONS(735), + [anon_sym_DASH_GT] = ACTIONS(737), + [anon_sym_DASH_GT_GT] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_LT_EQ] = ACTIONS(735), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_GT_EQ] = ACTIONS(735), + [anon_sym_EQ_EQ] = ACTIONS(735), + [anon_sym_BANG_EQ] = ACTIONS(735), + [anon_sym_STAR] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(735), + [anon_sym_STAR_STAR] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(735), + [aux_sym_binary_operator_token1] = ACTIONS(735), + [anon_sym_PIPE_GT] = ACTIONS(735), + [anon_sym_COLON] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(735), + [anon_sym_AT] = ACTIONS(735), + [sym__hex_literal] = ACTIONS(735), + [sym__number_literal] = ACTIONS(737), + [anon_sym_SQUOTE] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [sym_dots] = ACTIONS(737), + [sym_dot_dot_i] = ACTIONS(735), + [sym_return] = ACTIONS(737), + [sym_next] = ACTIONS(737), + [sym_break] = ACTIONS(737), + [sym_true] = ACTIONS(737), + [sym_false] = ACTIONS(737), + [sym_null] = ACTIONS(737), + [sym_inf] = ACTIONS(737), + [sym_nan] = ACTIONS(737), + [anon_sym_NA] = ACTIONS(737), + [anon_sym_NA_integer_] = ACTIONS(737), + [anon_sym_NA_real_] = ACTIONS(737), + [anon_sym_NA_complex_] = ACTIONS(737), + [anon_sym_NA_character_] = ACTIONS(737), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(825), - [sym__semicolon] = ACTIONS(825), - [sym__raw_string_literal] = ACTIONS(825), - [sym__external_open_parenthesis] = ACTIONS(825), - [sym__external_open_brace] = ACTIONS(825), - [sym__external_close_brace] = ACTIONS(825), - [sym__external_open_bracket] = ACTIONS(825), - [sym__external_open_bracket2] = ACTIONS(825), + [sym__newline] = ACTIONS(735), + [sym__semicolon] = ACTIONS(735), + [sym__raw_string_literal] = ACTIONS(735), + [sym__external_open_parenthesis] = ACTIONS(735), + [sym__external_open_brace] = ACTIONS(735), + [sym__external_close_brace] = ACTIONS(735), + [sym__external_open_bracket] = ACTIONS(735), + [sym__external_open_bracket2] = ACTIONS(735), }, [445] = { - [sym_identifier] = ACTIONS(695), - [anon_sym_BSLASH] = ACTIONS(697), - [anon_sym_function] = ACTIONS(695), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_if] = ACTIONS(695), - [anon_sym_for] = ACTIONS(695), - [anon_sym_while] = ACTIONS(695), - [anon_sym_repeat] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_LT_DASH] = ACTIONS(697), - [anon_sym_LT_LT_DASH] = ACTIONS(697), - [anon_sym_COLON_EQ] = ACTIONS(697), - [anon_sym_DASH_GT] = ACTIONS(695), - [anon_sym_DASH_GT_GT] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_LT_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(697), - [anon_sym_EQ_EQ] = ACTIONS(697), - [anon_sym_BANG_EQ] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_STAR_STAR] = ACTIONS(697), - [anon_sym_CARET] = ACTIONS(697), - [aux_sym_binary_operator_token1] = ACTIONS(697), - [anon_sym_PIPE_GT] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [sym__hex_literal] = ACTIONS(697), - [sym__number_literal] = ACTIONS(695), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(697), - [sym_dots] = ACTIONS(695), - [sym_dot_dot_i] = ACTIONS(697), - [sym_return] = ACTIONS(695), - [sym_next] = ACTIONS(695), - [sym_break] = ACTIONS(695), - [sym_true] = ACTIONS(695), - [sym_false] = ACTIONS(695), - [sym_null] = ACTIONS(695), - [sym_inf] = ACTIONS(695), - [sym_nan] = ACTIONS(695), - [anon_sym_NA] = ACTIONS(695), - [anon_sym_NA_integer_] = ACTIONS(695), - [anon_sym_NA_real_] = ACTIONS(695), - [anon_sym_NA_complex_] = ACTIONS(695), - [anon_sym_NA_character_] = ACTIONS(695), + [ts_builtin_sym_end] = ACTIONS(850), + [sym_identifier] = ACTIONS(848), + [anon_sym_BSLASH] = ACTIONS(850), + [anon_sym_function] = ACTIONS(848), + [anon_sym_EQ] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_while] = ACTIONS(848), + [anon_sym_repeat] = ACTIONS(848), + [anon_sym_QMARK] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_LT_DASH] = ACTIONS(850), + [anon_sym_LT_LT_DASH] = ACTIONS(850), + [anon_sym_COLON_EQ] = ACTIONS(850), + [anon_sym_DASH_GT] = ACTIONS(848), + [anon_sym_DASH_GT_GT] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(848), + [anon_sym_AMP] = ACTIONS(848), + [anon_sym_PIPE_PIPE] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(850), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_LT_EQ] = ACTIONS(850), + [anon_sym_GT] = ACTIONS(848), + [anon_sym_GT_EQ] = ACTIONS(850), + [anon_sym_EQ_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(850), + [anon_sym_STAR_STAR] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [aux_sym_binary_operator_token1] = ACTIONS(850), + [anon_sym_PIPE_GT] = ACTIONS(850), + [anon_sym_COLON] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_AT] = ACTIONS(850), + [sym__hex_literal] = ACTIONS(850), + [sym__number_literal] = ACTIONS(848), + [anon_sym_SQUOTE] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym_dots] = ACTIONS(848), + [sym_dot_dot_i] = ACTIONS(850), + [sym_return] = ACTIONS(848), + [sym_next] = ACTIONS(848), + [sym_break] = ACTIONS(848), + [sym_true] = ACTIONS(848), + [sym_false] = ACTIONS(848), + [sym_null] = ACTIONS(848), + [sym_inf] = ACTIONS(848), + [sym_nan] = ACTIONS(848), + [anon_sym_NA] = ACTIONS(848), + [anon_sym_NA_integer_] = ACTIONS(848), + [anon_sym_NA_real_] = ACTIONS(848), + [anon_sym_NA_complex_] = ACTIONS(848), + [anon_sym_NA_character_] = ACTIONS(848), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(697), - [sym__semicolon] = ACTIONS(697), - [sym__raw_string_literal] = ACTIONS(697), - [sym__external_open_parenthesis] = ACTIONS(697), - [sym__external_open_brace] = ACTIONS(697), - [sym__external_close_brace] = ACTIONS(697), - [sym__external_open_bracket] = ACTIONS(697), - [sym__external_open_bracket2] = ACTIONS(697), + [sym__newline] = ACTIONS(850), + [sym__semicolon] = ACTIONS(850), + [sym__raw_string_literal] = ACTIONS(850), + [sym__external_open_parenthesis] = ACTIONS(850), + [sym__external_open_brace] = ACTIONS(850), + [sym__external_open_bracket] = ACTIONS(850), + [sym__external_open_bracket2] = ACTIONS(850), }, [446] = { - [sym_function_definition] = STATE(166), - [sym_if_statement] = STATE(166), - [sym_for_statement] = STATE(166), - [sym_while_statement] = STATE(166), - [sym_repeat_statement] = STATE(166), - [sym_braced_expression] = STATE(166), - [sym_parenthesized_expression] = STATE(166), - [sym_call] = STATE(166), - [sym_subset] = STATE(166), - [sym_subset2] = STATE(166), - [sym_unary_operator] = STATE(166), - [sym_binary_operator] = STATE(166), - [sym_extract_operator] = STATE(166), - [sym_namespace_operator] = STATE(166), - [sym_integer] = STATE(166), - [sym_complex] = STATE(166), - [sym_float] = STATE(166), - [sym__float_literal] = STATE(323), - [sym_string] = STATE(320), - [sym__single_quoted_string] = STATE(325), - [sym__double_quoted_string] = STATE(326), - [sym__string_or_identifier_or_dots_or_dot_dot_i] = STATE(2049), - [sym_na] = STATE(166), - [sym__expression] = STATE(166), - [sym__open_parenthesis] = STATE(1053), - [sym__open_brace] = STATE(378), - [aux_sym_program_repeat1] = STATE(438), - [ts_builtin_sym_end] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1013), - [anon_sym_BSLASH] = ACTIONS(1015), - [anon_sym_function] = ACTIONS(1017), - [anon_sym_if] = ACTIONS(1019), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_repeat] = ACTIONS(1025), - [anon_sym_QMARK] = ACTIONS(1027), - [anon_sym_TILDE] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [sym__hex_literal] = ACTIONS(1035), - [sym__number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(501), - [sym_dots] = ACTIONS(1013), - [sym_dot_dot_i] = ACTIONS(1039), - [sym_return] = ACTIONS(1041), - [sym_next] = ACTIONS(1041), - [sym_break] = ACTIONS(1041), - [sym_true] = ACTIONS(1041), - [sym_false] = ACTIONS(1041), - [sym_null] = ACTIONS(1041), - [sym_inf] = ACTIONS(1041), - [sym_nan] = ACTIONS(1041), - [anon_sym_NA] = ACTIONS(1043), - [anon_sym_NA_integer_] = ACTIONS(1043), - [anon_sym_NA_real_] = ACTIONS(1043), - [anon_sym_NA_complex_] = ACTIONS(1043), - [anon_sym_NA_character_] = ACTIONS(1043), + [ts_builtin_sym_end] = ACTIONS(865), + [sym_identifier] = ACTIONS(863), + [anon_sym_BSLASH] = ACTIONS(865), + [anon_sym_function] = ACTIONS(863), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [anon_sym_repeat] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_LT_DASH] = ACTIONS(865), + [anon_sym_LT_LT_DASH] = ACTIONS(865), + [anon_sym_COLON_EQ] = ACTIONS(865), + [anon_sym_DASH_GT] = ACTIONS(863), + [anon_sym_DASH_GT_GT] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(865), + [aux_sym_binary_operator_token1] = ACTIONS(865), + [anon_sym_PIPE_GT] = ACTIONS(865), + [anon_sym_COLON] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(865), + [sym__hex_literal] = ACTIONS(865), + [sym__number_literal] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym_dots] = ACTIONS(863), + [sym_dot_dot_i] = ACTIONS(865), + [sym_return] = ACTIONS(863), + [sym_next] = ACTIONS(863), + [sym_break] = ACTIONS(863), + [sym_true] = ACTIONS(863), + [sym_false] = ACTIONS(863), + [sym_null] = ACTIONS(863), + [sym_inf] = ACTIONS(863), + [sym_nan] = ACTIONS(863), + [anon_sym_NA] = ACTIONS(863), + [anon_sym_NA_integer_] = ACTIONS(863), + [anon_sym_NA_real_] = ACTIONS(863), + [anon_sym_NA_complex_] = ACTIONS(863), + [anon_sym_NA_character_] = ACTIONS(863), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1053), - [sym__semicolon] = ACTIONS(1053), - [sym__raw_string_literal] = ACTIONS(505), - [sym__external_open_parenthesis] = ACTIONS(1047), - [sym__external_open_brace] = ACTIONS(1049), + [sym__newline] = ACTIONS(865), + [sym__semicolon] = ACTIONS(865), + [sym__raw_string_literal] = ACTIONS(865), + [sym__external_open_parenthesis] = ACTIONS(865), + [sym__external_open_brace] = ACTIONS(865), + [sym__external_open_bracket] = ACTIONS(865), + [sym__external_open_bracket2] = ACTIONS(865), }, [447] = { - [ts_builtin_sym_end] = ACTIONS(755), - [sym_identifier] = ACTIONS(753), - [anon_sym_BSLASH] = ACTIONS(755), - [anon_sym_function] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [anon_sym_repeat] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_TILDE] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(755), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_LT_DASH] = ACTIONS(755), - [anon_sym_LT_LT_DASH] = ACTIONS(755), - [anon_sym_COLON_EQ] = ACTIONS(755), - [anon_sym_DASH_GT] = ACTIONS(753), - [anon_sym_DASH_GT_GT] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(753), - [anon_sym_PIPE_PIPE] = ACTIONS(755), - [anon_sym_AMP_AMP] = ACTIONS(755), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_LT_EQ] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(755), - [anon_sym_EQ_EQ] = ACTIONS(755), - [anon_sym_BANG_EQ] = ACTIONS(755), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(755), - [anon_sym_STAR_STAR] = ACTIONS(755), - [anon_sym_CARET] = ACTIONS(755), - [aux_sym_binary_operator_token1] = ACTIONS(755), - [anon_sym_PIPE_GT] = ACTIONS(755), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(755), - [sym__hex_literal] = ACTIONS(755), - [sym__number_literal] = ACTIONS(753), - [anon_sym_SQUOTE] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(755), - [sym_dots] = ACTIONS(753), - [sym_dot_dot_i] = ACTIONS(755), - [sym_return] = ACTIONS(753), - [sym_next] = ACTIONS(753), - [sym_break] = ACTIONS(753), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_null] = ACTIONS(753), - [sym_inf] = ACTIONS(753), - [sym_nan] = ACTIONS(753), - [anon_sym_NA] = ACTIONS(753), - [anon_sym_NA_integer_] = ACTIONS(753), - [anon_sym_NA_real_] = ACTIONS(753), - [anon_sym_NA_complex_] = ACTIONS(753), - [anon_sym_NA_character_] = ACTIONS(753), + [ts_builtin_sym_end] = ACTIONS(854), + [sym_identifier] = ACTIONS(852), + [anon_sym_BSLASH] = ACTIONS(854), + [anon_sym_function] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_repeat] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(854), + [anon_sym_TILDE] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_LT_DASH] = ACTIONS(854), + [anon_sym_LT_LT_DASH] = ACTIONS(854), + [anon_sym_COLON_EQ] = ACTIONS(854), + [anon_sym_DASH_GT] = ACTIONS(852), + [anon_sym_DASH_GT_GT] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(852), + [anon_sym_PIPE_PIPE] = ACTIONS(854), + [anon_sym_AMP_AMP] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(854), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(854), + [anon_sym_BANG_EQ] = ACTIONS(854), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_STAR_STAR] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(854), + [aux_sym_binary_operator_token1] = ACTIONS(854), + [anon_sym_PIPE_GT] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_AT] = ACTIONS(854), + [sym__hex_literal] = ACTIONS(854), + [sym__number_literal] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym_dots] = ACTIONS(852), + [sym_dot_dot_i] = ACTIONS(854), + [sym_return] = ACTIONS(852), + [sym_next] = ACTIONS(852), + [sym_break] = ACTIONS(852), + [sym_true] = ACTIONS(852), + [sym_false] = ACTIONS(852), + [sym_null] = ACTIONS(852), + [sym_inf] = ACTIONS(852), + [sym_nan] = ACTIONS(852), + [anon_sym_NA] = ACTIONS(852), + [anon_sym_NA_integer_] = ACTIONS(852), + [anon_sym_NA_real_] = ACTIONS(852), + [anon_sym_NA_complex_] = ACTIONS(852), + [anon_sym_NA_character_] = ACTIONS(852), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(755), - [sym__semicolon] = ACTIONS(755), - [sym__raw_string_literal] = ACTIONS(755), - [sym__external_open_parenthesis] = ACTIONS(755), - [sym__external_open_brace] = ACTIONS(755), - [sym__external_open_bracket] = ACTIONS(755), - [sym__external_open_bracket2] = ACTIONS(755), + [sym__newline] = ACTIONS(854), + [sym__semicolon] = ACTIONS(854), + [sym__raw_string_literal] = ACTIONS(854), + [sym__external_open_parenthesis] = ACTIONS(854), + [sym__external_open_brace] = ACTIONS(854), + [sym__external_open_bracket] = ACTIONS(854), + [sym__external_open_bracket2] = ACTIONS(854), }, [448] = { - [sym_identifier] = ACTIONS(791), - [anon_sym_BSLASH] = ACTIONS(789), - [anon_sym_function] = ACTIONS(791), - [anon_sym_EQ] = ACTIONS(791), - [anon_sym_if] = ACTIONS(791), - [anon_sym_for] = ACTIONS(791), - [anon_sym_while] = ACTIONS(791), - [anon_sym_repeat] = ACTIONS(791), - [anon_sym_QMARK] = ACTIONS(789), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_BANG] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_LT_DASH] = ACTIONS(789), - [anon_sym_LT_LT_DASH] = ACTIONS(789), - [anon_sym_COLON_EQ] = ACTIONS(789), - [anon_sym_DASH_GT] = ACTIONS(791), - [anon_sym_DASH_GT_GT] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(789), - [anon_sym_AMP_AMP] = ACTIONS(789), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(789), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_STAR_STAR] = ACTIONS(789), - [anon_sym_CARET] = ACTIONS(789), - [aux_sym_binary_operator_token1] = ACTIONS(789), - [anon_sym_PIPE_GT] = ACTIONS(789), - [anon_sym_COLON] = ACTIONS(791), - [anon_sym_DOLLAR] = ACTIONS(789), - [anon_sym_AT] = ACTIONS(789), - [sym__hex_literal] = ACTIONS(789), - [sym__number_literal] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(789), - [anon_sym_DQUOTE] = ACTIONS(789), - [sym_dots] = ACTIONS(791), - [sym_dot_dot_i] = ACTIONS(789), - [sym_return] = ACTIONS(791), - [sym_next] = ACTIONS(791), - [sym_break] = ACTIONS(791), - [sym_true] = ACTIONS(791), - [sym_false] = ACTIONS(791), - [sym_null] = ACTIONS(791), - [sym_inf] = ACTIONS(791), - [sym_nan] = ACTIONS(791), - [anon_sym_NA] = ACTIONS(791), - [anon_sym_NA_integer_] = ACTIONS(791), - [anon_sym_NA_real_] = ACTIONS(791), - [anon_sym_NA_complex_] = ACTIONS(791), - [anon_sym_NA_character_] = ACTIONS(791), + [ts_builtin_sym_end] = ACTIONS(765), + [sym_identifier] = ACTIONS(767), + [anon_sym_BSLASH] = ACTIONS(765), + [anon_sym_function] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(767), + [anon_sym_if] = ACTIONS(767), + [anon_sym_for] = ACTIONS(767), + [anon_sym_while] = ACTIONS(767), + [anon_sym_repeat] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_LT_DASH] = ACTIONS(765), + [anon_sym_LT_LT_DASH] = ACTIONS(765), + [anon_sym_COLON_EQ] = ACTIONS(765), + [anon_sym_DASH_GT] = ACTIONS(767), + [anon_sym_DASH_GT_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [aux_sym_binary_operator_token1] = ACTIONS(765), + [anon_sym_PIPE_GT] = ACTIONS(765), + [anon_sym_COLON] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [sym__hex_literal] = ACTIONS(765), + [sym__number_literal] = ACTIONS(767), + [anon_sym_SQUOTE] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [sym_dots] = ACTIONS(767), + [sym_dot_dot_i] = ACTIONS(765), + [sym_return] = ACTIONS(767), + [sym_next] = ACTIONS(767), + [sym_break] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_inf] = ACTIONS(767), + [sym_nan] = ACTIONS(767), + [anon_sym_NA] = ACTIONS(767), + [anon_sym_NA_integer_] = ACTIONS(767), + [anon_sym_NA_real_] = ACTIONS(767), + [anon_sym_NA_complex_] = ACTIONS(767), + [anon_sym_NA_character_] = ACTIONS(767), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(789), - [sym__semicolon] = ACTIONS(789), - [sym__raw_string_literal] = ACTIONS(789), - [sym__external_open_parenthesis] = ACTIONS(789), - [sym__external_open_brace] = ACTIONS(789), - [sym__external_close_brace] = ACTIONS(789), - [sym__external_open_bracket] = ACTIONS(789), - [sym__external_open_bracket2] = ACTIONS(789), + [sym__newline] = ACTIONS(765), + [sym__semicolon] = ACTIONS(765), + [sym__raw_string_literal] = ACTIONS(765), + [sym__external_open_parenthesis] = ACTIONS(765), + [sym__external_open_brace] = ACTIONS(765), + [sym__external_open_bracket] = ACTIONS(765), + [sym__external_open_bracket2] = ACTIONS(765), }, }; @@ -38552,72 +38555,72 @@ static const uint16_t ts_small_parse_table[] = { [0] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(429), 1, sym__external_open_brace, ACTIONS(1057), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(335), 1, sym__open_brace, STATE(1057), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, sym__float_literal, - STATE(2034), 1, - sym__argument_value, - STATE(2054), 1, + STATE(1619), 1, + sym__double_quoted_string, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + STATE(2050), 1, + sym__argument_value, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1055), 2, sym_identifier, sym_dots, ACTIONS(1059), 2, - sym__external_close_parenthesis, + sym__external_close_bracket, sym_comma, - ACTIONS(551), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(549), 8, + ACTIONS(419), 8, sym_return, sym_next, sym_break, @@ -38626,7 +38629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1371), 19, + STATE(1370), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -38649,72 +38652,72 @@ static const uint16_t ts_small_parse_table[] = { [129] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(475), 1, sym__external_open_brace, ACTIONS(1063), 1, sym_dot_dot_i, - STATE(373), 1, + STATE(331), 1, sym__open_brace, - STATE(1066), 1, + STATE(1113), 1, sym__open_parenthesis, STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1628), 1, sym_string, - STATE(1631), 1, + STATE(1628), 1, + sym__float_literal, + STATE(1629), 1, sym__single_quoted_string, - STATE(2037), 1, - sym__argument_value, - STATE(2048), 1, + STATE(1632), 1, + sym__double_quoted_string, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, + STATE(2052), 1, + sym__argument_value, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1059), 2, - sym__external_close_bracket, + sym__external_close_bracket2, sym_comma, ACTIONS(1061), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(427), 8, + ACTIONS(465), 8, sym_return, sym_next, sym_break, @@ -38723,7 +38726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1518), 19, + STATE(1344), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -38746,72 +38749,72 @@ static const uint16_t ts_small_parse_table[] = { [258] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(527), 1, sym__external_open_brace, ACTIONS(1067), 1, sym_dot_dot_i, - STATE(376), 1, + STATE(357), 1, sym__open_brace, - STATE(1071), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1630), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1632), 1, + STATE(1626), 1, sym__float_literal, - STATE(1633), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1634), 1, - sym__double_quoted_string, - STATE(2046), 1, - sym__string_or_identifier_or_dots_or_dot_dot_i, - STATE(2050), 1, + STATE(2032), 1, sym__argument_value, - ACTIONS(461), 2, + STATE(2042), 1, + sym__string_or_identifier_or_dots_or_dot_dot_i, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1059), 2, - sym__external_close_bracket2, + sym__external_close_parenthesis, sym_comma, ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(473), 8, + ACTIONS(515), 8, sym_return, sym_next, sym_break, @@ -38820,7 +38823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1537), 19, + STATE(1442), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -38843,71 +38846,71 @@ static const uint16_t ts_small_parse_table[] = { [387] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(341), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(343), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(347), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1101), 1, + sym__newline, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(1053), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1046), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(1108), 1, + sym__open_parenthesis, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1069), 8, + ACTIONS(1097), 8, sym_return, sym_next, sym_break, @@ -38916,7 +38919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(236), 19, + STATE(63), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -38939,71 +38942,71 @@ static const uint16_t ts_small_parse_table[] = { [515] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1039), 1, - sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(459), 1, + anon_sym_SQUOTE, + ACTIONS(461), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + sym__raw_string_literal, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(1075), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, + STATE(331), 1, + sym__open_brace, + STATE(1113), 1, + sym__open_parenthesis, + STATE(1604), 1, sym_string, - STATE(323), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(325), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(378), 1, - sym__open_brace, - STATE(816), 1, - aux_sym_function_definition_repeat1, - STATE(1053), 1, - sym__open_parenthesis, - STATE(2049), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, - sym_identifier, - sym_dots, - ACTIONS(1033), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1073), 8, + ACTIONS(1107), 8, sym_return, sym_next, sym_break, @@ -39012,7 +39015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(200), 19, + STATE(1500), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39035,71 +39038,71 @@ static const uint16_t ts_small_parse_table[] = { [643] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1113), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(1117), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(460), 1, aux_sym_function_definition_repeat1, + STATE(1106), 1, + sym__open_parenthesis, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1077), 8, + ACTIONS(1111), 8, sym_return, sym_next, sym_break, @@ -39108,7 +39111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(150), 19, + STATE(161), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39131,71 +39134,71 @@ static const uint16_t ts_small_parse_table[] = { [771] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1081), 1, + ACTIONS(1117), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(484), 1, + STATE(461), 1, aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1106), 1, sym__open_parenthesis, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1079), 8, + ACTIONS(1115), 8, sym_return, sym_next, sym_break, @@ -39204,7 +39207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(151), 19, + STATE(157), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39227,71 +39230,71 @@ static const uint16_t ts_small_parse_table[] = { [899] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1085), 1, + ACTIONS(1121), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(354), 1, sym__open_brace, - STATE(668), 1, + STATE(462), 1, aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1083), 8, + ACTIONS(1119), 8, sym_return, sym_next, sym_break, @@ -39300,7 +39303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(199), 19, + STATE(156), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39323,71 +39326,71 @@ static const uint16_t ts_small_parse_table[] = { [1027] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1089), 1, + ACTIONS(1125), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(354), 1, sym__open_brace, - STATE(987), 1, + STATE(463), 1, aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1087), 8, + ACTIONS(1123), 8, sym_return, sym_next, sym_break, @@ -39396,7 +39399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(202), 19, + STATE(154), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39419,71 +39422,71 @@ static const uint16_t ts_small_parse_table[] = { [1155] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1129), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(1117), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(477), 1, aux_sym_function_definition_repeat1, + STATE(1106), 1, + sym__open_parenthesis, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1091), 8, + ACTIONS(1127), 8, sym_return, sym_next, sym_break, @@ -39492,7 +39495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(152), 19, + STATE(179), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39515,71 +39518,71 @@ static const uint16_t ts_small_parse_table[] = { [1283] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1095), 1, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(354), 1, sym__open_brace, - STATE(988), 1, - aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1093), 8, + ACTIONS(1131), 8, sym_return, sym_next, sym_break, @@ -39588,7 +39591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(203), 19, + STATE(155), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39611,71 +39614,71 @@ static const uint16_t ts_small_parse_table[] = { [1411] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(1117), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1097), 8, + ACTIONS(1133), 8, sym_return, sym_next, sym_break, @@ -39684,7 +39687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(153), 19, + STATE(152), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39707,71 +39710,71 @@ static const uint16_t ts_small_parse_table[] = { [1539] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(1117), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1099), 8, + ACTIONS(1135), 8, sym_return, sym_next, sym_break, @@ -39780,7 +39783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(154), 19, + STATE(150), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39803,71 +39806,71 @@ static const uint16_t ts_small_parse_table[] = { [1667] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1103), 1, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(354), 1, sym__open_brace, - STATE(990), 1, - aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1101), 8, + ACTIONS(1137), 8, sym_return, sym_next, sym_break, @@ -39876,7 +39879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(204), 19, + STATE(149), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39899,71 +39902,71 @@ static const uint16_t ts_small_parse_table[] = { [1795] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(1117), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1105), 8, + ACTIONS(1139), 8, sym_return, sym_next, sym_break, @@ -39972,7 +39975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(155), 19, + STATE(148), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39995,71 +39998,71 @@ static const uint16_t ts_small_parse_table[] = { [1923] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1109), 1, + ACTIONS(1143), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(354), 1, sym__open_brace, - STATE(997), 1, + STATE(479), 1, aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1107), 8, + ACTIONS(1141), 8, sym_return, sym_next, sym_break, @@ -40068,7 +40071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(130), 19, + STATE(146), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40091,71 +40094,71 @@ static const uint16_t ts_small_parse_table[] = { [2051] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1147), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(1117), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(480), 1, aux_sym_function_definition_repeat1, + STATE(1106), 1, + sym__open_parenthesis, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1111), 8, + ACTIONS(1145), 8, sym_return, sym_next, sym_break, @@ -40164,7 +40167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(156), 19, + STATE(143), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40187,71 +40190,71 @@ static const uint16_t ts_small_parse_table[] = { [2179] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1115), 1, + ACTIONS(1151), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(354), 1, sym__open_brace, - STATE(1004), 1, + STATE(481), 1, aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1113), 8, + ACTIONS(1149), 8, sym_return, sym_next, sym_break, @@ -40260,7 +40263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(205), 19, + STATE(140), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40283,71 +40286,71 @@ static const uint16_t ts_small_parse_table[] = { [2307] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1155), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(1117), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(482), 1, aux_sym_function_definition_repeat1, + STATE(1106), 1, + sym__open_parenthesis, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1117), 8, + ACTIONS(1153), 8, sym_return, sym_next, sym_break, @@ -40356,7 +40359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(157), 19, + STATE(132), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40379,71 +40382,71 @@ static const uint16_t ts_small_parse_table[] = { [2435] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1121), 1, + ACTIONS(1159), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(354), 1, sym__open_brace, - STATE(1010), 1, + STATE(483), 1, aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1119), 8, + ACTIONS(1157), 8, sym_return, sym_next, sym_break, @@ -40452,7 +40455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(206), 19, + STATE(159), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40475,71 +40478,71 @@ static const uint16_t ts_small_parse_table[] = { [2563] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1163), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(1117), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(484), 1, aux_sym_function_definition_repeat1, + STATE(1106), 1, + sym__open_parenthesis, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1123), 8, + ACTIONS(1161), 8, sym_return, sym_next, sym_break, @@ -40548,7 +40551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(158), 19, + STATE(142), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40571,71 +40574,71 @@ static const uint16_t ts_small_parse_table[] = { [2691] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1167), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(1117), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(485), 1, aux_sym_function_definition_repeat1, + STATE(1106), 1, + sym__open_parenthesis, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1125), 8, + ACTIONS(1165), 8, sym_return, sym_next, sym_break, @@ -40644,7 +40647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(159), 19, + STATE(163), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40667,71 +40670,71 @@ static const uint16_t ts_small_parse_table[] = { [2819] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1171), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(1117), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(486), 1, aux_sym_function_definition_repeat1, + STATE(1106), 1, + sym__open_parenthesis, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1127), 8, + ACTIONS(1169), 8, sym_return, sym_next, sym_break, @@ -40740,7 +40743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(160), 19, + STATE(138), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40763,71 +40766,71 @@ static const uint16_t ts_small_parse_table[] = { [2947] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1175), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(1117), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(487), 1, aux_sym_function_definition_repeat1, + STATE(1106), 1, + sym__open_parenthesis, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1129), 8, + ACTIONS(1173), 8, sym_return, sym_next, sym_break, @@ -40836,7 +40839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(161), 19, + STATE(145), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40856,73 +40859,170 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [3075] = 31, + [3075] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, + sym__external_open_parenthesis, + ACTIONS(731), 1, + sym__external_open_brace, + ACTIONS(1179), 1, + sym__newline, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, + sym__open_brace, + STATE(489), 1, + aux_sym_function_definition_repeat1, + STATE(1106), 1, + sym__open_parenthesis, + STATE(2051), 1, + sym__string_or_identifier_or_dots_or_dot_dot_i, + ACTIONS(695), 2, + sym_identifier, + sym_dots, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, + anon_sym_NA, + anon_sym_NA_integer_, + anon_sym_NA_real_, + anon_sym_NA_complex_, + anon_sym_NA_character_, + ACTIONS(1177), 8, + sym_return, + sym_next, + sym_break, + sym_true, + sym_false, + sym_null, + sym_inf, + sym_nan, + STATE(181), 19, + sym_function_definition, + sym_if_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_braced_expression, + sym_parenthesized_expression, + sym_call, + sym_subset, + sym_subset2, + sym_unary_operator, + sym_binary_operator, + sym_extract_operator, + sym_namespace_operator, + sym_integer, + sym_complex, + sym_float, + sym_na, + sym__expression, + [3203] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(697), 1, + anon_sym_BSLASH, + ACTIONS(699), 1, + anon_sym_function, + ACTIONS(701), 1, + anon_sym_if, + ACTIONS(703), 1, + anon_sym_for, + ACTIONS(705), 1, + anon_sym_while, + ACTIONS(707), 1, + anon_sym_repeat, + ACTIONS(709), 1, + anon_sym_QMARK, + ACTIONS(711), 1, + anon_sym_TILDE, + ACTIONS(713), 1, + anon_sym_BANG, + ACTIONS(717), 1, + sym__hex_literal, + ACTIONS(719), 1, + sym__number_literal, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - STATE(370), 1, - sym__open_brace, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, + ACTIONS(1183), 1, + sym__newline, + STATE(308), 1, sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, + STATE(309), 1, sym__float_literal, - STATE(2054), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, + sym__open_brace, + STATE(491), 1, + aux_sym_function_definition_repeat1, + STATE(1106), 1, + sym__open_parenthesis, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1133), 2, - sym__external_close_parenthesis, - sym_comma, - ACTIONS(551), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1131), 8, + ACTIONS(1181), 8, sym_return, sym_next, sym_break, @@ -40931,7 +41031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1453), 19, + STATE(183), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40951,74 +41051,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [3201] = 32, + [3331] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1187), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(1117), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(493), 1, aux_sym_function_definition_repeat1, + STATE(1106), 1, + sym__open_parenthesis, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1135), 8, + ACTIONS(1185), 8, sym_return, sym_next, sym_break, @@ -41027,7 +41127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(162), 19, + STATE(184), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41047,74 +41147,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [3329] = 32, + [3459] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1139), 1, + ACTIONS(1191), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(354), 1, sym__open_brace, - STATE(1015), 1, + STATE(495), 1, aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1137), 8, + ACTIONS(1189), 8, sym_return, sym_next, sym_break, @@ -41123,7 +41223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(207), 19, + STATE(186), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41143,74 +41243,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [3457] = 32, + [3587] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(1117), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1141), 8, + ACTIONS(1193), 8, sym_return, sym_next, sym_break, @@ -41219,7 +41319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(163), 19, + STATE(189), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41239,74 +41339,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [3585] = 32, + [3715] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1197), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(354), 1, sym__open_brace, - STATE(1053), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(515), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(1106), 1, + sym__open_parenthesis, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1143), 8, + ACTIONS(1195), 8, sym_return, sym_next, sym_break, @@ -41315,7 +41415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(225), 19, + STATE(191), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41335,170 +41435,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [3713] = 32, + [3843] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(1117), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, - sym_identifier, - sym_dots, - ACTIONS(731), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(741), 5, - anon_sym_NA, - anon_sym_NA_integer_, - anon_sym_NA_real_, - anon_sym_NA_complex_, - anon_sym_NA_character_, - ACTIONS(1145), 8, - sym_return, - sym_next, - sym_break, - sym_true, - sym_false, - sym_null, - sym_inf, - sym_nan, - STATE(164), 19, - sym_function_definition, - sym_if_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_braced_expression, - sym_parenthesized_expression, - sym_call, - sym_subset, - sym_subset2, - sym_unary_operator, - sym_binary_operator, - sym_extract_operator, - sym_namespace_operator, - sym_integer, - sym_complex, - sym_float, - sym_na, - sym__expression, - [3841] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, - anon_sym_BSLASH, - ACTIONS(1151), 1, - anon_sym_function, - ACTIONS(1153), 1, - anon_sym_if, - ACTIONS(1155), 1, - anon_sym_for, - ACTIONS(1157), 1, - anon_sym_while, - ACTIONS(1159), 1, - anon_sym_repeat, - ACTIONS(1161), 1, - anon_sym_QMARK, - ACTIONS(1163), 1, - anon_sym_TILDE, - ACTIONS(1165), 1, - anon_sym_BANG, - ACTIONS(1169), 1, - sym__hex_literal, - ACTIONS(1171), 1, - sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1179), 1, - sym__newline, - ACTIONS(1181), 1, - sym__external_open_parenthesis, - ACTIONS(1183), 1, - sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(493), 1, - aux_sym_function_definition_repeat1, - STATE(1076), 1, - sym__open_parenthesis, - STATE(2044), 1, - sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1175), 8, + ACTIONS(1199), 8, sym_return, sym_next, sym_break, @@ -41507,7 +41511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(2), 19, + STATE(192), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41527,74 +41531,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [3969] = 32, + [3971] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1187), 1, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(354), 1, sym__open_brace, - STATE(500), 1, - aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1185), 8, + ACTIONS(1201), 8, sym_return, sym_next, sym_break, @@ -41603,7 +41607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(226), 19, + STATE(193), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41623,74 +41627,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [4097] = 32, + [4099] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1191), 1, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(354), 1, sym__open_brace, - STATE(1042), 1, - aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1189), 8, + ACTIONS(1203), 8, sym_return, sym_next, sym_break, @@ -41699,7 +41703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(208), 19, + STATE(194), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41719,74 +41723,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [4225] = 32, + [4227] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1195), 1, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(354), 1, sym__open_brace, - STATE(634), 1, - aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1193), 8, + ACTIONS(1205), 8, sym_return, sym_next, sym_break, @@ -41795,7 +41799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(171), 19, + STATE(195), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41815,74 +41819,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [4353] = 32, + [4355] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1199), 1, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(354), 1, sym__open_brace, - STATE(637), 1, - aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1197), 8, + ACTIONS(1207), 8, sym_return, sym_next, sym_break, @@ -41891,7 +41895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(184), 19, + STATE(197), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41911,74 +41915,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [4481] = 32, + [4483] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(1117), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1201), 8, + ACTIONS(1209), 8, sym_return, sym_next, sym_break, @@ -41987,7 +41991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(165), 19, + STATE(198), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42007,74 +42011,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [4609] = 32, + [4611] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1205), 1, + ACTIONS(1109), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(489), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1106), 1, sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1203), 8, + ACTIONS(1211), 8, sym_return, sym_next, sym_break, @@ -42083,7 +42087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(167), 19, + STATE(205), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42103,74 +42107,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [4737] = 32, + [4739] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1209), 1, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(354), 1, sym__open_brace, - STATE(643), 1, - aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1207), 8, + ACTIONS(1213), 8, sym_return, sym_next, sym_break, @@ -42179,7 +42183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(185), 19, + STATE(207), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42199,74 +42203,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [4865] = 32, + [4867] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1213), 1, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(354), 1, sym__open_brace, - STATE(488), 1, - aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1211), 8, + ACTIONS(1215), 8, sym_return, sym_next, sym_break, @@ -42275,7 +42279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(247), 19, + STATE(208), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42295,74 +42299,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [4993] = 32, + [4995] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(1039), 1, - sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, - sym__double_quoted_string, - STATE(378), 1, + STATE(357), 1, sym__open_brace, - STATE(1053), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, + sym_string, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, - sym_identifier, - sym_dots, - ACTIONS(1033), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1215), 8, + ACTIONS(1217), 8, sym_return, sym_next, sym_break, @@ -42371,7 +42375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(209), 19, + STATE(1367), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42391,74 +42395,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [5121] = 32, + [5123] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(1117), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1217), 8, + ACTIONS(1219), 8, sym_return, sym_next, sym_break, @@ -42467,7 +42471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(168), 19, + STATE(211), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42487,74 +42491,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [5249] = 32, + [5251] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1221), 1, - sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, + STATE(289), 1, sym__float_literal, - STATE(315), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(496), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1219), 8, + ACTIONS(1249), 8, sym_return, sym_next, sym_break, @@ -42563,7 +42567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(169), 19, + STATE(96), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42583,74 +42587,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [5377] = 32, + [5379] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1225), 1, + ACTIONS(1109), 1, sym__newline, + STATE(308), 1, + sym__single_quoted_string, STATE(309), 1, - sym_string, - STATE(313), 1, sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(354), 1, sym__open_brace, - STATE(497), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1106), 1, sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1223), 8, + ACTIONS(1257), 8, sym_return, sym_next, sym_break, @@ -42659,7 +42663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(170), 19, + STATE(213), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42679,74 +42683,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [5505] = 32, + [5507] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(1039), 1, - sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1229), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1261), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, - sym__double_quoted_string, - STATE(378), 1, + STATE(357), 1, sym__open_brace, - STATE(477), 1, + STATE(1000), 1, aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, + sym_string, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, - sym_identifier, - sym_dots, - ACTIONS(1033), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1227), 8, + ACTIONS(1259), 8, sym_return, sym_next, sym_break, @@ -42755,7 +42759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(210), 19, + STATE(1538), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42775,74 +42779,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [5633] = 32, + [5635] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(731), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(308), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(354), 1, sym__open_brace, - STATE(1076), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1231), 8, + ACTIONS(1263), 8, sym_return, sym_next, sym_break, @@ -42851,7 +42855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(5), 19, + STATE(214), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42871,74 +42875,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [5761] = 32, + [5763] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_SQUOTE, - ACTIONS(491), 1, - anon_sym_DQUOTE, - ACTIONS(495), 1, - sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(737), 1, - sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1235), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(309), 1, + STATE(357), 1, + sym__open_brace, + STATE(1097), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(313), 1, + STATE(1626), 1, sym__float_literal, - STATE(315), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(317), 1, - sym__double_quoted_string, - STATE(372), 1, - sym__open_brace, - STATE(501), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, - sym__open_parenthesis, - STATE(2051), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, - sym_identifier, - sym_dots, - ACTIONS(731), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1233), 8, + ACTIONS(1265), 8, sym_return, sym_next, sym_break, @@ -42947,7 +42951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(172), 19, + STATE(1466), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42967,74 +42971,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [5889] = 32, + [5891] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(597), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(599), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(605), 1, sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(721), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1239), 1, + ACTIONS(1109), 1, sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(354), 1, sym__open_brace, - STATE(509), 1, - aux_sym_function_definition_repeat1, - STATE(1076), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(2044), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1237), 8, + ACTIONS(1267), 8, sym_return, sym_next, sym_break, @@ -43043,7 +43047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(3), 19, + STATE(217), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43063,74 +43067,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [6017] = 32, + [6019] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, + STATE(289), 1, sym__float_literal, - STATE(315), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1117), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2051), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1241), 8, + ACTIONS(1269), 8, sym_return, sym_next, sym_break, @@ -43139,7 +43143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(173), 19, + STATE(80), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43159,74 +43163,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [6145] = 32, + [6147] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_SQUOTE, - ACTIONS(491), 1, - anon_sym_DQUOTE, - ACTIONS(495), 1, - sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(737), 1, - sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1273), 1, sym__newline, - STATE(309), 1, + STATE(357), 1, + sym__open_brace, + STATE(1045), 1, + aux_sym_function_definition_repeat1, + STATE(1097), 1, + sym__open_parenthesis, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(313), 1, + STATE(1626), 1, sym__float_literal, - STATE(315), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(317), 1, - sym__double_quoted_string, - STATE(372), 1, - sym__open_brace, - STATE(1117), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2051), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, - sym_identifier, - sym_dots, - ACTIONS(731), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1243), 8, + ACTIONS(1271), 8, sym_return, sym_next, sym_break, @@ -43235,7 +43239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(174), 19, + STATE(1520), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43255,74 +43259,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [6273] = 32, + [6275] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1247), 1, + ACTIONS(1277), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, + STATE(289), 1, sym__float_literal, - STATE(315), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(504), 1, + STATE(704), 1, aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1245), 8, + ACTIONS(1275), 8, sym_return, sym_next, sym_break, @@ -43331,7 +43335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(175), 19, + STATE(77), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43351,74 +43355,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [6401] = 32, + [6403] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_SQUOTE, - ACTIONS(491), 1, - anon_sym_DQUOTE, - ACTIONS(495), 1, - sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(737), 1, - sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1251), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1281), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, - sym__double_quoted_string, - STATE(372), 1, + STATE(357), 1, sym__open_brace, - STATE(505), 1, + STATE(1042), 1, aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, + sym_string, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, - sym_identifier, - sym_dots, - ACTIONS(731), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1249), 8, + ACTIONS(1279), 8, sym_return, sym_next, sym_break, @@ -43427,7 +43431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(176), 19, + STATE(1517), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43447,74 +43451,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [6529] = 32, + [6531] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1285), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, + STATE(289), 1, sym__float_literal, - STATE(325), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1053), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(552), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1253), 8, + ACTIONS(1283), 8, sym_return, sym_next, sym_break, @@ -43523,7 +43527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(228), 19, + STATE(75), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43543,74 +43547,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [6657] = 32, + [6659] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1289), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, + STATE(289), 1, sym__float_literal, - STATE(315), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1117), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(549), 1, aux_sym_function_definition_repeat1, - STATE(2051), 1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1255), 8, + ACTIONS(1287), 8, sym_return, sym_next, sym_break, @@ -43619,7 +43623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(177), 19, + STATE(74), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43639,74 +43643,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [6785] = 32, + [6787] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1259), 1, + ACTIONS(1293), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, + STATE(289), 1, sym__float_literal, - STATE(315), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(508), 1, + STATE(541), 1, aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1257), 8, + ACTIONS(1291), 8, sym_return, sym_next, sym_break, @@ -43715,7 +43719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(178), 19, + STATE(19), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43735,74 +43739,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [6913] = 32, + [6915] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1263), 1, + ACTIONS(1297), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, + STATE(289), 1, sym__float_literal, - STATE(325), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(594), 1, + STATE(490), 1, aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1261), 8, + ACTIONS(1295), 8, sym_return, sym_next, sym_break, @@ -43811,7 +43815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(229), 19, + STATE(72), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43831,74 +43835,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [7041] = 32, + [7043] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_SQUOTE, - ACTIONS(491), 1, - anon_sym_DQUOTE, - ACTIONS(495), 1, - sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(737), 1, - sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, - sym__double_quoted_string, - STATE(372), 1, + STATE(357), 1, sym__open_brace, - STATE(1117), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2051), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, + sym_string, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, - sym_identifier, - sym_dots, - ACTIONS(731), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1265), 8, + ACTIONS(1299), 8, sym_return, sym_next, sym_break, @@ -43907,7 +43911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(179), 19, + STATE(1338), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43927,74 +43931,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [7169] = 32, + [7171] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1303), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, + STATE(289), 1, sym__float_literal, - STATE(315), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1117), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(496), 1, aux_sym_function_definition_repeat1, - STATE(2051), 1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1267), 8, + ACTIONS(1301), 8, sym_return, sym_next, sym_break, @@ -44003,7 +44007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(180), 19, + STATE(71), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44023,74 +44027,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [7297] = 32, + [7299] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1271), 1, + ACTIONS(1109), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, STATE(317), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(510), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1269), 8, + ACTIONS(1305), 8, sym_return, sym_next, sym_break, @@ -44099,7 +44103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(181), 19, + STATE(226), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44119,74 +44123,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [7425] = 32, + [7427] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1275), 1, - sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, + STATE(388), 1, + sym__open_brace, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(325), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(378), 1, - sym__open_brace, - STATE(631), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1053), 1, - sym__open_parenthesis, - STATE(2049), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1273), 8, + ACTIONS(1339), 8, sym_return, sym_next, sym_break, @@ -44195,7 +44199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(230), 19, + STATE(1211), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44215,74 +44219,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [7553] = 32, + [7555] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_SQUOTE, - ACTIONS(491), 1, - anon_sym_DQUOTE, - ACTIONS(495), 1, - sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, + STATE(388), 1, + sym__open_brace, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(315), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(372), 1, - sym__open_brace, - STATE(1117), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2051), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1277), 8, + ACTIONS(1349), 8, sym_return, sym_next, sym_break, @@ -44291,7 +44295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(182), 19, + STATE(1210), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44311,74 +44315,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [7681] = 32, + [7683] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1347), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, + ACTIONS(1353), 1, + sym__newline, + STATE(388), 1, + sym__open_brace, + STATE(507), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(301), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1279), 8, + ACTIONS(1351), 8, sym_return, sym_next, sym_break, @@ -44387,7 +44391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(4), 19, + STATE(1208), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44407,74 +44411,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [7809] = 32, + [7811] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_SQUOTE, - ACTIONS(491), 1, - anon_sym_DQUOTE, - ACTIONS(495), 1, - sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, + STATE(388), 1, + sym__open_brace, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(315), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(372), 1, - sym__open_brace, - STATE(1117), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2051), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1281), 8, + ACTIONS(1355), 8, sym_return, sym_next, sym_break, @@ -44483,7 +44487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(183), 19, + STATE(1207), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44503,74 +44507,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [7937] = 32, + [7939] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(1039), 1, - sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1285), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1359), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, - sym__double_quoted_string, - STATE(378), 1, + STATE(357), 1, sym__open_brace, - STATE(452), 1, + STATE(494), 1, aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, + sym_string, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, - sym_identifier, - sym_dots, - ACTIONS(1033), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1283), 8, + ACTIONS(1357), 8, sym_return, sym_next, sym_break, @@ -44579,7 +44583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(231), 19, + STATE(1339), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44599,74 +44603,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [8065] = 32, + [8067] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1063), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - ACTIONS(1289), 1, + ACTIONS(1109), 1, sym__newline, - STATE(373), 1, + STATE(357), 1, sym__open_brace, - STATE(518), 1, - aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1628), 1, + STATE(1625), 1, sym_string, - STATE(1631), 1, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1287), 8, + ACTIONS(1361), 8, sym_return, sym_next, sym_break, @@ -44675,7 +44679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1401), 19, + STATE(1340), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44695,74 +44699,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [8193] = 32, + [8195] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1293), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(519), 1, - aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1291), 8, + ACTIONS(1363), 8, sym_return, sym_next, sym_break, @@ -44771,7 +44775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1403), 19, + STATE(1206), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44791,74 +44795,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [8321] = 32, + [8323] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1063), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - ACTIONS(1297), 1, + ACTIONS(1109), 1, sym__newline, - STATE(373), 1, + STATE(357), 1, sym__open_brace, - STATE(520), 1, - aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1628), 1, + STATE(1625), 1, sym_string, - STATE(1631), 1, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1295), 8, + ACTIONS(1365), 8, sym_return, sym_next, sym_break, @@ -44867,7 +44871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1404), 19, + STATE(1343), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44887,74 +44891,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [8449] = 32, + [8451] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1301), 1, + ACTIONS(1109), 1, sym__newline, - STATE(373), 1, - sym__open_brace, - STATE(521), 1, - aux_sym_function_definition_repeat1, - STATE(1066), 1, - sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, sym__float_literal, - STATE(1628), 1, + STATE(310), 1, sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, + sym__open_brace, + STATE(1106), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1299), 8, + ACTIONS(1367), 8, sym_return, sym_next, sym_break, @@ -44963,7 +44967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1405), 19, + STATE(131), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44983,74 +44987,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [8577] = 32, + [8579] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1305), 1, + ACTIONS(1371), 1, sym__newline, - STATE(373), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, sym__open_brace, - STATE(522), 1, + STATE(545), 1, aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1303), 8, + ACTIONS(1369), 8, sym_return, sym_next, sym_break, @@ -45059,7 +45063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1406), 19, + STATE(221), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45079,74 +45083,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [8705] = 32, + [8707] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1309), 1, + ACTIONS(1375), 1, sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(536), 1, + STATE(508), 1, aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1307), 8, + ACTIONS(1373), 8, sym_return, sym_next, sym_break, @@ -45155,7 +45159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1430), 19, + STATE(1204), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45175,74 +45179,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [8833] = 32, + [8835] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1311), 8, + ACTIONS(1377), 8, sym_return, sym_next, sym_break, @@ -45251,7 +45255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1454), 19, + STATE(1203), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45271,74 +45275,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [8961] = 32, + [8963] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1381), 1, sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(1066), 1, + STATE(510), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1313), 8, + ACTIONS(1379), 8, sym_return, sym_next, sym_break, @@ -45347,7 +45351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1455), 19, + STATE(1200), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45367,74 +45371,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [9089] = 32, + [9091] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1063), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1385), 1, sym__newline, - STATE(373), 1, + STATE(357), 1, sym__open_brace, - STATE(1066), 1, + STATE(504), 1, + aux_sym_function_definition_repeat1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, + STATE(1625), 1, sym_string, - STATE(1631), 1, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1315), 8, + ACTIONS(1383), 8, sym_return, sym_next, sym_break, @@ -45443,7 +45447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1456), 19, + STATE(1345), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45463,74 +45467,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [9217] = 32, + [9219] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1063), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(373), 1, + STATE(357), 1, sym__open_brace, - STATE(1066), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1628), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1631), 1, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1317), 8, + ACTIONS(1387), 8, sym_return, sym_next, sym_break, @@ -45539,7 +45543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1458), 19, + STATE(1350), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45559,74 +45563,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [9345] = 32, + [9347] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1391), 1, sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(1066), 1, + STATE(513), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1319), 8, + ACTIONS(1389), 8, sym_return, sym_next, sym_break, @@ -45635,7 +45639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1459), 19, + STATE(1198), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45655,74 +45659,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [9473] = 32, + [9475] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, - sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1323), 1, - sym__newline, - STATE(373), 1, + ACTIONS(1347), 1, + sym__external_open_brace, + STATE(388), 1, sym__open_brace, - STATE(538), 1, - aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1321), 8, + ACTIONS(1393), 8, sym_return, sym_next, sym_break, @@ -45731,7 +45735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1472), 19, + STATE(1197), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45751,74 +45755,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [9601] = 32, + [9603] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1063), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - ACTIONS(1327), 1, + ACTIONS(1397), 1, sym__newline, - STATE(373), 1, + STATE(357), 1, sym__open_brace, - STATE(539), 1, + STATE(512), 1, aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1628), 1, + STATE(1625), 1, sym_string, - STATE(1631), 1, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1325), 8, + ACTIONS(1395), 8, sym_return, sym_next, sym_break, @@ -45827,7 +45831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1478), 19, + STATE(1353), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45847,74 +45851,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [9729] = 32, + [9731] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1063), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - ACTIONS(1331), 1, + ACTIONS(1401), 1, sym__newline, - STATE(373), 1, + STATE(357), 1, sym__open_brace, - STATE(540), 1, + STATE(514), 1, aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1628), 1, + STATE(1625), 1, sym_string, - STATE(1631), 1, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1329), 8, + ACTIONS(1399), 8, sym_return, sym_next, sym_break, @@ -45923,7 +45927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1490), 19, + STATE(1362), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45943,74 +45947,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [9857] = 32, + [9859] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1063), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - ACTIONS(1335), 1, + ACTIONS(1109), 1, sym__newline, - STATE(373), 1, + STATE(357), 1, sym__open_brace, - STATE(541), 1, - aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1628), 1, + STATE(1625), 1, sym_string, - STATE(1631), 1, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1333), 8, + ACTIONS(1403), 8, sym_return, sym_next, sym_break, @@ -46019,7 +46023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1497), 19, + STATE(1366), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46039,74 +46043,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [9985] = 32, + [9987] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1339), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(542), 1, - aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1337), 8, + ACTIONS(1405), 8, sym_return, sym_next, sym_break, @@ -46115,7 +46119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1507), 19, + STATE(1196), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46135,74 +46139,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [10113] = 32, + [10115] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1343), 1, + ACTIONS(1409), 1, sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(543), 1, + STATE(518), 1, aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1341), 8, + ACTIONS(1407), 8, sym_return, sym_next, sym_break, @@ -46211,7 +46215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1512), 19, + STATE(1193), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46231,74 +46235,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [10241] = 32, + [10243] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, - sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, ACTIONS(1347), 1, + sym__external_open_brace, + ACTIONS(1413), 1, sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(544), 1, + STATE(523), 1, aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1345), 8, + ACTIONS(1411), 8, sym_return, sym_next, sym_break, @@ -46307,7 +46311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1519), 19, + STATE(1189), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46327,74 +46331,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [10369] = 32, + [10371] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1351), 1, + ACTIONS(1417), 1, sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(545), 1, + STATE(527), 1, aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1349), 8, + ACTIONS(1415), 8, sym_return, sym_next, sym_break, @@ -46403,7 +46407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1534), 19, + STATE(1187), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46423,74 +46427,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [10497] = 32, + [10499] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1355), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(546), 1, - aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1353), 8, + ACTIONS(1419), 8, sym_return, sym_next, sym_break, @@ -46499,7 +46503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1536), 19, + STATE(1186), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46519,74 +46523,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [10625] = 32, + [10627] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1063), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - ACTIONS(1359), 1, + ACTIONS(1423), 1, sym__newline, - STATE(373), 1, + STATE(357), 1, sym__open_brace, - STATE(547), 1, + STATE(521), 1, aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1628), 1, + STATE(1625), 1, sym_string, - STATE(1631), 1, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1357), 8, + ACTIONS(1421), 8, sym_return, sym_next, sym_break, @@ -46595,7 +46599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1538), 19, + STATE(1368), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46615,74 +46619,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [10753] = 32, + [10755] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1363), 1, + ACTIONS(1427), 1, sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(548), 1, + STATE(531), 1, aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1361), 8, + ACTIONS(1425), 8, sym_return, sym_next, sym_break, @@ -46691,7 +46695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1541), 19, + STATE(1178), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46711,74 +46715,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [10881] = 32, + [10883] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1367), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(549), 1, - aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1365), 8, + ACTIONS(1429), 8, sym_return, sym_next, sym_break, @@ -46787,7 +46791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1546), 19, + STATE(1177), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46807,74 +46811,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [11009] = 32, + [11011] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1371), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(550), 1, - aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1369), 8, + ACTIONS(1431), 8, sym_return, sym_next, sym_break, @@ -46883,7 +46887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1551), 19, + STATE(1328), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46903,74 +46907,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [11137] = 32, + [11139] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1063), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1435), 1, sym__newline, - STATE(373), 1, + STATE(357), 1, sym__open_brace, - STATE(1066), 1, + STATE(526), 1, + aux_sym_function_definition_repeat1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, + STATE(1625), 1, sym_string, - STATE(1631), 1, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1373), 8, + ACTIONS(1433), 8, sym_return, sym_next, sym_break, @@ -46979,7 +46983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1335), 19, + STATE(1369), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46999,74 +47003,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [11265] = 32, + [11267] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1377), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(551), 1, - aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1375), 8, + ACTIONS(1437), 8, sym_return, sym_next, sym_break, @@ -47075,7 +47079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1336), 19, + STATE(1228), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47095,74 +47099,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [11393] = 32, + [11395] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1379), 8, + ACTIONS(1439), 8, sym_return, sym_next, sym_break, @@ -47171,7 +47175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1338), 19, + STATE(1227), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47191,74 +47195,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [11521] = 32, + [11523] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1381), 8, + ACTIONS(1441), 8, sym_return, sym_next, sym_break, @@ -47267,7 +47271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1339), 19, + STATE(1226), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47287,74 +47291,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [11649] = 32, + [11651] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1383), 8, + ACTIONS(1443), 8, sym_return, sym_next, sym_break, @@ -47363,7 +47367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1340), 19, + STATE(1225), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47383,74 +47387,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [11777] = 32, + [11779] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(373), 1, + STATE(289), 1, + sym__float_literal, + STATE(291), 1, + sym__single_quoted_string, + STATE(304), 1, + sym__double_quoted_string, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1066), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1628), 1, - sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1385), 8, + ACTIONS(1445), 8, sym_return, sym_next, sym_break, @@ -47459,7 +47463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1342), 19, + STATE(97), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47479,74 +47483,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [11905] = 32, + [11907] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1387), 8, + ACTIONS(1447), 8, sym_return, sym_next, sym_break, @@ -47555,7 +47559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1343), 19, + STATE(1224), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47575,74 +47579,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [12033] = 32, + [12035] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1063), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1451), 1, sym__newline, - STATE(373), 1, + STATE(357), 1, sym__open_brace, - STATE(1066), 1, + STATE(488), 1, + aux_sym_function_definition_repeat1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, + STATE(1625), 1, sym_string, - STATE(1631), 1, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1389), 8, + ACTIONS(1449), 8, sym_return, sym_next, sym_break, @@ -47651,7 +47655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1344), 19, + STATE(1373), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47671,74 +47675,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [12161] = 32, + [12163] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1063), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(373), 1, + STATE(357), 1, sym__open_brace, - STATE(1066), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1628), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1631), 1, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1391), 8, + ACTIONS(1453), 8, sym_return, sym_next, sym_break, @@ -47747,7 +47751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1345), 19, + STATE(1374), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47767,74 +47771,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [12289] = 32, + [12291] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(373), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, sym__open_brace, - STATE(1066), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1628), 1, - sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1393), 8, + ACTIONS(1455), 8, sym_return, sym_next, sym_break, @@ -47843,7 +47847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1346), 19, + STATE(229), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47863,74 +47867,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [12417] = 32, + [12419] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1459), 1, sym__newline, - STATE(373), 1, - sym__open_brace, - STATE(1066), 1, - sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, + STATE(310), 1, sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, + sym__open_brace, + STATE(557), 1, + aux_sym_function_definition_repeat1, + STATE(1106), 1, + sym__open_parenthesis, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1395), 8, + ACTIONS(1457), 8, sym_return, sym_next, sym_break, @@ -47939,7 +47943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1347), 19, + STATE(231), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47959,74 +47963,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [12545] = 32, + [12547] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1063), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1463), 1, sym__newline, - STATE(373), 1, + STATE(357), 1, sym__open_brace, - STATE(1066), 1, + STATE(901), 1, + aux_sym_function_definition_repeat1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, + STATE(1625), 1, sym_string, - STATE(1631), 1, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1397), 8, + ACTIONS(1461), 8, sym_return, sym_next, sym_break, @@ -48035,7 +48039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1350), 19, + STATE(1571), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48055,74 +48059,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [12673] = 32, + [12675] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1399), 8, + ACTIONS(1465), 8, sym_return, sym_next, sym_break, @@ -48131,7 +48135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1352), 19, + STATE(1223), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48151,74 +48155,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [12801] = 32, + [12803] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(373), 1, + STATE(289), 1, + sym__float_literal, + STATE(291), 1, + sym__single_quoted_string, + STATE(304), 1, + sym__double_quoted_string, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1066), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1628), 1, - sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1401), 8, + ACTIONS(1467), 8, sym_return, sym_next, sym_break, @@ -48227,7 +48231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1353), 19, + STATE(98), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48247,74 +48251,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [12929] = 32, + [12931] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1403), 8, + ACTIONS(1469), 8, sym_return, sym_next, sym_break, @@ -48323,7 +48327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1575), 19, + STATE(1222), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48343,74 +48347,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [13057] = 32, + [13059] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1473), 1, sym__newline, - STATE(373), 1, - sym__open_brace, - STATE(1066), 1, - sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, + STATE(310), 1, sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, + sym__open_brace, + STATE(559), 1, + aux_sym_function_definition_repeat1, + STATE(1106), 1, + sym__open_parenthesis, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1405), 8, + ACTIONS(1471), 8, sym_return, sym_next, sym_break, @@ -48419,7 +48423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1357), 19, + STATE(242), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48439,74 +48443,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [13185] = 32, + [13187] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1409), 1, - sym__newline, - STATE(373), 1, - sym__open_brace, - STATE(553), 1, - aux_sym_function_definition_repeat1, - STATE(1066), 1, - sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(289), 1, sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(304), 1, + sym__double_quoted_string, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1407), 8, + ACTIONS(1475), 8, sym_return, sym_next, sym_break, @@ -48515,7 +48519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1359), 19, + STATE(99), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48535,74 +48539,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [13313] = 32, + [13315] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1411), 8, + ACTIONS(1477), 8, sym_return, sym_next, sym_break, @@ -48611,7 +48615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1364), 19, + STATE(1217), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48631,74 +48635,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [13441] = 32, + [13443] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1415), 1, + ACTIONS(1481), 1, sym__newline, - STATE(373), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, sym__open_brace, - STATE(557), 1, + STATE(564), 1, aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1413), 8, + ACTIONS(1479), 8, sym_return, sym_next, sym_break, @@ -48707,7 +48711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1365), 19, + STATE(247), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48727,74 +48731,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [13569] = 32, + [13571] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1419), 1, + ACTIONS(1109), 1, sym__newline, - STATE(373), 1, - sym__open_brace, - STATE(558), 1, - aux_sym_function_definition_repeat1, - STATE(1066), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(1605), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, sym__float_literal, - STATE(1628), 1, + STATE(322), 1, sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(370), 1, + sym__open_brace, + STATE(1092), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1417), 8, + ACTIONS(1483), 8, sym_return, sym_next, sym_break, @@ -48803,7 +48807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1368), 19, + STATE(241), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48823,74 +48827,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [13697] = 32, + [13699] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1423), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(561), 1, - aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1421), 8, + ACTIONS(1485), 8, sym_return, sym_next, sym_break, @@ -48899,7 +48903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1370), 19, + STATE(1216), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48919,74 +48923,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [13825] = 32, + [13827] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(373), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, sym__open_brace, - STATE(1066), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1628), 1, - sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1425), 8, + ACTIONS(1487), 8, sym_return, sym_next, sym_break, @@ -48995,7 +48999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1372), 19, + STATE(246), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49015,74 +49019,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [13953] = 32, + [13955] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(373), 1, - sym__open_brace, - STATE(1066), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(1605), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, + STATE(322), 1, sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(370), 1, + sym__open_brace, + STATE(1092), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1427), 8, + ACTIONS(1489), 8, sym_return, sym_next, sym_break, @@ -49091,7 +49095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1373), 19, + STATE(240), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49111,74 +49115,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [14081] = 32, + [14083] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1431), 1, + ACTIONS(1109), 1, sym__newline, - STATE(373), 1, - sym__open_brace, - STATE(563), 1, - aux_sym_function_definition_repeat1, - STATE(1066), 1, - sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, sym__float_literal, - STATE(1628), 1, + STATE(310), 1, sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, + sym__open_brace, + STATE(1106), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1429), 8, + ACTIONS(1491), 8, sym_return, sym_next, sym_break, @@ -49187,7 +49191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1374), 19, + STATE(245), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49207,74 +49211,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [14209] = 32, + [14211] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1435), 1, + ACTIONS(1495), 1, sym__newline, - STATE(373), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, sym__open_brace, - STATE(564), 1, + STATE(569), 1, aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1433), 8, + ACTIONS(1493), 8, sym_return, sym_next, sym_break, @@ -49283,7 +49287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1375), 19, + STATE(244), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49303,74 +49307,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [14337] = 32, + [14339] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1499), 1, sym__newline, - STATE(373), 1, - sym__open_brace, - STATE(1066), 1, - sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, + STATE(310), 1, sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, + sym__open_brace, + STATE(571), 1, + aux_sym_function_definition_repeat1, + STATE(1106), 1, + sym__open_parenthesis, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1437), 8, + ACTIONS(1497), 8, sym_return, sym_next, sym_break, @@ -49379,7 +49383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1377), 19, + STATE(243), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49399,74 +49403,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [14465] = 32, + [14467] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1441), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(566), 1, - aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1439), 8, + ACTIONS(1501), 8, sym_return, sym_next, sym_break, @@ -49475,7 +49479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1378), 19, + STATE(1215), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49495,74 +49499,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [14593] = 32, + [14595] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1505), 1, sym__newline, - STATE(373), 1, - sym__open_brace, - STATE(1066), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(1605), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, + STATE(322), 1, sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(370), 1, + sym__open_brace, + STATE(555), 1, + aux_sym_function_definition_repeat1, + STATE(1092), 1, + sym__open_parenthesis, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1443), 8, + ACTIONS(1503), 8, sym_return, sym_next, sym_break, @@ -49571,7 +49575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1380), 19, + STATE(238), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49591,74 +49595,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [14721] = 32, + [14723] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(373), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, sym__open_brace, - STATE(1066), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1628), 1, - sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1445), 8, + ACTIONS(1507), 8, sym_return, sym_next, sym_break, @@ -49667,7 +49671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1382), 19, + STATE(235), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49687,74 +49691,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [14849] = 32, + [14851] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1449), 1, + ACTIONS(1511), 1, sym__newline, - STATE(373), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, sym__open_brace, - STATE(567), 1, + STATE(575), 1, aux_sym_function_definition_repeat1, - STATE(1066), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, - sym__float_literal, - STATE(1628), 1, - sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1447), 8, + ACTIONS(1509), 8, sym_return, sym_next, sym_break, @@ -49763,7 +49767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1383), 19, + STATE(232), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49783,74 +49787,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [14977] = 32, + [14979] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(421), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(373), 1, + STATE(388), 1, sym__open_brace, - STATE(1066), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1605), 1, + STATE(1581), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, - sym_string, - STATE(1631), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(2048), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1451), 8, + ACTIONS(1513), 8, sym_return, sym_next, sym_break, @@ -49859,7 +49863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1388), 19, + STATE(1214), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49879,74 +49883,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [15105] = 32, + [15107] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(399), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(401), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(403), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(405), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(407), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(409), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(411), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(413), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(417), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(419), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(435), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(437), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1063), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(373), 1, - sym__open_brace, - STATE(1066), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(1605), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, sym__float_literal, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1628), 1, + STATE(322), 1, sym_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2048), 1, + STATE(370), 1, + sym__open_brace, + STATE(1092), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(415), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1061), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(429), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1453), 8, + ACTIONS(1515), 8, sym_return, sym_next, sym_break, @@ -49955,7 +49959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1390), 19, + STATE(237), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49975,74 +49979,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [15233] = 32, + [15235] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1457), 1, - sym__newline, - STATE(376), 1, + STATE(388), 1, sym__open_brace, - STATE(574), 1, - aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(1581), 1, sym__float_literal, - STATE(1633), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1455), 8, + ACTIONS(1517), 8, sym_return, sym_next, sym_break, @@ -50051,7 +50055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1395), 19, + STATE(1213), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50071,74 +50075,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [15361] = 32, + [15363] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1461), 1, + ACTIONS(1109), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(575), 1, - aux_sym_function_definition_repeat1, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1630), 1, - sym_string, - STATE(1632), 1, - sym__float_literal, - STATE(1633), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(354), 1, + sym__open_brace, + STATE(1106), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1459), 8, + ACTIONS(1519), 8, sym_return, sym_next, sym_break, @@ -50147,7 +50151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1397), 19, + STATE(225), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50167,74 +50171,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [15489] = 32, + [15491] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1465), 1, + ACTIONS(1109), 1, sym__newline, - STATE(376), 1, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(576), 1, - aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1630), 1, - sym_string, - STATE(1632), 1, - sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, - sym__double_quoted_string, - STATE(2046), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1463), 8, + ACTIONS(1521), 8, sym_return, sym_next, sym_break, @@ -50243,7 +50247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1399), 19, + STATE(236), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50263,74 +50267,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [15617] = 32, + [15619] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1469), 1, + ACTIONS(1109), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(577), 1, - aux_sym_function_definition_repeat1, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1630), 1, - sym_string, - STATE(1632), 1, - sym__float_literal, - STATE(1633), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(354), 1, + sym__open_brace, + STATE(1106), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1467), 8, + ACTIONS(1523), 8, sym_return, sym_next, sym_break, @@ -50339,7 +50343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1400), 19, + STATE(222), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50359,74 +50363,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [15745] = 32, + [15747] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1473), 1, + ACTIONS(1527), 1, sym__newline, - STATE(376), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, sym__open_brace, - STATE(578), 1, + STATE(579), 1, aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1630), 1, - sym_string, - STATE(1632), 1, - sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, - sym__double_quoted_string, - STATE(2046), 1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1471), 8, + ACTIONS(1525), 8, sym_return, sym_next, sym_break, @@ -50435,7 +50439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1402), 19, + STATE(220), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50455,74 +50459,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [15873] = 32, + [15875] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1477), 1, + ACTIONS(1531), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(592), 1, - aux_sym_function_definition_repeat1, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(289), 1, sym__float_literal, - STATE(1633), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(882), 1, + aux_sym_function_definition_repeat1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1475), 8, + ACTIONS(1529), 8, sym_return, sym_next, sym_break, @@ -50531,7 +50535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1407), 19, + STATE(101), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50551,74 +50555,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [16001] = 32, + [16003] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1535), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(289), 1, sym__float_literal, - STATE(1633), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(961), 1, + aux_sym_function_definition_repeat1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1479), 8, + ACTIONS(1533), 8, sym_return, sym_next, sym_break, @@ -50627,7 +50631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1410), 19, + STATE(103), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50647,74 +50651,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [16129] = 32, + [16131] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(376), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__float_literal, + STATE(310), 1, + sym_string, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, sym__open_brace, - STATE(1071), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, - sym_string, - STATE(1632), 1, - sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, - sym__double_quoted_string, - STATE(2046), 1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1481), 8, + ACTIONS(1537), 8, sym_return, sym_next, sym_break, @@ -50723,7 +50727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1411), 19, + STATE(219), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50743,74 +50747,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [16257] = 32, + [16259] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1541), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(289), 1, sym__float_literal, - STATE(1633), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1012), 1, + aux_sym_function_definition_repeat1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1483), 8, + ACTIONS(1539), 8, sym_return, sym_next, sym_break, @@ -50819,7 +50823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1412), 19, + STATE(104), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50839,74 +50843,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [16385] = 32, + [16387] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1545), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(289), 1, sym__float_literal, - STATE(1633), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1032), 1, + aux_sym_function_definition_repeat1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1485), 8, + ACTIONS(1543), 8, sym_return, sym_next, sym_break, @@ -50915,7 +50919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1413), 19, + STATE(105), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50935,74 +50939,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [16513] = 32, + [16515] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1549), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(289), 1, sym__float_literal, - STATE(1633), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1043), 1, + aux_sym_function_definition_repeat1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1487), 8, + ACTIONS(1547), 8, sym_return, sym_next, sym_break, @@ -51011,7 +51015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1414), 19, + STATE(106), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51031,74 +51035,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [16641] = 32, + [16643] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1491), 1, + ACTIONS(1109), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(595), 1, - aux_sym_function_definition_repeat1, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(354), 1, + sym__open_brace, + STATE(1106), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1489), 8, + ACTIONS(1551), 8, sym_return, sym_next, sym_break, @@ -51107,7 +51111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1415), 19, + STATE(200), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51127,74 +51131,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [16769] = 32, + [16771] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1495), 1, + ACTIONS(1555), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(596), 1, - aux_sym_function_definition_repeat1, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(289), 1, sym__float_literal, - STATE(1633), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1041), 1, + aux_sym_function_definition_repeat1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1493), 8, + ACTIONS(1553), 8, sym_return, sym_next, sym_break, @@ -51203,7 +51207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1416), 19, + STATE(107), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51223,74 +51227,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [16897] = 32, + [16899] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1499), 1, + ACTIONS(1559), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(597), 1, - aux_sym_function_definition_repeat1, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(289), 1, sym__float_literal, - STATE(1633), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1038), 1, + aux_sym_function_definition_repeat1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1497), 8, + ACTIONS(1557), 8, sym_return, sym_next, sym_break, @@ -51299,7 +51303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1417), 19, + STATE(108), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51319,74 +51323,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [17025] = 32, + [17027] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1503), 1, + ACTIONS(1563), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(598), 1, - aux_sym_function_definition_repeat1, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(289), 1, sym__float_literal, - STATE(1633), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1037), 1, + aux_sym_function_definition_repeat1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1501), 8, + ACTIONS(1561), 8, sym_return, sym_next, sym_break, @@ -51395,7 +51399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1418), 19, + STATE(110), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51415,74 +51419,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [17153] = 32, + [17155] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1507), 1, + ACTIONS(1567), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(599), 1, + STATE(595), 1, aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1630), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1505), 8, + ACTIONS(1565), 8, sym_return, sym_next, sym_break, @@ -51491,7 +51495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1419), 19, + STATE(1446), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51511,74 +51515,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [17281] = 32, + [17283] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1511), 1, + ACTIONS(1571), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(600), 1, + STATE(597), 1, aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1630), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1509), 8, + ACTIONS(1569), 8, sym_return, sym_next, sym_break, @@ -51587,7 +51591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1420), 19, + STATE(1447), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51607,74 +51611,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [17409] = 32, + [17411] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1515), 1, + ACTIONS(1575), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(601), 1, + STATE(599), 1, aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1630), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1513), 8, + ACTIONS(1573), 8, sym_return, sym_next, sym_break, @@ -51683,7 +51687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1421), 19, + STATE(1448), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51703,74 +51707,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [17537] = 32, + [17539] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1519), 1, + ACTIONS(1579), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(602), 1, + STATE(601), 1, aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1630), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1517), 8, + ACTIONS(1577), 8, sym_return, sym_next, sym_break, @@ -51779,7 +51783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1422), 19, + STATE(1449), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51799,74 +51803,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [17665] = 32, + [17667] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1523), 1, + ACTIONS(1583), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, STATE(603), 1, aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1630), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1521), 8, + ACTIONS(1581), 8, sym_return, sym_next, sym_break, @@ -51875,7 +51879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1423), 19, + STATE(1335), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51895,74 +51899,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [17793] = 32, + [17795] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1527), 1, + ACTIONS(1587), 1, sym__newline, - STATE(376), 1, + STATE(388), 1, sym__open_brace, - STATE(604), 1, + STATE(534), 1, aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(1581), 1, sym__float_literal, - STATE(1633), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1525), 8, + ACTIONS(1585), 8, sym_return, sym_next, sym_break, @@ -51971,7 +51975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1424), 19, + STATE(1205), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51991,74 +51995,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [17921] = 32, + [17923] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1531), 1, - sym__newline, - STATE(376), 1, + STATE(388), 1, sym__open_brace, - STATE(605), 1, - aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(1581), 1, sym__float_literal, - STATE(1633), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1529), 8, + ACTIONS(1589), 8, sym_return, sym_next, sym_break, @@ -52067,7 +52071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1425), 19, + STATE(1202), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52087,74 +52091,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [18049] = 32, + [18051] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1535), 1, + ACTIONS(1593), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(606), 1, - aux_sym_function_definition_repeat1, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(289), 1, sym__float_literal, - STATE(1633), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1034), 1, + aux_sym_function_definition_repeat1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1533), 8, + ACTIONS(1591), 8, sym_return, sym_next, sym_break, @@ -52163,7 +52167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1426), 19, + STATE(112), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52183,74 +52187,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [18177] = 32, + [18179] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1095), 1, + sym_dot_dot_i, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1539), 1, + ACTIONS(1109), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(607), 1, - aux_sym_function_definition_repeat1, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1630), 1, - sym_string, - STATE(1632), 1, - sym__float_literal, - STATE(1633), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1089), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1537), 8, + ACTIONS(1595), 8, sym_return, sym_next, sym_break, @@ -52259,7 +52263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1427), 19, + STATE(13), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52279,74 +52283,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [18305] = 32, + [18307] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(527), 1, sym__external_open_brace, ACTIONS(1067), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1599), 1, sym__newline, - STATE(376), 1, + STATE(357), 1, sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1006), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, + STATE(1097), 1, + sym__open_parenthesis, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1632), 1, + STATE(1626), 1, sym__float_literal, - STATE(1633), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1634), 1, - sym__double_quoted_string, - STATE(2046), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1541), 8, + ACTIONS(1597), 8, sym_return, sym_next, sym_break, @@ -52355,7 +52359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1428), 19, + STATE(1471), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52375,74 +52379,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [18433] = 32, + [18435] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1545), 1, + ACTIONS(1603), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(608), 1, + STATE(629), 1, aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1630), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1543), 8, + ACTIONS(1601), 8, sym_return, sym_next, sym_break, @@ -52451,7 +52455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1429), 19, + STATE(1487), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52471,74 +52475,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [18561] = 32, + [18563] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(341), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(343), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(347), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1607), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(1053), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(591), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(1108), 1, + sym__open_parenthesis, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1547), 8, + ACTIONS(1605), 8, sym_return, sym_next, sym_break, @@ -52547,7 +52551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(232), 19, + STATE(12), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52567,74 +52571,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [18689] = 32, + [18691] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1549), 8, + ACTIONS(1609), 8, sym_return, sym_next, sym_break, @@ -52643,7 +52647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1431), 19, + STATE(1488), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52663,74 +52667,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [18817] = 32, + [18819] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1095), 1, + sym_dot_dot_i, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(376), 1, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(1071), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, - sym_string, - STATE(1632), 1, - sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, - sym__double_quoted_string, - STATE(2046), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1089), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1551), 8, + ACTIONS(1611), 8, sym_return, sym_next, sym_break, @@ -52739,7 +52743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1432), 19, + STATE(11), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52759,74 +52763,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [18945] = 32, + [18947] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1553), 8, + ACTIONS(1613), 8, sym_return, sym_next, sym_break, @@ -52835,7 +52839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1433), 19, + STATE(1497), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52855,74 +52859,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [19073] = 32, + [19075] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1617), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(289), 1, sym__float_literal, - STATE(1633), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1020), 1, + aux_sym_function_definition_repeat1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1555), 8, + ACTIONS(1615), 8, sym_return, sym_next, sym_break, @@ -52931,7 +52935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1434), 19, + STATE(113), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52951,74 +52955,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [19201] = 32, + [19203] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1557), 8, + ACTIONS(1619), 8, sym_return, sym_next, sym_break, @@ -53027,7 +53031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1435), 19, + STATE(1503), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53047,74 +53051,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [19329] = 32, + [19331] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1095), 1, + sym_dot_dot_i, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1623), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1630), 1, - sym_string, - STATE(1632), 1, - sym__float_literal, - STATE(1633), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(596), 1, + aux_sym_function_definition_repeat1, + STATE(1108), 1, + sym__open_parenthesis, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1089), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1559), 8, + ACTIONS(1621), 8, sym_return, sym_next, sym_break, @@ -53123,7 +53127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1436), 19, + STATE(10), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53143,74 +53147,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [19457] = 32, + [19459] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1561), 8, + ACTIONS(1625), 8, sym_return, sym_next, sym_break, @@ -53219,7 +53223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1437), 19, + STATE(1507), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53239,74 +53243,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [19585] = 32, + [19587] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1629), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(289), 1, sym__float_literal, - STATE(1633), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1011), 1, + aux_sym_function_definition_repeat1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1563), 8, + ACTIONS(1627), 8, sym_return, sym_next, sym_break, @@ -53315,7 +53319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1438), 19, + STATE(114), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53335,74 +53339,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [19713] = 32, + [19715] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1565), 8, + ACTIONS(1631), 8, sym_return, sym_next, sym_break, @@ -53411,7 +53415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1439), 19, + STATE(1512), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53431,74 +53435,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [19841] = 32, + [19843] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1635), 1, sym__newline, - STATE(376), 1, - sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(289), 1, sym__float_literal, - STATE(1633), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1010), 1, + aux_sym_function_definition_repeat1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1567), 8, + ACTIONS(1633), 8, sym_return, sym_next, sym_break, @@ -53507,7 +53511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1440), 19, + STATE(115), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53527,74 +53531,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [19969] = 32, + [19971] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1639), 1, sym__newline, - STATE(376), 1, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(558), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, - sym_string, - STATE(1632), 1, - sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, - sym__double_quoted_string, - STATE(2046), 1, + STATE(1092), 1, + sym__open_parenthesis, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1569), 8, + ACTIONS(1637), 8, sym_return, sym_next, sym_break, @@ -53603,7 +53607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1443), 19, + STATE(234), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53623,74 +53627,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [20097] = 32, + [20099] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(1671), 1, + sym_dot_dot_i, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(376), 1, + STATE(343), 1, sym__open_brace, - STATE(1071), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1630), 1, - sym_string, - STATE(1632), 1, - sym__float_literal, - STATE(1633), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1571), 8, + ACTIONS(1673), 8, sym_return, sym_next, sym_break, @@ -53699,7 +53703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1446), 19, + STATE(1141), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53719,74 +53723,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [20225] = 32, + [20227] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(1671), 1, + sym_dot_dot_i, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1685), 1, sym__newline, - STATE(376), 1, + STATE(343), 1, sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(606), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, - sym_string, - STATE(1632), 1, - sym__float_literal, - STATE(1633), 1, + STATE(1086), 1, + sym__open_parenthesis, + STATE(1599), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1573), 8, + ACTIONS(1683), 8, sym_return, sym_next, sym_break, @@ -53795,7 +53799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1448), 19, + STATE(1142), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53815,74 +53819,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [20353] = 32, + [20355] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1689), 1, sym__newline, - STATE(376), 1, + STATE(388), 1, sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(535), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(1633), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1575), 8, + ACTIONS(1687), 8, sym_return, sym_next, sym_break, @@ -53891,7 +53895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1451), 19, + STATE(1212), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53911,74 +53915,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [20481] = 32, + [20483] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1579), 1, + ACTIONS(1693), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(610), 1, + STATE(641), 1, aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1630), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1577), 8, + ACTIONS(1691), 8, sym_return, sym_next, sym_break, @@ -53987,7 +53991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1452), 19, + STATE(1524), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54007,74 +54011,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [20609] = 32, + [20611] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1697), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(643), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1581), 8, + ACTIONS(1695), 8, sym_return, sym_next, sym_break, @@ -54083,7 +54087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1460), 19, + STATE(1526), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54103,74 +54107,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [20737] = 32, + [20739] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1585), 1, + ACTIONS(1701), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(614), 1, + STATE(645), 1, aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1630), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1583), 8, + ACTIONS(1699), 8, sym_return, sym_next, sym_break, @@ -54179,7 +54183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1463), 19, + STATE(1535), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54199,74 +54203,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [20865] = 32, + [20867] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1589), 1, + ACTIONS(1705), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(615), 1, + STATE(647), 1, aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1630), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1587), 8, + ACTIONS(1703), 8, sym_return, sym_next, sym_break, @@ -54275,7 +54279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1465), 19, + STATE(1536), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54295,74 +54299,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [20993] = 32, + [20995] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1593), 1, + ACTIONS(1709), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(618), 1, + STATE(649), 1, aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1630), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1591), 8, + ACTIONS(1707), 8, sym_return, sym_next, sym_break, @@ -54371,7 +54375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1476), 19, + STATE(1567), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54391,74 +54395,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [21121] = 32, + [21123] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1713), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(651), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1595), 8, + ACTIONS(1711), 8, sym_return, sym_next, sym_break, @@ -54467,7 +54471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1483), 19, + STATE(1564), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54487,74 +54491,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [21249] = 32, + [21251] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1717), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(653), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1597), 8, + ACTIONS(1715), 8, sym_return, sym_next, sym_break, @@ -54563,7 +54567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1485), 19, + STATE(1562), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54583,74 +54587,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [21377] = 32, + [21379] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1601), 1, + ACTIONS(1721), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(620), 1, + STATE(655), 1, aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1630), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1599), 8, + ACTIONS(1719), 8, sym_return, sym_next, sym_break, @@ -54659,7 +54663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1488), 19, + STATE(1547), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54679,74 +54683,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [21505] = 32, + [21507] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1605), 1, + ACTIONS(1725), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(621), 1, + STATE(657), 1, aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1630), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1603), 8, + ACTIONS(1723), 8, sym_return, sym_next, sym_break, @@ -54755,7 +54759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1494), 19, + STATE(1532), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54775,74 +54779,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [21633] = 32, + [21635] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1729), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(659), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1607), 8, + ACTIONS(1727), 8, sym_return, sym_next, sym_break, @@ -54851,7 +54855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1499), 19, + STATE(1530), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54871,74 +54875,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [21761] = 32, + [21763] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1611), 1, + ACTIONS(1733), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(623), 1, + STATE(661), 1, aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1630), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1609), 8, + ACTIONS(1731), 8, sym_return, sym_next, sym_break, @@ -54947,7 +54951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1500), 19, + STATE(1519), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54967,74 +54971,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [21889] = 32, + [21891] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1737), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(663), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1613), 8, + ACTIONS(1735), 8, sym_return, sym_next, sym_break, @@ -55043,7 +55047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1501), 19, + STATE(1516), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55063,74 +55067,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [22017] = 32, + [22019] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1067), 1, + ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1741), 1, sym__newline, - STATE(376), 1, + STATE(335), 1, sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(665), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1632), 1, + STATE(1618), 1, sym__float_literal, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1615), 8, + ACTIONS(1739), 8, sym_return, sym_next, sym_break, @@ -55139,7 +55143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1504), 19, + STATE(1510), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55159,74 +55163,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [22145] = 32, + [22147] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1619), 1, + ACTIONS(1745), 1, sym__newline, - STATE(376), 1, + STATE(388), 1, sym__open_brace, - STATE(624), 1, + STATE(537), 1, aux_sym_function_definition_repeat1, - STATE(1071), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1630), 1, - sym_string, - STATE(1632), 1, + STATE(1581), 1, sym__float_literal, - STATE(1633), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1617), 8, + ACTIONS(1743), 8, sym_return, sym_next, sym_break, @@ -55235,7 +55239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1506), 19, + STATE(1184), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55255,74 +55259,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [22273] = 32, + [22275] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(1671), 1, + sym_dot_dot_i, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(376), 1, + STATE(343), 1, sym__open_brace, - STATE(1071), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1630), 1, - sym_string, - STATE(1632), 1, - sym__float_literal, - STATE(1633), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1621), 8, + ACTIONS(1747), 8, sym_return, sym_next, sym_break, @@ -55331,7 +55335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1509), 19, + STATE(1143), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55351,74 +55355,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [22401] = 32, + [22403] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(445), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(447), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(449), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(451), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(453), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(455), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(457), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(459), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(463), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(465), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(467), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(1671), 1, + sym_dot_dot_i, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(481), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(483), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1067), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1751), 1, sym__newline, - STATE(376), 1, + STATE(343), 1, sym__open_brace, - STATE(1071), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(623), 1, aux_sym_function_definition_repeat1, - STATE(1630), 1, - sym_string, - STATE(1632), 1, - sym__float_literal, - STATE(1633), 1, + STATE(1086), 1, + sym__open_parenthesis, + STATE(1599), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(2046), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(461), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1065), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(475), 5, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1623), 8, + ACTIONS(1749), 8, sym_return, sym_next, sym_break, @@ -55427,7 +55431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1511), 19, + STATE(1145), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55447,74 +55451,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [22529] = 32, + [22531] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1627), 1, + ACTIONS(1755), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(660), 1, + STATE(666), 1, aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1625), 8, + ACTIONS(1753), 8, sym_return, sym_next, sym_break, @@ -55523,7 +55527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(186), 19, + STATE(135), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55543,74 +55547,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [22657] = 32, + [22659] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1631), 1, + ACTIONS(1759), 1, sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(638), 1, + STATE(716), 1, aux_sym_function_definition_repeat1, - STATE(1076), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(2044), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1629), 8, + ACTIONS(1757), 8, sym_return, sym_next, sym_break, @@ -55619,7 +55623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(119), 19, + STATE(151), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55639,74 +55643,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [22785] = 32, + [22787] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1635), 1, + ACTIONS(1763), 1, sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(640), 1, + STATE(672), 1, aux_sym_function_definition_repeat1, - STATE(1076), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(2044), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1633), 8, + ACTIONS(1761), 8, sym_return, sym_next, sym_break, @@ -55715,7 +55719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(122), 19, + STATE(164), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55735,74 +55739,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [22913] = 32, + [22915] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1639), 1, + ACTIONS(1767), 1, sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(641), 1, + STATE(673), 1, aux_sym_function_definition_repeat1, - STATE(1076), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(2044), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1637), 8, + ACTIONS(1765), 8, sym_return, sym_next, sym_break, @@ -55811,7 +55815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(123), 19, + STATE(187), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55831,74 +55835,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [23041] = 32, + [23043] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1643), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(297), 1, + STATE(335), 1, + sym__open_brace, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1617), 1, sym_string, - STATE(298), 1, + STATE(1618), 1, sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(642), 1, - aux_sym_function_definition_repeat1, - STATE(1076), 1, - sym__open_parenthesis, - STATE(2044), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1641), 8, + ACTIONS(1769), 8, sym_return, sym_next, sym_break, @@ -55907,7 +55911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(124), 19, + STATE(1444), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55927,74 +55931,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [23169] = 32, + [23171] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1647), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1773), 1, sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(380), 1, + STATE(335), 1, sym__open_brace, - STATE(644), 1, + STATE(679), 1, aux_sym_function_definition_repeat1, - STATE(1076), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(2044), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, + sym_string, + STATE(1618), 1, + sym__float_literal, + STATE(1619), 1, + sym__double_quoted_string, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1645), 8, + ACTIONS(1771), 8, sym_return, sym_next, sym_break, @@ -56003,7 +56007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(125), 19, + STATE(1439), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56023,74 +56027,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [23297] = 32, + [23299] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1777), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, + STATE(388), 1, + sym__open_brace, + STATE(538), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(325), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(378), 1, - sym__open_brace, - STATE(1053), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1649), 8, + ACTIONS(1775), 8, sym_return, sym_next, sym_break, @@ -56099,7 +56103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(233), 19, + STATE(1209), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56119,74 +56123,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [23425] = 32, + [23427] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1653), 1, - sym__newline, - STATE(320), 1, + STATE(339), 1, + sym__open_brace, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(323), 1, + STATE(1587), 1, sym__float_literal, - STATE(325), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(378), 1, - sym__open_brace, - STATE(645), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1053), 1, - sym__open_parenthesis, - STATE(2049), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1651), 8, + ACTIONS(1811), 8, sym_return, sym_next, sym_break, @@ -56195,7 +56199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(234), 19, + STATE(1146), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56215,74 +56219,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [23553] = 32, + [23555] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1657), 1, + ACTIONS(1823), 1, sym__newline, - STATE(320), 1, + STATE(339), 1, + sym__open_brace, + STATE(632), 1, + aux_sym_function_definition_repeat1, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(323), 1, + STATE(1587), 1, sym__float_literal, - STATE(325), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(378), 1, - sym__open_brace, - STATE(646), 1, - aux_sym_function_definition_repeat1, - STATE(1053), 1, - sym__open_parenthesis, - STATE(2049), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1655), 8, + ACTIONS(1821), 8, sym_return, sym_next, sym_break, @@ -56291,7 +56295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(235), 19, + STATE(1147), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56311,74 +56315,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [23681] = 32, + [23683] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(320), 1, + STATE(339), 1, + sym__open_brace, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(323), 1, + STATE(1587), 1, sym__float_literal, - STATE(325), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(378), 1, - sym__open_brace, - STATE(1053), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1659), 8, + ACTIONS(1825), 8, sym_return, sym_next, sym_break, @@ -56387,7 +56391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(191), 19, + STATE(1148), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56407,74 +56411,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [23809] = 32, + [23811] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1663), 1, + ACTIONS(1829), 1, sym__newline, - STATE(320), 1, + STATE(339), 1, + sym__open_brace, + STATE(634), 1, + aux_sym_function_definition_repeat1, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(323), 1, + STATE(1587), 1, sym__float_literal, - STATE(325), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(378), 1, - sym__open_brace, - STATE(665), 1, - aux_sym_function_definition_repeat1, - STATE(1053), 1, - sym__open_parenthesis, - STATE(2049), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1661), 8, + ACTIONS(1827), 8, sym_return, sym_next, sym_break, @@ -56483,7 +56487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(187), 19, + STATE(1149), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56503,74 +56507,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [23937] = 32, + [23939] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1667), 1, + ACTIONS(1833), 1, sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(666), 1, + STATE(674), 1, aux_sym_function_definition_repeat1, - STATE(1076), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(2044), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1665), 8, + ACTIONS(1831), 8, sym_return, sym_next, sym_break, @@ -56579,7 +56583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(126), 19, + STATE(188), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56599,74 +56603,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [24065] = 32, + [24067] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, + STATE(289), 1, sym__float_literal, - STATE(325), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1053), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1669), 8, + ACTIONS(1835), 8, sym_return, sym_next, sym_break, @@ -56675,7 +56679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(192), 19, + STATE(17), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56695,74 +56699,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [24193] = 32, + [24195] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, + ACTIONS(1839), 1, + sym__newline, + STATE(289), 1, sym__float_literal, - STATE(301), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(637), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1671), 8, + ACTIONS(1837), 8, sym_return, sym_next, sym_break, @@ -56771,7 +56775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(127), 19, + STATE(16), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56791,74 +56795,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [24321] = 32, + [24323] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1675), 1, - sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, + STATE(289), 1, sym__float_literal, - STATE(325), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(661), 1, - aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1673), 8, + ACTIONS(1841), 8, sym_return, sym_next, sym_break, @@ -56867,7 +56871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(237), 19, + STATE(15), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56887,74 +56891,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [24449] = 32, + [24451] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, + ACTIONS(1845), 1, + sym__newline, + STATE(289), 1, sym__float_literal, - STATE(301), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(639), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1677), 8, + ACTIONS(1843), 8, sym_return, sym_next, sym_break, @@ -56963,7 +56967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(128), 19, + STATE(14), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56983,74 +56987,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [24577] = 32, + [24579] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(380), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(335), 1, sym__open_brace, - STATE(1076), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(1617), 1, + sym_string, + STATE(1618), 1, + sym__float_literal, + STATE(1619), 1, + sym__double_quoted_string, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1679), 8, + ACTIONS(1847), 8, sym_return, sym_next, sym_break, @@ -57059,7 +57063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(74), 19, + STATE(1430), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57079,74 +57083,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [24705] = 32, + [24707] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1347), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, + ACTIONS(1851), 1, + sym__newline, + STATE(388), 1, + sym__open_brace, + STATE(539), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(301), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1681), 8, + ACTIONS(1849), 8, sym_return, sym_next, sym_break, @@ -57155,7 +57159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(19), 19, + STATE(1179), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57175,74 +57179,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [24833] = 32, + [24835] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1039), 1, - sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, - sym__double_quoted_string, - STATE(378), 1, + STATE(335), 1, sym__open_brace, - STATE(1053), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(1617), 1, + sym_string, + STATE(1618), 1, + sym__float_literal, + STATE(1619), 1, + sym__double_quoted_string, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, - sym_identifier, - sym_dots, - ACTIONS(1033), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1683), 8, + ACTIONS(1853), 8, sym_return, sym_next, sym_break, @@ -57251,7 +57255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(193), 19, + STATE(1414), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57271,74 +57275,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [24961] = 32, + [24963] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(981), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + ACTIONS(1857), 1, + sym__newline, + STATE(317), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1001), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(1092), 1, + sym__open_parenthesis, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1685), 8, + ACTIONS(1855), 8, sym_return, sym_next, sym_break, @@ -57347,7 +57351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(20), 19, + STATE(210), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57367,74 +57371,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [25089] = 32, + [25091] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1039), 1, - sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, - sym__double_quoted_string, - STATE(378), 1, + STATE(335), 1, sym__open_brace, - STATE(1053), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(1617), 1, + sym_string, + STATE(1618), 1, + sym__float_literal, + STATE(1619), 1, + sym__double_quoted_string, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, - sym_identifier, - sym_dots, - ACTIONS(1033), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1687), 8, + ACTIONS(1859), 8, sym_return, sym_next, sym_break, @@ -57443,7 +57447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(238), 19, + STATE(1413), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57463,74 +57467,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [25217] = 32, + [25219] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, + STATE(388), 1, + sym__open_brace, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(325), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(378), 1, - sym__open_brace, - STATE(1053), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1689), 8, + ACTIONS(1861), 8, sym_return, sym_next, sym_break, @@ -57539,7 +57543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(239), 19, + STATE(1139), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57559,74 +57563,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [25345] = 32, + [25347] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1039), 1, - sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1693), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, + STATE(335), 1, + sym__open_brace, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1617), 1, sym_string, - STATE(323), 1, + STATE(1618), 1, sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(378), 1, - sym__open_brace, - STATE(664), 1, - aux_sym_function_definition_repeat1, - STATE(1053), 1, - sym__open_parenthesis, - STATE(2049), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, - sym_identifier, - sym_dots, - ACTIONS(1033), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1691), 8, + ACTIONS(1863), 8, sym_return, sym_next, sym_break, @@ -57635,7 +57639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(240), 19, + STATE(1399), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57655,74 +57659,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [25473] = 32, + [25475] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1697), 1, + ACTIONS(1867), 1, sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(380), 1, + STATE(388), 1, sym__open_brace, - STATE(674), 1, + STATE(646), 1, aux_sym_function_definition_repeat1, - STATE(1076), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(2044), 1, + STATE(1581), 1, + sym__float_literal, + STATE(1583), 1, + sym__single_quoted_string, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1695), 8, + ACTIONS(1865), 8, sym_return, sym_next, sym_break, @@ -57731,7 +57735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(21), 19, + STATE(1151), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57751,74 +57755,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [25601] = 32, + [25603] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1701), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(297), 1, + STATE(335), 1, + sym__open_brace, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1617), 1, sym_string, - STATE(298), 1, + STATE(1618), 1, sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(676), 1, - aux_sym_function_definition_repeat1, - STATE(1076), 1, - sym__open_parenthesis, - STATE(2044), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1699), 8, + ACTIONS(1869), 8, sym_return, sym_next, sym_break, @@ -57827,7 +57831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(23), 19, + STATE(1522), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57847,74 +57851,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [25729] = 32, + [25731] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1705), 1, - sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, + STATE(388), 1, + sym__open_brace, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(301), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(677), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1076), 1, - sym__open_parenthesis, - STATE(2044), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1703), 8, + ACTIONS(1871), 8, sym_return, sym_next, sym_break, @@ -57923,7 +57927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(24), 19, + STATE(1140), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57943,74 +57947,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [25857] = 32, + [25859] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1709), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(297), 1, + STATE(335), 1, + sym__open_brace, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1617), 1, sym_string, - STATE(298), 1, + STATE(1618), 1, sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(679), 1, - aux_sym_function_definition_repeat1, - STATE(1076), 1, - sym__open_parenthesis, - STATE(2044), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1707), 8, + ACTIONS(1873), 8, sym_return, sym_next, sym_break, @@ -58019,7 +58023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(25), 19, + STATE(1336), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58039,74 +58043,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [25985] = 32, + [25987] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1713), 1, + ACTIONS(1877), 1, sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(380), 1, + STATE(388), 1, sym__open_brace, - STATE(680), 1, + STATE(650), 1, aux_sym_function_definition_repeat1, - STATE(1076), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(2044), 1, + STATE(1581), 1, + sym__float_literal, + STATE(1583), 1, + sym__single_quoted_string, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1711), 8, + ACTIONS(1875), 8, sym_return, sym_next, sym_break, @@ -58115,7 +58119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(26), 19, + STATE(1153), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58135,74 +58139,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [26113] = 32, + [26115] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1717), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(297), 1, + STATE(335), 1, + sym__open_brace, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1617), 1, sym_string, - STATE(298), 1, + STATE(1618), 1, sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(682), 1, - aux_sym_function_definition_repeat1, - STATE(1076), 1, - sym__open_parenthesis, - STATE(2044), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1715), 8, + ACTIONS(1879), 8, sym_return, sym_next, sym_break, @@ -58211,7 +58215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(27), 19, + STATE(1342), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58231,74 +58235,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [26241] = 32, + [26243] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1721), 1, + ACTIONS(1883), 1, sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(380), 1, + STATE(388), 1, sym__open_brace, - STATE(683), 1, + STATE(540), 1, aux_sym_function_definition_repeat1, - STATE(1076), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(2044), 1, + STATE(1581), 1, + sym__float_literal, + STATE(1583), 1, + sym__single_quoted_string, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1719), 8, + ACTIONS(1881), 8, sym_return, sym_next, sym_break, @@ -58307,7 +58311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(28), 19, + STATE(1229), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58327,74 +58331,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [26369] = 32, + [26371] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1725), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(297), 1, + STATE(335), 1, + sym__open_brace, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1617), 1, sym_string, - STATE(298), 1, + STATE(1618), 1, sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(685), 1, - aux_sym_function_definition_repeat1, - STATE(1076), 1, - sym__open_parenthesis, - STATE(2044), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1723), 8, + ACTIONS(1885), 8, sym_return, sym_next, sym_break, @@ -58403,7 +58407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(29), 19, + STATE(1364), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58423,74 +58427,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [26497] = 32, + [26499] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1729), 1, - sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, + STATE(343), 1, + sym__open_brace, + STATE(1086), 1, + sym__open_parenthesis, + STATE(1599), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(686), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1076), 1, - sym__open_parenthesis, - STATE(2044), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1727), 8, + ACTIONS(1887), 8, sym_return, sym_next, sym_break, @@ -58499,7 +58503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(30), 19, + STATE(1165), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58519,74 +58523,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [26625] = 32, + [26627] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1733), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(297), 1, + STATE(335), 1, + sym__open_brace, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1617), 1, sym_string, - STATE(298), 1, + STATE(1618), 1, sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(688), 1, - aux_sym_function_definition_repeat1, - STATE(1076), 1, - sym__open_parenthesis, - STATE(2044), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1731), 8, + ACTIONS(1889), 8, sym_return, sym_next, sym_break, @@ -58595,7 +58599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(31), 19, + STATE(1379), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58615,74 +58619,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [26753] = 32, + [26755] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1737), 1, + ACTIONS(1893), 1, sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(380), 1, + STATE(343), 1, sym__open_brace, - STATE(689), 1, + STATE(656), 1, aux_sym_function_definition_repeat1, - STATE(1076), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(2044), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1735), 8, + ACTIONS(1891), 8, sym_return, sym_next, sym_break, @@ -58691,7 +58695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(32), 19, + STATE(1164), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58711,74 +58715,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [26881] = 32, + [26883] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1741), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(297), 1, + STATE(335), 1, + sym__open_brace, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1617), 1, sym_string, - STATE(298), 1, + STATE(1618), 1, sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(691), 1, - aux_sym_function_definition_repeat1, - STATE(1076), 1, - sym__open_parenthesis, - STATE(2044), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1739), 8, + ACTIONS(1895), 8, sym_return, sym_next, sym_break, @@ -58787,7 +58791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(33), 19, + STATE(1385), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58807,74 +58811,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [27009] = 32, + [27011] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, - sym__double_quoted_string, - STATE(378), 1, + STATE(343), 1, sym__open_brace, - STATE(1053), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1743), 8, + ACTIONS(1897), 8, sym_return, sym_next, sym_break, @@ -58883,7 +58887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(195), 19, + STATE(1163), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58903,74 +58907,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [27137] = 32, + [27139] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1039), 1, - sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, - sym__double_quoted_string, - STATE(378), 1, + STATE(335), 1, sym__open_brace, - STATE(1053), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(1617), 1, + sym_string, + STATE(1618), 1, + sym__float_literal, + STATE(1619), 1, + sym__double_quoted_string, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, - sym_identifier, - sym_dots, - ACTIONS(1033), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1745), 8, + ACTIONS(1899), 8, sym_return, sym_next, sym_break, @@ -58979,7 +58983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(241), 19, + STATE(1386), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58999,74 +59003,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [27265] = 32, + [27267] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1903), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, - sym__double_quoted_string, - STATE(378), 1, + STATE(343), 1, sym__open_brace, - STATE(1053), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(660), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(1086), 1, + sym__open_parenthesis, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1747), 8, + ACTIONS(1901), 8, sym_return, sym_next, sym_break, @@ -59075,7 +59079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(211), 19, + STATE(1161), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59095,74 +59099,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [27393] = 32, + [27395] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1039), 1, - sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, - sym__double_quoted_string, - STATE(378), 1, + STATE(335), 1, sym__open_brace, - STATE(1053), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(1617), 1, + sym_string, + STATE(1618), 1, + sym__float_literal, + STATE(1619), 1, + sym__double_quoted_string, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, - sym_identifier, - sym_dots, - ACTIONS(1033), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1749), 8, + ACTIONS(1905), 8, sym_return, sym_next, sym_break, @@ -59171,7 +59175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(212), 19, + STATE(1396), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59191,74 +59195,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [27521] = 32, + [27523] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1909), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, + STATE(388), 1, + sym__open_brace, + STATE(542), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(325), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(378), 1, - sym__open_brace, - STATE(1053), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1751), 8, + ACTIONS(1907), 8, sym_return, sym_next, sym_break, @@ -59267,7 +59271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(242), 19, + STATE(1231), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59287,74 +59291,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [27649] = 32, + [27651] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1039), 1, - sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, - sym__double_quoted_string, - STATE(378), 1, + STATE(335), 1, sym__open_brace, - STATE(1053), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(1617), 1, + sym_string, + STATE(1618), 1, + sym__float_literal, + STATE(1619), 1, + sym__double_quoted_string, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, - sym_identifier, - sym_dots, - ACTIONS(1033), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1753), 8, + ACTIONS(1911), 8, sym_return, sym_next, sym_break, @@ -59363,7 +59367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(196), 19, + STATE(1397), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59383,74 +59387,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [27777] = 32, + [27779] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(981), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(317), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1076), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1755), 8, + ACTIONS(1913), 8, sym_return, sym_next, sym_break, @@ -59459,7 +59463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(34), 19, + STATE(209), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59479,74 +59483,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [27905] = 32, + [27907] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1759), 1, + ACTIONS(1917), 1, sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(380), 1, + STATE(388), 1, sym__open_brace, - STATE(695), 1, + STATE(548), 1, aux_sym_function_definition_repeat1, - STATE(1076), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(2044), 1, + STATE(1581), 1, + sym__float_literal, + STATE(1583), 1, + sym__single_quoted_string, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1757), 8, + ACTIONS(1915), 8, sym_return, sym_next, sym_break, @@ -59555,7 +59559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(35), 19, + STATE(1233), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59575,74 +59579,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [28033] = 32, + [28035] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(320), 1, + STATE(339), 1, + sym__open_brace, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(323), 1, + STATE(1587), 1, sym__float_literal, - STATE(325), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(378), 1, - sym__open_brace, - STATE(1053), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1761), 8, + ACTIONS(1919), 8, sym_return, sym_next, sym_break, @@ -59651,7 +59655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(213), 19, + STATE(1158), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59671,74 +59675,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [28161] = 32, + [28163] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1809), 1, + sym_dot_dot_i, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1765), 1, + ACTIONS(1923), 1, sym__newline, - STATE(370), 1, + STATE(339), 1, sym__open_brace, - STATE(681), 1, + STATE(668), 1, aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1582), 1, sym_string, - STATE(1618), 1, + STATE(1587), 1, + sym__float_literal, + STATE(1588), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1799), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1763), 8, + ACTIONS(1921), 8, sym_return, sym_next, sym_break, @@ -59747,7 +59751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1358), 19, + STATE(1156), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59767,74 +59771,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [28289] = 32, + [28291] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1809), 1, + sym_dot_dot_i, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1769), 1, - sym__newline, - STATE(370), 1, + STATE(339), 1, sym__open_brace, - STATE(684), 1, - aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1582), 1, sym_string, - STATE(1618), 1, + STATE(1587), 1, + sym__float_literal, + STATE(1588), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1799), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1767), 8, + ACTIONS(1925), 8, sym_return, sym_next, sym_break, @@ -59843,7 +59847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1361), 19, + STATE(1155), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59863,74 +59867,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [28417] = 32, + [28419] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1809), 1, + sym_dot_dot_i, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1773), 1, + ACTIONS(1929), 1, sym__newline, - STATE(370), 1, + STATE(339), 1, sym__open_brace, - STATE(687), 1, + STATE(670), 1, aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1582), 1, sym_string, - STATE(1618), 1, + STATE(1587), 1, + sym__float_literal, + STATE(1588), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1799), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1771), 8, + ACTIONS(1927), 8, sym_return, sym_next, sym_break, @@ -59939,7 +59943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1362), 19, + STATE(1154), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59959,74 +59963,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [28545] = 32, + [28547] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1777), 1, + ACTIONS(1109), 1, sym__newline, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, STATE(370), 1, sym__open_brace, - STATE(690), 1, - aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1775), 8, + ACTIONS(1931), 8, sym_return, sym_next, sym_break, @@ -60035,7 +60039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1363), 19, + STATE(204), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60055,74 +60059,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [28673] = 32, + [28675] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1781), 1, + ACTIONS(1109), 1, sym__newline, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, STATE(370), 1, sym__open_brace, - STATE(692), 1, - aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1779), 8, + ACTIONS(1933), 8, sym_return, sym_next, sym_break, @@ -60131,7 +60135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1366), 19, + STATE(203), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60151,74 +60155,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [28801] = 32, + [28803] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(981), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(317), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1076), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1783), 8, + ACTIONS(1935), 8, sym_return, sym_next, sym_break, @@ -60227,7 +60231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(36), 19, + STATE(201), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60247,74 +60251,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [28929] = 32, + [28931] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1149), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, + STATE(289), 1, sym__float_literal, - STATE(301), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1076), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1785), 8, + ACTIONS(1937), 8, sym_return, sym_next, sym_break, @@ -60323,7 +60327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(37), 19, + STATE(5), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60343,74 +60347,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [29057] = 32, + [29059] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, + ACTIONS(1941), 1, + sym__newline, + STATE(289), 1, sym__float_literal, - STATE(301), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(675), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1787), 8, + ACTIONS(1939), 8, sym_return, sym_next, sym_break, @@ -60419,7 +60423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(38), 19, + STATE(4), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60439,74 +60443,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [29185] = 32, + [29187] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1149), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, + STATE(289), 1, sym__float_literal, - STATE(301), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1076), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1789), 8, + ACTIONS(1943), 8, sym_return, sym_next, sym_break, @@ -60515,7 +60519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(39), 19, + STATE(3), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60535,74 +60539,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [29313] = 32, + [29315] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1793), 1, + ACTIONS(1947), 1, sym__newline, - STATE(370), 1, + STATE(289), 1, + sym__float_literal, + STATE(291), 1, + sym__single_quoted_string, + STATE(304), 1, + sym__double_quoted_string, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(708), 1, + STATE(677), 1, aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1791), 8, + ACTIONS(1945), 8, sym_return, sym_next, sym_break, @@ -60611,7 +60615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1379), 19, + STATE(2), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60631,74 +60635,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [29441] = 32, + [29443] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(380), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(335), 1, sym__open_brace, - STATE(1076), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(1617), 1, + sym_string, + STATE(1618), 1, + sym__float_literal, + STATE(1619), 1, + sym__double_quoted_string, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1795), 8, + ACTIONS(1949), 8, sym_return, sym_next, sym_break, @@ -60707,7 +60711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(40), 19, + STATE(1388), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60727,74 +60731,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [29569] = 32, + [29571] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - STATE(297), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1953), 1, + sym__newline, + STATE(335), 1, + sym__open_brace, + STATE(706), 1, + aux_sym_function_definition_repeat1, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(298), 1, + STATE(1618), 1, sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1797), 8, + ACTIONS(1951), 8, sym_return, sym_next, sym_break, @@ -60803,7 +60807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(41), 19, + STATE(1389), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60823,74 +60827,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [29697] = 32, + [29699] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1957), 1, sym__newline, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, STATE(370), 1, sym__open_brace, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, + STATE(973), 1, aux_sym_function_definition_repeat1, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1092), 1, + sym__open_parenthesis, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1799), 8, + ACTIONS(1955), 8, sym_return, sym_next, sym_break, @@ -60899,7 +60903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1381), 19, + STATE(190), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60919,74 +60923,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [29825] = 32, + [29827] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1347), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, + ACTIONS(1961), 1, + sym__newline, + STATE(388), 1, + sym__open_brace, + STATE(550), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(301), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1801), 8, + ACTIONS(1959), 8, sym_return, sym_next, sym_break, @@ -60995,7 +60999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(42), 19, + STATE(1234), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61015,74 +61019,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [29953] = 32, + [29955] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1347), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, + ACTIONS(1965), 1, + sym__newline, + STATE(388), 1, + sym__open_brace, + STATE(553), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(301), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1803), 8, + ACTIONS(1963), 8, sym_return, sym_next, sym_break, @@ -61091,7 +61095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(43), 19, + STATE(1235), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61111,74 +61115,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [30081] = 32, + [30083] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1969), 1, sym__newline, - STATE(370), 1, + STATE(388), 1, sym__open_brace, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, + STATE(556), 1, aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, + sym__float_literal, + STATE(1583), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1805), 8, + ACTIONS(1967), 8, sym_return, sym_next, sym_break, @@ -61187,7 +61191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1384), 19, + STATE(1236), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61207,74 +61211,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [30209] = 32, + [30211] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1347), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, + ACTIONS(1973), 1, + sym__newline, + STATE(388), 1, + sym__open_brace, + STATE(562), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(301), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1807), 8, + ACTIONS(1971), 8, sym_return, sym_next, sym_break, @@ -61283,7 +61287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(44), 19, + STATE(1237), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61303,74 +61307,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [30337] = 32, + [30339] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1347), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, + ACTIONS(1977), 1, + sym__newline, + STATE(388), 1, + sym__open_brace, + STATE(568), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(301), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1809), 8, + ACTIONS(1975), 8, sym_return, sym_next, sym_break, @@ -61379,7 +61383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(45), 19, + STATE(1239), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61399,74 +61403,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [30465] = 32, + [30467] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, STATE(370), 1, sym__open_brace, - STATE(1057), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1811), 8, + ACTIONS(1979), 8, sym_return, sym_next, sym_break, @@ -61475,7 +61479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1385), 19, + STATE(233), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61495,74 +61499,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [30593] = 32, + [30595] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(981), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + ACTIONS(1983), 1, + sym__newline, + STATE(317), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(567), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(1092), 1, + sym__open_parenthesis, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1813), 8, + ACTIONS(1981), 8, sym_return, sym_next, sym_break, @@ -61571,7 +61575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(46), 19, + STATE(230), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61591,74 +61595,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [30721] = 32, + [30723] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(981), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + ACTIONS(1987), 1, + sym__newline, + STATE(317), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(570), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(1092), 1, + sym__open_parenthesis, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1815), 8, + ACTIONS(1985), 8, sym_return, sym_next, sym_break, @@ -61667,7 +61671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(47), 19, + STATE(228), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61687,74 +61691,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [30849] = 32, + [30851] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1991), 1, sym__newline, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, STATE(370), 1, sym__open_brace, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, + STATE(977), 1, aux_sym_function_definition_repeat1, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1092), 1, + sym__open_parenthesis, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1817), 8, + ACTIONS(1989), 8, sym_return, sym_next, sym_break, @@ -61763,7 +61767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1386), 19, + STATE(185), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61783,74 +61787,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [30977] = 32, + [30979] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(981), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + ACTIONS(1995), 1, + sym__newline, + STATE(317), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(987), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(1092), 1, + sym__open_parenthesis, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1819), 8, + ACTIONS(1993), 8, sym_return, sym_next, sym_break, @@ -61859,7 +61863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(48), 19, + STATE(182), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61879,74 +61883,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [31105] = 32, + [31107] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1999), 1, sym__newline, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, STATE(370), 1, sym__open_brace, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, + STATE(988), 1, aux_sym_function_definition_repeat1, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1092), 1, + sym__open_parenthesis, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1821), 8, + ACTIONS(1997), 8, sym_return, sym_next, sym_break, @@ -61955,7 +61959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1389), 19, + STATE(180), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61975,74 +61979,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [31233] = 32, + [31235] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1825), 1, + ACTIONS(2003), 1, sym__newline, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, STATE(370), 1, sym__open_brace, - STATE(720), 1, + STATE(990), 1, aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1823), 8, + ACTIONS(2001), 8, sym_return, sym_next, sym_break, @@ -62051,7 +62055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1391), 19, + STATE(130), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62071,74 +62075,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [31361] = 32, + [31363] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1829), 1, + ACTIONS(1109), 1, sym__newline, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, STATE(370), 1, sym__open_brace, - STATE(722), 1, - aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1827), 8, + ACTIONS(2005), 8, sym_return, sym_next, sym_break, @@ -62147,7 +62151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1392), 19, + STATE(227), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62167,74 +62171,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [31489] = 32, + [31491] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1149), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1347), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, + STATE(388), 1, + sym__open_brace, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(301), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1831), 8, + ACTIONS(2007), 8, sym_return, sym_next, sym_break, @@ -62243,7 +62247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(49), 19, + STATE(1243), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62263,74 +62267,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [31617] = 32, + [31619] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1835), 1, + ACTIONS(1109), 1, sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(710), 1, - aux_sym_function_definition_repeat1, - STATE(1076), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(2044), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1833), 8, + ACTIONS(2009), 8, sym_return, sym_next, sym_break, @@ -62339,7 +62343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(50), 19, + STATE(178), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62359,74 +62363,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [31745] = 32, + [31747] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1839), 1, - sym__newline, - STATE(370), 1, + STATE(388), 1, sym__open_brace, - STATE(725), 1, - aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, + STATE(1581), 1, + sym__float_literal, + STATE(1583), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1837), 8, + ACTIONS(2011), 8, sym_return, sym_next, sym_break, @@ -62435,7 +62439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1393), 19, + STATE(1244), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62455,74 +62459,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [31873] = 32, + [31875] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1843), 1, + ACTIONS(2015), 1, sym__newline, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, STATE(370), 1, sym__open_brace, - STATE(727), 1, + STATE(991), 1, aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1841), 8, + ACTIONS(2013), 8, sym_return, sym_next, sym_break, @@ -62531,7 +62535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1394), 19, + STATE(162), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62551,74 +62555,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [32001] = 32, + [32003] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1847), 1, - sym__newline, - STATE(370), 1, + STATE(388), 1, sym__open_brace, - STATE(729), 1, - aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, + STATE(1581), 1, + sym__float_literal, + STATE(1583), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1845), 8, + ACTIONS(2017), 8, sym_return, sym_next, sym_break, @@ -62627,7 +62631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1396), 19, + STATE(1144), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62647,74 +62651,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [32129] = 32, + [32131] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1851), 1, + ACTIONS(2021), 1, sym__newline, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, STATE(370), 1, sym__open_brace, - STATE(753), 1, + STATE(992), 1, aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1849), 8, + ACTIONS(2019), 8, sym_return, sym_next, sym_break, @@ -62723,7 +62727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1398), 19, + STATE(147), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62743,74 +62747,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [32257] = 32, + [32259] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1855), 1, + ACTIONS(2025), 1, sym__newline, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, STATE(370), 1, sym__open_brace, - STATE(791), 1, + STATE(993), 1, aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1853), 8, + ACTIONS(2023), 8, sym_return, sym_next, sym_break, @@ -62819,7 +62823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1457), 19, + STATE(144), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62839,74 +62843,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [32385] = 32, + [32387] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1859), 1, + ACTIONS(2029), 1, sym__newline, - STATE(370), 1, + STATE(388), 1, sym__open_brace, - STATE(792), 1, + STATE(699), 1, aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, + STATE(1581), 1, + sym__float_literal, + STATE(1583), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1857), 8, + ACTIONS(2027), 8, sym_return, sym_next, sym_break, @@ -62915,7 +62919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1467), 19, + STATE(1159), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62935,74 +62939,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [32513] = 32, + [32515] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1863), 1, - sym__newline, - STATE(370), 1, + STATE(388), 1, sym__open_brace, - STATE(793), 1, - aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, + STATE(1581), 1, + sym__float_literal, + STATE(1583), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1861), 8, + ACTIONS(2031), 8, sym_return, sym_next, sym_break, @@ -63011,7 +63015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1469), 19, + STATE(1160), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63031,74 +63035,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [32641] = 32, + [32643] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1247), 1, + sym_dot_dot_i, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1867), 1, - sym__newline, - STATE(370), 1, - sym__open_brace, - STATE(796), 1, - aux_sym_function_definition_repeat1, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, + STATE(289), 1, + sym__float_literal, + STATE(291), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1865), 8, + ACTIONS(2033), 8, sym_return, sym_next, sym_break, @@ -63107,7 +63111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1474), 19, + STATE(116), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63127,74 +63131,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [32769] = 32, + [32771] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1871), 1, + ACTIONS(2037), 1, sym__newline, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, STATE(370), 1, sym__open_brace, - STATE(799), 1, + STATE(994), 1, aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1869), 8, + ACTIONS(2035), 8, sym_return, sym_next, sym_break, @@ -63203,7 +63207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1479), 19, + STATE(141), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63223,74 +63227,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [32897] = 32, + [32899] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(429), 1, sym__external_open_brace, ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1875), 1, + ACTIONS(1109), 1, sym__newline, - STATE(370), 1, + STATE(335), 1, sym__open_brace, - STATE(802), 1, - aux_sym_function_definition_repeat1, STATE(1057), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1617), 1, sym_string, STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, sym__float_literal, - STATE(2054), 1, + STATE(1619), 1, + sym__double_quoted_string, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1873), 8, + ACTIONS(2039), 8, sym_return, sym_next, sym_break, @@ -63299,7 +63303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1486), 19, + STATE(1422), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63319,74 +63323,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [33025] = 32, + [33027] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(429), 1, sym__external_open_brace, ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1879), 1, + ACTIONS(2043), 1, sym__newline, - STATE(370), 1, + STATE(335), 1, sym__open_brace, - STATE(803), 1, + STATE(717), 1, aux_sym_function_definition_repeat1, STATE(1057), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, sym__float_literal, - STATE(2054), 1, + STATE(1619), 1, + sym__double_quoted_string, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1877), 8, + ACTIONS(2041), 8, sym_return, sym_next, sym_break, @@ -63395,7 +63399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1491), 19, + STATE(1423), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63415,74 +63419,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [33153] = 32, + [33155] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(2047), 1, sym__newline, - STATE(370), 1, + STATE(388), 1, sym__open_brace, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, + STATE(703), 1, aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, + sym__float_literal, + STATE(1583), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1881), 8, + ACTIONS(2045), 8, sym_return, sym_next, sym_break, @@ -63491,7 +63495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1531), 19, + STATE(1150), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63511,74 +63515,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [33281] = 32, + [33283] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1885), 1, + ACTIONS(2051), 1, sym__newline, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, STATE(370), 1, sym__open_brace, - STATE(820), 1, + STATE(995), 1, aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1883), 8, + ACTIONS(2049), 8, sym_return, sym_next, sym_break, @@ -63587,7 +63591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1532), 19, + STATE(139), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63607,74 +63611,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [33409] = 32, + [33411] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(981), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + ACTIONS(2055), 1, + sym__newline, + STATE(317), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(996), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(1092), 1, + sym__open_parenthesis, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1887), 8, + ACTIONS(2053), 8, sym_return, sym_next, sym_break, @@ -63683,7 +63687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(51), 19, + STATE(137), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63703,74 +63707,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [33537] = 32, + [33539] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1891), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(2059), 1, sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(380), 1, + STATE(335), 1, sym__open_brace, - STATE(714), 1, + STATE(719), 1, aux_sym_function_definition_repeat1, - STATE(1076), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(2044), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, + sym_string, + STATE(1618), 1, + sym__float_literal, + STATE(1619), 1, + sym__double_quoted_string, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1889), 8, + ACTIONS(2057), 8, sym_return, sym_next, sym_break, @@ -63779,7 +63783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(52), 19, + STATE(1443), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63799,74 +63803,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [33665] = 32, + [33667] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1895), 1, - sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, + STATE(388), 1, + sym__open_brace, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(301), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(715), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1076), 1, - sym__open_parenthesis, - STATE(2044), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1893), 8, + ACTIONS(2061), 8, sym_return, sym_next, sym_break, @@ -63875,7 +63879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(53), 19, + STATE(1245), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63895,74 +63899,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [33793] = 32, + [33795] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1899), 1, + ACTIONS(2065), 1, sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, + STATE(289), 1, sym__float_literal, - STATE(301), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(718), 1, + STATE(1003), 1, aux_sym_function_definition_repeat1, - STATE(1076), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(2044), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1897), 8, + ACTIONS(2063), 8, sym_return, sym_next, sym_break, @@ -63971,7 +63975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(54), 19, + STATE(117), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63991,74 +63995,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [33921] = 32, + [33923] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - STATE(297), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(2069), 1, + sym__newline, + STATE(335), 1, + sym__open_brace, + STATE(724), 1, + aux_sym_function_definition_repeat1, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(298), 1, + STATE(1618), 1, sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1901), 8, + ACTIONS(2067), 8, sym_return, sym_next, sym_break, @@ -64067,7 +64071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(55), 19, + STATE(1454), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64087,74 +64091,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [34049] = 32, + [34051] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(981), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + ACTIONS(2073), 1, + sym__newline, + STATE(317), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(997), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(1092), 1, + sym__open_parenthesis, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1903), 8, + ACTIONS(2071), 8, sym_return, sym_next, sym_break, @@ -64163,7 +64167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(56), 19, + STATE(136), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64183,74 +64187,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [34177] = 32, + [34179] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1907), 1, + ACTIONS(1109), 1, sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(721), 1, - aux_sym_function_definition_repeat1, - STATE(1076), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(2044), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1905), 8, + ACTIONS(2075), 8, sym_return, sym_next, sym_break, @@ -64259,7 +64263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(57), 19, + STATE(206), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64279,74 +64283,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [34305] = 32, + [34307] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1911), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(297), 1, + STATE(335), 1, + sym__open_brace, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1617), 1, sym_string, - STATE(298), 1, + STATE(1618), 1, sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(723), 1, - aux_sym_function_definition_repeat1, - STATE(1076), 1, - sym__open_parenthesis, - STATE(2044), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1909), 8, + ACTIONS(2077), 8, sym_return, sym_next, sym_break, @@ -64355,7 +64359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(58), 19, + STATE(1456), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64375,74 +64379,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [34433] = 32, + [34435] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1149), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1347), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, + STATE(388), 1, + sym__open_brace, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(301), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1913), 8, + ACTIONS(2079), 8, sym_return, sym_next, sym_break, @@ -64451,7 +64455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(59), 19, + STATE(1246), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64471,74 +64475,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [34561] = 32, + [34563] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1917), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(297), 1, + STATE(335), 1, + sym__open_brace, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1617), 1, sym_string, - STATE(298), 1, + STATE(1618), 1, sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(726), 1, - aux_sym_function_definition_repeat1, - STATE(1076), 1, - sym__open_parenthesis, - STATE(2044), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1915), 8, + ACTIONS(2081), 8, sym_return, sym_next, sym_break, @@ -64547,7 +64551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(60), 19, + STATE(1457), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64567,74 +64571,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [34689] = 32, + [34691] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(429), 1, sym__external_open_brace, ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(2085), 1, sym__newline, - STATE(370), 1, + STATE(335), 1, sym__open_brace, + STATE(729), 1, + aux_sym_function_definition_repeat1, STATE(1057), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, sym__float_literal, - STATE(2054), 1, + STATE(1619), 1, + sym__double_quoted_string, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1919), 8, + ACTIONS(2083), 8, sym_return, sym_next, sym_break, @@ -64643,7 +64647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1539), 19, + STATE(1460), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64663,74 +64667,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [34817] = 32, + [34819] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - STATE(297), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(2089), 1, + sym__newline, + STATE(335), 1, + sym__open_brace, + STATE(731), 1, + aux_sym_function_definition_repeat1, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(298), 1, + STATE(1618), 1, sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1921), 8, + ACTIONS(2087), 8, sym_return, sym_next, sym_break, @@ -64739,7 +64743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(61), 19, + STATE(1461), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64759,74 +64763,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [34945] = 32, + [34947] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(2093), 1, sym__newline, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, STATE(370), 1, sym__open_brace, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, + STATE(687), 1, aux_sym_function_definition_repeat1, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1092), 1, + sym__open_parenthesis, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1923), 8, + ACTIONS(2091), 8, sym_return, sym_next, sym_break, @@ -64835,7 +64839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1540), 19, + STATE(223), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64855,74 +64859,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [35073] = 32, + [35075] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1149), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1347), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, + STATE(388), 1, + sym__open_brace, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, sym__float_literal, - STATE(301), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(1076), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1925), 8, + ACTIONS(2095), 8, sym_return, sym_next, sym_break, @@ -64931,7 +64935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(62), 19, + STATE(1247), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64951,74 +64955,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [35201] = 32, + [35203] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1929), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(297), 1, + STATE(335), 1, + sym__open_brace, + STATE(1057), 1, + sym__open_parenthesis, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1617), 1, sym_string, - STATE(298), 1, + STATE(1618), 1, sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(728), 1, - aux_sym_function_definition_repeat1, - STATE(1076), 1, - sym__open_parenthesis, - STATE(2044), 1, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1927), 8, + ACTIONS(2097), 8, sym_return, sym_next, sym_break, @@ -65027,7 +65031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(63), 19, + STATE(1465), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65047,74 +65051,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [35329] = 32, + [35331] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(429), 1, sym__external_open_brace, ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(2101), 1, sym__newline, - STATE(370), 1, + STATE(335), 1, sym__open_brace, + STATE(735), 1, + aux_sym_function_definition_repeat1, STATE(1057), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, sym__float_literal, - STATE(2054), 1, + STATE(1619), 1, + sym__double_quoted_string, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1931), 8, + ACTIONS(2099), 8, sym_return, sym_next, sym_break, @@ -65123,7 +65127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1543), 19, + STATE(1468), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65143,74 +65147,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [35457] = 32, + [35459] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(380), 1, + STATE(343), 1, sym__open_brace, - STATE(1076), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1933), 8, + ACTIONS(2103), 8, sym_return, sym_next, sym_break, @@ -65219,7 +65223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(64), 19, + STATE(1168), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65239,74 +65243,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [35585] = 32, + [35587] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(597), 1, + anon_sym_SQUOTE, + ACTIONS(599), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + sym__raw_string_literal, + ACTIONS(697), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(699), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(701), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(703), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(705), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(707), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(709), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(711), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(713), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(717), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(719), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(721), 1, + sym_dot_dot_i, + ACTIONS(729), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(731), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(2107), 1, sym__newline, - STATE(370), 1, - sym__open_brace, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, + STATE(309), 1, sym__float_literal, - STATE(2054), 1, + STATE(310), 1, + sym_string, + STATE(314), 1, + sym__double_quoted_string, + STATE(354), 1, + sym__open_brace, + STATE(459), 1, + aux_sym_function_definition_repeat1, + STATE(1106), 1, + sym__open_parenthesis, + STATE(2051), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(695), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(725), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1935), 8, + ACTIONS(2105), 8, sym_return, sym_next, sym_break, @@ -65315,7 +65319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1545), 19, + STATE(165), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65335,74 +65339,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [35713] = 32, + [35715] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, - sym__single_quoted_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(380), 1, + STATE(343), 1, sym__open_brace, - STATE(1076), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1937), 8, + ACTIONS(2109), 8, sym_return, sym_next, sym_break, @@ -65411,7 +65415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(65), 19, + STATE(1169), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65431,74 +65435,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [35841] = 32, + [35843] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(429), 1, sym__external_open_brace, ACTIONS(1057), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(370), 1, + STATE(335), 1, sym__open_brace, STATE(1057), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, + STATE(1617), 1, + sym_string, STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, sym__float_literal, - STATE(2054), 1, + STATE(1619), 1, + sym__double_quoted_string, + STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1055), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1939), 8, + ACTIONS(2111), 8, sym_return, sym_next, sym_break, @@ -65507,7 +65511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1547), 19, + STATE(1479), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65527,74 +65531,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [35969] = 32, + [35971] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1977), 1, - sym__newline, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(2115), 1, + sym__newline, + STATE(343), 1, sym__open_brace, - STATE(736), 1, + STATE(726), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1973), 8, + ACTIONS(2113), 8, sym_return, sym_next, sym_break, @@ -65603,7 +65607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1221), 19, + STATE(1170), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65623,74 +65627,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [36097] = 32, + [36099] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1987), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(384), 1, + STATE(335), 1, sym__open_brace, - STATE(737), 1, - aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1617), 1, sym_string, - STATE(1582), 1, + STATE(1618), 1, sym__float_literal, - STATE(1583), 1, - sym__single_quoted_string, - STATE(1584), 1, + STATE(1619), 1, sym__double_quoted_string, STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1985), 8, + ACTIONS(2117), 8, sym_return, sym_next, sym_break, @@ -65699,7 +65703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1229), 19, + STATE(1480), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65719,74 +65723,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [36225] = 32, + [36227] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(1991), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(2121), 1, sym__newline, - STATE(384), 1, + STATE(335), 1, sym__open_brace, - STATE(738), 1, + STATE(739), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1617), 1, sym_string, - STATE(1582), 1, + STATE(1618), 1, sym__float_literal, - STATE(1583), 1, - sym__single_quoted_string, - STATE(1584), 1, + STATE(1619), 1, sym__double_quoted_string, STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1989), 8, + ACTIONS(2119), 8, sym_return, sym_next, sym_break, @@ -65795,7 +65799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1237), 19, + STATE(1481), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65815,74 +65819,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [36353] = 32, + [36355] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1995), 1, - sym__newline, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(739), 1, - aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1993), 8, + ACTIONS(2123), 8, sym_return, sym_next, sym_break, @@ -65891,7 +65895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1247), 19, + STATE(1171), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65911,74 +65915,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [36481] = 32, + [36483] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1999), 1, - sym__newline, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(740), 1, - aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1997), 8, + ACTIONS(2125), 8, sym_return, sym_next, sym_break, @@ -65987,7 +65991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1215), 19, + STATE(1166), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66007,74 +66011,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [36609] = 32, + [36611] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(429), 1, sym__external_open_brace, - ACTIONS(2003), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(384), 1, + STATE(335), 1, sym__open_brace, - STATE(754), 1, - aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1617), 1, sym_string, - STATE(1582), 1, + STATE(1618), 1, sym__float_literal, - STATE(1583), 1, - sym__single_quoted_string, - STATE(1584), 1, + STATE(1619), 1, sym__double_quoted_string, STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2001), 8, + ACTIONS(2127), 8, sym_return, sym_next, sym_break, @@ -66083,7 +66087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1321), 19, + STATE(1483), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66103,74 +66107,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [36737] = 32, + [36739] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(2131), 1, + sym__newline, + STATE(343), 1, sym__open_brace, - STATE(1081), 1, + STATE(728), 1, + aux_sym_function_definition_repeat1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2005), 8, + ACTIONS(2129), 8, sym_return, sym_next, sym_break, @@ -66179,7 +66183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1167), 19, + STATE(1172), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66199,74 +66203,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [36865] = 32, + [36867] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2007), 8, + ACTIONS(2133), 8, sym_return, sym_next, sym_break, @@ -66275,7 +66279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1172), 19, + STATE(1173), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66295,74 +66299,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [36993] = 32, + [36995] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(2137), 1, + sym__newline, + STATE(343), 1, sym__open_brace, - STATE(1081), 1, + STATE(733), 1, + aux_sym_function_definition_repeat1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2009), 8, + ACTIONS(2135), 8, sym_return, sym_next, sym_break, @@ -66371,7 +66375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1175), 19, + STATE(1174), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66391,74 +66395,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [37121] = 32, + [37123] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(389), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(391), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(393), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(395), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(397), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(399), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(401), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(403), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(405), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(409), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(411), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(427), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(429), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(1057), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(335), 1, sym__open_brace, - STATE(1081), 1, + STATE(1057), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1605), 1, + sym__single_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1617), 1, sym_string, - STATE(1582), 1, + STATE(1618), 1, sym__float_literal, - STATE(1583), 1, - sym__single_quoted_string, - STATE(1584), 1, + STATE(1619), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, STATE(2027), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1055), 2, + sym_identifier, + sym_dots, + ACTIONS(421), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2011), 8, + ACTIONS(2139), 8, sym_return, sym_next, sym_break, @@ -66467,7 +66471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1178), 19, + STATE(1484), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66487,74 +66491,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [37249] = 32, + [37251] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(2143), 1, + sym__newline, + STATE(343), 1, sym__open_brace, - STATE(1081), 1, + STATE(734), 1, + aux_sym_function_definition_repeat1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2013), 8, + ACTIONS(2141), 8, sym_return, sym_next, sym_break, @@ -66563,7 +66567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1182), 19, + STATE(1175), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66583,74 +66587,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [37377] = 32, + [37379] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(2017), 1, - sym__newline, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(756), 1, - aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2015), 8, + ACTIONS(2145), 8, sym_return, sym_next, sym_break, @@ -66659,7 +66663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1187), 19, + STATE(1176), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66679,74 +66683,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [37505] = 32, + [37507] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(2021), 1, - sym__newline, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(758), 1, - aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2019), 8, + ACTIONS(2147), 8, sym_return, sym_next, sym_break, @@ -66755,7 +66759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1191), 19, + STATE(1180), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66775,74 +66779,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [37633] = 32, + [37635] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2025), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2151), 1, sym__newline, - STATE(384), 1, + STATE(331), 1, sym__open_brace, - STATE(759), 1, + STATE(755), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2023), 8, + ACTIONS(2149), 8, sym_return, sym_next, sym_break, @@ -66851,7 +66855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1193), 19, + STATE(1528), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66871,74 +66875,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [37761] = 32, + [37763] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2029), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2155), 1, sym__newline, - STATE(384), 1, + STATE(331), 1, sym__open_brace, - STATE(760), 1, + STATE(757), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2027), 8, + ACTIONS(2153), 8, sym_return, sym_next, sym_break, @@ -66947,7 +66951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1195), 19, + STATE(1529), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66967,74 +66971,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [37889] = 32, + [37891] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2033), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2159), 1, sym__newline, - STATE(384), 1, + STATE(331), 1, sym__open_brace, - STATE(761), 1, + STATE(759), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2031), 8, + ACTIONS(2157), 8, sym_return, sym_next, sym_break, @@ -67043,7 +67047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1219), 19, + STATE(1540), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67063,74 +67067,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [38017] = 32, + [38019] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2037), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2163), 1, sym__newline, - STATE(384), 1, + STATE(331), 1, sym__open_brace, - STATE(762), 1, + STATE(761), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2035), 8, + ACTIONS(2161), 8, sym_return, sym_next, sym_break, @@ -67139,7 +67143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1223), 19, + STATE(1544), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67159,74 +67163,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [38145] = 32, + [38147] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2041), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2167), 1, sym__newline, - STATE(384), 1, + STATE(331), 1, sym__open_brace, STATE(763), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2039), 8, + ACTIONS(2165), 8, sym_return, sym_next, sym_break, @@ -67235,7 +67239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1227), 19, + STATE(1545), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67255,74 +67259,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [38273] = 32, + [38275] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(2045), 1, + ACTIONS(2171), 1, sym__newline, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(764), 1, + STATE(737), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2043), 8, + ACTIONS(2169), 8, sym_return, sym_next, sym_break, @@ -67331,7 +67335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1231), 19, + STATE(1181), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67351,74 +67355,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [38401] = 32, + [38403] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(2049), 1, + ACTIONS(2175), 1, sym__newline, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(765), 1, + STATE(741), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2047), 8, + ACTIONS(2173), 8, sym_return, sym_next, sym_break, @@ -67427,7 +67431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1235), 19, + STATE(1182), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67447,74 +67451,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [38529] = 32, + [38531] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(2053), 1, + ACTIONS(2179), 1, sym__newline, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(766), 1, + STATE(742), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2051), 8, + ACTIONS(2177), 8, sym_return, sym_next, sym_break, @@ -67523,7 +67527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1239), 19, + STATE(1183), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67543,74 +67547,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [38657] = 32, + [38659] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(2057), 1, - sym__newline, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(767), 1, - aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2055), 8, + ACTIONS(2181), 8, sym_return, sym_next, sym_break, @@ -67619,7 +67623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1243), 19, + STATE(1185), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67639,74 +67643,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [38785] = 32, + [38787] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(2061), 1, + ACTIONS(2185), 1, sym__newline, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(768), 1, + STATE(751), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2059), 8, + ACTIONS(2183), 8, sym_return, sym_next, sym_break, @@ -67715,7 +67719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1248), 19, + STATE(1188), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67735,74 +67739,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [38913] = 32, + [38915] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1063), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(2189), 1, sym__newline, - STATE(370), 1, + STATE(331), 1, sym__open_brace, - STATE(1057), 1, + STATE(789), 1, + aux_sym_function_definition_repeat1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1604), 1, sym_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1628), 1, + sym__float_literal, + STATE(1629), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1061), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2063), 8, + ACTIONS(2187), 8, sym_return, sym_next, sym_break, @@ -67811,7 +67815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1550), 19, + STATE(1574), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67831,74 +67835,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [39041] = 32, + [39043] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2065), 8, + ACTIONS(2191), 8, sym_return, sym_next, sym_break, @@ -67907,7 +67911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1269), 19, + STATE(1190), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67927,74 +67931,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [39169] = 32, + [39171] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2069), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(384), 1, + STATE(331), 1, sym__open_brace, - STATE(769), 1, - aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2067), 8, + ACTIONS(2193), 8, sym_return, sym_next, sym_break, @@ -68003,7 +68007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1271), 19, + STATE(1569), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68023,74 +68027,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [39297] = 32, + [39299] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(1979), 1, - sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(384), 1, - sym__open_brace, - STATE(1081), 1, - sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2071), 8, + ACTIONS(2195), 8, sym_return, sym_next, sym_break, @@ -68099,7 +68103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1323), 19, + STATE(9), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68119,74 +68123,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [39425] = 32, + [39427] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2073), 8, + ACTIONS(2197), 8, sym_return, sym_next, sym_break, @@ -68195,7 +68199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1185), 19, + STATE(1568), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68215,74 +68219,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [39553] = 32, + [39555] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2075), 8, + ACTIONS(2199), 8, sym_return, sym_next, sym_break, @@ -68291,7 +68295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1198), 19, + STATE(1191), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68311,74 +68315,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [39681] = 32, + [39683] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2077), 8, + ACTIONS(2201), 8, sym_return, sym_next, sym_break, @@ -68387,7 +68391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1200), 19, + STATE(1566), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68407,74 +68411,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [39809] = 32, + [39811] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2079), 8, + ACTIONS(2203), 8, sym_return, sym_next, sym_break, @@ -68483,7 +68487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1207), 19, + STATE(1192), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68503,74 +68507,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [39937] = 32, + [39939] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2081), 8, + ACTIONS(2205), 8, sym_return, sym_next, sym_break, @@ -68579,7 +68583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1210), 19, + STATE(1561), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68599,74 +68603,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [40065] = 32, + [40067] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2083), 8, + ACTIONS(2207), 8, sym_return, sym_next, sym_break, @@ -68675,7 +68679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1211), 19, + STATE(1194), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68695,74 +68699,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [40193] = 32, + [40195] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2085), 8, + ACTIONS(2209), 8, sym_return, sym_next, sym_break, @@ -68771,7 +68775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1241), 19, + STATE(1560), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68791,74 +68795,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [40321] = 32, + [40323] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2087), 8, + ACTIONS(2211), 8, sym_return, sym_next, sym_break, @@ -68867,7 +68871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1286), 19, + STATE(1195), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68887,74 +68891,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [40449] = 32, + [40451] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2089), 8, + ACTIONS(2213), 8, sym_return, sym_next, sym_break, @@ -68963,7 +68967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1301), 19, + STATE(1199), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68983,74 +68987,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [40577] = 32, + [40579] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2091), 8, + ACTIONS(2215), 8, sym_return, sym_next, sym_break, @@ -69059,7 +69063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1327), 19, + STATE(1201), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69079,74 +69083,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [40705] = 32, + [40707] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2093), 8, + ACTIONS(2217), 8, sym_return, sym_next, sym_break, @@ -69155,7 +69159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1330), 19, + STATE(1218), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69175,74 +69179,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [40833] = 32, + [40835] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1347), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(2221), 1, + sym__newline, + STATE(388), 1, sym__open_brace, - STATE(1081), 1, + STATE(589), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, sym__open_parenthesis, STATE(1581), 1, - sym_string, - STATE(1582), 1, sym__float_literal, STATE(1583), 1, sym__single_quoted_string, STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2095), 8, + ACTIONS(2219), 8, sym_return, sym_next, sym_break, @@ -69251,7 +69255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1174), 19, + STATE(1248), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69271,74 +69275,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [40961] = 32, + [40963] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2225), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(1081), 1, + STATE(801), 1, + aux_sym_function_definition_repeat1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2097), 8, + ACTIONS(2223), 8, sym_return, sym_next, sym_break, @@ -69347,7 +69351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1192), 19, + STATE(1556), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69367,74 +69371,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [41089] = 32, + [41091] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2101), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2229), 1, sym__newline, - STATE(384), 1, + STATE(331), 1, sym__open_brace, - STATE(771), 1, + STATE(803), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2099), 8, + ACTIONS(2227), 8, sym_return, sym_next, sym_break, @@ -69443,7 +69447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1196), 19, + STATE(1555), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69463,74 +69467,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [41217] = 32, + [41219] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2233), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(1081), 1, + STATE(805), 1, + aux_sym_function_definition_repeat1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2103), 8, + ACTIONS(2231), 8, sym_return, sym_next, sym_break, @@ -69539,7 +69543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1205), 19, + STATE(1554), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69559,74 +69563,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [41345] = 32, + [41347] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2107), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2237), 1, sym__newline, - STATE(384), 1, + STATE(331), 1, sym__open_brace, - STATE(775), 1, + STATE(807), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2105), 8, + ACTIONS(2235), 8, sym_return, sym_next, sym_break, @@ -69635,7 +69639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1206), 19, + STATE(1553), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69655,74 +69659,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [41473] = 32, + [41475] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2111), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2241), 1, sym__newline, - STATE(384), 1, + STATE(331), 1, sym__open_brace, - STATE(776), 1, + STATE(453), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2109), 8, + ACTIONS(2239), 8, sym_return, sym_next, sym_break, @@ -69731,7 +69735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1209), 19, + STATE(1552), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69751,74 +69755,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [41601] = 32, + [41603] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2115), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2245), 1, sym__newline, - STATE(384), 1, + STATE(331), 1, sym__open_brace, - STATE(779), 1, + STATE(811), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2113), 8, + ACTIONS(2243), 8, sym_return, sym_next, sym_break, @@ -69827,7 +69831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1225), 19, + STATE(1551), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69847,74 +69851,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [41729] = 32, + [41731] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2249), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(1081), 1, + STATE(813), 1, + aux_sym_function_definition_repeat1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2117), 8, + ACTIONS(2247), 8, sym_return, sym_next, sym_break, @@ -69923,7 +69927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1265), 19, + STATE(1550), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69943,74 +69947,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [41857] = 32, + [41859] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2253), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(1081), 1, + STATE(815), 1, + aux_sym_function_definition_repeat1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2119), 8, + ACTIONS(2251), 8, sym_return, sym_next, sym_break, @@ -70019,7 +70023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1276), 19, + STATE(1549), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70039,74 +70043,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [41985] = 32, + [41987] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2123), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2257), 1, sym__newline, - STATE(384), 1, + STATE(331), 1, sym__open_brace, - STATE(781), 1, + STATE(817), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2121), 8, + ACTIONS(2255), 8, sym_return, sym_next, sym_break, @@ -70115,7 +70119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1278), 19, + STATE(1548), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70135,74 +70139,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [42113] = 32, + [42115] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2127), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2261), 1, sym__newline, - STATE(384), 1, + STATE(331), 1, sym__open_brace, - STATE(782), 1, + STATE(819), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2125), 8, + ACTIONS(2259), 8, sym_return, sym_next, sym_break, @@ -70211,7 +70215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1282), 19, + STATE(1543), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70231,74 +70235,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [42241] = 32, + [42243] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2265), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(1081), 1, + STATE(821), 1, + aux_sym_function_definition_repeat1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2129), 8, + ACTIONS(2263), 8, sym_return, sym_next, sym_break, @@ -70307,7 +70311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1288), 19, + STATE(1541), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70327,74 +70331,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [42369] = 32, + [42371] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2133), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2269), 1, sym__newline, - STATE(384), 1, + STATE(331), 1, sym__open_brace, - STATE(784), 1, + STATE(823), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2131), 8, + ACTIONS(2267), 8, sym_return, sym_next, sym_break, @@ -70403,7 +70407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1290), 19, + STATE(1539), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70423,74 +70427,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [42497] = 32, + [42499] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2273), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(1081), 1, + STATE(825), 1, + aux_sym_function_definition_repeat1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1604), 1, sym_string, - STATE(1582), 1, + STATE(1628), 1, sym__float_literal, - STATE(1583), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2135), 8, + ACTIONS(2271), 8, sym_return, sym_next, sym_break, @@ -70499,7 +70503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1294), 19, + STATE(1537), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70519,74 +70523,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [42625] = 32, + [42627] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1979), 1, - sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(981), 1, sym__external_open_brace, - STATE(384), 1, - sym__open_brace, - STATE(1081), 1, - sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, - sym__single_quoted_string, - STATE(1584), 1, + ACTIONS(2277), 1, + sym__newline, + STATE(317), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, + sym__open_brace, + STATE(694), 1, aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(1092), 1, + sym__open_parenthesis, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2137), 8, + ACTIONS(2275), 8, sym_return, sym_next, sym_break, @@ -70595,7 +70599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1296), 19, + STATE(218), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70615,74 +70619,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [42753] = 32, + [42755] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(2141), 1, - sym__newline, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(785), 1, - aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2139), 8, + ACTIONS(2279), 8, sym_return, sym_next, sym_break, @@ -70691,7 +70695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1298), 19, + STATE(1219), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70711,74 +70715,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [42881] = 32, + [42883] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2143), 8, + ACTIONS(2281), 8, sym_return, sym_next, sym_break, @@ -70787,7 +70791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1304), 19, + STATE(1220), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70807,74 +70811,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [43009] = 32, + [43011] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1943), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(384), 1, + STATE(343), 1, sym__open_brace, - STATE(1081), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2145), 8, + ACTIONS(2283), 8, sym_return, sym_next, sym_break, @@ -70883,7 +70887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1305), 19, + STATE(1221), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70903,74 +70907,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [43137] = 32, + [43139] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2179), 1, - sym__newline, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + STATE(343), 1, sym__open_brace, - STATE(795), 1, - aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2175), 8, + ACTIONS(2285), 8, sym_return, sym_next, sym_break, @@ -70979,7 +70983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(66), 19, + STATE(1232), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70999,74 +71003,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [43265] = 32, + [43267] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(2187), 1, - sym__newline, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + STATE(343), 1, sym__open_brace, - STATE(797), 1, - aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2185), 8, + ACTIONS(2287), 8, sym_return, sym_next, sym_break, @@ -71075,7 +71079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(67), 19, + STATE(1240), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71095,74 +71099,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [43393] = 32, + [43395] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(2191), 1, - sym__newline, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + STATE(343), 1, sym__open_brace, - STATE(798), 1, - aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2189), 8, + ACTIONS(2289), 8, sym_return, sym_next, sym_break, @@ -71171,7 +71175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(68), 19, + STATE(1241), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71191,74 +71195,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [43521] = 32, + [43523] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(459), 1, + anon_sym_SQUOTE, + ACTIONS(461), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + sym__raw_string_literal, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2195), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(292), 1, + STATE(331), 1, + sym__open_brace, + STATE(1113), 1, + sym__open_parenthesis, + STATE(1604), 1, sym_string, - STATE(293), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(294), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(800), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(2032), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2193), 8, + ACTIONS(2291), 8, sym_return, sym_next, sym_break, @@ -71267,7 +71271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(69), 19, + STATE(1511), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71287,74 +71291,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [43649] = 32, + [43651] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(459), 1, + anon_sym_SQUOTE, + ACTIONS(461), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + sym__raw_string_literal, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2199), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2295), 1, sym__newline, - STATE(292), 1, + STATE(331), 1, + sym__open_brace, + STATE(839), 1, + aux_sym_function_definition_repeat1, + STATE(1113), 1, + sym__open_parenthesis, + STATE(1604), 1, sym_string, - STATE(293), 1, + STATE(1628), 1, sym__float_literal, - STATE(294), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(801), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(2032), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2197), 8, + ACTIONS(2293), 8, sym_return, sym_next, sym_break, @@ -71363,7 +71367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(70), 19, + STATE(1509), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71383,74 +71387,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [43777] = 32, + [43779] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1671), 1, + sym_dot_dot_i, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(2299), 1, sym__newline, - STATE(370), 1, + STATE(343), 1, sym__open_brace, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, + STATE(754), 1, aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1086), 1, + sym__open_parenthesis, + STATE(1599), 1, sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, + STATE(1600), 1, sym__float_literal, - STATE(2054), 1, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2201), 8, + ACTIONS(2297), 8, sym_return, sym_next, sym_break, @@ -71459,7 +71463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1552), 19, + STATE(1242), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71479,74 +71483,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [43905] = 32, + [43907] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1671), 1, + sym_dot_dot_i, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(370), 1, + STATE(343), 1, sym__open_brace, - STATE(1057), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, + STATE(1600), 1, sym__float_literal, - STATE(2054), 1, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2203), 8, + ACTIONS(2301), 8, sym_return, sym_next, sym_break, @@ -71555,7 +71559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1554), 19, + STATE(1249), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71575,74 +71579,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [44033] = 32, + [44035] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(971), 1, + sym_dot_dot_i, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(2305), 1, sym__newline, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, STATE(370), 1, sym__open_brace, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, + STATE(696), 1, aux_sym_function_definition_repeat1, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1092), 1, + sym__open_parenthesis, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2205), 8, + ACTIONS(2303), 8, sym_return, sym_next, sym_break, @@ -71651,7 +71655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1556), 19, + STATE(212), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71671,74 +71675,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [44161] = 32, + [44163] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(375), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(2209), 1, + ACTIONS(2309), 1, sym__newline, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(388), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(817), 1, + STATE(506), 1, aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(2032), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2207), 8, + ACTIONS(2307), 8, sym_return, sym_next, sym_break, @@ -71747,7 +71751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(71), 19, + STATE(216), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71767,74 +71771,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [44289] = 32, + [44291] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + ACTIONS(2313), 1, + sym__newline, + STATE(343), 1, sym__open_brace, + STATE(758), 1, + aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2211), 8, + ACTIONS(2311), 8, sym_return, sym_next, sym_break, @@ -71843,7 +71847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(72), 19, + STATE(1250), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71863,74 +71867,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [44417] = 32, + [44419] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1671), 1, + sym_dot_dot_i, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(2317), 1, sym__newline, - STATE(370), 1, + STATE(343), 1, sym__open_brace, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, + STATE(760), 1, aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1086), 1, + sym__open_parenthesis, + STATE(1599), 1, sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, + STATE(1600), 1, sym__float_literal, - STATE(2054), 1, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2213), 8, + ACTIONS(2315), 8, sym_return, sym_next, sym_break, @@ -71939,7 +71943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1557), 19, + STATE(1251), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71959,74 +71963,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [44545] = 32, + [44547] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + ACTIONS(2321), 1, + sym__newline, + STATE(343), 1, sym__open_brace, + STATE(762), 1, + aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2215), 8, + ACTIONS(2319), 8, sym_return, sym_next, sym_break, @@ -72035,7 +72039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(73), 19, + STATE(1252), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72055,74 +72059,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [44673] = 32, + [44675] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + ACTIONS(2325), 1, + sym__newline, + STATE(343), 1, sym__open_brace, + STATE(764), 1, + aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2217), 8, + ACTIONS(2323), 8, sym_return, sym_next, sym_break, @@ -72131,7 +72135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(129), 19, + STATE(1253), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72151,74 +72155,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [44801] = 32, + [44803] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1671), 1, + sym_dot_dot_i, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(2329), 1, sym__newline, - STATE(370), 1, + STATE(343), 1, sym__open_brace, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, + STATE(765), 1, aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1086), 1, + sym__open_parenthesis, + STATE(1599), 1, sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, + STATE(1600), 1, sym__float_literal, - STATE(2054), 1, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2219), 8, + ACTIONS(2327), 8, sym_return, sym_next, sym_break, @@ -72227,7 +72231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1560), 19, + STATE(1254), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72247,74 +72251,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [44929] = 32, + [44931] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + ACTIONS(2333), 1, + sym__newline, + STATE(343), 1, sym__open_brace, + STATE(766), 1, + aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2221), 8, + ACTIONS(2331), 8, sym_return, sym_next, sym_break, @@ -72323,7 +72327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(75), 19, + STATE(1255), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72343,74 +72347,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [45057] = 32, + [45059] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(459), 1, + anon_sym_SQUOTE, + ACTIONS(461), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + sym__raw_string_literal, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(292), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(331), 1, + sym__open_brace, + STATE(1113), 1, + sym__open_parenthesis, + STATE(1604), 1, sym_string, - STATE(293), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(294), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2223), 8, + ACTIONS(2335), 8, sym_return, sym_next, sym_break, @@ -72419,7 +72423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(76), 19, + STATE(1505), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72439,74 +72443,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [45185] = 32, + [45187] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1671), 1, + sym_dot_dot_i, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(2339), 1, sym__newline, - STATE(370), 1, + STATE(343), 1, sym__open_brace, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, + STATE(767), 1, aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1086), 1, + sym__open_parenthesis, + STATE(1599), 1, sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, + STATE(1600), 1, sym__float_literal, - STATE(2054), 1, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2225), 8, + ACTIONS(2337), 8, sym_return, sym_next, sym_break, @@ -72515,7 +72519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1561), 19, + STATE(1256), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72535,74 +72539,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [45313] = 32, + [45315] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1063), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(370), 1, + STATE(331), 1, sym__open_brace, - STATE(1057), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1604), 1, sym_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1628), 1, + sym__float_literal, + STATE(1629), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1061), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2227), 8, + ACTIONS(2341), 8, sym_return, sym_next, sym_break, @@ -72611,7 +72615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1562), 19, + STATE(1504), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72631,74 +72635,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [45441] = 32, + [45443] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(2231), 1, + ACTIONS(2345), 1, sym__newline, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + STATE(343), 1, sym__open_brace, - STATE(819), 1, + STATE(783), 1, aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2229), 8, + ACTIONS(2343), 8, sym_return, sym_next, sym_break, @@ -72707,7 +72711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(77), 19, + STATE(1257), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72727,74 +72731,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [45569] = 32, + [45571] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(459), 1, + anon_sym_SQUOTE, + ACTIONS(461), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + sym__raw_string_literal, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2235), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(292), 1, + STATE(331), 1, + sym__open_brace, + STATE(1113), 1, + sym__open_parenthesis, + STATE(1604), 1, sym_string, - STATE(293), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(294), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(823), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(2032), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2233), 8, + ACTIONS(2347), 8, sym_return, sym_next, sym_break, @@ -72803,7 +72807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(79), 19, + STATE(1502), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72823,74 +72827,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [45697] = 32, + [45699] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(2239), 1, + ACTIONS(2351), 1, sym__newline, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + STATE(343), 1, sym__open_brace, - STATE(824), 1, + STATE(784), 1, aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2237), 8, + ACTIONS(2349), 8, sym_return, sym_next, sym_break, @@ -72899,7 +72903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(80), 19, + STATE(1260), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72919,74 +72923,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [45825] = 32, + [45827] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(459), 1, + anon_sym_SQUOTE, + ACTIONS(461), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + sym__raw_string_literal, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2243), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(292), 1, + STATE(331), 1, + sym__open_brace, + STATE(1113), 1, + sym__open_parenthesis, + STATE(1604), 1, sym_string, - STATE(293), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(294), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(825), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(2032), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2241), 8, + ACTIONS(2353), 8, sym_return, sym_next, sym_break, @@ -72995,7 +72999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(81), 19, + STATE(1501), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73015,74 +73019,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [45953] = 32, + [45955] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(2247), 1, + ACTIONS(2357), 1, sym__newline, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + STATE(343), 1, sym__open_brace, - STATE(826), 1, + STATE(785), 1, aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2245), 8, + ACTIONS(2355), 8, sym_return, sym_next, sym_break, @@ -73091,7 +73095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(82), 19, + STATE(1263), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73111,74 +73115,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [46081] = 32, + [46083] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2251), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(2361), 1, sym__newline, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + STATE(357), 1, sym__open_brace, - STATE(827), 1, + STATE(950), 1, aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(2032), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, + sym_string, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2249), 8, + ACTIONS(2359), 8, sym_return, sym_next, sym_break, @@ -73187,7 +73191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(83), 19, + STATE(1542), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73207,74 +73211,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [46209] = 32, + [46211] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(2255), 1, + ACTIONS(2365), 1, sym__newline, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + STATE(343), 1, sym__open_brace, - STATE(828), 1, + STATE(786), 1, aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2253), 8, + ACTIONS(2363), 8, sym_return, sym_next, sym_break, @@ -73283,7 +73287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(84), 19, + STATE(1264), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73303,74 +73307,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [46337] = 32, + [46339] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(459), 1, + anon_sym_SQUOTE, + ACTIONS(461), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + sym__raw_string_literal, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2259), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(292), 1, + STATE(331), 1, + sym__open_brace, + STATE(1113), 1, + sym__open_parenthesis, + STATE(1604), 1, sym_string, - STATE(293), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(294), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(829), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(2032), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2257), 8, + ACTIONS(2367), 8, sym_return, sym_next, sym_break, @@ -73379,7 +73383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(85), 19, + STATE(1498), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73399,74 +73403,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [46465] = 32, + [46467] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(2263), 1, + ACTIONS(2371), 1, sym__newline, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + STATE(343), 1, sym__open_brace, - STATE(830), 1, + STATE(788), 1, aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2261), 8, + ACTIONS(2369), 8, sym_return, sym_next, sym_break, @@ -73475,7 +73479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(86), 19, + STATE(1266), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73495,74 +73499,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [46593] = 32, + [46595] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(459), 1, + anon_sym_SQUOTE, + ACTIONS(461), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + sym__raw_string_literal, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2267), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(292), 1, + STATE(331), 1, + sym__open_brace, + STATE(1113), 1, + sym__open_parenthesis, + STATE(1604), 1, sym_string, - STATE(293), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(294), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(831), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(2032), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2265), 8, + ACTIONS(2373), 8, sym_return, sym_next, sym_break, @@ -73571,7 +73575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(87), 19, + STATE(1495), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73591,74 +73595,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [46721] = 32, + [46723] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(375), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(2271), 1, + ACTIONS(1109), 1, sym__newline, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(388), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(832), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(2032), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2269), 8, + ACTIONS(2375), 8, sym_return, sym_next, sym_break, @@ -73667,7 +73671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(88), 19, + STATE(215), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73687,74 +73691,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [46849] = 32, + [46851] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(459), 1, + anon_sym_SQUOTE, + ACTIONS(461), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + sym__raw_string_literal, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2275), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(292), 1, + STATE(331), 1, + sym__open_brace, + STATE(1113), 1, + sym__open_parenthesis, + STATE(1604), 1, sym_string, - STATE(293), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(294), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(833), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(2032), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2273), 8, + ACTIONS(2377), 8, sym_return, sym_next, sym_break, @@ -73763,7 +73767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(89), 19, + STATE(1494), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73783,74 +73787,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [46977] = 32, + [46979] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, - sym__double_quoted_string, - STATE(378), 1, + STATE(343), 1, sym__open_brace, - STATE(1053), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2277), 8, + ACTIONS(2379), 8, sym_return, sym_next, sym_break, @@ -73859,7 +73863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(214), 19, + STATE(1267), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73879,74 +73883,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [47105] = 32, + [47107] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(459), 1, + anon_sym_SQUOTE, + ACTIONS(461), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + sym__raw_string_literal, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(292), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(331), 1, + sym__open_brace, + STATE(1113), 1, + sym__open_parenthesis, + STATE(1604), 1, sym_string, - STATE(293), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(294), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2279), 8, + ACTIONS(2381), 8, sym_return, sym_next, sym_break, @@ -73955,7 +73959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(90), 19, + STATE(1490), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73975,74 +73979,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [47233] = 32, + [47235] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(2283), 1, - sym__newline, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + STATE(343), 1, sym__open_brace, - STATE(834), 1, - aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2281), 8, + ACTIONS(2383), 8, sym_return, sym_next, sym_break, @@ -74051,7 +74055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(91), 19, + STATE(1268), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74071,74 +74075,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [47361] = 32, + [47363] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(459), 1, + anon_sym_SQUOTE, + ACTIONS(461), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + sym__raw_string_literal, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(292), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(331), 1, + sym__open_brace, + STATE(1113), 1, + sym__open_parenthesis, + STATE(1604), 1, sym_string, - STATE(293), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(294), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2285), 8, + ACTIONS(2385), 8, sym_return, sym_next, sym_break, @@ -74147,7 +74151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(92), 19, + STATE(1489), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74167,74 +74171,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [47489] = 32, + [47491] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1671), 1, + sym_dot_dot_i, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(370), 1, + STATE(343), 1, sym__open_brace, - STATE(1057), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, + STATE(1600), 1, sym__float_literal, - STATE(2054), 1, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2287), 8, + ACTIONS(2387), 8, sym_return, sym_next, sym_break, @@ -74243,7 +74247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1569), 19, + STATE(1269), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74263,74 +74267,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [47617] = 32, + [47619] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(459), 1, + anon_sym_SQUOTE, + ACTIONS(461), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + sym__raw_string_literal, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(292), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(331), 1, + sym__open_brace, + STATE(1113), 1, + sym__open_parenthesis, + STATE(1604), 1, sym_string, - STATE(293), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(294), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2289), 8, + ACTIONS(2389), 8, sym_return, sym_next, sym_break, @@ -74339,7 +74343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(93), 19, + STATE(1464), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74359,74 +74363,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [47745] = 32, + [47747] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1671), 1, + sym_dot_dot_i, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1681), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(2293), 1, - sym__newline, - STATE(370), 1, + STATE(343), 1, sym__open_brace, - STATE(836), 1, - aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1629), 1, + STATE(1600), 1, sym__float_literal, - STATE(2054), 1, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2291), 8, + ACTIONS(2391), 8, sym_return, sym_next, sym_break, @@ -74435,7 +74439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1571), 19, + STATE(1270), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74455,74 +74459,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [47873] = 32, + [47875] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(459), 1, + anon_sym_SQUOTE, + ACTIONS(461), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + sym__raw_string_literal, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(292), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(331), 1, + sym__open_brace, + STATE(1113), 1, + sym__open_parenthesis, + STATE(1604), 1, sym_string, - STATE(293), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(294), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2295), 8, + ACTIONS(2393), 8, sym_return, sym_next, sym_break, @@ -74531,7 +74535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(94), 19, + STATE(1463), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74551,74 +74555,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [48001] = 32, + [48003] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + STATE(343), 1, sym__open_brace, STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2297), 8, + ACTIONS(2395), 8, sym_return, sym_next, sym_break, @@ -74627,7 +74631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(95), 19, + STATE(1271), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74647,74 +74651,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [48129] = 32, + [48131] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(459), 1, + anon_sym_SQUOTE, + ACTIONS(461), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + sym__raw_string_literal, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(292), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(331), 1, + sym__open_brace, + STATE(1113), 1, + sym__open_parenthesis, + STATE(1604), 1, sym_string, - STATE(293), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(294), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2299), 8, + ACTIONS(2397), 8, sym_return, sym_next, sym_break, @@ -74723,7 +74727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(96), 19, + STATE(1451), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74743,74 +74747,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [48257] = 32, + [48259] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + ACTIONS(2401), 1, + sym__newline, + STATE(343), 1, sym__open_brace, + STATE(792), 1, + aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2301), 8, + ACTIONS(2399), 8, sym_return, sym_next, sym_break, @@ -74819,7 +74823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(97), 19, + STATE(1272), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74839,74 +74843,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [48385] = 32, + [48387] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, + ACTIONS(341), 1, anon_sym_SQUOTE, - ACTIONS(375), 1, + ACTIONS(343), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(347), 1, sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, + ACTIONS(2405), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(388), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(756), 1, aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(1108), 1, + sym__open_parenthesis, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2303), 8, + ACTIONS(2403), 8, sym_return, sym_next, sym_break, @@ -74915,7 +74919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(98), 19, + STATE(8), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74935,74 +74939,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [48513] = 32, + [48515] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + ACTIONS(2409), 1, + sym__newline, + STATE(343), 1, sym__open_brace, + STATE(816), 1, + aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2305), 8, + ACTIONS(2407), 8, sym_return, sym_next, sym_break, @@ -75011,7 +75015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(99), 19, + STATE(1273), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75031,74 +75035,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [48641] = 32, + [48643] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + ACTIONS(2413), 1, + sym__newline, + STATE(343), 1, sym__open_brace, + STATE(818), 1, + aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2307), 8, + ACTIONS(2411), 8, sym_return, sym_next, sym_break, @@ -75107,7 +75111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(100), 19, + STATE(1274), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75127,74 +75131,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [48769] = 32, + [48771] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + ACTIONS(2417), 1, + sym__newline, + STATE(343), 1, sym__open_brace, + STATE(820), 1, + aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2309), 8, + ACTIONS(2415), 8, sym_return, sym_next, sym_break, @@ -75203,7 +75207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(101), 19, + STATE(1275), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75223,74 +75227,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [48897] = 32, + [48899] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + ACTIONS(2421), 1, + sym__newline, + STATE(343), 1, sym__open_brace, + STATE(822), 1, + aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2311), 8, + ACTIONS(2419), 8, sym_return, sym_next, sym_break, @@ -75299,7 +75303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(102), 19, + STATE(1276), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75319,74 +75323,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [49025] = 32, + [49027] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(1643), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1645), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1647), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1649), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1651), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1653), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1655), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1657), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1659), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1663), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1665), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1671), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(1679), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1681), 1, sym__external_open_brace, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + ACTIONS(2425), 1, + sym__newline, + STATE(343), 1, sym__open_brace, + STATE(824), 1, + aux_sym_function_definition_repeat1, STATE(1086), 1, sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1600), 1, + sym__float_literal, + STATE(1601), 1, + sym_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(2028), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1641), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1675), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2313), 8, + ACTIONS(2423), 8, sym_return, sym_next, sym_break, @@ -75395,7 +75399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(103), 19, + STATE(1277), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75415,74 +75419,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [49153] = 32, + [49155] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2149), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2315), 8, + ACTIONS(2427), 8, sym_return, sym_next, sym_break, @@ -75491,7 +75495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(104), 19, + STATE(1278), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75511,74 +75515,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [49281] = 32, + [49283] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2149), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2317), 8, + ACTIONS(2429), 8, sym_return, sym_next, sym_break, @@ -75587,7 +75591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(105), 19, + STATE(1279), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75607,74 +75611,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [49409] = 32, + [49411] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2321), 1, + ACTIONS(2433), 1, sym__newline, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(833), 1, + aux_sym_function_definition_repeat1, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(841), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2319), 8, + ACTIONS(2431), 8, sym_return, sym_next, sym_break, @@ -75683,7 +75687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(106), 19, + STATE(1280), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75703,74 +75707,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [49537] = 32, + [49539] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1809), 1, + sym_dot_dot_i, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(370), 1, + STATE(339), 1, sym__open_brace, - STATE(1057), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1582), 1, sym_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1587), 1, + sym__float_literal, + STATE(1588), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1799), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2323), 8, + ACTIONS(2435), 8, sym_return, sym_next, sym_break, @@ -75779,7 +75783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1573), 19, + STATE(1281), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75799,74 +75803,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [49665] = 32, + [49667] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1809), 1, + sym_dot_dot_i, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(2327), 1, - sym__newline, - STATE(370), 1, + STATE(339), 1, sym__open_brace, - STATE(840), 1, - aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1582), 1, sym_string, - STATE(1618), 1, + STATE(1587), 1, + sym__float_literal, + STATE(1588), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1799), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2325), 8, + ACTIONS(2437), 8, sym_return, sym_next, sym_break, @@ -75875,7 +75879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1574), 19, + STATE(1282), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75895,74 +75899,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [49793] = 32, + [49795] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1809), 1, + sym_dot_dot_i, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(2331), 1, + ACTIONS(2441), 1, sym__newline, - STATE(370), 1, + STATE(339), 1, sym__open_brace, - STATE(843), 1, + STATE(834), 1, aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1582), 1, sym_string, - STATE(1618), 1, + STATE(1587), 1, + sym__float_literal, + STATE(1588), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1799), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2329), 8, + ACTIONS(2439), 8, sym_return, sym_next, sym_break, @@ -75971,7 +75975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1354), 19, + STATE(1283), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75991,74 +75995,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [49921] = 32, + [49923] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1063), 1, sym_dot_dot_i, - ACTIONS(2335), 1, + ACTIONS(1109), 1, sym__newline, - STATE(370), 1, + STATE(331), 1, sym__open_brace, - STATE(852), 1, - aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1604), 1, sym_string, - STATE(1618), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, + sym__float_literal, + STATE(1629), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1061), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2333), 8, + ACTIONS(2443), 8, sym_return, sym_next, sym_break, @@ -76067,7 +76071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1341), 19, + STATE(1431), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76087,74 +76091,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [50049] = 32, + [50051] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1063), 1, sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(2447), 1, sym__newline, - STATE(370), 1, + STATE(331), 1, sym__open_brace, - STATE(1057), 1, + STATE(866), 1, + aux_sym_function_definition_repeat1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1604), 1, sym_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1628), 1, + sym__float_literal, + STATE(1629), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1061), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2337), 8, + ACTIONS(2445), 8, sym_return, sym_next, sym_break, @@ -76163,7 +76167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1348), 19, + STATE(1429), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76183,74 +76187,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [50177] = 32, + [50179] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2149), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2339), 8, + ACTIONS(2449), 8, sym_return, sym_next, sym_break, @@ -76259,7 +76263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(107), 19, + STATE(1284), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76279,74 +76283,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [50305] = 32, + [50307] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2343), 1, + ACTIONS(2453), 1, sym__newline, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(836), 1, + aux_sym_function_definition_repeat1, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(848), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2341), 8, + ACTIONS(2451), 8, sym_return, sym_next, sym_break, @@ -76355,7 +76359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(108), 19, + STATE(1285), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76375,74 +76379,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [50433] = 32, + [50435] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1809), 1, + sym_dot_dot_i, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(2457), 1, sym__newline, - STATE(370), 1, + STATE(339), 1, sym__open_brace, - STATE(1057), 1, + STATE(837), 1, + aux_sym_function_definition_repeat1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1582), 1, sym_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1587), 1, + sym__float_literal, + STATE(1588), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1799), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2345), 8, + ACTIONS(2455), 8, sym_return, sym_next, sym_break, @@ -76451,7 +76455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1349), 19, + STATE(1286), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76471,74 +76475,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [50561] = 32, + [50563] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1809), 1, + sym_dot_dot_i, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(2349), 1, - sym__newline, - STATE(370), 1, + STATE(339), 1, sym__open_brace, - STATE(859), 1, - aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1582), 1, sym_string, - STATE(1618), 1, + STATE(1587), 1, + sym__float_literal, + STATE(1588), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1799), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2347), 8, + ACTIONS(2459), 8, sym_return, sym_next, sym_break, @@ -76547,7 +76551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1351), 19, + STATE(1287), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76567,74 +76571,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [50689] = 32, + [50691] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2353), 1, - sym__newline, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(849), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2351), 8, + ACTIONS(2461), 8, sym_return, sym_next, sym_break, @@ -76643,7 +76647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(109), 19, + STATE(1288), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76663,74 +76667,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [50817] = 32, + [50819] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2357), 1, + ACTIONS(2465), 1, sym__newline, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(841), 1, + aux_sym_function_definition_repeat1, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(853), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2355), 8, + ACTIONS(2463), 8, sym_return, sym_next, sym_break, @@ -76739,7 +76743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(110), 19, + STATE(1289), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76759,74 +76763,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [50945] = 32, + [50947] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1809), 1, + sym_dot_dot_i, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(2361), 1, + ACTIONS(2469), 1, sym__newline, - STATE(370), 1, + STATE(339), 1, sym__open_brace, - STATE(861), 1, + STATE(844), 1, aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1582), 1, sym_string, - STATE(1618), 1, + STATE(1587), 1, + sym__float_literal, + STATE(1588), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1799), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2359), 8, + ACTIONS(2467), 8, sym_return, sym_next, sym_break, @@ -76835,7 +76839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1355), 19, + STATE(1290), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76855,74 +76859,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [51073] = 32, + [51075] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(292), 1, + ACTIONS(2473), 1, + sym__newline, + STATE(339), 1, + sym__open_brace, + STATE(845), 1, + aux_sym_function_definition_repeat1, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2363), 8, + ACTIONS(2471), 8, sym_return, sym_next, sym_break, @@ -76931,7 +76935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(111), 19, + STATE(1291), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76951,74 +76955,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [51201] = 32, + [51203] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2149), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2365), 8, + ACTIONS(2475), 8, sym_return, sym_next, sym_break, @@ -77027,7 +77031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(112), 19, + STATE(1292), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77047,74 +77051,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [51329] = 32, + [51331] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2369), 1, + ACTIONS(2479), 1, sym__newline, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(849), 1, + aux_sym_function_definition_repeat1, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(856), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2367), 8, + ACTIONS(2477), 8, sym_return, sym_next, sym_break, @@ -77123,7 +77127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(113), 19, + STATE(1293), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77143,74 +77147,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [51457] = 32, + [51459] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2373), 1, - sym__newline, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(857), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2371), 8, + ACTIONS(2481), 8, sym_return, sym_next, sym_break, @@ -77219,7 +77223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(114), 19, + STATE(1294), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77239,74 +77243,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [51585] = 32, + [51587] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1337), 1, + sym_dot_dot_i, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(2485), 1, sym__newline, - STATE(370), 1, + STATE(388), 1, sym__open_brace, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, + STATE(695), 1, aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1581), 1, + sym__float_literal, + STATE(1583), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1327), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2375), 8, + ACTIONS(2483), 8, sym_return, sym_next, sym_break, @@ -77315,7 +77319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1356), 19, + STATE(1258), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77335,74 +77339,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [51713] = 32, + [51715] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2149), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2377), 8, + ACTIONS(2487), 8, sym_return, sym_next, sym_break, @@ -77411,7 +77415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(115), 19, + STATE(1295), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77431,74 +77435,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [51841] = 32, + [51843] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2381), 1, - sym__newline, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(860), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2379), 8, + ACTIONS(2489), 8, sym_return, sym_next, sym_break, @@ -77507,7 +77511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(116), 19, + STATE(1296), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77527,74 +77531,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [51969] = 32, + [51971] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1809), 1, + sym_dot_dot_i, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(2385), 1, - sym__newline, - STATE(370), 1, + STATE(339), 1, sym__open_brace, - STATE(865), 1, - aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1582), 1, sym_string, - STATE(1618), 1, + STATE(1587), 1, + sym__float_literal, + STATE(1588), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1799), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2383), 8, + ACTIONS(2491), 8, sym_return, sym_next, sym_break, @@ -77603,7 +77607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1334), 19, + STATE(1297), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77623,74 +77627,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [52097] = 32, + [52099] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2149), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2387), 8, + ACTIONS(2493), 8, sym_return, sym_next, sym_break, @@ -77699,7 +77703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(117), 19, + STATE(1298), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77719,74 +77723,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [52225] = 32, + [52227] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2149), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2389), 8, + ACTIONS(2495), 8, sym_return, sym_next, sym_break, @@ -77795,7 +77799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(118), 19, + STATE(1299), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77815,74 +77819,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [52353] = 32, + [52355] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2393), 1, - sym__newline, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(863), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2391), 8, + ACTIONS(2497), 8, sym_return, sym_next, sym_break, @@ -77891,7 +77895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(18), 19, + STATE(1300), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77911,74 +77915,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [52481] = 32, + [52483] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1809), 1, + sym_dot_dot_i, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(370), 1, + STATE(339), 1, sym__open_brace, - STATE(1057), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1582), 1, sym_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1587), 1, + sym__float_literal, + STATE(1588), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1799), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2395), 8, + ACTIONS(2499), 8, sym_return, sym_next, sym_break, @@ -77987,7 +77991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1367), 19, + STATE(1301), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78007,74 +78011,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [52609] = 32, + [52611] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2149), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2397), 8, + ACTIONS(2501), 8, sym_return, sym_next, sym_break, @@ -78083,7 +78087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(120), 19, + STATE(1302), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78103,74 +78107,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [52737] = 32, + [52739] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1809), 1, + sym_dot_dot_i, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(370), 1, + STATE(339), 1, sym__open_brace, - STATE(1057), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1582), 1, sym_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1587), 1, + sym__float_literal, + STATE(1588), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1799), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2399), 8, + ACTIONS(2503), 8, sym_return, sym_next, sym_break, @@ -78179,7 +78183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1408), 19, + STATE(1303), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78199,74 +78203,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [52865] = 32, + [52867] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1809), 1, + sym_dot_dot_i, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(2403), 1, - sym__newline, - STATE(370), 1, + STATE(339), 1, sym__open_brace, - STATE(976), 1, - aux_sym_function_definition_repeat1, - STATE(1057), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1582), 1, sym_string, - STATE(1618), 1, + STATE(1587), 1, + sym__float_literal, + STATE(1588), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1799), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2401), 8, + ACTIONS(2505), 8, sym_return, sym_next, sym_break, @@ -78275,7 +78279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1409), 19, + STATE(1304), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78295,74 +78299,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [52993] = 32, + [52995] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2149), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(292), 1, + STATE(339), 1, + sym__open_brace, + STATE(1091), 1, + sym__open_parenthesis, + STATE(1582), 1, sym_string, - STATE(293), 1, + STATE(1587), 1, sym__float_literal, - STATE(294), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2405), 8, + ACTIONS(2507), 8, sym_return, sym_next, sym_break, @@ -78371,7 +78375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(121), 19, + STATE(1305), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78391,74 +78395,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [53121] = 32, + [53123] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(2409), 1, + ACTIONS(2511), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, - sym__double_quoted_string, - STATE(378), 1, + STATE(388), 1, sym__open_brace, - STATE(663), 1, + STATE(697), 1, aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(1581), 1, + sym__float_literal, + STATE(1583), 1, + sym__single_quoted_string, + STATE(1584), 1, + sym_string, + STATE(1585), 1, + sym__double_quoted_string, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2407), 8, + ACTIONS(2509), 8, sym_return, sym_next, sym_break, @@ -78467,7 +78471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(198), 19, + STATE(1259), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78487,74 +78491,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [53249] = 32, + [53251] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1809), 1, + sym_dot_dot_i, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, - sym__newline, - STATE(370), 1, + STATE(339), 1, sym__open_brace, - STATE(1057), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1606), 1, + STATE(1582), 1, sym_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1587), 1, + sym__float_literal, + STATE(1588), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1799), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2411), 8, + ACTIONS(2513), 8, sym_return, sym_next, sym_break, @@ -78563,7 +78567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1441), 19, + STATE(1306), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78583,74 +78587,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [53377] = 32, + [53379] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2449), 1, - sym__newline, - ACTIONS(2451), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(872), 1, - aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1604), 1, sym_string, - STATE(1590), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(1593), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2445), 8, + ACTIONS(2515), 8, sym_return, sym_next, sym_break, @@ -78659,7 +78663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1322), 19, + STATE(1395), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78679,74 +78683,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [53505] = 32, + [53507] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2459), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2519), 1, sym__newline, - STATE(391), 1, + STATE(331), 1, sym__open_brace, - STATE(873), 1, + STATE(877), 1, aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1604), 1, sym_string, - STATE(1590), 1, + STATE(1628), 1, sym__float_literal, - STATE(1593), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2457), 8, + ACTIONS(2517), 8, sym_return, sym_next, sym_break, @@ -78755,7 +78759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1324), 19, + STATE(1418), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78775,74 +78779,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [53633] = 32, + [53635] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2463), 1, - sym__newline, - STATE(391), 1, + STATE(339), 1, sym__open_brace, - STATE(874), 1, - aux_sym_function_definition_repeat1, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2461), 8, + ACTIONS(2521), 8, sym_return, sym_next, sym_break, @@ -78851,7 +78855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1329), 19, + STATE(1307), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78871,74 +78875,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [53761] = 32, + [53763] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1347), 1, sym__external_open_brace, - ACTIONS(2467), 1, + ACTIONS(2525), 1, sym__newline, - STATE(391), 1, + STATE(388), 1, sym__open_brace, - STATE(875), 1, + STATE(712), 1, aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, + STATE(1581), 1, sym__float_literal, - STATE(1593), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2465), 8, + ACTIONS(2523), 8, sym_return, sym_next, sym_break, @@ -78947,7 +78951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1331), 19, + STATE(1230), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78967,74 +78971,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [53889] = 32, + [53891] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2471), 1, + ACTIONS(2529), 1, sym__newline, - STATE(391), 1, + STATE(339), 1, sym__open_brace, - STATE(876), 1, + STATE(851), 1, aux_sym_function_definition_repeat1, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2469), 8, + ACTIONS(2527), 8, sym_return, sym_next, sym_break, @@ -79043,7 +79047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1168), 19, + STATE(1308), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79063,74 +79067,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [54017] = 32, + [54019] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2475), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2533), 1, sym__newline, - STATE(391), 1, + STATE(331), 1, sym__open_brace, - STATE(889), 1, + STATE(879), 1, aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1604), 1, sym_string, - STATE(1590), 1, + STATE(1628), 1, sym__float_literal, - STATE(1593), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2473), 8, + ACTIONS(2531), 8, sym_return, sym_next, sym_break, @@ -79139,7 +79143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1201), 19, + STATE(1412), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79159,74 +79163,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [54145] = 32, + [54147] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1347), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(2537), 1, + sym__newline, + STATE(388), 1, sym__open_brace, - STATE(1091), 1, + STATE(718), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, + STATE(1581), 1, sym__float_literal, - STATE(1593), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2477), 8, + ACTIONS(2535), 8, sym_return, sym_next, sym_break, @@ -79235,7 +79239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1213), 19, + STATE(1261), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79255,74 +79259,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [54273] = 32, + [54275] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(1309), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1311), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1313), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1315), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1317), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1319), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1321), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1323), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1325), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1329), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1331), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1333), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1335), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1337), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1343), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1345), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1347), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(2541), 1, + sym__newline, + STATE(388), 1, sym__open_brace, - STATE(1091), 1, + STATE(723), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, + STATE(1581), 1, sym__float_literal, - STATE(1593), 1, + STATE(1583), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1584), 1, + sym_string, + STATE(1585), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2033), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1307), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1327), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1341), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2479), 8, + ACTIONS(2539), 8, sym_return, sym_next, sym_break, @@ -79331,7 +79335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1214), 19, + STATE(1262), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79351,74 +79355,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [54401] = 32, + [54403] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2545), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(1091), 1, + STATE(884), 1, + aux_sym_function_definition_repeat1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1604), 1, sym_string, - STATE(1590), 1, + STATE(1628), 1, sym__float_literal, - STATE(1593), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2481), 8, + ACTIONS(2543), 8, sym_return, sym_next, sym_break, @@ -79427,7 +79431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1166), 19, + STATE(1411), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79447,74 +79451,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [54529] = 32, + [54531] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(391), 1, + STATE(339), 1, sym__open_brace, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2483), 8, + ACTIONS(2547), 8, sym_return, sym_next, sym_break, @@ -79523,7 +79527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1216), 19, + STATE(1309), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79543,74 +79547,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [54657] = 32, + [54659] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(391), 1, - sym__open_brace, - STATE(1091), 1, - sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, - sym__float_literal, - STATE(1593), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2485), 8, + ACTIONS(2549), 8, sym_return, sym_next, sym_break, @@ -79619,7 +79623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1217), 19, + STATE(7), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79639,74 +79643,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [54785] = 32, + [54787] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2489), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(391), 1, + STATE(331), 1, sym__open_brace, - STATE(891), 1, - aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1604), 1, sym_string, - STATE(1590), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(1593), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2487), 8, + ACTIONS(2551), 8, sym_return, sym_next, sym_break, @@ -79715,7 +79719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1218), 19, + STATE(1410), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79735,74 +79739,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [54913] = 32, + [54915] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2493), 1, + ACTIONS(2555), 1, sym__newline, - STATE(391), 1, + STATE(339), 1, sym__open_brace, - STATE(893), 1, + STATE(853), 1, aux_sym_function_definition_repeat1, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2491), 8, + ACTIONS(2553), 8, sym_return, sym_next, sym_break, @@ -79811,7 +79815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1222), 19, + STATE(1310), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79831,74 +79835,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [55041] = 32, + [55043] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2497), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(391), 1, + STATE(331), 1, sym__open_brace, - STATE(894), 1, - aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1604), 1, sym_string, - STATE(1590), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(1593), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2495), 8, + ACTIONS(2557), 8, sym_return, sym_next, sym_break, @@ -79907,7 +79911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1224), 19, + STATE(1409), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79927,74 +79931,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [55169] = 32, + [55171] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2501), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2561), 1, sym__newline, - STATE(391), 1, + STATE(331), 1, sym__open_brace, - STATE(895), 1, + STATE(889), 1, aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1604), 1, sym_string, - STATE(1590), 1, + STATE(1628), 1, sym__float_literal, - STATE(1593), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2499), 8, + ACTIONS(2559), 8, sym_return, sym_next, sym_break, @@ -80003,7 +80007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1226), 19, + STATE(1408), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80023,74 +80027,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [55297] = 32, + [55299] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2505), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2565), 1, sym__newline, - STATE(391), 1, + STATE(331), 1, sym__open_brace, - STATE(896), 1, + STATE(891), 1, aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1604), 1, sym_string, - STATE(1590), 1, + STATE(1628), 1, sym__float_literal, - STATE(1593), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2503), 8, + ACTIONS(2563), 8, sym_return, sym_next, sym_break, @@ -80099,7 +80103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1228), 19, + STATE(1407), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80119,74 +80123,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [55425] = 32, + [55427] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(2509), 1, - sym__newline, - STATE(391), 1, - sym__open_brace, - STATE(897), 1, - aux_sym_function_definition_repeat1, - STATE(1091), 1, - sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, + STATE(289), 1, sym__float_literal, - STATE(1593), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2507), 8, + ACTIONS(2567), 8, sym_return, sym_next, sym_break, @@ -80195,7 +80199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1230), 19, + STATE(118), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80215,74 +80219,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [55553] = 32, + [55555] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2513), 1, + ACTIONS(2571), 1, sym__newline, - STATE(391), 1, + STATE(339), 1, sym__open_brace, - STATE(898), 1, + STATE(854), 1, aux_sym_function_definition_repeat1, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2511), 8, + ACTIONS(2569), 8, sym_return, sym_next, sym_break, @@ -80291,7 +80295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1232), 19, + STATE(1311), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80311,74 +80315,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [55681] = 32, + [55683] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2517), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(391), 1, + STATE(331), 1, sym__open_brace, - STATE(899), 1, - aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1604), 1, sym_string, - STATE(1590), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(1593), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2515), 8, + ACTIONS(2573), 8, sym_return, sym_next, sym_break, @@ -80387,7 +80391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1234), 19, + STATE(1406), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80407,74 +80411,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [55809] = 32, + [55811] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(475), 1, sym__external_open_brace, - ACTIONS(2521), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2577), 1, sym__newline, - STATE(391), 1, + STATE(331), 1, sym__open_brace, - STATE(900), 1, + STATE(895), 1, aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1604), 1, sym_string, - STATE(1590), 1, + STATE(1628), 1, sym__float_literal, - STATE(1593), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2519), 8, + ACTIONS(2575), 8, sym_return, sym_next, sym_break, @@ -80483,7 +80487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1236), 19, + STATE(1405), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80503,74 +80507,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [55937] = 32, + [55939] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2525), 1, + ACTIONS(2581), 1, sym__newline, - STATE(391), 1, + STATE(339), 1, sym__open_brace, - STATE(901), 1, + STATE(855), 1, aux_sym_function_definition_repeat1, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2523), 8, + ACTIONS(2579), 8, sym_return, sym_next, sym_break, @@ -80579,7 +80583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1238), 19, + STATE(1312), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80599,74 +80603,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [56065] = 32, + [56067] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2529), 1, + ACTIONS(2585), 1, sym__newline, - STATE(391), 1, + STATE(339), 1, sym__open_brace, - STATE(902), 1, + STATE(856), 1, aux_sym_function_definition_repeat1, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2527), 8, + ACTIONS(2583), 8, sym_return, sym_next, sym_break, @@ -80675,7 +80679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1240), 19, + STATE(1313), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80695,74 +80699,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [56193] = 32, + [56195] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2533), 1, + ACTIONS(2589), 1, sym__newline, - STATE(391), 1, + STATE(339), 1, sym__open_brace, - STATE(903), 1, + STATE(857), 1, aux_sym_function_definition_repeat1, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2531), 8, + ACTIONS(2587), 8, sym_return, sym_next, sym_break, @@ -80771,7 +80775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1242), 19, + STATE(1314), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80791,74 +80795,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [56321] = 32, + [56323] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(1091), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1604), 1, sym_string, - STATE(1590), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(1593), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2535), 8, + ACTIONS(2591), 8, sym_return, sym_next, sym_break, @@ -80867,7 +80871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1245), 19, + STATE(1404), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80887,74 +80891,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [56449] = 32, + [56451] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2539), 1, + ACTIONS(2595), 1, sym__newline, - STATE(391), 1, + STATE(339), 1, sym__open_brace, - STATE(904), 1, + STATE(858), 1, aux_sym_function_definition_repeat1, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2537), 8, + ACTIONS(2593), 8, sym_return, sym_next, sym_break, @@ -80963,7 +80967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1246), 19, + STATE(1315), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80983,170 +80987,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [56577] = 32, + [56579] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(1091), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1604), 1, sym_string, - STATE(1590), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(1593), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, - anon_sym_NA, - anon_sym_NA_integer_, - anon_sym_NA_real_, - anon_sym_NA_complex_, - anon_sym_NA_character_, - ACTIONS(2541), 8, - sym_return, - sym_next, - sym_break, - sym_true, - sym_false, - sym_null, - sym_inf, - sym_nan, - STATE(1249), 19, - sym_function_definition, - sym_if_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_braced_expression, - sym_parenthesized_expression, - sym_call, - sym_subset, - sym_subset2, - sym_unary_operator, - sym_binary_operator, - sym_extract_operator, - sym_namespace_operator, - sym_integer, - sym_complex, - sym_float, - sym_na, - sym__expression, - [56705] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, - anon_sym_BSLASH, - ACTIONS(2417), 1, - anon_sym_function, - ACTIONS(2419), 1, - anon_sym_if, - ACTIONS(2421), 1, - anon_sym_for, - ACTIONS(2423), 1, - anon_sym_while, - ACTIONS(2425), 1, - anon_sym_repeat, - ACTIONS(2427), 1, - anon_sym_QMARK, - ACTIONS(2429), 1, - anon_sym_TILDE, - ACTIONS(2431), 1, - anon_sym_BANG, - ACTIONS(2435), 1, - sym__hex_literal, - ACTIONS(2437), 1, - sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, - sym__external_open_parenthesis, - ACTIONS(2455), 1, - sym__external_open_brace, - STATE(391), 1, - sym__open_brace, - STATE(1091), 1, - sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, - sym__float_literal, - STATE(1593), 1, - sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, - sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1061), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2543), 8, + ACTIONS(2597), 8, sym_return, sym_next, sym_break, @@ -81155,7 +81063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1250), 19, + STATE(1403), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81175,74 +81083,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [56833] = 32, + [56707] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(2601), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(1091), 1, + STATE(899), 1, + aux_sym_function_definition_repeat1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1604), 1, sym_string, - STATE(1590), 1, + STATE(1628), 1, sym__float_literal, - STATE(1593), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2545), 8, + ACTIONS(2599), 8, sym_return, sym_next, sym_break, @@ -81251,7 +81159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1251), 19, + STATE(1402), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81271,74 +81179,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [56961] = 32, + [56835] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(2605), 1, + sym__newline, + STATE(339), 1, sym__open_brace, + STATE(859), 1, + aux_sym_function_definition_repeat1, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2547), 8, + ACTIONS(2603), 8, sym_return, sym_next, sym_break, @@ -81347,7 +81255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1252), 19, + STATE(1316), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81367,74 +81275,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [57089] = 32, + [56963] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(2609), 1, + sym__newline, + STATE(339), 1, sym__open_brace, + STATE(860), 1, + aux_sym_function_definition_repeat1, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2549), 8, + ACTIONS(2607), 8, sym_return, sym_next, sym_break, @@ -81443,7 +81351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1253), 19, + STATE(1317), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81463,170 +81371,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [57217] = 32, + [57091] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(1091), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1604), 1, sym_string, - STATE(1590), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(1593), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, - anon_sym_NA, - anon_sym_NA_integer_, - anon_sym_NA_real_, - anon_sym_NA_complex_, - anon_sym_NA_character_, - ACTIONS(2551), 8, - sym_return, - sym_next, - sym_break, - sym_true, - sym_false, - sym_null, - sym_inf, - sym_nan, - STATE(1333), 19, - sym_function_definition, - sym_if_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_braced_expression, - sym_parenthesized_expression, - sym_call, - sym_subset, - sym_subset2, - sym_unary_operator, - sym_binary_operator, - sym_extract_operator, - sym_namespace_operator, - sym_integer, - sym_complex, - sym_float, - sym_na, - sym__expression, - [57345] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, - anon_sym_BSLASH, - ACTIONS(2417), 1, - anon_sym_function, - ACTIONS(2419), 1, - anon_sym_if, - ACTIONS(2421), 1, - anon_sym_for, - ACTIONS(2423), 1, - anon_sym_while, - ACTIONS(2425), 1, - anon_sym_repeat, - ACTIONS(2427), 1, - anon_sym_QMARK, - ACTIONS(2429), 1, - anon_sym_TILDE, - ACTIONS(2431), 1, - anon_sym_BANG, - ACTIONS(2435), 1, - sym__hex_literal, - ACTIONS(2437), 1, - sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, - sym__external_open_parenthesis, - ACTIONS(2455), 1, - sym__external_open_brace, - STATE(391), 1, - sym__open_brace, - STATE(1091), 1, - sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, - sym__float_literal, - STATE(1593), 1, - sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, - sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1061), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2553), 8, + ACTIONS(2611), 8, sym_return, sym_next, sym_break, @@ -81635,7 +81447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1255), 19, + STATE(1334), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81655,74 +81467,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [57473] = 32, + [57219] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(2615), 1, + sym__newline, + STATE(339), 1, sym__open_brace, + STATE(861), 1, + aux_sym_function_definition_repeat1, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2555), 8, + ACTIONS(2613), 8, sym_return, sym_next, sym_break, @@ -81731,7 +81543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1256), 19, + STATE(1318), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81751,74 +81563,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [57601] = 32, + [57347] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(2619), 1, + sym__newline, + STATE(339), 1, sym__open_brace, + STATE(862), 1, + aux_sym_function_definition_repeat1, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2557), 8, + ACTIONS(2617), 8, sym_return, sym_next, sym_break, @@ -81827,7 +81639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1257), 19, + STATE(1319), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81847,74 +81659,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [57729] = 32, + [57475] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(2623), 1, + sym__newline, + STATE(339), 1, sym__open_brace, + STATE(863), 1, + aux_sym_function_definition_repeat1, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2559), 8, + ACTIONS(2621), 8, sym_return, sym_next, sym_break, @@ -81923,7 +81735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1258), 19, + STATE(1320), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81943,74 +81755,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [57857] = 32, + [57603] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(435), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(437), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(439), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(441), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(443), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(445), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(447), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(449), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(451), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(455), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(457), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(473), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(475), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(1063), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(331), 1, sym__open_brace, - STATE(1091), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1604), 1, sym_string, - STATE(1590), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1628), 1, sym__float_literal, - STATE(1593), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2039), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1061), 2, + sym_identifier, + sym_dots, + ACTIONS(467), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2561), 8, + ACTIONS(2625), 8, sym_return, sym_next, sym_break, @@ -82019,7 +81831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1259), 19, + STATE(1401), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82039,74 +81851,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [57985] = 32, + [57731] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(2629), 1, + sym__newline, + STATE(339), 1, sym__open_brace, + STATE(868), 1, + aux_sym_function_definition_repeat1, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2563), 8, + ACTIONS(2627), 8, sym_return, sym_next, sym_break, @@ -82115,7 +81927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1260), 19, + STATE(1322), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82135,74 +81947,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [58113] = 32, + [57859] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(527), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(357), 1, sym__open_brace, - STATE(1091), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1590), 1, + STATE(1626), 1, sym__float_literal, - STATE(1593), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2565), 8, + ACTIONS(2631), 8, sym_return, sym_next, sym_break, @@ -82211,7 +82023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1261), 19, + STATE(1462), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82231,74 +82043,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [58241] = 32, + [57987] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(391), 1, + STATE(339), 1, sym__open_brace, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2567), 8, + ACTIONS(2633), 8, sym_return, sym_next, sym_break, @@ -82307,7 +82119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1262), 19, + STATE(1330), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82327,74 +82139,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [58369] = 32, + [58115] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2571), 1, + ACTIONS(2637), 1, sym__newline, - STATE(391), 1, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(906), 1, + STATE(915), 1, aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, - sym__float_literal, - STATE(1593), 1, - sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(2052), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2569), 8, + ACTIONS(2635), 8, sym_return, sym_next, sym_break, @@ -82403,7 +82215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1263), 19, + STATE(100), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82423,74 +82235,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [58497] = 32, + [58243] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(391), 1, - sym__open_brace, - STATE(1091), 1, - sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, - sym__float_literal, - STATE(1593), 1, + ACTIONS(2641), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(917), 1, aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(1108), 1, + sym__open_parenthesis, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2573), 8, + ACTIONS(2639), 8, sym_return, sym_next, sym_break, @@ -82499,7 +82311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1272), 19, + STATE(79), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82519,74 +82331,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [58625] = 32, + [58371] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2577), 1, + ACTIONS(2645), 1, sym__newline, - STATE(391), 1, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(910), 1, + STATE(919), 1, aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, - sym__float_literal, - STATE(1593), 1, - sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(2052), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2575), 8, + ACTIONS(2643), 8, sym_return, sym_next, sym_break, @@ -82595,7 +82407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1274), 19, + STATE(78), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82615,74 +82427,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [58753] = 32, + [58499] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2581), 1, + ACTIONS(2649), 1, sym__newline, - STATE(391), 1, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(911), 1, + STATE(921), 1, aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, - sym__float_literal, - STATE(1593), 1, - sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(2052), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2579), 8, + ACTIONS(2647), 8, sym_return, sym_next, sym_break, @@ -82691,7 +82503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1254), 19, + STATE(76), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82711,74 +82523,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [58881] = 32, + [58627] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2585), 1, + ACTIONS(2653), 1, sym__newline, - STATE(391), 1, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(914), 1, + STATE(923), 1, aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, - sym__float_literal, - STATE(1593), 1, - sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(2052), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2583), 8, + ACTIONS(2651), 8, sym_return, sym_next, sym_break, @@ -82787,7 +82599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1188), 19, + STATE(64), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82807,74 +82619,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [59009] = 32, + [58755] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(391), 1, + STATE(339), 1, sym__open_brace, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2587), 8, + ACTIONS(2655), 8, sym_return, sym_next, sym_break, @@ -82883,7 +82695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1202), 19, + STATE(1329), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82903,74 +82715,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [59137] = 32, + [58883] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(391), 1, + STATE(339), 1, sym__open_brace, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2589), 8, + ACTIONS(2657), 8, sym_return, sym_next, sym_break, @@ -82979,7 +82791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1203), 19, + STATE(1326), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82999,74 +82811,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [59265] = 32, + [59011] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2593), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(2661), 1, sym__newline, - STATE(391), 1, + STATE(357), 1, sym__open_brace, - STATE(916), 1, + STATE(544), 1, aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1590), 1, + STATE(1626), 1, sym__float_literal, - STATE(1593), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(2052), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2591), 8, + ACTIONS(2659), 8, sym_return, sym_next, sym_break, @@ -83075,7 +82887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1204), 19, + STATE(1380), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83095,74 +82907,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [59393] = 32, + [59139] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2597), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(391), 1, + STATE(357), 1, sym__open_brace, - STATE(917), 1, - aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1590), 1, + STATE(1626), 1, sym__float_literal, - STATE(1593), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(2052), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2595), 8, + ACTIONS(2663), 8, sym_return, sym_next, sym_break, @@ -83171,7 +82983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1208), 19, + STATE(1381), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83191,74 +83003,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [59521] = 32, + [59267] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(391), 1, + STATE(339), 1, sym__open_brace, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2599), 8, + ACTIONS(2665), 8, sym_return, sym_next, sym_break, @@ -83267,7 +83079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1212), 19, + STATE(1167), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83287,74 +83099,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [59649] = 32, + [59395] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2603), 1, + ACTIONS(2669), 1, sym__newline, - STATE(391), 1, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(919), 1, + STATE(948), 1, aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, - sym__float_literal, - STATE(1593), 1, - sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(2052), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2601), 8, + ACTIONS(2667), 8, sym_return, sym_next, sym_break, @@ -83363,7 +83175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1233), 19, + STATE(61), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83383,74 +83195,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [59777] = 32, + [59523] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(391), 1, + STATE(339), 1, sym__open_brace, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2605), 8, + ACTIONS(2671), 8, sym_return, sym_next, sym_break, @@ -83459,7 +83271,103 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1264), 19, + STATE(1332), 19, + sym_function_definition, + sym_if_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_braced_expression, + sym_parenthesized_expression, + sym_call, + sym_subset, + sym_subset2, + sym_unary_operator, + sym_binary_operator, + sym_extract_operator, + sym_namespace_operator, + sym_integer, + sym_complex, + sym_float, + sym_na, + sym__expression, + [59651] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, + anon_sym_BSLASH, + ACTIONS(1073), 1, + anon_sym_function, + ACTIONS(1075), 1, + anon_sym_if, + ACTIONS(1077), 1, + anon_sym_for, + ACTIONS(1079), 1, + anon_sym_while, + ACTIONS(1081), 1, + anon_sym_repeat, + ACTIONS(1083), 1, + anon_sym_QMARK, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1087), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + sym__hex_literal, + ACTIONS(1093), 1, + sym__number_literal, + ACTIONS(1095), 1, + sym_dot_dot_i, + ACTIONS(1103), 1, + sym__external_open_parenthesis, + ACTIONS(1105), 1, + sym__external_open_brace, + ACTIONS(1109), 1, + sym__newline, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, + sym__string_or_identifier_or_dots_or_dot_dot_i, + ACTIONS(1069), 2, + sym_identifier, + sym_dots, + ACTIONS(1089), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1099), 5, + anon_sym_NA, + anon_sym_NA_integer_, + anon_sym_NA_real_, + anon_sym_NA_complex_, + anon_sym_NA_character_, + ACTIONS(2673), 8, + sym_return, + sym_next, + sym_break, + sym_true, + sym_false, + sym_null, + sym_inf, + sym_nan, + STATE(60), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83479,74 +83387,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [59905] = 32, + [59779] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(2677), 1, + sym__newline, + STATE(339), 1, sym__open_brace, + STATE(875), 1, + aux_sym_function_definition_repeat1, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2607), 8, + ACTIONS(2675), 8, sym_return, sym_next, sym_break, @@ -83555,7 +83463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1280), 19, + STATE(1324), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83575,74 +83483,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [60033] = 32, + [59907] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2611), 1, + ACTIONS(1109), 1, sym__newline, - STATE(391), 1, - sym__open_brace, - STATE(920), 1, - aux_sym_function_definition_repeat1, - STATE(1091), 1, - sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, - sym__float_literal, - STATE(1593), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2609), 8, + ACTIONS(2679), 8, sym_return, sym_next, sym_break, @@ -83651,7 +83559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1284), 19, + STATE(59), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83671,74 +83579,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [60161] = 32, + [60035] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(2683), 1, + sym__newline, + STATE(339), 1, sym__open_brace, + STATE(902), 1, + aux_sym_function_definition_repeat1, STATE(1091), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1582), 1, sym_string, - STATE(1590), 1, + STATE(1587), 1, sym__float_literal, - STATE(1593), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1589), 1, sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2613), 8, + ACTIONS(2681), 8, sym_return, sym_next, sym_break, @@ -83747,7 +83655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1292), 19, + STATE(1327), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83767,74 +83675,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [60289] = 32, + [60163] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(391), 1, - sym__open_brace, - STATE(1091), 1, - sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, - sym__float_literal, - STATE(1593), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2615), 8, + ACTIONS(2685), 8, sym_return, sym_next, sym_break, @@ -83843,7 +83751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1300), 19, + STATE(58), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83863,52 +83771,52 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [60417] = 32, + [60291] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2643), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2653), 1, - sym__newline, - ACTIONS(2655), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1819), 1, sym__external_open_brace, - STATE(394), 1, + ACTIONS(2689), 1, + sym__newline, + STATE(339), 1, sym__open_brace, - STATE(927), 1, + STATE(908), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1586), 1, + STATE(1582), 1, sym_string, STATE(1587), 1, sym__float_literal, @@ -83918,19 +83826,19 @@ static const uint16_t ts_small_parse_table[] = { sym__double_quoted_string, STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2649), 8, + ACTIONS(2687), 8, sym_return, sym_next, sym_break, @@ -83939,7 +83847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1186), 19, + STATE(1325), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83959,74 +83867,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [60545] = 32, + [60419] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2663), 1, + ACTIONS(1109), 1, sym__newline, - STATE(394), 1, - sym__open_brace, - STATE(928), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(2038), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2661), 8, + ACTIONS(2691), 8, sym_return, sym_next, sym_break, @@ -84035,7 +83943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1190), 19, + STATE(57), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84055,52 +83963,52 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [60673] = 32, + [60547] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2643), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2655), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2667), 1, + ACTIONS(2695), 1, sym__newline, - STATE(394), 1, + STATE(339), 1, sym__open_brace, - STATE(929), 1, + STATE(909), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1586), 1, + STATE(1582), 1, sym_string, STATE(1587), 1, sym__float_literal, @@ -84110,19 +84018,19 @@ static const uint16_t ts_small_parse_table[] = { sym__double_quoted_string, STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2665), 8, + ACTIONS(2693), 8, sym_return, sym_next, sym_break, @@ -84131,7 +84039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1194), 19, + STATE(1323), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84151,52 +84059,148 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [60801] = 32, + [60675] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, + sym__number_literal, + ACTIONS(1095), 1, + sym_dot_dot_i, + ACTIONS(1103), 1, + sym__external_open_parenthesis, + ACTIONS(1105), 1, + sym__external_open_brace, + ACTIONS(1109), 1, + sym__newline, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, + sym__string_or_identifier_or_dots_or_dot_dot_i, + ACTIONS(1069), 2, + sym_identifier, + sym_dots, + ACTIONS(1089), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1099), 5, + anon_sym_NA, + anon_sym_NA_integer_, + anon_sym_NA_real_, + anon_sym_NA_complex_, + anon_sym_NA_character_, + ACTIONS(2697), 8, + sym_return, + sym_next, + sym_break, + sym_true, + sym_false, + sym_null, + sym_inf, + sym_nan, + STATE(56), 19, + sym_function_definition, + sym_if_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_braced_expression, + sym_parenthesized_expression, + sym_call, + sym_subset, + sym_subset2, + sym_unary_operator, + sym_binary_operator, + sym_extract_operator, + sym_namespace_operator, + sym_integer, + sym_complex, + sym_float, + sym_na, + sym__expression, + [60803] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1781), 1, + anon_sym_BSLASH, + ACTIONS(1783), 1, + anon_sym_function, + ACTIONS(1785), 1, + anon_sym_if, + ACTIONS(1787), 1, + anon_sym_for, + ACTIONS(1789), 1, + anon_sym_while, + ACTIONS(1791), 1, + anon_sym_repeat, + ACTIONS(1793), 1, + anon_sym_QMARK, + ACTIONS(1795), 1, + anon_sym_TILDE, + ACTIONS(1797), 1, + anon_sym_BANG, + ACTIONS(1801), 1, + sym__hex_literal, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2643), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2655), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2671), 1, + ACTIONS(2701), 1, sym__newline, - STATE(394), 1, + STATE(339), 1, sym__open_brace, - STATE(930), 1, + STATE(912), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1586), 1, + STATE(1582), 1, sym_string, STATE(1587), 1, sym__float_literal, @@ -84206,19 +84210,19 @@ static const uint16_t ts_small_parse_table[] = { sym__double_quoted_string, STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2669), 8, + ACTIONS(2699), 8, sym_return, sym_next, sym_break, @@ -84227,7 +84231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1197), 19, + STATE(1333), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84247,52 +84251,52 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [60929] = 32, + [60931] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(1781), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1783), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1785), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1787), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1789), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1791), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1793), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1795), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1797), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1801), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1803), 1, sym__number_literal, - ACTIONS(2643), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1809), 1, sym_dot_dot_i, - ACTIONS(2655), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1817), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1819), 1, sym__external_open_brace, - ACTIONS(2675), 1, + ACTIONS(2705), 1, sym__newline, - STATE(394), 1, + STATE(339), 1, sym__open_brace, - STATE(931), 1, + STATE(914), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(1586), 1, + STATE(1582), 1, sym_string, STATE(1587), 1, sym__float_literal, @@ -84302,19 +84306,19 @@ static const uint16_t ts_small_parse_table[] = { sym__double_quoted_string, STATE(2038), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1779), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1799), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2673), 8, + ACTIONS(2703), 8, sym_return, sym_next, sym_break, @@ -84323,7 +84327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1199), 19, + STATE(1331), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84343,74 +84347,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [61057] = 32, + [61059] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(2679), 1, - sym__newline, - STATE(394), 1, - sym__open_brace, - STATE(944), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2038), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2677), 8, + ACTIONS(2707), 8, sym_return, sym_next, sym_break, @@ -84419,7 +84423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1244), 19, + STATE(81), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84439,74 +84443,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [61185] = 32, + [61187] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2619), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2681), 8, + ACTIONS(2709), 8, sym_return, sym_next, sym_break, @@ -84515,7 +84519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1266), 19, + STATE(82), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84535,74 +84539,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [61313] = 32, + [61315] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(981), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, - sym__single_quoted_string, - STATE(1589), 1, + ACTIONS(2713), 1, + sym__newline, + STATE(317), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, + sym__open_brace, + STATE(1007), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(1092), 1, + sym__open_parenthesis, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2683), 8, + ACTIONS(2711), 8, sym_return, sym_next, sym_break, @@ -84611,7 +84615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1267), 19, + STATE(158), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84631,74 +84635,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [61441] = 32, + [61443] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + ACTIONS(2717), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(960), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(1108), 1, + sym__open_parenthesis, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2685), 8, + ACTIONS(2715), 8, sym_return, sym_next, sym_break, @@ -84707,7 +84711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1268), 19, + STATE(55), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84727,74 +84731,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [61569] = 32, + [61571] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + ACTIONS(2721), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(964), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(1108), 1, + sym__open_parenthesis, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2687), 8, + ACTIONS(2719), 8, sym_return, sym_next, sym_break, @@ -84803,7 +84807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1270), 19, + STATE(20), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84823,74 +84827,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [61697] = 32, + [61699] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + ACTIONS(2725), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(966), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(1108), 1, + sym__open_parenthesis, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2689), 8, + ACTIONS(2723), 8, sym_return, sym_next, sym_break, @@ -84899,7 +84903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1273), 19, + STATE(21), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84919,74 +84923,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [61825] = 32, + [61827] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2693), 1, + ACTIONS(2729), 1, sym__newline, - STATE(394), 1, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(946), 1, + STATE(968), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(2038), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2691), 8, + ACTIONS(2727), 8, sym_return, sym_next, sym_break, @@ -84995,7 +84999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1275), 19, + STATE(22), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85015,74 +85019,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [61953] = 32, + [61955] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2697), 1, + ACTIONS(2733), 1, sym__newline, - STATE(394), 1, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(948), 1, + STATE(970), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(2038), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2695), 8, + ACTIONS(2731), 8, sym_return, sym_next, sym_break, @@ -85091,7 +85095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1279), 19, + STATE(23), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85111,74 +85115,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [62081] = 32, + [62083] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2701), 1, + ACTIONS(2737), 1, sym__newline, - STATE(394), 1, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(949), 1, + STATE(972), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(2038), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2699), 8, + ACTIONS(2735), 8, sym_return, sym_next, sym_break, @@ -85187,7 +85191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1281), 19, + STATE(24), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85207,74 +85211,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [62209] = 32, + [62211] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2705), 1, + ACTIONS(2741), 1, sym__newline, - STATE(394), 1, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(950), 1, + STATE(974), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(2038), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2703), 8, + ACTIONS(2739), 8, sym_return, sym_next, sym_break, @@ -85283,7 +85287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1283), 19, + STATE(25), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85303,74 +85307,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [62337] = 32, + [62339] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2709), 1, + ACTIONS(2745), 1, sym__newline, - STATE(394), 1, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(951), 1, + STATE(976), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(2038), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2707), 8, + ACTIONS(2743), 8, sym_return, sym_next, sym_break, @@ -85379,7 +85383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1285), 19, + STATE(26), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85399,74 +85403,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [62465] = 32, + [62467] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2713), 1, + ACTIONS(2749), 1, sym__newline, - STATE(394), 1, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(952), 1, + STATE(978), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(2038), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2711), 8, + ACTIONS(2747), 8, sym_return, sym_next, sym_break, @@ -85475,7 +85479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1287), 19, + STATE(27), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85495,74 +85499,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [62593] = 32, + [62595] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2717), 1, + ACTIONS(2753), 1, sym__newline, - STATE(394), 1, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(953), 1, + STATE(980), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(2038), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2715), 8, + ACTIONS(2751), 8, sym_return, sym_next, sym_break, @@ -85571,7 +85575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1289), 19, + STATE(28), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85591,74 +85595,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [62721] = 32, + [62723] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2721), 1, + ACTIONS(2757), 1, sym__newline, - STATE(394), 1, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(954), 1, + STATE(982), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(2038), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2719), 8, + ACTIONS(2755), 8, sym_return, sym_next, sym_break, @@ -85667,7 +85671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1291), 19, + STATE(29), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85687,74 +85691,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [62849] = 32, + [62851] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2725), 1, + ACTIONS(2761), 1, sym__newline, - STATE(394), 1, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(955), 1, + STATE(984), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(2038), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2723), 8, + ACTIONS(2759), 8, sym_return, sym_next, sym_break, @@ -85763,7 +85767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1293), 19, + STATE(30), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85783,74 +85787,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [62977] = 32, + [62979] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(2729), 1, + ACTIONS(2765), 1, sym__newline, - STATE(394), 1, - sym__open_brace, - STATE(956), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2038), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(926), 1, + aux_sym_function_definition_repeat1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2727), 8, + ACTIONS(2763), 8, sym_return, sym_next, sym_break, @@ -85859,7 +85863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1295), 19, + STATE(83), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85879,74 +85883,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [63105] = 32, + [63107] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(2733), 1, - sym__newline, - STATE(394), 1, - sym__open_brace, - STATE(957), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2038), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2731), 8, + ACTIONS(2767), 8, sym_return, sym_next, sym_break, @@ -85955,7 +85959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1297), 19, + STATE(84), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85975,74 +85979,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [63233] = 32, + [63235] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(2737), 1, - sym__newline, - STATE(394), 1, - sym__open_brace, - STATE(958), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2038), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2735), 8, + ACTIONS(2769), 8, sym_return, sym_next, sym_break, @@ -86051,7 +86055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1299), 19, + STATE(85), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86071,74 +86075,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [63361] = 32, + [63363] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2739), 8, + ACTIONS(2771), 8, sym_return, sym_next, sym_break, @@ -86147,7 +86151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1302), 19, + STATE(70), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86167,74 +86171,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [63489] = 32, + [63491] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(2743), 1, + ACTIONS(2775), 1, sym__newline, - STATE(394), 1, - sym__open_brace, - STATE(959), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2038), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(927), 1, + aux_sym_function_definition_repeat1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2741), 8, + ACTIONS(2773), 8, sym_return, sym_next, sym_break, @@ -86243,7 +86247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1303), 19, + STATE(86), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86263,74 +86267,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [63617] = 32, + [63619] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2619), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2745), 8, + ACTIONS(2777), 8, sym_return, sym_next, sym_break, @@ -86339,7 +86343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1306), 19, + STATE(119), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86359,74 +86363,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [63745] = 32, + [63747] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2619), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2747), 8, + ACTIONS(2779), 8, sym_return, sym_next, sym_break, @@ -86435,7 +86439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1307), 19, + STATE(87), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86455,74 +86459,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [63873] = 32, + [63875] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2749), 8, + ACTIONS(2781), 8, sym_return, sym_next, sym_break, @@ -86531,7 +86535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1308), 19, + STATE(31), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86551,74 +86555,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [64001] = 32, + [64003] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + ACTIONS(2785), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(998), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(1108), 1, + sym__open_parenthesis, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2751), 8, + ACTIONS(2783), 8, sym_return, sym_next, sym_break, @@ -86627,7 +86631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1309), 19, + STATE(32), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86647,74 +86651,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [64129] = 32, + [64131] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2643), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2647), 1, - sym_dot_dot_i, - ACTIONS(2655), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(527), 1, sym__external_open_brace, - STATE(394), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(357), 1, sym__open_brace, - STATE(1096), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1586), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1587), 1, + STATE(1626), 1, sym__float_literal, - STATE(1588), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, - sym_identifier, - sym_dots, - ACTIONS(2637), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2753), 8, + ACTIONS(2787), 8, sym_return, sym_next, sym_break, @@ -86723,7 +86727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1310), 19, + STATE(1563), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86743,74 +86747,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [64257] = 32, + [64259] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2643), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2647), 1, - sym_dot_dot_i, - ACTIONS(2655), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(527), 1, sym__external_open_brace, - STATE(394), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(357), 1, sym__open_brace, - STATE(1096), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1586), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1587), 1, + STATE(1626), 1, sym__float_literal, - STATE(1588), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, - sym_identifier, - sym_dots, - ACTIONS(2637), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2755), 8, + ACTIONS(2789), 8, sym_return, sym_next, sym_break, @@ -86819,7 +86823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1311), 19, + STATE(1420), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86839,74 +86843,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [64385] = 32, + [64387] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + ACTIONS(2793), 1, + sym__newline, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(942), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2757), 8, + ACTIONS(2791), 8, sym_return, sym_next, sym_break, @@ -86915,7 +86919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1312), 19, + STATE(88), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86935,74 +86939,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [64513] = 32, + [64515] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2643), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2647), 1, - sym_dot_dot_i, - ACTIONS(2655), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(527), 1, sym__external_open_brace, - STATE(394), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(357), 1, sym__open_brace, - STATE(1096), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1586), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1587), 1, + STATE(1626), 1, sym__float_literal, - STATE(1588), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, - sym_identifier, - sym_dots, - ACTIONS(2637), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2759), 8, + ACTIONS(2795), 8, sym_return, sym_next, sym_break, @@ -87011,7 +87015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1313), 19, + STATE(1425), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87031,74 +87035,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [64641] = 32, + [64643] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + ACTIONS(2799), 1, + sym__newline, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(943), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2761), 8, + ACTIONS(2797), 8, sym_return, sym_next, sym_break, @@ -87107,7 +87111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1314), 19, + STATE(89), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87127,74 +87131,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [64769] = 32, + [64771] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2643), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2647), 1, - sym_dot_dot_i, - ACTIONS(2655), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(527), 1, sym__external_open_brace, - STATE(394), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(357), 1, sym__open_brace, - STATE(1096), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1586), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1587), 1, + STATE(1626), 1, sym__float_literal, - STATE(1588), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, - sym_identifier, - sym_dots, - ACTIONS(2637), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2763), 8, + ACTIONS(2801), 8, sym_return, sym_next, sym_break, @@ -87203,7 +87207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1315), 19, + STATE(1427), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87223,74 +87227,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [64897] = 32, + [64899] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2619), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2765), 8, + ACTIONS(2803), 8, sym_return, sym_next, sym_break, @@ -87299,7 +87303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1316), 19, + STATE(90), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87319,74 +87323,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [65025] = 32, + [65027] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2643), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2647), 1, - sym_dot_dot_i, - ACTIONS(2655), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(527), 1, sym__external_open_brace, - STATE(394), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(357), 1, sym__open_brace, - STATE(1096), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1586), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1587), 1, + STATE(1626), 1, sym__float_literal, - STATE(1588), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, - sym_identifier, - sym_dots, - ACTIONS(2637), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2767), 8, + ACTIONS(2805), 8, sym_return, sym_next, sym_break, @@ -87395,7 +87399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1317), 19, + STATE(1432), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87415,74 +87419,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [65153] = 32, + [65155] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2619), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2769), 8, + ACTIONS(2807), 8, sym_return, sym_next, sym_break, @@ -87491,7 +87495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1318), 19, + STATE(91), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87511,74 +87515,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [65281] = 32, + [65283] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2643), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2647), 1, - sym_dot_dot_i, - ACTIONS(2655), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(527), 1, sym__external_open_brace, - STATE(394), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(357), 1, sym__open_brace, - STATE(1096), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1586), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1587), 1, + STATE(1626), 1, sym__float_literal, - STATE(1588), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, - sym_identifier, - sym_dots, - ACTIONS(2637), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2771), 8, + ACTIONS(2809), 8, sym_return, sym_next, sym_break, @@ -87587,7 +87591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1319), 19, + STATE(1434), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87607,74 +87611,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [65409] = 32, + [65411] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2775), 1, + ACTIONS(1109), 1, sym__newline, - STATE(394), 1, - sym__open_brace, - STATE(961), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(2038), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2773), 8, + ACTIONS(2811), 8, sym_return, sym_next, sym_break, @@ -87683,7 +87687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1320), 19, + STATE(33), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87703,74 +87707,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [65537] = 32, + [65539] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2619), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2777), 8, + ACTIONS(2813), 8, sym_return, sym_next, sym_break, @@ -87779,7 +87783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1325), 19, + STATE(120), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87799,74 +87803,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [65665] = 32, + [65667] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2781), 1, + ACTIONS(1109), 1, sym__newline, - STATE(394), 1, - sym__open_brace, - STATE(965), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(2038), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2779), 8, + ACTIONS(2815), 8, sym_return, sym_next, sym_break, @@ -87875,7 +87879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1326), 19, + STATE(34), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87895,74 +87899,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [65793] = 32, + [65795] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2643), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2647), 1, - sym_dot_dot_i, - ACTIONS(2655), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2785), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(394), 1, + STATE(357), 1, sym__open_brace, - STATE(966), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1586), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1587), 1, + STATE(1626), 1, sym__float_literal, - STATE(1588), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(2038), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, - sym_identifier, - sym_dots, - ACTIONS(2637), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2783), 8, + ACTIONS(2817), 8, sym_return, sym_next, sym_break, @@ -87971,7 +87975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1328), 19, + STATE(1436), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87991,74 +87995,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [65921] = 32, + [65923] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2789), 1, + ACTIONS(1109), 1, sym__newline, - STATE(394), 1, - sym__open_brace, - STATE(969), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(2038), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2787), 8, + ACTIONS(2819), 8, sym_return, sym_next, sym_break, @@ -88067,7 +88071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1332), 19, + STATE(35), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88087,74 +88091,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [66049] = 32, + [66051] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + ACTIONS(2823), 1, + sym__newline, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(947), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2791), 8, + ACTIONS(2821), 8, sym_return, sym_next, sym_break, @@ -88163,7 +88167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1169), 19, + STATE(92), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88183,74 +88187,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [66177] = 32, + [66179] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2793), 8, + ACTIONS(2825), 8, sym_return, sym_next, sym_break, @@ -88259,7 +88263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1170), 19, + STATE(36), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88279,74 +88283,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [66305] = 32, + [66307] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2643), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2647), 1, - sym_dot_dot_i, - ACTIONS(2655), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2797), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(394), 1, + STATE(357), 1, sym__open_brace, - STATE(971), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1586), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1587), 1, + STATE(1626), 1, sym__float_literal, - STATE(1588), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(2038), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, - sym_identifier, - sym_dots, - ACTIONS(2637), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2795), 8, + ACTIONS(2827), 8, sym_return, sym_next, sym_break, @@ -88355,7 +88359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1171), 19, + STATE(1437), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88375,74 +88379,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [66433] = 32, + [66435] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2801), 1, + ACTIONS(1109), 1, sym__newline, - STATE(394), 1, - sym__open_brace, - STATE(972), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(2038), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2799), 8, + ACTIONS(2829), 8, sym_return, sym_next, sym_break, @@ -88451,7 +88455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1173), 19, + STATE(37), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88471,74 +88475,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [66561] = 32, + [66563] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + ACTIONS(2833), 1, + sym__newline, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(956), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2803), 8, + ACTIONS(2831), 8, sym_return, sym_next, sym_break, @@ -88547,7 +88551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1176), 19, + STATE(93), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88567,74 +88571,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [66689] = 32, + [66691] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2807), 1, + ACTIONS(1109), 1, sym__newline, - STATE(394), 1, - sym__open_brace, - STATE(974), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(2038), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2805), 8, + ACTIONS(2835), 8, sym_return, sym_next, sym_break, @@ -88643,7 +88647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1177), 19, + STATE(38), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88663,74 +88667,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [66817] = 32, + [66819] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2643), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2647), 1, - sym_dot_dot_i, - ACTIONS(2655), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(527), 1, sym__external_open_brace, - STATE(394), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(357), 1, sym__open_brace, - STATE(1096), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1586), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1587), 1, + STATE(1626), 1, sym__float_literal, - STATE(1588), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, - sym_identifier, - sym_dots, - ACTIONS(2637), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2809), 8, + ACTIONS(2837), 8, sym_return, sym_next, sym_break, @@ -88739,7 +88743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1179), 19, + STATE(1372), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88759,74 +88763,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [66945] = 32, + [66947] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2811), 8, + ACTIONS(2839), 8, sym_return, sym_next, sym_break, @@ -88835,7 +88839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1180), 19, + STATE(39), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88855,74 +88859,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [67073] = 32, + [67075] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(2815), 1, + ACTIONS(1109), 1, sym__newline, - STATE(394), 1, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(975), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(2038), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2813), 8, + ACTIONS(2841), 8, sym_return, sym_next, sym_break, @@ -88931,7 +88935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1181), 19, + STATE(166), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88951,74 +88955,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [67201] = 32, + [67203] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2817), 8, + ACTIONS(2843), 8, sym_return, sym_next, sym_break, @@ -89027,7 +89031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1183), 19, + STATE(40), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89047,74 +89051,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [67329] = 32, + [67331] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2643), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2647), 1, - sym_dot_dot_i, - ACTIONS(2655), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(527), 1, sym__external_open_brace, - STATE(394), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(357), 1, sym__open_brace, - STATE(1096), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1586), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1587), 1, + STATE(1626), 1, sym__float_literal, - STATE(1588), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, - sym_identifier, - sym_dots, - ACTIONS(2637), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2819), 8, + ACTIONS(2845), 8, sym_return, sym_next, sym_break, @@ -89123,7 +89127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1184), 19, + STATE(1485), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89143,74 +89147,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [67457] = 32, + [67459] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(1095), 1, + sym_dot_dot_i, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(1057), 1, - sym_dot_dot_i, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(370), 1, - sym__open_brace, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, sym__float_literal, - STATE(2054), 1, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(1089), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2821), 8, + ACTIONS(2847), 8, sym_return, sym_next, sym_break, @@ -89219,7 +89223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1442), 19, + STATE(41), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89239,74 +89243,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [67585] = 32, + [67587] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1053), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2823), 8, + ACTIONS(2849), 8, sym_return, sym_next, sym_break, @@ -89315,7 +89319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(215), 19, + STATE(167), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89335,74 +89339,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [67713] = 32, + [67715] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(1979), 1, - sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2827), 1, + ACTIONS(1109), 1, sym__newline, - STATE(384), 1, - sym__open_brace, - STATE(980), 1, - aux_sym_function_definition_repeat1, - STATE(1081), 1, - sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2825), 8, + ACTIONS(2851), 8, sym_return, sym_next, sym_break, @@ -89411,7 +89415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1142), 19, + STATE(42), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89431,74 +89435,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [67841] = 32, + [67843] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_SQUOTE, - ACTIONS(491), 1, - anon_sym_DQUOTE, - ACTIONS(495), 1, - sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(737), 1, - sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2831), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(309), 1, + STATE(357), 1, + sym__open_brace, + STATE(1097), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(313), 1, + STATE(1626), 1, sym__float_literal, - STATE(315), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(317), 1, - sym__double_quoted_string, - STATE(372), 1, - sym__open_brace, - STATE(995), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, - sym__open_parenthesis, - STATE(2051), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, - sym_identifier, - sym_dots, - ACTIONS(731), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2829), 8, + ACTIONS(2853), 8, sym_return, sym_next, sym_break, @@ -89507,7 +89511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(243), 19, + STATE(1455), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89527,74 +89531,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [67969] = 32, + [67971] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(1979), 1, - sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(384), 1, - sym__open_brace, - STATE(1081), 1, - sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2833), 8, + ACTIONS(2855), 8, sym_return, sym_next, sym_break, @@ -89603,7 +89607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1145), 19, + STATE(43), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89623,74 +89627,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [68097] = 32, + [68099] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(1979), 1, - sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(2837), 1, + ACTIONS(2859), 1, sym__newline, - STATE(384), 1, - sym__open_brace, - STATE(984), 1, - aux_sym_function_definition_repeat1, - STATE(1081), 1, - sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, + STATE(289), 1, sym__float_literal, - STATE(1583), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(958), 1, + aux_sym_function_definition_repeat1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2835), 8, + ACTIONS(2857), 8, sym_return, sym_next, sym_break, @@ -89699,7 +89703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1153), 19, + STATE(94), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89719,74 +89723,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [68225] = 32, + [68227] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(341), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(343), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(347), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2841), 1, + ACTIONS(1109), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(996), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2839), 8, + ACTIONS(2861), 8, sym_return, sym_next, sym_break, @@ -89795,7 +89799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(244), 19, + STATE(44), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89815,74 +89819,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [68353] = 32, + [68355] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_SQUOTE, - ACTIONS(491), 1, - anon_sym_DQUOTE, - ACTIONS(495), 1, - sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(737), 1, - sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2845), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(309), 1, + STATE(357), 1, + sym__open_brace, + STATE(1097), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(313), 1, + STATE(1626), 1, sym__float_literal, - STATE(315), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(317), 1, - sym__double_quoted_string, - STATE(372), 1, - sym__open_brace, - STATE(1002), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, - sym__open_parenthesis, - STATE(2051), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, - sym_identifier, - sym_dots, - ACTIONS(731), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2843), 8, + ACTIONS(2863), 8, sym_return, sym_next, sym_break, @@ -89891,7 +89895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(245), 19, + STATE(1573), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89911,74 +89915,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [68481] = 32, + [68483] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(1979), 1, - sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(384), 1, - sym__open_brace, - STATE(1081), 1, - sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, - sym__float_literal, - STATE(1583), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2847), 8, + ACTIONS(2865), 8, sym_return, sym_next, sym_break, @@ -89987,7 +89991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1152), 19, + STATE(45), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90007,74 +90011,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [68609] = 32, + [68611] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(2851), 1, - sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, + STATE(289), 1, sym__float_literal, - STATE(315), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1003), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2849), 8, + ACTIONS(2867), 8, sym_return, sym_next, sym_break, @@ -90083,7 +90087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(246), 19, + STATE(95), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90103,74 +90107,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [68737] = 32, + [68739] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_SQUOTE, - ACTIONS(491), 1, - anon_sym_DQUOTE, - ACTIONS(495), 1, - sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(737), 1, - sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2855), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(309), 1, + STATE(357), 1, + sym__open_brace, + STATE(1097), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(313), 1, + STATE(1626), 1, sym__float_literal, - STATE(315), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(317), 1, - sym__double_quoted_string, - STATE(372), 1, - sym__open_brace, - STATE(1009), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, - sym__open_parenthesis, - STATE(2051), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, - sym_identifier, - sym_dots, - ACTIONS(731), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2853), 8, + ACTIONS(2869), 8, sym_return, sym_next, sym_break, @@ -90179,7 +90183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(190), 19, + STATE(1428), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90199,74 +90203,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [68865] = 32, + [68867] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1053), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2857), 8, + ACTIONS(2871), 8, sym_return, sym_next, sym_break, @@ -90275,7 +90279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(216), 19, + STATE(168), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90295,74 +90299,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [68993] = 32, + [68995] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1053), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2859), 8, + ACTIONS(2873), 8, sym_return, sym_next, sym_break, @@ -90371,7 +90375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(217), 19, + STATE(169), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90391,74 +90395,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [69121] = 32, + [69123] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_SQUOTE, - ACTIONS(491), 1, - anon_sym_DQUOTE, - ACTIONS(495), 1, - sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(737), 1, - sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2863), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(309), 1, + STATE(357), 1, + sym__open_brace, + STATE(1097), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(313), 1, + STATE(1626), 1, sym__float_literal, - STATE(315), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(317), 1, - sym__double_quoted_string, - STATE(372), 1, - sym__open_brace, - STATE(454), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, - sym__open_parenthesis, - STATE(2051), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, - sym_identifier, - sym_dots, - ACTIONS(731), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2861), 8, + ACTIONS(2875), 8, sym_return, sym_next, sym_break, @@ -90467,7 +90471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(131), 19, + STATE(1394), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90487,74 +90491,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [69249] = 32, + [69251] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1053), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2865), 8, + ACTIONS(2877), 8, sym_return, sym_next, sym_break, @@ -90563,7 +90567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(218), 19, + STATE(170), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90583,74 +90587,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [69377] = 32, + [69379] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(375), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(2869), 1, + ACTIONS(1109), 1, sym__newline, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(388), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(992), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(2032), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2867), 8, + ACTIONS(2879), 8, sym_return, sym_next, sym_break, @@ -90659,7 +90663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(6), 19, + STATE(171), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90679,74 +90683,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [69505] = 32, + [69507] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(375), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(981), 1, sym__external_open_brace, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(317), 1, sym__double_quoted_string, - STATE(388), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1086), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2871), 8, + ACTIONS(2881), 8, sym_return, sym_next, sym_break, @@ -90755,7 +90759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(7), 19, + STATE(172), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90775,74 +90779,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [69633] = 32, + [69635] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(375), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(2875), 1, + ACTIONS(1109), 1, sym__newline, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(388), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(994), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(2032), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2873), 8, + ACTIONS(2883), 8, sym_return, sym_next, sym_break, @@ -90851,7 +90855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(8), 19, + STATE(173), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90871,74 +90875,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [69761] = 32, + [69763] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(375), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(981), 1, sym__external_open_brace, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(317), 1, sym__double_quoted_string, - STATE(388), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1086), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2877), 8, + ACTIONS(2885), 8, sym_return, sym_next, sym_break, @@ -90947,7 +90951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(9), 19, + STATE(174), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90967,74 +90971,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [69889] = 32, + [69891] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, STATE(317), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1117), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2051), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2879), 8, + ACTIONS(2887), 8, sym_return, sym_next, sym_break, @@ -91043,7 +91047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(132), 19, + STATE(175), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91063,74 +91067,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [70017] = 32, + [70019] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, STATE(317), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1117), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2051), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2881), 8, + ACTIONS(2889), 8, sym_return, sym_next, sym_break, @@ -91139,7 +91143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(133), 19, + STATE(176), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91159,74 +91163,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [70145] = 32, + [70147] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1053), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2883), 8, + ACTIONS(2891), 8, sym_return, sym_next, sym_break, @@ -91235,7 +91239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(220), 19, + STATE(177), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91255,74 +91259,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [70273] = 32, + [70275] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2887), 1, + ACTIONS(1109), 1, sym__newline, - STATE(391), 1, - sym__open_brace, - STATE(999), 1, - aux_sym_function_definition_repeat1, - STATE(1091), 1, - sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, - sym__float_literal, - STATE(1593), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(2052), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2885), 8, + ACTIONS(2893), 8, sym_return, sym_next, sym_break, @@ -91331,7 +91335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1155), 19, + STATE(46), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91351,74 +91355,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [70401] = 32, + [70403] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(391), 1, - sym__open_brace, - STATE(1091), 1, - sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, - sym__float_literal, - STATE(1593), 1, + ACTIONS(2897), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1024), 1, aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(1108), 1, + sym__open_parenthesis, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2889), 8, + ACTIONS(2895), 8, sym_return, sym_next, sym_break, @@ -91427,7 +91431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1164), 19, + STATE(47), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91447,74 +91451,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [70529] = 32, + [70531] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2893), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(391), 1, + STATE(357), 1, sym__open_brace, - STATE(1001), 1, - aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1590), 1, + STATE(1626), 1, sym__float_literal, - STATE(1593), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(2052), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2891), 8, + ACTIONS(2899), 8, sym_return, sym_next, sym_break, @@ -91523,7 +91527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1140), 19, + STATE(1426), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91543,74 +91547,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [70657] = 32, + [70659] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(981), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1091), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, - sym__float_literal, - STATE(1593), 1, - sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2895), 8, + ACTIONS(2901), 8, sym_return, sym_next, sym_break, @@ -91619,7 +91623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1146), 19, + STATE(153), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91639,74 +91643,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [70785] = 32, + [70787] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2905), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, + STATE(289), 1, sym__float_literal, - STATE(315), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1117), 1, - sym__open_parenthesis, - STATE(1613), 1, + STATE(985), 1, aux_sym_function_definition_repeat1, - STATE(2051), 1, + STATE(1065), 1, + sym__open_parenthesis, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2897), 8, + ACTIONS(2903), 8, sym_return, sym_next, sym_break, @@ -91715,7 +91719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(134), 19, + STATE(109), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91735,74 +91739,74 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [70913] = 32, + [70915] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, + STATE(289), 1, sym__float_literal, - STATE(315), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1117), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2051), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2899), 8, + ACTIONS(2907), 8, sym_return, sym_next, sym_break, @@ -91811,7 +91815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(135), 19, + STATE(111), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91831,74 +91835,73 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [71041] = 32, + [71043] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(1039), 1, - sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(320), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + STATE(357), 1, + sym__open_brace, + STATE(1097), 1, + sym__open_parenthesis, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(323), 1, + STATE(1626), 1, sym__float_literal, - STATE(325), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(326), 1, - sym__double_quoted_string, - STATE(378), 1, - sym__open_brace, - STATE(1053), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, - sym_identifier, - sym_dots, - ACTIONS(1033), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(2911), 2, + sym__external_close_parenthesis, + sym_comma, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2901), 8, + ACTIONS(2909), 8, sym_return, sym_next, sym_break, @@ -91907,7 +91910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(221), 19, + STATE(1572), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91930,71 +91933,71 @@ static const uint16_t ts_small_parse_table[] = { [71169] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2643), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2647), 1, - sym_dot_dot_i, - ACTIONS(2655), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2905), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(2915), 1, sym__newline, - STATE(394), 1, + STATE(357), 1, sym__open_brace, - STATE(1006), 1, + STATE(911), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1586), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1587), 1, + STATE(1626), 1, sym__float_literal, - STATE(1588), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(2038), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, - sym_identifier, - sym_dots, - ACTIONS(2637), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2903), 8, + ACTIONS(2913), 8, sym_return, sym_next, sym_break, @@ -92003,7 +92006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1151), 19, + STATE(1393), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92026,71 +92029,71 @@ static const uint16_t ts_small_parse_table[] = { [71297] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2643), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2647), 1, - sym_dot_dot_i, - ACTIONS(2655), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(527), 1, sym__external_open_brace, - STATE(394), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, + sym__newline, + STATE(357), 1, sym__open_brace, - STATE(1096), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1586), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1587), 1, + STATE(1626), 1, sym__float_literal, - STATE(1588), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, - sym_identifier, - sym_dots, - ACTIONS(2637), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2907), 8, + ACTIONS(2917), 8, sym_return, sym_next, sym_break, @@ -92099,7 +92102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1157), 19, + STATE(1392), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92122,71 +92125,71 @@ static const uint16_t ts_small_parse_table[] = { [71425] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(539), 1, + anon_sym_SQUOTE, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(547), 1, + sym__raw_string_literal, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(2911), 1, + ACTIONS(1109), 1, sym__newline, - STATE(394), 1, + STATE(317), 1, + sym__double_quoted_string, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(1008), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(2038), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2909), 8, + ACTIONS(2919), 8, sym_return, sym_next, sym_break, @@ -92195,7 +92198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1159), 19, + STATE(196), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92218,71 +92221,71 @@ static const uint16_t ts_small_parse_table[] = { [71553] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + ACTIONS(2923), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(876), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(1108), 1, + sym__open_parenthesis, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2913), 8, + ACTIONS(2921), 8, sym_return, sym_next, sym_break, @@ -92291,7 +92294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1144), 19, + STATE(6), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92314,71 +92317,71 @@ static const uint16_t ts_small_parse_table[] = { [71681] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(341), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(343), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(347), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(1117), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2051), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2915), 8, + ACTIONS(2925), 8, sym_return, sym_next, sym_break, @@ -92387,7 +92390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(136), 19, + STATE(69), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92410,71 +92413,71 @@ static const uint16_t ts_small_parse_table[] = { [71809] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, + STATE(289), 1, sym__float_literal, - STATE(325), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1053), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2917), 8, + ACTIONS(2927), 8, sym_return, sym_next, sym_break, @@ -92483,7 +92486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(222), 19, + STATE(127), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92506,71 +92509,71 @@ static const uint16_t ts_small_parse_table[] = { [71937] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(1979), 1, - sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(2921), 1, - sym__newline, - STATE(384), 1, - sym__open_brace, - STATE(1012), 1, - aux_sym_function_definition_repeat1, - STATE(1081), 1, - sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, + STATE(289), 1, sym__float_literal, - STATE(1583), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2027), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2919), 8, + ACTIONS(2929), 8, sym_return, sym_next, sym_break, @@ -92579,7 +92582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1148), 19, + STATE(129), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92602,71 +92605,71 @@ static const uint16_t ts_small_parse_table[] = { [72065] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, sym__newline, - ACTIONS(1943), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(1979), 1, - sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(384), 1, - sym__open_brace, - STATE(1081), 1, - sym__open_parenthesis, - STATE(1581), 1, - sym_string, - STATE(1582), 1, + STATE(289), 1, sym__float_literal, - STATE(1583), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(1961), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2923), 8, + ACTIONS(2931), 8, sym_return, sym_next, sym_break, @@ -92675,7 +92678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1149), 19, + STATE(121), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92698,71 +92701,71 @@ static const uint16_t ts_small_parse_table[] = { [72193] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2927), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(2935), 1, sym__newline, - STATE(384), 1, + STATE(357), 1, sym__open_brace, - STATE(1014), 1, + STATE(951), 1, aux_sym_function_definition_repeat1, - STATE(1081), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1582), 1, + STATE(1626), 1, sym__float_literal, - STATE(1583), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1584), 1, - sym__double_quoted_string, - STATE(2027), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2925), 8, + ACTIONS(2933), 8, sym_return, sym_next, sym_break, @@ -92771,7 +92774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1150), 19, + STATE(1361), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92794,71 +92797,71 @@ static const uint16_t ts_small_parse_table[] = { [72321] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1943), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(1945), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(1947), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(1949), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(1951), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(1953), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(1955), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(1957), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(1959), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(1963), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(1965), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(1967), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_dot_dot_i, - ACTIONS(1979), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(1981), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(1983), 1, + ACTIONS(527), 1, sym__external_open_brace, - STATE(384), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(2939), 1, + sym__newline, + STATE(357), 1, sym__open_brace, - STATE(1081), 1, + STATE(953), 1, + aux_sym_function_definition_repeat1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1581), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1582), 1, + STATE(1626), 1, sym__float_literal, - STATE(1583), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1584), 1, - sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1941), 2, - sym_identifier, - sym_dots, - ACTIONS(1961), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2929), 8, + ACTIONS(2937), 8, sym_return, sym_next, sym_break, @@ -92867,7 +92870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1154), 19, + STATE(1359), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92890,71 +92893,71 @@ static const uint16_t ts_small_parse_table[] = { [72449] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(1039), 1, - sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(2943), 1, sym__newline, - STATE(320), 1, + STATE(357), 1, + sym__open_brace, + STATE(955), 1, + aux_sym_function_definition_repeat1, + STATE(1097), 1, + sym__open_parenthesis, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(323), 1, + STATE(1626), 1, sym__float_literal, - STATE(325), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(326), 1, - sym__double_quoted_string, - STATE(378), 1, - sym__open_brace, - STATE(1053), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, - sym_identifier, - sym_dots, - ACTIONS(1033), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2931), 8, + ACTIONS(2941), 8, sym_return, sym_next, sym_break, @@ -92963,7 +92966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(223), 19, + STATE(1358), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92985,72 +92988,72 @@ static const uint16_t ts_small_parse_table[] = { sym__expression, [72577] = 32, ACTIONS(3), 1, - sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + sym_comment, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(1039), 1, - sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2935), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(2947), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, - sym__double_quoted_string, - STATE(378), 1, + STATE(357), 1, sym__open_brace, - STATE(662), 1, + STATE(957), 1, aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, + sym_string, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, - sym_identifier, - sym_dots, - ACTIONS(1033), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2933), 8, + ACTIONS(2945), 8, sym_return, sym_next, sym_break, @@ -93059,7 +93062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(197), 19, + STATE(1357), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93082,71 +93085,71 @@ static const uint16_t ts_small_parse_table[] = { [72705] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(539), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(547), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(947), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(949), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(951), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(953), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(955), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(957), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(959), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(961), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(963), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(967), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(969), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(971), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(979), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(981), 1, sym__external_open_brace, - ACTIONS(2939), 1, + ACTIONS(2951), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, STATE(317), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(318), 1, + sym__single_quoted_string, + STATE(319), 1, + sym__float_literal, + STATE(322), 1, + sym_string, + STATE(370), 1, sym__open_brace, - STATE(458), 1, + STATE(814), 1, aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1092), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(2036), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(945), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(975), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2937), 8, + ACTIONS(2949), 8, sym_return, sym_next, sym_break, @@ -93155,7 +93158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(137), 19, + STATE(202), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93178,71 +93181,71 @@ static const uint16_t ts_small_parse_table[] = { [72833] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_SQUOTE, - ACTIONS(491), 1, - anon_sym_DQUOTE, - ACTIONS(495), 1, - sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(737), 1, - sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2943), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(2955), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, - sym__double_quoted_string, - STATE(372), 1, + STATE(357), 1, sym__open_brace, - STATE(460), 1, + STATE(959), 1, aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, + sym_string, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, - sym_identifier, - sym_dots, - ACTIONS(731), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2941), 8, + ACTIONS(2953), 8, sym_return, sym_next, sym_break, @@ -93251,7 +93254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(138), 19, + STATE(1355), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93274,71 +93277,71 @@ static const uint16_t ts_small_parse_table[] = { [72961] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2947), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(2959), 1, sym__newline, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + STATE(357), 1, sym__open_brace, - STATE(1020), 1, + STATE(963), 1, aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(2032), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, + sym_string, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2945), 8, + ACTIONS(2957), 8, sym_return, sym_next, sym_break, @@ -93347,7 +93350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(15), 19, + STATE(1354), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93370,71 +93373,71 @@ static const uint16_t ts_small_parse_table[] = { [73089] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(375), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2149), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2173), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(292), 1, - sym_string, - STATE(293), 1, + STATE(289), 1, sym__float_literal, - STATE(294), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(295), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(388), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1086), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2167), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2949), 8, + ACTIONS(2961), 8, sym_return, sym_next, sym_break, @@ -93443,7 +93446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(16), 19, + STATE(54), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93466,71 +93469,71 @@ static const uint16_t ts_small_parse_table[] = { [73217] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(2149), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2953), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(2965), 1, sym__newline, - STATE(292), 1, - sym_string, - STATE(293), 1, - sym__float_literal, - STATE(294), 1, - sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, + STATE(357), 1, sym__open_brace, - STATE(1022), 1, + STATE(967), 1, aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(2032), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, + sym_string, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2951), 8, + ACTIONS(2963), 8, sym_return, sym_next, sym_break, @@ -93539,7 +93542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(17), 19, + STATE(1352), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93562,71 +93565,71 @@ static const uint16_t ts_small_parse_table[] = { [73345] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_SQUOTE, - ACTIONS(375), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2149), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2151), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2153), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2155), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2157), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2159), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2161), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2165), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2169), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2171), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2173), 1, - sym_dot_dot_i, - ACTIONS(2181), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2183), 1, + ACTIONS(527), 1, sym__external_open_brace, - STATE(292), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(2969), 1, + sym__newline, + STATE(357), 1, + sym__open_brace, + STATE(971), 1, + aux_sym_function_definition_repeat1, + STATE(1097), 1, + sym__open_parenthesis, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(293), 1, + STATE(1626), 1, sym__float_literal, - STATE(294), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(295), 1, - sym__double_quoted_string, - STATE(388), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2032), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2147), 2, - sym_identifier, - sym_dots, - ACTIONS(2167), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2955), 8, + ACTIONS(2967), 8, sym_return, sym_next, sym_break, @@ -93635,7 +93638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(10), 19, + STATE(1351), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93658,71 +93661,71 @@ static const uint16_t ts_small_parse_table[] = { [73473] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_SQUOTE, - ACTIONS(491), 1, - anon_sym_DQUOTE, - ACTIONS(495), 1, - sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(737), 1, - sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2959), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(2973), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, - sym__double_quoted_string, - STATE(372), 1, + STATE(357), 1, sym__open_brace, - STATE(461), 1, + STATE(975), 1, aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, + sym_string, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, - sym_identifier, - sym_dots, - ACTIONS(731), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2957), 8, + ACTIONS(2971), 8, sym_return, sym_next, sym_break, @@ -93731,7 +93734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(139), 19, + STATE(1349), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93754,71 +93757,71 @@ static const uint16_t ts_small_parse_table[] = { [73601] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(341), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(343), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(347), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2963), 1, + ACTIONS(1109), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(463), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2961), 8, + ACTIONS(2975), 8, sym_return, sym_next, sym_break, @@ -93827,7 +93830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(140), 19, + STATE(48), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93850,71 +93853,71 @@ static const uint16_t ts_small_parse_table[] = { [73729] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(341), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(343), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(347), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2967), 1, + ACTIONS(2979), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(465), 1, + STATE(1033), 1, aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2965), 8, + ACTIONS(2977), 8, sym_return, sym_next, sym_break, @@ -93923,7 +93926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(141), 19, + STATE(49), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93946,71 +93949,71 @@ static const uint16_t ts_small_parse_table[] = { [73857] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_SQUOTE, - ACTIONS(491), 1, - anon_sym_DQUOTE, - ACTIONS(495), 1, - sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(737), 1, - sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2971), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(2983), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, - sym__double_quoted_string, - STATE(372), 1, + STATE(357), 1, sym__open_brace, - STATE(467), 1, + STATE(979), 1, aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, + sym_string, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, - sym_identifier, - sym_dots, - ACTIONS(731), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2969), 8, + ACTIONS(2981), 8, sym_return, sym_next, sym_break, @@ -94019,7 +94022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(142), 19, + STATE(1348), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94042,71 +94045,71 @@ static const uint16_t ts_small_parse_table[] = { [73985] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2975), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(2987), 1, sym__newline, - STATE(391), 1, + STATE(357), 1, sym__open_brace, - STATE(1028), 1, + STATE(983), 1, aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1590), 1, + STATE(1626), 1, sym__float_literal, - STATE(1593), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(2052), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2973), 8, + ACTIONS(2985), 8, sym_return, sym_next, sym_break, @@ -94115,7 +94118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1158), 19, + STATE(1347), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94138,71 +94141,71 @@ static const uint16_t ts_small_parse_table[] = { [74113] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(2439), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_dot_dot_i, - ACTIONS(2451), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(527), 1, sym__external_open_brace, - STATE(391), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(2991), 1, + sym__newline, + STATE(357), 1, sym__open_brace, - STATE(1091), 1, + STATE(986), 1, + aux_sym_function_definition_repeat1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1577), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(1590), 1, + STATE(1626), 1, sym__float_literal, - STATE(1593), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(1613), 1, - aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, - sym_identifier, - sym_dots, - ACTIONS(2433), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2977), 8, + ACTIONS(2989), 8, sym_return, sym_next, sym_break, @@ -94211,7 +94214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1160), 19, + STATE(1346), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94234,71 +94237,71 @@ static const uint16_t ts_small_parse_table[] = { [74241] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2981), 1, + ACTIONS(2995), 1, sym__newline, - STATE(391), 1, + STATE(290), 1, + sym__single_quoted_string, + STATE(294), 1, + sym__double_quoted_string, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(1030), 1, + STATE(1035), 1, aux_sym_function_definition_repeat1, - STATE(1091), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, - sym__float_literal, - STATE(1593), 1, - sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(2052), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2979), 8, + ACTIONS(2993), 8, sym_return, sym_next, sym_break, @@ -94307,7 +94310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1161), 19, + STATE(50), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94330,71 +94333,71 @@ static const uint16_t ts_small_parse_table[] = { [74369] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2415), 1, anon_sym_BSLASH, - ACTIONS(2417), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2419), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2421), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2423), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2425), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2427), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2429), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2431), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2435), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2437), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(2453), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2455), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(391), 1, - sym__open_brace, - STATE(1091), 1, - sym__open_parenthesis, - STATE(1577), 1, - sym_string, - STATE(1590), 1, - sym__float_literal, - STATE(1593), 1, + ACTIONS(2999), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1039), 1, aux_sym_function_definition_repeat1, - STATE(2052), 1, + STATE(1108), 1, + sym__open_parenthesis, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2413), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2433), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2983), 8, + ACTIONS(2997), 8, sym_return, sym_next, sym_break, @@ -94403,7 +94406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1162), 19, + STATE(51), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94426,71 +94429,71 @@ static const uint16_t ts_small_parse_table[] = { [74497] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_SQUOTE, - ACTIONS(491), 1, - anon_sym_DQUOTE, - ACTIONS(495), 1, - sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(737), 1, - sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(2987), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(3003), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, - sym__single_quoted_string, - STATE(317), 1, - sym__double_quoted_string, - STATE(372), 1, + STATE(357), 1, sym__open_brace, - STATE(469), 1, + STATE(989), 1, aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, + sym_string, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, - sym_identifier, - sym_dots, - ACTIONS(731), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2985), 8, + ACTIONS(3001), 8, sym_return, sym_next, sym_break, @@ -94499,7 +94502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(143), 19, + STATE(1341), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94522,71 +94525,71 @@ static const uint16_t ts_small_parse_table[] = { [74625] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(2991), 1, - sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, + STATE(289), 1, sym__float_literal, - STATE(315), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(470), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2989), 8, + ACTIONS(3005), 8, sym_return, sym_next, sym_break, @@ -94595,7 +94598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(144), 19, + STATE(122), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94618,71 +94621,71 @@ static const uint16_t ts_small_parse_table[] = { [74753] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(341), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(343), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(347), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(2995), 1, + ACTIONS(1109), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(471), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2993), 8, + ACTIONS(3007), 8, sym_return, sym_next, sym_break, @@ -94691,7 +94694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(145), 19, + STATE(52), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94714,71 +94717,71 @@ static const uint16_t ts_small_parse_table[] = { [74881] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(2999), 1, - sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, + STATE(289), 1, sym__float_literal, - STATE(315), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(472), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2997), 8, + ACTIONS(3009), 8, sym_return, sym_next, sym_break, @@ -94787,7 +94790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(146), 19, + STATE(128), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94810,71 +94813,71 @@ static const uint16_t ts_small_parse_table[] = { [75009] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(3003), 1, + ACTIONS(1109), 1, sym__newline, - STATE(394), 1, - sym__open_brace, - STATE(1036), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(2038), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1108), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3001), 8, + ACTIONS(3011), 8, sym_return, sym_next, sym_break, @@ -94883,7 +94886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1163), 19, + STATE(53), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94906,71 +94909,71 @@ static const uint16_t ts_small_parse_table[] = { [75137] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(341), 1, + anon_sym_SQUOTE, + ACTIONS(343), 1, + anon_sym_DQUOTE, + ACTIONS(347), 1, + sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(2619), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, - sym__float_literal, - STATE(1588), 1, + ACTIONS(3015), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, + sym__open_brace, + STATE(1044), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(1108), 1, + sym__open_parenthesis, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3005), 8, + ACTIONS(3013), 8, sym_return, sym_next, sym_break, @@ -94979,7 +94982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1165), 19, + STATE(62), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95002,71 +95005,71 @@ static const uint16_t ts_small_parse_table[] = { [75265] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(3009), 1, - sym__newline, - STATE(394), 1, - sym__open_brace, - STATE(1038), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(2038), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3007), 8, + ACTIONS(3017), 8, sym_return, sym_next, sym_break, @@ -95075,7 +95078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1141), 19, + STATE(126), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95098,71 +95101,71 @@ static const uint16_t ts_small_parse_table[] = { [75393] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(357), 1, + anon_sym_SQUOTE, + ACTIONS(359), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + sym__raw_string_literal, + ACTIONS(1109), 1, sym__newline, - ACTIONS(2619), 1, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(2621), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(2623), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(2625), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(2627), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(2629), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(2631), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(2633), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(2635), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(2639), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(2641), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2647), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(2657), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(2659), 1, + ACTIONS(1255), 1, sym__external_open_brace, - STATE(394), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1586), 1, - sym_string, - STATE(1587), 1, + STATE(289), 1, sym__float_literal, - STATE(1588), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(1613), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, + sym__open_brace, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2038), 1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(2617), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(2637), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2651), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3011), 8, + ACTIONS(3019), 8, sym_return, sym_next, sym_break, @@ -95171,7 +95174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1139), 19, + STATE(125), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95194,71 +95197,71 @@ static const uint16_t ts_small_parse_table[] = { [75521] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(341), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(343), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(347), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(3015), 1, + ACTIONS(1109), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(474), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3013), 8, + ACTIONS(3021), 8, sym_return, sym_next, sym_break, @@ -95267,7 +95270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(147), 19, + STATE(18), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95290,71 +95293,71 @@ static const uint16_t ts_small_parse_table[] = { [75649] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(341), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(343), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(347), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1105), 1, sym__external_open_brace, - ACTIONS(3019), 1, + ACTIONS(3025), 1, sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, - sym__float_literal, - STATE(315), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(476), 1, + STATE(1009), 1, aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3017), 8, + ACTIONS(3023), 8, sym_return, sym_next, sym_break, @@ -95363,7 +95366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(148), 19, + STATE(65), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95386,71 +95389,71 @@ static const uint16_t ts_small_parse_table[] = { [75777] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(491), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(495), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(713), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(715), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(717), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(719), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(721), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(723), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(725), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(729), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(733), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(735), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(737), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(745), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(747), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(3023), 1, - sym__newline, - STATE(309), 1, - sym_string, - STATE(313), 1, + STATE(289), 1, sym__float_literal, - STATE(315), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(317), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(372), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(478), 1, - aux_sym_function_definition_repeat1, - STATE(1117), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(2051), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(711), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(731), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(741), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3021), 8, + ACTIONS(3027), 8, sym_return, sym_next, sym_break, @@ -95459,7 +95462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(149), 19, + STATE(124), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95482,71 +95485,71 @@ static const uint16_t ts_small_parse_table[] = { [75905] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_SQUOTE, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(505), 1, - sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(1039), 1, - sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, - sym__single_quoted_string, - STATE(326), 1, - sym__double_quoted_string, - STATE(378), 1, + STATE(357), 1, sym__open_brace, - STATE(1053), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2049), 1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, + sym_string, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, - sym_identifier, - sym_dots, - ACTIONS(1033), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3025), 8, + ACTIONS(3029), 8, sym_return, sym_next, sym_break, @@ -95555,7 +95558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(224), 19, + STATE(1337), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95578,71 +95581,71 @@ static const uint16_t ts_small_parse_table[] = { [76033] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(357), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(359), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(363), 1, sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(1109), 1, + sym__newline, + ACTIONS(1223), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1225), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1227), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1229), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1231), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1233), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1235), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1237), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1239), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1243), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1245), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1247), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1253), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1255), 1, sym__external_open_brace, - ACTIONS(3029), 1, - sym__newline, - STATE(297), 1, - sym_string, - STATE(298), 1, + STATE(289), 1, sym__float_literal, - STATE(301), 1, + STATE(291), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(304), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(306), 1, + sym_string, + STATE(359), 1, sym__open_brace, - STATE(1044), 1, - aux_sym_function_definition_repeat1, - STATE(1076), 1, + STATE(1065), 1, sym__open_parenthesis, - STATE(2044), 1, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(2035), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1221), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1251), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3027), 8, + ACTIONS(3031), 8, sym_return, sym_next, sym_break, @@ -95651,7 +95654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(11), 19, + STATE(123), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95674,71 +95677,71 @@ static const uint16_t ts_small_parse_table[] = { [76161] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(341), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(343), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(347), 1, sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(1076), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3031), 8, + ACTIONS(3033), 8, sym_return, sym_next, sym_break, @@ -95747,7 +95750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(12), 19, + STATE(66), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95770,71 +95773,71 @@ static const uint16_t ts_small_parse_table[] = { [76289] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, - anon_sym_SQUOTE, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(355), 1, - sym__raw_string_literal, - ACTIONS(1149), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(1173), 1, - sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(3035), 1, + ACTIONS(1067), 1, + sym_dot_dot_i, + ACTIONS(1109), 1, sym__newline, - STATE(297), 1, + STATE(357), 1, + sym__open_brace, + STATE(1097), 1, + sym__open_parenthesis, + STATE(1611), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, sym_string, - STATE(298), 1, + STATE(1626), 1, sym__float_literal, - STATE(301), 1, + STATE(1627), 1, sym__single_quoted_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(380), 1, - sym__open_brace, - STATE(1046), 1, - aux_sym_function_definition_repeat1, - STATE(1076), 1, - sym__open_parenthesis, - STATE(2044), 1, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, - sym_identifier, - sym_dots, - ACTIONS(1167), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3033), 8, + ACTIONS(3035), 8, sym_return, sym_next, sym_break, @@ -95843,7 +95846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(13), 19, + STATE(1400), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95866,65 +95869,65 @@ static const uint16_t ts_small_parse_table[] = { [76417] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 1, + ACTIONS(341), 1, anon_sym_SQUOTE, - ACTIONS(349), 1, + ACTIONS(343), 1, anon_sym_DQUOTE, - ACTIONS(355), 1, + ACTIONS(347), 1, sym__raw_string_literal, ACTIONS(1071), 1, - sym__newline, - ACTIONS(1149), 1, anon_sym_BSLASH, - ACTIONS(1151), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(1153), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(1155), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(1157), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(1159), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(1161), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(1163), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(1165), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(1169), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(1171), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(1173), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(1181), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(1183), 1, + ACTIONS(1105), 1, sym__external_open_brace, - STATE(297), 1, - sym_string, - STATE(298), 1, - sym__float_literal, - STATE(301), 1, + ACTIONS(1109), 1, + sym__newline, + STATE(290), 1, sym__single_quoted_string, - STATE(302), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(380), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(1076), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - STATE(2044), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1147), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(1167), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1177), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -95939,7 +95942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(14), 19, + STATE(67), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95962,65 +95965,65 @@ static const uint16_t ts_small_parse_table[] = { [76545] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(341), 1, anon_sym_SQUOTE, - ACTIONS(501), 1, + ACTIONS(343), 1, anon_sym_DQUOTE, - ACTIONS(505), 1, + ACTIONS(347), 1, sym__raw_string_literal, - ACTIONS(1015), 1, + ACTIONS(1071), 1, anon_sym_BSLASH, - ACTIONS(1017), 1, + ACTIONS(1073), 1, anon_sym_function, - ACTIONS(1019), 1, + ACTIONS(1075), 1, anon_sym_if, - ACTIONS(1021), 1, + ACTIONS(1077), 1, anon_sym_for, - ACTIONS(1023), 1, + ACTIONS(1079), 1, anon_sym_while, - ACTIONS(1025), 1, + ACTIONS(1081), 1, anon_sym_repeat, - ACTIONS(1027), 1, + ACTIONS(1083), 1, anon_sym_QMARK, - ACTIONS(1029), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(1031), 1, + ACTIONS(1087), 1, anon_sym_BANG, - ACTIONS(1035), 1, + ACTIONS(1091), 1, sym__hex_literal, - ACTIONS(1037), 1, + ACTIONS(1093), 1, sym__number_literal, - ACTIONS(1039), 1, + ACTIONS(1095), 1, sym_dot_dot_i, - ACTIONS(1047), 1, + ACTIONS(1103), 1, sym__external_open_parenthesis, - ACTIONS(1049), 1, + ACTIONS(1105), 1, sym__external_open_brace, ACTIONS(3041), 1, sym__newline, - STATE(320), 1, - sym_string, - STATE(323), 1, - sym__float_literal, - STATE(325), 1, + STATE(290), 1, sym__single_quoted_string, - STATE(326), 1, + STATE(294), 1, sym__double_quoted_string, - STATE(378), 1, + STATE(296), 1, + sym_string, + STATE(299), 1, + sym__float_literal, + STATE(356), 1, sym__open_brace, - STATE(977), 1, + STATE(944), 1, aux_sym_function_definition_repeat1, - STATE(1053), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(2049), 1, + STATE(2029), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(1013), 2, + ACTIONS(1069), 2, sym_identifier, sym_dots, - ACTIONS(1033), 2, + ACTIONS(1089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1043), 5, + ACTIONS(1099), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96035,7 +96038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(201), 19, + STATE(68), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96058,61 +96061,61 @@ static const uint16_t ts_small_parse_table[] = { [76673] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96127,7 +96130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1450), 19, + STATE(1477), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96150,61 +96153,61 @@ static const uint16_t ts_small_parse_table[] = { [76795] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96219,7 +96222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1570), 19, + STATE(1365), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96242,61 +96245,61 @@ static const uint16_t ts_small_parse_table[] = { [76917] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96311,7 +96314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1369), 19, + STATE(1575), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96334,61 +96337,61 @@ static const uint16_t ts_small_parse_table[] = { [77039] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96403,7 +96406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1480), 19, + STATE(1506), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96426,61 +96429,61 @@ static const uint16_t ts_small_parse_table[] = { [77161] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96495,7 +96498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1337), 19, + STATE(1360), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96518,61 +96521,61 @@ static const uint16_t ts_small_parse_table[] = { [77283] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96587,7 +96590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1387), 19, + STATE(1496), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96610,61 +96613,61 @@ static const uint16_t ts_small_parse_table[] = { [77405] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96679,7 +96682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1376), 19, + STATE(1424), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96702,61 +96705,61 @@ static const uint16_t ts_small_parse_table[] = { [77527] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96771,7 +96774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1520), 19, + STATE(1499), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96794,61 +96797,61 @@ static const uint16_t ts_small_parse_table[] = { [77649] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96863,7 +96866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1360), 19, + STATE(1363), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96886,61 +96889,61 @@ static const uint16_t ts_small_parse_table[] = { [77771] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96955,7 +96958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1444), 19, + STATE(1452), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96978,61 +96981,61 @@ static const uint16_t ts_small_parse_table[] = { [77893] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97047,7 +97050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1445), 19, + STATE(1375), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97070,61 +97073,61 @@ static const uint16_t ts_small_parse_table[] = { [78015] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97139,7 +97142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1447), 19, + STATE(1376), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97162,61 +97165,61 @@ static const uint16_t ts_small_parse_table[] = { [78137] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97231,7 +97234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1449), 19, + STATE(1377), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97254,61 +97257,61 @@ static const uint16_t ts_small_parse_table[] = { [78259] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97323,7 +97326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1572), 19, + STATE(1378), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97346,61 +97349,61 @@ static const uint16_t ts_small_parse_table[] = { [78381] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97415,7 +97418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1462), 19, + STATE(1508), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97438,61 +97441,61 @@ static const uint16_t ts_small_parse_table[] = { [78503] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97507,7 +97510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1464), 19, + STATE(1513), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97530,61 +97533,61 @@ static const uint16_t ts_small_parse_table[] = { [78625] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97599,7 +97602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1466), 19, + STATE(1450), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97622,61 +97625,61 @@ static const uint16_t ts_small_parse_table[] = { [78747] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97691,7 +97694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1468), 19, + STATE(1515), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97714,61 +97717,61 @@ static const uint16_t ts_small_parse_table[] = { [78869] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97783,7 +97786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1470), 19, + STATE(1518), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97806,61 +97809,61 @@ static const uint16_t ts_small_parse_table[] = { [78991] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97875,7 +97878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1471), 19, + STATE(1523), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97898,61 +97901,61 @@ static const uint16_t ts_small_parse_table[] = { [79113] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97967,7 +97970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1473), 19, + STATE(1382), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97990,61 +97993,61 @@ static const uint16_t ts_small_parse_table[] = { [79235] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98059,7 +98062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1475), 19, + STATE(1525), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98082,61 +98085,61 @@ static const uint16_t ts_small_parse_table[] = { [79357] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98151,7 +98154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1477), 19, + STATE(1383), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98174,61 +98177,61 @@ static const uint16_t ts_small_parse_table[] = { [79479] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98243,7 +98246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1481), 19, + STATE(1384), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98266,61 +98269,61 @@ static const uint16_t ts_small_parse_table[] = { [79601] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98335,7 +98338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1482), 19, + STATE(1390), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98358,61 +98361,61 @@ static const uint16_t ts_small_parse_table[] = { [79723] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98427,7 +98430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1484), 19, + STATE(1391), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98450,61 +98453,61 @@ static const uint16_t ts_small_parse_table[] = { [79845] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98519,7 +98522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1487), 19, + STATE(1419), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98542,61 +98545,61 @@ static const uint16_t ts_small_parse_table[] = { [79967] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98611,7 +98614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1489), 19, + STATE(1433), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98634,61 +98637,61 @@ static const uint16_t ts_small_parse_table[] = { [80089] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98703,7 +98706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1492), 19, + STATE(1435), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98726,61 +98729,61 @@ static const uint16_t ts_small_parse_table[] = { [80211] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98795,7 +98798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1493), 19, + STATE(1440), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98818,61 +98821,61 @@ static const uint16_t ts_small_parse_table[] = { [80333] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98887,7 +98890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1495), 19, + STATE(1441), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98910,61 +98913,61 @@ static const uint16_t ts_small_parse_table[] = { [80455] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98979,7 +98982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1496), 19, + STATE(1453), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99002,61 +99005,61 @@ static const uint16_t ts_small_parse_table[] = { [80577] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99071,7 +99074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1498), 19, + STATE(1458), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99094,61 +99097,61 @@ static const uint16_t ts_small_parse_table[] = { [80699] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99163,7 +99166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1502), 19, + STATE(1467), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99186,61 +99189,61 @@ static const uint16_t ts_small_parse_table[] = { [80821] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99255,7 +99258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1503), 19, + STATE(1469), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99278,61 +99281,61 @@ static const uint16_t ts_small_parse_table[] = { [80943] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99347,7 +99350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1505), 19, + STATE(1527), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99370,61 +99373,61 @@ static const uint16_t ts_small_parse_table[] = { [81065] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99439,7 +99442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1508), 19, + STATE(1470), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99462,61 +99465,61 @@ static const uint16_t ts_small_parse_table[] = { [81187] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99531,7 +99534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1510), 19, + STATE(1472), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99554,61 +99557,61 @@ static const uint16_t ts_small_parse_table[] = { [81309] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99623,7 +99626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1513), 19, + STATE(1473), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99646,61 +99649,61 @@ static const uint16_t ts_small_parse_table[] = { [81431] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99715,7 +99718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1514), 19, + STATE(1474), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99738,61 +99741,61 @@ static const uint16_t ts_small_parse_table[] = { [81553] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99807,7 +99810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1515), 19, + STATE(1475), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99830,61 +99833,61 @@ static const uint16_t ts_small_parse_table[] = { [81675] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99899,7 +99902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1516), 19, + STATE(1533), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99922,61 +99925,61 @@ static const uint16_t ts_small_parse_table[] = { [81797] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99991,7 +99994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1517), 19, + STATE(1356), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100014,61 +100017,61 @@ static const uint16_t ts_small_parse_table[] = { [81919] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -100083,7 +100086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1521), 19, + STATE(1482), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100106,61 +100109,61 @@ static const uint16_t ts_small_parse_table[] = { [82041] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -100175,7 +100178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1522), 19, + STATE(1570), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100198,61 +100201,61 @@ static const uint16_t ts_small_parse_table[] = { [82163] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -100267,7 +100270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1523), 19, + STATE(1476), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100290,61 +100293,61 @@ static const uint16_t ts_small_parse_table[] = { [82285] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -100359,7 +100362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1524), 19, + STATE(1557), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100382,61 +100385,61 @@ static const uint16_t ts_small_parse_table[] = { [82407] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -100451,7 +100454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1525), 19, + STATE(1565), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100474,61 +100477,61 @@ static const uint16_t ts_small_parse_table[] = { [82529] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -100543,7 +100546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1526), 19, + STATE(1558), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100566,61 +100569,61 @@ static const uint16_t ts_small_parse_table[] = { [82651] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -100635,7 +100638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1527), 19, + STATE(1417), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100658,61 +100661,61 @@ static const uint16_t ts_small_parse_table[] = { [82773] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -100727,7 +100730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1528), 19, + STATE(1416), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100750,61 +100753,61 @@ static const uint16_t ts_small_parse_table[] = { [82895] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -100819,7 +100822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1529), 19, + STATE(1398), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100842,61 +100845,61 @@ static const uint16_t ts_small_parse_table[] = { [83017] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -100911,7 +100914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1530), 19, + STATE(1387), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100934,61 +100937,61 @@ static const uint16_t ts_small_parse_table[] = { [83139] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -101003,7 +101006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1533), 19, + STATE(1371), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -101026,61 +101029,61 @@ static const uint16_t ts_small_parse_table[] = { [83261] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -101095,7 +101098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1535), 19, + STATE(1445), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -101118,61 +101121,61 @@ static const uint16_t ts_small_parse_table[] = { [83383] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -101187,7 +101190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1542), 19, + STATE(1421), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -101210,61 +101213,61 @@ static const uint16_t ts_small_parse_table[] = { [83505] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -101279,7 +101282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1544), 19, + STATE(1438), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -101302,61 +101305,61 @@ static const uint16_t ts_small_parse_table[] = { [83627] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -101371,7 +101374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1548), 19, + STATE(1546), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -101394,61 +101397,61 @@ static const uint16_t ts_small_parse_table[] = { [83749] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -101463,7 +101466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1549), 19, + STATE(1415), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -101486,61 +101489,61 @@ static const uint16_t ts_small_parse_table[] = { [83871] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -101555,7 +101558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1553), 19, + STATE(1559), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -101578,67 +101581,159 @@ static const uint16_t ts_small_parse_table[] = { [83993] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, + ACTIONS(493), 1, + anon_sym_while, + ACTIONS(495), 1, + anon_sym_repeat, + ACTIONS(497), 1, + anon_sym_QMARK, + ACTIONS(499), 1, + anon_sym_TILDE, + ACTIONS(501), 1, + anon_sym_BANG, + ACTIONS(505), 1, + sym__hex_literal, + ACTIONS(507), 1, + sym__number_literal, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(523), 1, + sym__external_open_parenthesis, ACTIONS(527), 1, + sym__external_open_brace, + ACTIONS(1067), 1, + sym_dot_dot_i, + STATE(357), 1, + sym__open_brace, + STATE(1097), 1, + sym__open_parenthesis, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1625), 1, + sym_string, + STATE(1626), 1, + sym__float_literal, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, + sym__string_or_identifier_or_dots_or_dot_dot_i, + ACTIONS(503), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1065), 2, + sym_identifier, + sym_dots, + ACTIONS(517), 5, + anon_sym_NA, + anon_sym_NA_integer_, + anon_sym_NA_real_, + anon_sym_NA_complex_, + anon_sym_NA_character_, + ACTIONS(3163), 8, + sym_return, + sym_next, + sym_break, + sym_true, + sym_false, + sym_null, + sym_inf, + sym_nan, + STATE(1534), 19, + sym_function_definition, + sym_if_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_braced_expression, + sym_parenthesized_expression, + sym_call, + sym_subset, + sym_subset2, + sym_unary_operator, + sym_binary_operator, + sym_extract_operator, + sym_namespace_operator, + sym_integer, + sym_complex, + sym_float, + sym_na, + sym__expression, + [84115] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(485), 1, + anon_sym_BSLASH, + ACTIONS(487), 1, + anon_sym_function, + ACTIONS(489), 1, + anon_sym_if, + ACTIONS(491), 1, + anon_sym_for, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3163), 8, + ACTIONS(3165), 8, sym_return, sym_next, sym_break, @@ -101647,7 +101742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1555), 19, + STATE(1459), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -101667,70 +101762,70 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [84115] = 30, + [84237] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3165), 8, + ACTIONS(3167), 8, sym_return, sym_next, sym_break, @@ -101739,7 +101834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1558), 19, + STATE(1478), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -101759,70 +101854,70 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [84237] = 30, + [84359] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3167), 8, + ACTIONS(3169), 8, sym_return, sym_next, sym_break, @@ -101831,7 +101926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1559), 19, + STATE(1486), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -101851,70 +101946,70 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [84359] = 30, + [84481] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3169), 8, + ACTIONS(3171), 8, sym_return, sym_next, sym_break, @@ -101923,7 +102018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1563), 19, + STATE(1491), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -101943,70 +102038,70 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [84481] = 30, + [84603] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3171), 8, + ACTIONS(3173), 8, sym_return, sym_next, sym_break, @@ -102015,7 +102110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1564), 19, + STATE(1492), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -102035,70 +102130,70 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [84603] = 30, + [84725] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3173), 8, + ACTIONS(3175), 8, sym_return, sym_next, sym_break, @@ -102107,7 +102202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1565), 19, + STATE(1493), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -102127,70 +102222,70 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [84725] = 30, + [84847] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3175), 8, + ACTIONS(3177), 8, sym_return, sym_next, sym_break, @@ -102199,7 +102294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1566), 19, + STATE(1514), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -102219,70 +102314,70 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [84847] = 30, + [84969] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3177), 8, + ACTIONS(3179), 8, sym_return, sym_next, sym_break, @@ -102291,7 +102386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1567), 19, + STATE(1521), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -102311,70 +102406,70 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [84969] = 30, + [85091] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(485), 1, anon_sym_BSLASH, - ACTIONS(521), 1, + ACTIONS(487), 1, anon_sym_function, - ACTIONS(523), 1, + ACTIONS(489), 1, anon_sym_if, - ACTIONS(525), 1, + ACTIONS(491), 1, anon_sym_for, - ACTIONS(527), 1, + ACTIONS(493), 1, anon_sym_while, - ACTIONS(529), 1, + ACTIONS(495), 1, anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(497), 1, anon_sym_QMARK, - ACTIONS(533), 1, + ACTIONS(499), 1, anon_sym_TILDE, - ACTIONS(535), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(539), 1, + ACTIONS(505), 1, sym__hex_literal, - ACTIONS(541), 1, + ACTIONS(507), 1, sym__number_literal, - ACTIONS(543), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(557), 1, + ACTIONS(523), 1, sym__external_open_parenthesis, - ACTIONS(561), 1, + ACTIONS(527), 1, sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(1067), 1, sym_dot_dot_i, - STATE(370), 1, + STATE(357), 1, sym__open_brace, - STATE(1057), 1, + STATE(1097), 1, sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, + STATE(1616), 1, sym__double_quoted_string, - STATE(1629), 1, + STATE(1625), 1, + sym_string, + STATE(1626), 1, sym__float_literal, - STATE(2054), 1, + STATE(1627), 1, + sym__single_quoted_string, + STATE(2042), 1, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, + ACTIONS(503), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(1065), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, + ACTIONS(517), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(3179), 8, + ACTIONS(3181), 8, sym_return, sym_next, sym_break, @@ -102383,7 +102478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1568), 19, + STATE(1531), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -102403,110 +102498,328 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [85091] = 30, + [85213] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, - anon_sym_BSLASH, - ACTIONS(521), 1, - anon_sym_function, - ACTIONS(523), 1, - anon_sym_if, - ACTIONS(525), 1, - anon_sym_for, - ACTIONS(527), 1, - anon_sym_while, - ACTIONS(529), 1, - anon_sym_repeat, - ACTIONS(531), 1, + ACTIONS(1805), 1, + anon_sym_SQUOTE, + ACTIONS(1807), 1, + anon_sym_DQUOTE, + ACTIONS(1815), 1, + sym__raw_string_literal, + ACTIONS(3185), 1, + sym_dot_dot_i, + ACTIONS(3187), 1, + sym__newline, + STATE(1123), 1, + aux_sym_function_definition_repeat1, + STATE(1588), 1, + sym__single_quoted_string, + STATE(1589), 1, + sym__double_quoted_string, + ACTIONS(3183), 2, + sym_identifier, + sym_dots, + STATE(1681), 2, + sym_string, + sym__string_or_identifier_or_dots_or_dot_dot_i, + ACTIONS(369), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(365), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_open_bracket, + sym__external_close_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [85288] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(3191), 1, + sym_dot_dot_i, + ACTIONS(3193), 1, + sym__newline, + STATE(1120), 1, + aux_sym_function_definition_repeat1, + STATE(1583), 1, + sym__single_quoted_string, + STATE(1585), 1, + sym__double_quoted_string, + ACTIONS(3189), 2, + sym_identifier, + sym_dots, + STATE(1673), 2, + sym_string, + sym__string_or_identifier_or_dots_or_dot_dot_i, + ACTIONS(369), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(365), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_close_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [85363] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(3197), 1, + sym_dot_dot_i, + ACTIONS(3199), 1, + sym__newline, + STATE(1136), 1, + aux_sym_function_definition_repeat1, + STATE(1583), 1, + sym__single_quoted_string, + STATE(1585), 1, + sym__double_quoted_string, + ACTIONS(3195), 2, + sym_identifier, + sym_dots, + STATE(1704), 2, + sym_string, + sym__string_or_identifier_or_dots_or_dot_dot_i, + ACTIONS(339), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(335), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_close_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [85438] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1667), 1, + anon_sym_SQUOTE, + ACTIONS(1669), 1, + anon_sym_DQUOTE, + ACTIONS(1677), 1, + sym__raw_string_literal, + ACTIONS(3203), 1, + sym_dot_dot_i, + ACTIONS(3205), 1, + sym__newline, + STATE(1138), 1, + aux_sym_function_definition_repeat1, + STATE(1599), 1, + sym__single_quoted_string, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(3201), 2, + sym_identifier, + sym_dots, + STATE(1640), 2, + sym_string, + sym__string_or_identifier_or_dots_or_dot_dot_i, + ACTIONS(339), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(335), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, - ACTIONS(533), 1, anon_sym_TILDE, - ACTIONS(535), 1, - anon_sym_BANG, - ACTIONS(539), 1, - sym__hex_literal, - ACTIONS(541), 1, - sym__number_literal, - ACTIONS(543), 1, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [85513] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(557), 1, - sym__external_open_parenthesis, - ACTIONS(561), 1, - sym__external_open_brace, - ACTIONS(1057), 1, + ACTIONS(3209), 1, sym_dot_dot_i, - STATE(370), 1, - sym__open_brace, - STATE(1057), 1, - sym__open_parenthesis, - STATE(1606), 1, - sym_string, - STATE(1618), 1, + ACTIONS(3211), 1, + sym__newline, + STATE(1121), 1, + aux_sym_function_definition_repeat1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(1629), 1, - sym__float_literal, - STATE(2054), 1, - sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1055), 2, + ACTIONS(3207), 2, sym_identifier, sym_dots, - ACTIONS(551), 5, - anon_sym_NA, - anon_sym_NA_integer_, - anon_sym_NA_real_, - anon_sym_NA_complex_, - anon_sym_NA_character_, - ACTIONS(3181), 8, - sym_return, - sym_next, - sym_break, - sym_true, - sym_false, - sym_null, - sym_inf, - sym_nan, - STATE(1461), 19, - sym_function_definition, - sym_if_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_braced_expression, - sym_parenthesized_expression, - sym_call, - sym_subset, - sym_subset2, - sym_unary_operator, - sym_binary_operator, - sym_extract_operator, - sym_namespace_operator, - sym_integer, - sym_complex, - sym_float, - sym_na, - sym__expression, - [85213] = 13, + STATE(1698), 2, + sym_string, + sym__string_or_identifier_or_dots_or_dot_dot_i, + ACTIONS(369), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(365), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [85588] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2643), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(2655), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(3185), 1, + ACTIONS(3215), 1, sym_dot_dot_i, - ACTIONS(3187), 1, + ACTIONS(3217), 1, sym__newline, STATE(1137), 1, aux_sym_function_definition_repeat1, @@ -102514,13 +102827,13 @@ static const uint16_t ts_small_parse_table[] = { sym__single_quoted_string, STATE(1589), 1, sym__double_quoted_string, - ACTIONS(3183), 2, + ACTIONS(3213), 2, sym_identifier, sym_dots, - STATE(1671), 2, + STATE(1666), 2, sym_string, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(367), 9, + ACTIONS(339), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -102530,12 +102843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(363), 26, + ACTIONS(335), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -102557,32 +102870,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [85288] = 13, + [85663] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2439), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(2451), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(3191), 1, + ACTIONS(3221), 1, sym_dot_dot_i, - ACTIONS(3193), 1, + ACTIONS(3223), 1, sym__newline, - STATE(1121), 1, + STATE(1129), 1, + aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1627), 1, + sym__single_quoted_string, + ACTIONS(3219), 2, + sym_identifier, + sym_dots, + STATE(1757), 2, + sym_string, + sym__string_or_identifier_or_dots_or_dot_dot_i, + ACTIONS(369), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(365), 25, + sym__external_open_parenthesis, + sym__external_close_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [85737] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(413), 1, + anon_sym_SQUOTE, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(425), 1, + sym__raw_string_literal, + ACTIONS(3227), 1, + sym_dot_dot_i, + ACTIONS(3229), 1, + sym__newline, + STATE(1126), 1, aux_sym_function_definition_repeat1, - STATE(1593), 1, + STATE(1605), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1619), 1, sym__double_quoted_string, - ACTIONS(3189), 2, + ACTIONS(3225), 2, sym_identifier, sym_dots, - STATE(1663), 2, + STATE(1780), 2, sym_string, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(345), 9, + ACTIONS(369), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -102592,8 +102966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(341), 26, - sym__external_else, + ACTIONS(365), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -102619,32 +102992,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [85363] = 13, + [85811] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1967), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(1979), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(3197), 1, + ACTIONS(3233), 1, sym_dot_dot_i, - ACTIONS(3199), 1, + ACTIONS(3235), 1, sym__newline, - STATE(1138), 1, + STATE(1157), 1, aux_sym_function_definition_repeat1, - STATE(1583), 1, + STATE(1605), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1619), 1, sym__double_quoted_string, - ACTIONS(3195), 2, + ACTIONS(3231), 2, sym_identifier, sym_dots, - STATE(1684), 2, + STATE(1721), 2, sym_string, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(367), 9, + ACTIONS(339), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -102654,11 +103027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(363), 26, - sym__external_else, + ACTIONS(335), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -102681,32 +103053,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [85438] = 13, + [85885] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2439), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2441), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2451), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(3203), 1, + ACTIONS(3239), 1, sym_dot_dot_i, - ACTIONS(3205), 1, + ACTIONS(3241), 1, sym__newline, - STATE(1136), 1, + STATE(1128), 1, aux_sym_function_definition_repeat1, - STATE(1593), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(3201), 2, + ACTIONS(3237), 2, sym_identifier, sym_dots, - STATE(1682), 2, + STATE(1728), 2, sym_string, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(367), 9, + ACTIONS(369), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -102716,12 +103088,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(363), 26, - sym__external_else, + ACTIONS(365), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -102743,32 +103114,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [85513] = 13, + [85959] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2643), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(2645), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(2655), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(3209), 1, + ACTIONS(3245), 1, sym_dot_dot_i, - ACTIONS(3211), 1, + ACTIONS(3247), 1, sym__newline, - STATE(1118), 1, + STATE(1162), 1, aux_sym_function_definition_repeat1, - STATE(1588), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(3207), 2, + ACTIONS(3243), 2, sym_identifier, sym_dots, - STATE(1656), 2, + STATE(1751), 2, sym_string, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(345), 9, + ACTIONS(339), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -102778,8 +103149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(341), 26, - sym__external_else, + ACTIONS(335), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -102805,32 +103175,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [85588] = 13, + [86033] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1967), 1, + ACTIONS(509), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(1979), 1, + ACTIONS(521), 1, sym__raw_string_literal, - ACTIONS(3215), 1, + ACTIONS(3251), 1, sym_dot_dot_i, - ACTIONS(3217), 1, + ACTIONS(3253), 1, sym__newline, - STATE(1120), 1, + STATE(1152), 1, aux_sym_function_definition_repeat1, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1627), 1, + sym__single_quoted_string, + ACTIONS(3249), 2, + sym_identifier, + sym_dots, + STATE(1736), 2, + sym_string, + sym__string_or_identifier_or_dots_or_dot_dot_i, + ACTIONS(339), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(335), 25, + sym__external_open_parenthesis, + sym__external_close_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [86107] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1333), 1, + anon_sym_SQUOTE, + ACTIONS(1335), 1, + anon_sym_DQUOTE, + ACTIONS(1343), 1, + sym__raw_string_literal, + ACTIONS(3257), 1, + sym_dot_dot_i, STATE(1583), 1, sym__single_quoted_string, - STATE(1584), 1, + STATE(1585), 1, sym__double_quoted_string, - ACTIONS(3213), 2, + ACTIONS(3255), 2, sym_identifier, sym_dots, - STATE(1664), 2, + STATE(1655), 2, sym_string, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(345), 9, + ACTIONS(557), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -102840,7 +103267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(341), 26, + ACTIONS(555), 26, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -102867,32 +103294,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [85663] = 13, + [86176] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(543), 1, + ACTIONS(1667), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1669), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1677), 1, sym__raw_string_literal, - ACTIONS(3221), 1, + ACTIONS(3261), 1, sym_dot_dot_i, - ACTIONS(3223), 1, - sym__newline, - STATE(1125), 1, - aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1599), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1603), 1, sym__double_quoted_string, - ACTIONS(3219), 2, + ACTIONS(3259), 2, sym_identifier, sym_dots, - STATE(1730), 2, + STATE(1689), 2, sym_string, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(345), 9, + ACTIONS(557), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -102902,11 +103325,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(341), 25, + ACTIONS(555), 26, + sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -102928,32 +103352,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [85737] = 13, + [86245] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(543), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(545), 1, + ACTIONS(1807), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1815), 1, sym__raw_string_literal, - ACTIONS(3227), 1, + ACTIONS(3265), 1, sym_dot_dot_i, - ACTIONS(3229), 1, - sym__newline, - STATE(1156), 1, - aux_sym_function_definition_repeat1, - STATE(1618), 1, + STATE(1588), 1, sym__single_quoted_string, - STATE(1621), 1, + STATE(1589), 1, sym__double_quoted_string, - ACTIONS(3225), 2, + ACTIONS(3263), 2, + sym_identifier, + sym_dots, + STATE(1688), 2, + sym_string, + sym__string_or_identifier_or_dots_or_dot_dot_i, + ACTIONS(557), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(555), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_open_bracket, + sym__external_close_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [86314] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_SQUOTE, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(521), 1, + sym__raw_string_literal, + ACTIONS(3269), 1, + sym_dot_dot_i, + STATE(1616), 1, + sym__double_quoted_string, + STATE(1627), 1, + sym__single_quoted_string, + ACTIONS(3267), 2, sym_identifier, sym_dots, - STATE(1762), 2, + STATE(1753), 2, sym_string, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(367), 9, + ACTIONS(557), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -102963,7 +103441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(363), 25, + ACTIONS(555), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -102989,32 +103467,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [85811] = 13, + [86382] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(467), 1, + ACTIONS(413), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(425), 1, sym__raw_string_literal, - ACTIONS(3233), 1, + ACTIONS(3273), 1, sym_dot_dot_i, - ACTIONS(3235), 1, - sym__newline, - STATE(1127), 1, - aux_sym_function_definition_repeat1, - STATE(1633), 1, + STATE(1605), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(1619), 1, sym__double_quoted_string, - ACTIONS(3231), 2, + ACTIONS(3271), 2, sym_identifier, sym_dots, - STATE(1732), 2, + STATE(1770), 2, sym_string, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(345), 9, + ACTIONS(557), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -103024,11 +103498,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(341), 25, + ACTIONS(555), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -103050,32 +103524,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [85885] = 13, + [86450] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(467), 1, + ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(469), 1, + ACTIONS(461), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(471), 1, sym__raw_string_literal, - ACTIONS(3239), 1, + ACTIONS(3277), 1, sym_dot_dot_i, - ACTIONS(3241), 1, - sym__newline, - STATE(1143), 1, - aux_sym_function_definition_repeat1, - STATE(1633), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1634), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(3237), 2, + ACTIONS(3275), 2, sym_identifier, sym_dots, - STATE(1761), 2, + STATE(1760), 2, sym_string, sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(367), 9, + ACTIONS(557), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -103085,7 +103555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(363), 25, + ACTIONS(555), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -103111,32 +103581,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [85959] = 13, + [86518] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(421), 1, + ACTIONS(3279), 1, + sym__newline, + STATE(1136), 1, + aux_sym_function_definition_repeat1, + ACTIONS(679), 11, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + sym_identifier, + sym_dots, + ACTIONS(677), 30, + sym__raw_string_literal, + sym__external_else, + sym__external_open_parenthesis, + sym__external_close_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, anon_sym_SQUOTE, - ACTIONS(423), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, + sym_dot_dot_i, + sym_comma, + [86573] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3282), 1, + sym__newline, + STATE(1137), 1, + aux_sym_function_definition_repeat1, + ACTIONS(679), 11, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + sym_identifier, + sym_dots, + ACTIONS(677), 30, sym__raw_string_literal, - ACTIONS(3245), 1, + sym__external_else, + sym__external_open_parenthesis, + sym__external_open_bracket, + sym__external_close_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_DQUOTE, sym_dot_dot_i, - ACTIONS(3247), 1, + sym_comma, + [86628] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3285), 1, sym__newline, - STATE(1147), 1, + STATE(1138), 1, aux_sym_function_definition_repeat1, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1631), 1, - sym__single_quoted_string, - ACTIONS(3243), 2, - sym_identifier, - sym_dots, - STATE(1717), 2, - sym_string, - sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(367), 9, + ACTIONS(679), 11, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -103146,11 +103698,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(363), 25, + sym_identifier, + sym_dots, + ACTIONS(677), 30, + sym__raw_string_literal, + sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -103171,521 +103727,1006 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - sym_comma, - [86033] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 1, anon_sym_SQUOTE, - ACTIONS(423), 1, anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(3251), 1, sym_dot_dot_i, - ACTIONS(3253), 1, - sym__newline, - STATE(1128), 1, - aux_sym_function_definition_repeat1, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1631), 1, - sym__single_quoted_string, - ACTIONS(3249), 2, - sym_identifier, - sym_dots, - STATE(1760), 2, - sym_string, - sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(345), 9, + sym_comma, + [86683] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3288), 1, anon_sym_EQ, + ACTIONS(3290), 1, + anon_sym_TILDE, + ACTIONS(3292), 1, + anon_sym_PLUS, + ACTIONS(3294), 1, anon_sym_DASH, + ACTIONS(3298), 1, anon_sym_DASH_GT, + ACTIONS(3300), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3302), 1, anon_sym_PIPE, + ACTIONS(3304), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3308), 1, + anon_sym_AMP_AMP, + ACTIONS(3314), 1, anon_sym_STAR, + ACTIONS(3316), 1, + anon_sym_SLASH, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(341), 25, + ACTIONS(3326), 1, + sym__external_else, + ACTIONS(3328), 1, sym__external_open_parenthesis, + ACTIONS(3330), 1, sym__external_open_bracket, - sym__external_close_bracket, + ACTIONS(3332), 1, sym__external_open_bracket2, + STATE(256), 1, + sym__open_bracket2, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(509), 1, + sym__else, + STATE(1678), 1, + sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3318), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3320), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3324), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(71), 3, + sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + [86791] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3288), 1, + anon_sym_EQ, + ACTIONS(3290), 1, + anon_sym_TILDE, + ACTIONS(3292), 1, + anon_sym_PLUS, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3298), 1, + anon_sym_DASH_GT, + ACTIONS(3300), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_AMP, + ACTIONS(3306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3308), 1, + anon_sym_AMP_AMP, + ACTIONS(3314), 1, + anon_sym_STAR, + ACTIONS(3316), 1, anon_sym_SLASH, + ACTIONS(3322), 1, + anon_sym_COLON, + ACTIONS(3328), 1, + sym__external_open_parenthesis, + ACTIONS(3330), 1, + sym__external_open_bracket, + ACTIONS(3332), 1, + sym__external_open_bracket2, + ACTIONS(3334), 1, + sym__external_else, + STATE(256), 1, + sym__open_bracket2, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(522), 1, + sym__else, + STATE(1678), 1, + sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, + ACTIONS(59), 3, + sym__external_close_parenthesis, + anon_sym_QMARK, sym_comma, - [86107] = 11, + ACTIONS(3296), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3312), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [86899] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2643), 1, - anon_sym_SQUOTE, - ACTIONS(2645), 1, - anon_sym_DQUOTE, - ACTIONS(2655), 1, - sym__raw_string_literal, - ACTIONS(3257), 1, - sym_dot_dot_i, - STATE(1588), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - ACTIONS(3255), 2, - sym_identifier, - sym_dots, - STATE(1637), 2, - sym_string, - sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(391), 9, + ACTIONS(3336), 1, anon_sym_EQ, + ACTIONS(3338), 1, + anon_sym_TILDE, + ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, + ACTIONS(3346), 1, anon_sym_DASH_GT, + ACTIONS(3348), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3350), 1, anon_sym_PIPE, + ACTIONS(3352), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, + anon_sym_AMP_AMP, + ACTIONS(3362), 1, anon_sym_STAR, + ACTIONS(3364), 1, + anon_sym_SLASH, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(389), 26, + ACTIONS(3374), 1, sym__external_else, + ACTIONS(3376), 1, sym__external_open_parenthesis, + ACTIONS(3378), 1, sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, + STATE(255), 1, + sym__open_parenthesis, + STATE(264), 1, + sym__open_bracket, + STATE(265), 1, + sym__open_bracket2, + STATE(730), 1, + sym__else, + STATE(1699), 1, + sym_call_arguments, + STATE(1700), 1, + sym_subset_arguments, + STATE(1701), 1, + sym_subset2_arguments, + ACTIONS(3358), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3366), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3368), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3372), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(71), 3, sym__external_close_bracket2, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + [87007] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_EQ, + ACTIONS(3338), 1, + anon_sym_TILDE, + ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, + anon_sym_DASH, + ACTIONS(3346), 1, + anon_sym_DASH_GT, + ACTIONS(3348), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3350), 1, + anon_sym_PIPE, + ACTIONS(3352), 1, + anon_sym_AMP, + ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, + anon_sym_AMP_AMP, + ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, + ACTIONS(3370), 1, + anon_sym_COLON, + ACTIONS(3376), 1, + sym__external_open_parenthesis, + ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, + sym__external_open_bracket2, + ACTIONS(3382), 1, + sym__external_else, + STATE(255), 1, + sym__open_parenthesis, + STATE(264), 1, + sym__open_bracket, + STATE(265), 1, + sym__open_bracket2, + STATE(738), 1, + sym__else, + STATE(1699), 1, + sym_call_arguments, + STATE(1700), 1, + sym_subset_arguments, + STATE(1701), 1, + sym_subset2_arguments, + ACTIONS(3358), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, + ACTIONS(65), 3, + sym__external_close_bracket2, + anon_sym_QMARK, sym_comma, - [86176] = 11, + ACTIONS(3344), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3360), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [87115] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2439), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_DQUOTE, - ACTIONS(2451), 1, - sym__raw_string_literal, - ACTIONS(3261), 1, - sym_dot_dot_i, - STATE(1593), 1, - sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - ACTIONS(3259), 2, - sym_identifier, - sym_dots, - STATE(1707), 2, - sym_string, - sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(391), 9, + ACTIONS(3336), 1, anon_sym_EQ, + ACTIONS(3338), 1, + anon_sym_TILDE, + ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, + ACTIONS(3346), 1, anon_sym_DASH_GT, + ACTIONS(3348), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3350), 1, anon_sym_PIPE, + ACTIONS(3352), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, + anon_sym_AMP_AMP, + ACTIONS(3362), 1, anon_sym_STAR, + ACTIONS(3364), 1, + anon_sym_SLASH, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(389), 26, - sym__external_else, + ACTIONS(3376), 1, sym__external_open_parenthesis, + ACTIONS(3378), 1, sym__external_open_bracket, - sym__external_close_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, + ACTIONS(3384), 1, + sym__external_else, + STATE(255), 1, + sym__open_parenthesis, + STATE(264), 1, + sym__open_bracket, + STATE(265), 1, + sym__open_bracket2, + STATE(740), 1, + sym__else, + STATE(1699), 1, + sym_call_arguments, + STATE(1700), 1, + sym_subset_arguments, + STATE(1701), 1, + sym_subset2_arguments, + ACTIONS(3358), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3366), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3368), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3372), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(59), 3, + sym__external_close_bracket2, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, + ACTIONS(3360), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [87223] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3288), 1, + anon_sym_EQ, + ACTIONS(3290), 1, + anon_sym_TILDE, + ACTIONS(3292), 1, + anon_sym_PLUS, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3298), 1, + anon_sym_DASH_GT, + ACTIONS(3300), 1, anon_sym_DASH_GT_GT, + ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_AMP, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, + ACTIONS(3308), 1, anon_sym_AMP_AMP, + ACTIONS(3314), 1, + anon_sym_STAR, + ACTIONS(3316), 1, + anon_sym_SLASH, + ACTIONS(3322), 1, + anon_sym_COLON, + ACTIONS(3328), 1, + sym__external_open_parenthesis, + ACTIONS(3330), 1, + sym__external_open_bracket, + ACTIONS(3332), 1, + sym__external_open_bracket2, + ACTIONS(3386), 1, + sym__external_else, + STATE(256), 1, + sym__open_bracket2, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(511), 1, + sym__else, + STATE(1678), 1, + sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3318), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3320), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3324), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(71), 3, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3296), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + [87331] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_EQ, + ACTIONS(3338), 1, + anon_sym_TILDE, + ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, + anon_sym_DASH, + ACTIONS(3346), 1, + anon_sym_DASH_GT, + ACTIONS(3348), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3350), 1, + anon_sym_PIPE, + ACTIONS(3352), 1, + anon_sym_AMP, + ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, + anon_sym_AMP_AMP, + ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, + ACTIONS(3370), 1, + anon_sym_COLON, + ACTIONS(3376), 1, + sym__external_open_parenthesis, + ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, + sym__external_open_bracket2, + ACTIONS(3388), 1, + sym__external_else, + STATE(255), 1, + sym__open_parenthesis, + STATE(264), 1, + sym__open_bracket, + STATE(265), 1, + sym__open_bracket2, + STATE(749), 1, + sym__else, + STATE(1699), 1, + sym_call_arguments, + STATE(1700), 1, + sym_subset_arguments, + STATE(1701), 1, + sym_subset2_arguments, + ACTIONS(3358), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, + ACTIONS(9), 3, + sym__external_close_bracket2, + anon_sym_QMARK, sym_comma, - [86245] = 11, + ACTIONS(3344), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3360), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [87439] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1979), 1, - sym__raw_string_literal, - ACTIONS(3265), 1, - sym_dot_dot_i, - STATE(1583), 1, - sym__single_quoted_string, - STATE(1584), 1, - sym__double_quoted_string, - ACTIONS(3263), 2, - sym_identifier, - sym_dots, - STATE(1640), 2, - sym_string, - sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(391), 9, + ACTIONS(3390), 1, anon_sym_EQ, + ACTIONS(3392), 1, + anon_sym_TILDE, + ACTIONS(3394), 1, + anon_sym_PLUS, + ACTIONS(3396), 1, anon_sym_DASH, + ACTIONS(3400), 1, anon_sym_DASH_GT, + ACTIONS(3402), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3404), 1, anon_sym_PIPE, + ACTIONS(3406), 1, anon_sym_AMP, + ACTIONS(3408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3410), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, + anon_sym_STAR, + ACTIONS(3418), 1, + anon_sym_SLASH, + ACTIONS(3424), 1, + anon_sym_COLON, + ACTIONS(3428), 1, + sym__external_else, + ACTIONS(3430), 1, + sym__external_open_parenthesis, + ACTIONS(3432), 1, + sym__external_open_bracket, + ACTIONS(3434), 1, + sym__external_open_bracket2, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, + sym__open_bracket2, + STATE(835), 1, + sym__else, + STATE(1693), 1, + sym_subset2_arguments, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(389), 26, - sym__external_else, - sym__external_open_parenthesis, - sym__external_close_parenthesis, - sym__external_open_bracket, - sym__external_open_bracket2, + ACTIONS(3420), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3422), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3426), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(71), 3, + sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - sym_comma, - [86314] = 11, + [87547] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(543), 1, - anon_sym_SQUOTE, - ACTIONS(545), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - sym__raw_string_literal, - ACTIONS(3269), 1, - sym_dot_dot_i, - STATE(1618), 1, - sym__single_quoted_string, - STATE(1621), 1, - sym__double_quoted_string, - ACTIONS(3267), 2, - sym_identifier, - sym_dots, - STATE(1726), 2, - sym_string, - sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(391), 9, + ACTIONS(3390), 1, anon_sym_EQ, + ACTIONS(3392), 1, + anon_sym_TILDE, + ACTIONS(3394), 1, + anon_sym_PLUS, + ACTIONS(3396), 1, anon_sym_DASH, + ACTIONS(3400), 1, anon_sym_DASH_GT, + ACTIONS(3402), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3404), 1, anon_sym_PIPE, + ACTIONS(3406), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3410), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, anon_sym_STAR, + ACTIONS(3418), 1, + anon_sym_SLASH, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(389), 25, + ACTIONS(3430), 1, sym__external_open_parenthesis, - sym__external_close_parenthesis, + ACTIONS(3432), 1, sym__external_open_bracket, + ACTIONS(3434), 1, sym__external_open_bracket2, + ACTIONS(3436), 1, + sym__external_else, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, + sym__open_bracket2, + STATE(842), 1, + sym__else, + STATE(1693), 1, + sym_subset2_arguments, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3420), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3422), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3426), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(65), 3, + sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - sym_comma, - [86382] = 11, + [87655] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(467), 1, - anon_sym_SQUOTE, - ACTIONS(469), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__raw_string_literal, - ACTIONS(3273), 1, - sym_dot_dot_i, - STATE(1633), 1, - sym__single_quoted_string, - STATE(1634), 1, - sym__double_quoted_string, - ACTIONS(3271), 2, - sym_identifier, - sym_dots, - STATE(1711), 2, - sym_string, - sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(391), 9, + ACTIONS(3390), 1, anon_sym_EQ, + ACTIONS(3392), 1, + anon_sym_TILDE, + ACTIONS(3394), 1, + anon_sym_PLUS, + ACTIONS(3396), 1, anon_sym_DASH, + ACTIONS(3400), 1, anon_sym_DASH_GT, + ACTIONS(3402), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3404), 1, anon_sym_PIPE, + ACTIONS(3406), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3410), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, anon_sym_STAR, + ACTIONS(3418), 1, + anon_sym_SLASH, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(389), 25, + ACTIONS(3430), 1, sym__external_open_parenthesis, + ACTIONS(3432), 1, sym__external_open_bracket, + ACTIONS(3434), 1, sym__external_open_bracket2, - sym__external_close_bracket2, + ACTIONS(3438), 1, + sym__external_else, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, + sym__open_bracket2, + STATE(843), 1, + sym__else, + STATE(1693), 1, + sym_subset2_arguments, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3420), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3422), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3426), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(59), 3, + sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - sym_comma, - [86450] = 11, + [87763] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(421), 1, - anon_sym_SQUOTE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(433), 1, - sym__raw_string_literal, - ACTIONS(3277), 1, - sym_dot_dot_i, - STATE(1604), 1, - sym__double_quoted_string, - STATE(1631), 1, - sym__single_quoted_string, - ACTIONS(3275), 2, - sym_identifier, - sym_dots, - STATE(1722), 2, - sym_string, - sym__string_or_identifier_or_dots_or_dot_dot_i, - ACTIONS(391), 9, + ACTIONS(3390), 1, anon_sym_EQ, + ACTIONS(3392), 1, + anon_sym_TILDE, + ACTIONS(3394), 1, + anon_sym_PLUS, + ACTIONS(3396), 1, anon_sym_DASH, + ACTIONS(3400), 1, anon_sym_DASH_GT, + ACTIONS(3402), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3404), 1, anon_sym_PIPE, + ACTIONS(3406), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3410), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, anon_sym_STAR, + ACTIONS(3418), 1, + anon_sym_SLASH, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(389), 25, + ACTIONS(3430), 1, sym__external_open_parenthesis, + ACTIONS(3432), 1, sym__external_open_bracket, - sym__external_close_bracket, + ACTIONS(3434), 1, sym__external_open_bracket2, + ACTIONS(3440), 1, + sym__external_else, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, + sym__open_bracket2, + STATE(847), 1, + sym__else, + STATE(1693), 1, + sym_subset2_arguments, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3420), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3422), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3426), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(9), 3, + sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - sym_comma, - [86518] = 5, + [87871] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3279), 1, - sym__newline, - STATE(1136), 1, - aux_sym_function_definition_repeat1, - ACTIONS(683), 11, + ACTIONS(3288), 1, anon_sym_EQ, + ACTIONS(3290), 1, + anon_sym_TILDE, + ACTIONS(3292), 1, + anon_sym_PLUS, + ACTIONS(3294), 1, anon_sym_DASH, + ACTIONS(3298), 1, anon_sym_DASH_GT, + ACTIONS(3300), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3302), 1, anon_sym_PIPE, + ACTIONS(3304), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3308), 1, + anon_sym_AMP_AMP, + ACTIONS(3314), 1, anon_sym_STAR, + ACTIONS(3316), 1, + anon_sym_SLASH, + ACTIONS(3322), 1, anon_sym_COLON, - sym_identifier, - sym_dots, - ACTIONS(681), 30, - sym__raw_string_literal, - sym__external_else, + ACTIONS(3328), 1, sym__external_open_parenthesis, + ACTIONS(3330), 1, sym__external_open_bracket, - sym__external_close_bracket, + ACTIONS(3332), 1, sym__external_open_bracket2, + ACTIONS(3442), 1, + sym__external_else, + STATE(256), 1, + sym__open_bracket2, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(536), 1, + sym__else, + STATE(1678), 1, + sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3318), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3320), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3324), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(9), 3, + sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_dot_dot_i, - sym_comma, - [86573] = 5, + [87979] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3282), 1, - sym__newline, - STATE(1137), 1, - aux_sym_function_definition_repeat1, - ACTIONS(683), 11, + ACTIONS(3288), 1, anon_sym_EQ, + ACTIONS(3290), 1, + anon_sym_TILDE, + ACTIONS(3292), 1, + anon_sym_PLUS, + ACTIONS(3294), 1, anon_sym_DASH, + ACTIONS(3298), 1, anon_sym_DASH_GT, + ACTIONS(3300), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3302), 1, anon_sym_PIPE, + ACTIONS(3304), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3308), 1, + anon_sym_AMP_AMP, + ACTIONS(3314), 1, anon_sym_STAR, + ACTIONS(3316), 1, + anon_sym_SLASH, + ACTIONS(3322), 1, anon_sym_COLON, - sym_identifier, - sym_dots, - ACTIONS(681), 30, - sym__raw_string_literal, - sym__external_else, + ACTIONS(3328), 1, sym__external_open_parenthesis, + ACTIONS(3330), 1, sym__external_open_bracket, + ACTIONS(3332), 1, sym__external_open_bracket2, - sym__external_close_bracket2, + ACTIONS(3444), 1, + sym__external_else, + STATE(256), 1, + sym__open_bracket2, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(519), 1, + sym__else, + STATE(1678), 1, + sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3318), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3320), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3324), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(65), 3, + sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_dot_dot_i, - sym_comma, - [86628] = 5, + [88087] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(3446), 1, sym__newline, - STATE(1138), 1, + STATE(1152), 1, aux_sym_function_definition_repeat1, - ACTIONS(683), 11, + ACTIONS(679), 11, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -103697,9 +104738,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, sym_identifier, sym_dots, - ACTIONS(681), 30, + ACTIONS(677), 29, sym__raw_string_literal, - sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -103728,7 +104768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_dot_dot_i, sym_comma, - [86683] = 32, + [88141] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(3288), 1, @@ -103757,28 +104797,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3326), 1, - sym__external_else, ACTIONS(3328), 1, sym__external_open_parenthesis, ACTIONS(3330), 1, sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + ACTIONS(3449), 1, + sym__external_else, + STATE(256), 1, sym__open_bracket2, - STATE(973), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(529), 1, sym__else, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, @@ -103791,8 +104831,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(63), 3, - sym__external_close_bracket2, + ACTIONS(9), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, ACTIONS(3296), 3, @@ -103804,242 +104844,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [86791] = 32, + [88249] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3336), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3346), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3372), 1, - sym__external_else, - ACTIONS(3374), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(277), 1, + ACTIONS(3451), 1, + sym__external_else, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, sym__open_parenthesis, STATE(278), 1, - sym__open_bracket, - STATE(279), 1, sym__open_bracket2, - STATE(560), 1, + STATE(711), 1, sym__else, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(57), 3, + ACTIONS(9), 3, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3342), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3358), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [86899] = 32, + [88357] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - ACTIONS(3380), 1, + ACTIONS(3453), 1, sym__external_else, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(968), 1, + STATE(720), 1, sym__else, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(57), 3, - sym__external_close_bracket2, + ACTIONS(59), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3296), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3312), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87007] = 32, + [88465] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3420), 1, - sym__external_else, - ACTIONS(3422), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, + ACTIONS(3455), 1, + sym__external_else, + STATE(248), 1, sym__open_bracket, - STATE(273), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(838), 1, + STATE(721), 1, sym__else, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(7), 3, - sym__external_close_parenthesis, + ACTIONS(65), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3390), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3406), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87115] = 5, + [88573] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3428), 1, + ACTIONS(3457), 1, sym__newline, - STATE(1143), 1, + STATE(1157), 1, aux_sym_function_definition_repeat1, - ACTIONS(683), 11, + ACTIONS(679), 11, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -104051,12 +105091,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, sym_identifier, sym_dots, - ACTIONS(681), 29, + ACTIONS(677), 29, sym__raw_string_literal, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -104081,7 +105121,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_dot_dot_i, sym_comma, - [87169] = 32, + [88627] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3390), 1, + anon_sym_EQ, + ACTIONS(3392), 1, + anon_sym_TILDE, + ACTIONS(3394), 1, + anon_sym_PLUS, + ACTIONS(3396), 1, + anon_sym_DASH, + ACTIONS(3400), 1, + anon_sym_DASH_GT, + ACTIONS(3402), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3404), 1, + anon_sym_PIPE, + ACTIONS(3406), 1, + anon_sym_AMP, + ACTIONS(3408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3410), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, + anon_sym_STAR, + ACTIONS(3418), 1, + anon_sym_SLASH, + ACTIONS(3424), 1, + anon_sym_COLON, + ACTIONS(3430), 1, + sym__external_open_parenthesis, + ACTIONS(3432), 1, + sym__external_open_bracket, + ACTIONS(3434), 1, + sym__external_open_bracket2, + ACTIONS(3460), 1, + sym__external_else, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, + sym__open_bracket2, + STATE(732), 1, + sym__else, + STATE(1693), 1, + sym_subset2_arguments, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3420), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3422), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3426), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(71), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3398), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3414), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [88735] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(3288), 1, @@ -104116,22 +105232,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - ACTIONS(3431), 1, + ACTIONS(3462), 1, sym__external_else, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(256), 1, sym__open_bracket2, - STATE(622), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(524), 1, sym__else, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, @@ -104144,8 +105260,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(63), 3, - sym__external_close_bracket2, + ACTIONS(65), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, ACTIONS(3296), 3, @@ -104157,166 +105273,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87277] = 32, + [88843] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3288), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3290), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3298), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3300), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - ACTIONS(3433), 1, + ACTIONS(3464), 1, sym__external_else, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(256), 1, sym__open_bracket2, - STATE(844), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(525), 1, sym__else, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(69), 3, + ACTIONS(59), 3, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3390), 3, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3406), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87385] = 32, + [88951] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, ACTIONS(3336), 1, - anon_sym_TILDE, + anon_sym_EQ, ACTIONS(3338), 1, - anon_sym_PLUS, + anon_sym_TILDE, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, + anon_sym_DASH_GT, ACTIONS(3348), 1, - anon_sym_PIPE, + anon_sym_DASH_GT_GT, ACTIONS(3350), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - ACTIONS(3435), 1, + ACTIONS(3466), 1, sym__external_else, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(565), 1, + STATE(871), 1, sym__else, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(63), 3, - sym__external_close_bracket, + ACTIONS(9), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3342), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3358), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87493] = 5, + [89059] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, + ACTIONS(3468), 1, sym__newline, - STATE(1147), 1, + STATE(1162), 1, aux_sym_function_definition_repeat1, - ACTIONS(683), 11, + ACTIONS(679), 11, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -104328,12 +105444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, sym_identifier, sym_dots, - ACTIONS(681), 29, + ACTIONS(677), 29, sym__raw_string_literal, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -104358,1120 +105474,1111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_dot_dot_i, sym_comma, - [87547] = 32, + [89113] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - ACTIONS(3440), 1, + ACTIONS(3471), 1, sym__external_else, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(773), 1, + STATE(880), 1, sym__else, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(7), 3, - sym__external_close_parenthesis, + ACTIONS(59), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3390), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3406), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87655] = 32, + [89221] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - ACTIONS(3442), 1, + ACTIONS(3473), 1, sym__external_else, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(777), 1, + STATE(881), 1, sym__else, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(69), 3, - sym__external_close_parenthesis, + ACTIONS(65), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3390), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3406), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87763] = 32, + [89329] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - ACTIONS(3444), 1, + ACTIONS(3475), 1, sym__external_else, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(778), 1, + STATE(892), 1, sym__else, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(57), 3, - sym__external_close_parenthesis, + ACTIONS(71), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3390), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3406), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87871] = 32, + [89437] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - ACTIONS(3446), 1, - sym__external_else, - STATE(280), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(281), 1, + STATE(264), 1, sym__open_bracket, - STATE(282), 1, + STATE(265), 1, sym__open_bracket2, - STATE(612), 1, - sym__else, - STATE(1653), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1654), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1655), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(7), 3, + ACTIONS(3344), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(223), 4, + sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3296), 3, + ACTIONS(3360), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [89540] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3390), 1, + anon_sym_EQ, + ACTIONS(3392), 1, + anon_sym_TILDE, + ACTIONS(3394), 1, + anon_sym_PLUS, + ACTIONS(3396), 1, + anon_sym_DASH, + ACTIONS(3400), 1, + anon_sym_DASH_GT, + ACTIONS(3402), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3404), 1, + anon_sym_PIPE, + ACTIONS(3406), 1, + anon_sym_AMP, + ACTIONS(3408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3410), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, + anon_sym_STAR, + ACTIONS(3418), 1, + anon_sym_SLASH, + ACTIONS(3424), 1, + anon_sym_COLON, + ACTIONS(3430), 1, + sym__external_open_parenthesis, + ACTIONS(3432), 1, + sym__external_open_bracket, + ACTIONS(3434), 1, + sym__external_open_bracket2, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, + sym__open_bracket2, + STATE(1693), 1, + sym_subset2_arguments, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3420), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3422), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3426), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3312), 4, + ACTIONS(199), 4, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87979] = 32, + [89643] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - ACTIONS(3448), 1, - sym__external_else, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(862), 1, - sym__else, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(63), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3390), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3406), 4, + ACTIONS(239), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [88087] = 32, + [89746] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - ACTIONS(3450), 1, - sym__external_else, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(847), 1, - sym__else, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(57), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3390), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3406), 4, + ACTIONS(235), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [88195] = 32, + [89849] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - ACTIONS(3452), 1, - sym__external_else, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(783), 1, - sym__else, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(63), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3390), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3406), 4, + ACTIONS(231), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [88303] = 32, + [89952] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, ACTIONS(3336), 1, - anon_sym_TILDE, + anon_sym_EQ, ACTIONS(3338), 1, - anon_sym_PLUS, + anon_sym_TILDE, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, + anon_sym_DASH_GT, ACTIONS(3348), 1, - anon_sym_PIPE, + anon_sym_DASH_GT_GT, ACTIONS(3350), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - ACTIONS(3454), 1, - sym__external_else, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(555), 1, - sym__else, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(7), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3342), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3358), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [88411] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - sym__newline, - STATE(1156), 1, - aux_sym_function_definition_repeat1, - ACTIONS(683), 11, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - sym_identifier, - sym_dots, - ACTIONS(681), 29, - sym__raw_string_literal, - sym__external_open_parenthesis, - sym__external_close_parenthesis, - sym__external_open_bracket, - sym__external_open_bracket2, + ACTIONS(227), 4, + sym__external_else, + sym__external_close_bracket2, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + sym_comma, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_dot_dot_i, - sym_comma, - [88465] = 32, + [90055] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - ACTIONS(3459), 1, - sym__external_else, - STATE(280), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(281), 1, + STATE(264), 1, sym__open_bracket, - STATE(282), 1, + STATE(265), 1, sym__open_bracket2, - STATE(616), 1, - sym__else, - STATE(1653), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1654), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1655), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(69), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3296), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3312), 4, + ACTIONS(219), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [88573] = 32, + [90158] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, ACTIONS(3336), 1, - anon_sym_TILDE, + anon_sym_EQ, ACTIONS(3338), 1, - anon_sym_PLUS, + anon_sym_TILDE, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, + anon_sym_DASH_GT, ACTIONS(3348), 1, - anon_sym_PIPE, + anon_sym_DASH_GT_GT, ACTIONS(3350), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - ACTIONS(3461), 1, - sym__external_else, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(908), 1, - sym__else, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(7), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3342), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3358), 4, + ACTIONS(143), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [88681] = 32, + [90261] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - ACTIONS(3463), 1, - sym__external_else, - STATE(280), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(281), 1, + STATE(264), 1, sym__open_bracket, - STATE(282), 1, + STATE(265), 1, sym__open_bracket2, - STATE(617), 1, - sym__else, - STATE(1653), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1654), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1655), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(57), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3296), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3312), 4, + ACTIONS(215), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [88789] = 32, + [90364] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, ACTIONS(3336), 1, - anon_sym_TILDE, + anon_sym_EQ, ACTIONS(3338), 1, - anon_sym_PLUS, + anon_sym_TILDE, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, + anon_sym_DASH_GT, ACTIONS(3348), 1, - anon_sym_PIPE, + anon_sym_DASH_GT_GT, ACTIONS(3350), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - ACTIONS(3465), 1, - sym__external_else, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(912), 1, - sym__else, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(69), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3342), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3358), 4, + ACTIONS(211), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [88897] = 32, + [90467] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, ACTIONS(3336), 1, - anon_sym_TILDE, + anon_sym_EQ, ACTIONS(3338), 1, - anon_sym_PLUS, + anon_sym_TILDE, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, + anon_sym_DASH_GT, ACTIONS(3348), 1, - anon_sym_PIPE, + anon_sym_DASH_GT_GT, ACTIONS(3350), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - ACTIONS(3467), 1, - sym__external_else, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(913), 1, - sym__else, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(57), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3342), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3358), 4, + ACTIONS(195), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89005] = 32, + [90570] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, + ACTIONS(3288), 1, anon_sym_EQ, - ACTIONS(3336), 1, + ACTIONS(3290), 1, anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3298), 1, anon_sym_DASH_GT, - ACTIONS(3346), 1, + ACTIONS(3300), 1, anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - ACTIONS(3469), 1, - sym__external_else, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(918), 1, - sym__else, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(63), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3342), 3, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3358), 4, + ACTIONS(167), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89113] = 32, + [90673] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3288), 1, @@ -105506,22 +106613,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - ACTIONS(3471), 1, - sym__external_else, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(256), 1, sym__open_bracket2, - STATE(963), 1, - sym__else, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, @@ -105534,341 +106637,401 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(7), 3, - sym__external_close_bracket2, + ACTIONS(3296), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(171), 4, + sym__external_else, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3296), 3, + ACTIONS(3312), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [90776] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3322), 1, + anon_sym_COLON, + ACTIONS(3328), 1, + sym__external_open_parenthesis, + ACTIONS(3330), 1, + sym__external_open_bracket, + ACTIONS(3332), 1, + sym__external_open_bracket2, + STATE(256), 1, + sym__open_bracket2, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, + sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3318), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3320), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3324), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(153), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(151), 17, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3312), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89221] = 32, + anon_sym_SLASH, + sym_comma, + [90851] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, ACTIONS(3336), 1, - anon_sym_TILDE, + anon_sym_EQ, ACTIONS(3338), 1, - anon_sym_PLUS, + anon_sym_TILDE, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, + anon_sym_DASH_GT, ACTIONS(3348), 1, - anon_sym_PIPE, + anon_sym_DASH_GT_GT, ACTIONS(3350), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - ACTIONS(3473), 1, - sym__external_else, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(559), 1, - sym__else, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(69), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3342), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3358), 4, + ACTIONS(191), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89329] = 32, + [90954] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - ACTIONS(3475), 1, - sym__external_else, - STATE(280), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(281), 1, + STATE(264), 1, sym__open_bracket, - STATE(282), 1, + STATE(265), 1, sym__open_bracket2, - STATE(967), 1, - sym__else, - STATE(1653), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1654), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1655), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(69), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3296), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3312), 4, + ACTIONS(187), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89437] = 26, + [91057] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(3336), 1, + anon_sym_EQ, ACTIONS(3338), 1, - anon_sym_PLUS, + anon_sym_TILDE, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, + ACTIONS(3346), 1, + anon_sym_DASH_GT, ACTIONS(3348), 1, - anon_sym_PIPE, + anon_sym_DASH_GT_GT, ACTIONS(3350), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(149), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3356), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3358), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(147), 9, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(183), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, sym_comma, - [89532] = 30, + ACTIONS(3360), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [91160] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(245), 4, + ACTIONS(179), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89635] = 14, + [91263] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3374), 1, + ACTIONS(3322), 1, + anon_sym_COLON, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3364), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(235), 9, + ACTIONS(153), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -105877,10 +107040,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - anon_sym_COLON, - ACTIONS(237), 19, + ACTIONS(151), 19, sym__external_else, - sym__external_close_bracket, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -105898,80 +107060,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [89706] = 30, + [91336] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(280), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(281), 1, + STATE(264), 1, sym__open_bracket, - STATE(282), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1653), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1654), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1655), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3296), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(191), 4, + ACTIONS(175), 4, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3312), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89809] = 30, + [91439] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3288), 1, @@ -106006,18 +107168,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, @@ -106034,9 +107196,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(195), 4, + ACTIONS(175), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, ACTIONS(3312), 4, @@ -106044,7 +107206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89912] = 30, + [91542] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3288), 1, @@ -106079,18 +107241,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, @@ -106107,289 +107269,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(199), 4, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3312), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [90015] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3382), 1, - anon_sym_EQ, - ACTIONS(3384), 1, - anon_sym_TILDE, - ACTIONS(3386), 1, - anon_sym_PLUS, - ACTIONS(3388), 1, - anon_sym_DASH, - ACTIONS(3392), 1, - anon_sym_DASH_GT, - ACTIONS(3394), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, - anon_sym_PIPE, - ACTIONS(3398), 1, - anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, - anon_sym_AMP_AMP, - ACTIONS(3408), 1, - anon_sym_STAR, - ACTIONS(3410), 1, - anon_sym_SLASH, - ACTIONS(3416), 1, - anon_sym_COLON, - ACTIONS(3422), 1, - sym__external_open_parenthesis, - ACTIONS(3424), 1, - sym__external_open_bracket, - ACTIONS(3426), 1, - sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, - sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, - sym_subset2_arguments, - ACTIONS(3404), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3412), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3414), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3418), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3390), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(147), 4, + ACTIONS(179), 4, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90118] = 30, + [91645] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(280), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(281), 1, + STATE(264), 1, sym__open_bracket, - STATE(282), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1653), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1654), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1655), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3296), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(203), 4, + ACTIONS(171), 4, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3312), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [90221] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3422), 1, - sym__external_open_parenthesis, - ACTIONS(3424), 1, - sym__external_open_bracket, - ACTIONS(3426), 1, - sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, - sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, - sym_subset2_arguments, - ACTIONS(3412), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3418), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(165), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 19, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [90292] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3386), 1, - anon_sym_PLUS, - ACTIONS(3388), 1, - anon_sym_DASH, - ACTIONS(3396), 1, - anon_sym_PIPE, - ACTIONS(3398), 1, - anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, - anon_sym_AMP_AMP, - ACTIONS(3408), 1, - anon_sym_STAR, - ACTIONS(3410), 1, - anon_sym_SLASH, - ACTIONS(3416), 1, - anon_sym_COLON, - ACTIONS(3422), 1, - sym__external_open_parenthesis, - ACTIONS(3424), 1, - sym__external_open_bracket, - ACTIONS(3426), 1, - sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, - sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, - sym_subset2_arguments, - ACTIONS(149), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3404), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3412), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3414), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3418), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3406), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(147), 9, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [90387] = 30, + [91748] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3288), 1, @@ -106424,18 +107387,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, @@ -106452,9 +107415,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(207), 4, + ACTIONS(183), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, ACTIONS(3312), 4, @@ -106462,145 +107425,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90490] = 30, + [91851] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(280), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(281), 1, + STATE(264), 1, sym__open_bracket, - STATE(282), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1653), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1654), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1655), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3296), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(211), 4, + ACTIONS(167), 4, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3312), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90593] = 22, + [91954] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, - anon_sym_PLUS, - ACTIONS(3388), 1, - anon_sym_DASH, - ACTIONS(3408), 1, - anon_sym_STAR, - ACTIONS(3410), 1, - anon_sym_SLASH, - ACTIONS(3416), 1, - anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(149), 4, + ACTIONS(165), 9, anon_sym_EQ, + anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3406), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 19, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(147), 11, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [92025] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3370), 1, + anon_sym_COLON, + ACTIONS(3376), 1, + sym__external_open_parenthesis, + ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, + sym__external_open_bracket2, + STATE(255), 1, + sym__open_parenthesis, + STATE(264), 1, + sym__open_bracket, + STATE(265), 1, + sym__open_bracket2, + STATE(1699), 1, + sym_call_arguments, + STATE(1700), 1, + sym_subset_arguments, + STATE(1701), 1, + sym_subset2_arguments, + ACTIONS(3366), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3372), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(165), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 19, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [90680] = 30, + [92098] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3288), 1, @@ -106635,18 +107648,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, @@ -106663,9 +107676,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(215), 4, + ACTIONS(187), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, ACTIONS(3312), 4, @@ -106673,80 +107686,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90783] = 30, + [92201] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3376), 1, + sym__external_open_parenthesis, + ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, + sym__external_open_bracket2, + STATE(255), 1, + sym__open_parenthesis, + STATE(264), 1, + sym__open_bracket, + STATE(265), 1, + sym__open_bracket2, + STATE(1699), 1, + sym_call_arguments, + STATE(1700), 1, + sym_subset_arguments, + STATE(1701), 1, + sym_subset2_arguments, + ACTIONS(3366), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3372), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(165), 9, anon_sym_EQ, - ACTIONS(3290), 1, - anon_sym_TILDE, - ACTIONS(3292), 1, - anon_sym_PLUS, - ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3298), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3306), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 19, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, - anon_sym_STAR, - ACTIONS(3316), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SLASH, - ACTIONS(3322), 1, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [92272] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(280), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(281), 1, + STATE(264), 1, sym__open_bracket, - STATE(282), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1653), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1654), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1655), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3310), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3296), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(219), 4, + ACTIONS(165), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 17, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, - sym_comma, - ACTIONS(3312), 4, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90886] = 30, + anon_sym_SLASH, + sym_comma, + [92347] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3288), 1, @@ -106781,18 +107837,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, @@ -106809,9 +107865,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(145), 4, + ACTIONS(191), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, ACTIONS(3312), 4, @@ -106819,64 +107875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90989] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3422), 1, - sym__external_open_parenthesis, - ACTIONS(3424), 1, - sym__external_open_bracket, - ACTIONS(3426), 1, - sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, - sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, - sym_subset2_arguments, - ACTIONS(3412), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3418), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(149), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(147), 19, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [91060] = 30, + [92450] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3288), 1, @@ -106911,18 +107910,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, @@ -106939,9 +107938,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(223), 4, + ACTIONS(195), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, ACTIONS(3312), 4, @@ -106949,7 +107948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91163] = 30, + [92553] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3288), 1, @@ -106984,18 +107983,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, @@ -107012,9 +108011,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(227), 4, + ACTIONS(211), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, ACTIONS(3312), 4, @@ -107022,80 +108021,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91266] = 30, + [92656] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, - anon_sym_EQ, - ACTIONS(3384), 1, - anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3392), 1, - anon_sym_DASH_GT, - ACTIONS(3394), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, - anon_sym_PIPE, - ACTIONS(3398), 1, - anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, - anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(165), 6, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 15, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(163), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3406), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91369] = 30, + sym_comma, + [92739] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3288), 1, @@ -107130,18 +108119,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, @@ -107158,9 +108147,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(233), 4, + ACTIONS(215), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, ACTIONS(3312), 4, @@ -107168,225 +108157,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91472] = 29, + [92842] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, - anon_sym_EQ, - ACTIONS(3384), 1, - anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3392), 1, - anon_sym_DASH_GT, - ACTIONS(3394), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, - anon_sym_PIPE, - ACTIONS(3398), 1, - anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, - anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3406), 4, + ACTIONS(165), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 7, + ACTIONS(163), 11, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_comma, - [91573] = 30, + [92929] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, + ACTIONS(3288), 1, anon_sym_EQ, - ACTIONS(3336), 1, + ACTIONS(3290), 1, anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3298), 1, anon_sym_DASH_GT, - ACTIONS(3346), 1, + ACTIONS(3300), 1, anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(187), 4, + ACTIONS(155), 4, sym__external_else, - sym__external_close_bracket, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3358), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91676] = 30, + [93032] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3288), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3290), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3298), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3300), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(151), 4, + ACTIONS(143), 4, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91779] = 30, + [93135] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3288), 1, @@ -107421,18 +108403,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, @@ -107449,9 +108431,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(237), 4, + ACTIONS(219), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, ACTIONS(3312), 4, @@ -107459,216 +108441,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91882] = 26, + [93238] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, + ACTIONS(3288), 1, + anon_sym_EQ, + ACTIONS(3290), 1, + anon_sym_TILDE, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3396), 1, + ACTIONS(3298), 1, + anon_sym_DASH_GT, + ACTIONS(3300), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3404), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3406), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 9, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(159), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, sym_comma, - [91977] = 30, + ACTIONS(3312), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [93341] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3288), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3290), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3298), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3300), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(167), 4, + ACTIONS(223), 4, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92080] = 18, + [93444] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3408), 1, - anon_sym_STAR, - ACTIONS(3410), 1, - anon_sym_SLASH, - ACTIONS(3416), 1, - anon_sym_COLON, - ACTIONS(3422), 1, - sym__external_open_parenthesis, - ACTIONS(3424), 1, - sym__external_open_bracket, - ACTIONS(3426), 1, - sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, - sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, - sym_subset2_arguments, - ACTIONS(3412), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3414), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3418), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(153), 7, + ACTIONS(3288), 1, anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 16, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, + ACTIONS(3290), 1, anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - sym_comma, - [92159] = 26, - ACTIONS(3), 1, - sym_comment, ACTIONS(3292), 1, anon_sym_PLUS, ACTIONS(3294), 1, anon_sym_DASH, + ACTIONS(3298), 1, + anon_sym_DASH_GT, + ACTIONS(3300), 1, + anon_sym_DASH_GT_GT, ACTIONS(3302), 1, anon_sym_PIPE, ACTIONS(3304), 1, @@ -107689,21 +108622,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(235), 2, - anon_sym_EQ, - anon_sym_DASH_GT, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, @@ -107716,174 +108646,173 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, + ACTIONS(3296), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(227), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(237), 9, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [92254] = 30, + [93547] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3288), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3290), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3298), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3300), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(151), 4, + ACTIONS(231), 4, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92357] = 30, + [93650] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, - anon_sym_EQ, - ACTIONS(3384), 1, - anon_sym_TILDE, - ACTIONS(3386), 1, - anon_sym_PLUS, - ACTIONS(3388), 1, - anon_sym_DASH, - ACTIONS(3392), 1, - anon_sym_DASH_GT, - ACTIONS(3394), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, - anon_sym_PIPE, - ACTIONS(3398), 1, - anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, - anon_sym_AMP_AMP, - ACTIONS(3408), 1, - anon_sym_STAR, - ACTIONS(3410), 1, - anon_sym_SLASH, - ACTIONS(3416), 1, - anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3404), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3412), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(171), 4, + ACTIONS(153), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(151), 19, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, - sym_comma, - ACTIONS(3406), 4, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92460] = 22, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [93721] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(3288), 1, + anon_sym_EQ, + ACTIONS(3290), 1, + anon_sym_TILDE, ACTIONS(3292), 1, anon_sym_PLUS, ACTIONS(3294), 1, anon_sym_DASH, + ACTIONS(3298), 1, + anon_sym_DASH_GT, + ACTIONS(3300), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_AMP, + ACTIONS(3306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3308), 1, + anon_sym_AMP_AMP, ACTIONS(3314), 1, anon_sym_STAR, ACTIONS(3316), 1, @@ -107896,18 +108825,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, @@ -107920,98 +108849,94 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, + ACTIONS(3296), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, ACTIONS(235), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(237), 11, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_comma, - [92547] = 26, + [93824] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, + ACTIONS(3288), 1, + anon_sym_EQ, + ACTIONS(3290), 1, + anon_sym_TILDE, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3396), 1, + ACTIONS(3298), 1, + anon_sym_DASH_GT, + ACTIONS(3300), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3404), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3406), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 9, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(239), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, sym_comma, - [92642] = 14, + ACTIONS(3312), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [93927] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(3328), 1, @@ -108020,25 +108945,25 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(235), 9, + ACTIONS(153), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -108048,9 +108973,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(237), 19, + ACTIONS(151), 19, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -108068,781 +108993,682 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [92713] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3408), 1, - anon_sym_STAR, - ACTIONS(3410), 1, - anon_sym_SLASH, - ACTIONS(3416), 1, - anon_sym_COLON, - ACTIONS(3422), 1, - sym__external_open_parenthesis, - ACTIONS(3424), 1, - sym__external_open_bracket, - ACTIONS(3426), 1, - sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, - sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, - sym_subset2_arguments, - ACTIONS(3412), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3414), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3418), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(165), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 16, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - sym_comma, - [92792] = 30, + [93998] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, + ACTIONS(3288), 1, anon_sym_EQ, - ACTIONS(3336), 1, + ACTIONS(3290), 1, anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3298), 1, anon_sym_DASH_GT, - ACTIONS(3346), 1, + ACTIONS(3300), 1, anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(241), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3358), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92895] = 30, + ACTIONS(163), 7, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + sym_comma, + [94099] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, + ACTIONS(3288), 1, anon_sym_EQ, - ACTIONS(3336), 1, + ACTIONS(3290), 1, anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3298), 1, anon_sym_DASH_GT, - ACTIONS(3346), 1, + ACTIONS(3300), 1, anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(191), 4, + ACTIONS(163), 4, sym__external_else, - sym__external_close_bracket, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3358), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92998] = 30, + [94202] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, - ACTIONS(3336), 1, - anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, - ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(195), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3358), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93101] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, - ACTIONS(3336), 1, + ACTIONS(163), 9, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3338), 1, - anon_sym_PLUS, - ACTIONS(3340), 1, - anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, - ACTIONS(3346), 1, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, - anon_sym_PIPE, - ACTIONS(3350), 1, - anon_sym_AMP, - ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, - anon_sym_AMP_AMP, - ACTIONS(3360), 1, + sym_comma, + [94297] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3364), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(165), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 16, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(199), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3358), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93204] = 30, + sym_comma, + [94376] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3288), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3290), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3298), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3300), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(175), 4, + ACTIONS(163), 4, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93307] = 30, + [94479] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, - anon_sym_EQ, - ACTIONS(3384), 1, - anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3392), 1, - anon_sym_DASH_GT, - ACTIONS(3394), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, - anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(179), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3406), 4, + ACTIONS(165), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93410] = 30, + ACTIONS(163), 10, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + sym_comma, + [94570] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, - anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3392), 1, - anon_sym_DASH_GT, - ACTIONS(3394), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(163), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3406), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93513] = 30, + ACTIONS(163), 8, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [94667] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, ACTIONS(3336), 1, - anon_sym_TILDE, + anon_sym_EQ, ACTIONS(3338), 1, - anon_sym_PLUS, + anon_sym_TILDE, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, + anon_sym_DASH_GT, ACTIONS(3348), 1, - anon_sym_PIPE, + anon_sym_DASH_GT_GT, ACTIONS(3350), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(203), 4, + ACTIONS(163), 4, sym__external_else, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3358), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93616] = 30, + [94770] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, - anon_sym_EQ, - ACTIONS(3384), 1, - anon_sym_TILDE, - ACTIONS(3386), 1, - anon_sym_PLUS, - ACTIONS(3388), 1, - anon_sym_DASH, - ACTIONS(3392), 1, - anon_sym_DASH_GT, - ACTIONS(3394), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, - anon_sym_PIPE, - ACTIONS(3398), 1, - anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, - anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(165), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 16, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(183), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3406), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93719] = 27, + sym_comma, + [94849] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3290), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3396), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(165), 2, anon_sym_EQ, anon_sym_DASH_GT, - ACTIONS(3404), 2, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3406), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -108856,58 +109682,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, sym_comma, - [93816] = 24, + [94946] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3398), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3402), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, ACTIONS(165), 3, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_PIPE, - ACTIONS(3406), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -108923,268 +109749,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, sym_comma, - [93907] = 30, + [95037] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, - ACTIONS(3336), 1, - anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, - ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, - anon_sym_PIPE, - ACTIONS(3350), 1, - anon_sym_AMP, - ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, - anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(207), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3358), 4, + ACTIONS(165), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94010] = 30, + ACTIONS(163), 11, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [95124] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, - ACTIONS(3336), 1, - anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3314), 1, + anon_sym_STAR, + ACTIONS(3316), 1, + anon_sym_SLASH, + ACTIONS(3322), 1, + anon_sym_COLON, + ACTIONS(3328), 1, + sym__external_open_parenthesis, + ACTIONS(3330), 1, + sym__external_open_bracket, + ACTIONS(3332), 1, + sym__external_open_bracket2, + STATE(256), 1, + sym__open_bracket2, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, + sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3318), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3320), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3324), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(165), 6, + anon_sym_EQ, anon_sym_DASH_GT, - ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, anon_sym_PIPE, - ACTIONS(3350), 1, anon_sym_AMP, - ACTIONS(3352), 1, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 15, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, - ACTIONS(3362), 1, - anon_sym_SLASH, - ACTIONS(3368), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + sym_comma, + [95207] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3364), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(165), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 17, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(245), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3358), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94113] = 30, + anon_sym_SLASH, + sym_comma, + [95282] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, + ACTIONS(3328), 1, + sym__external_open_parenthesis, + ACTIONS(3330), 1, + sym__external_open_bracket, + ACTIONS(3332), 1, + sym__external_open_bracket2, + STATE(256), 1, + sym__open_bracket2, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, + sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3318), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3324), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(165), 9, anon_sym_EQ, - ACTIONS(3336), 1, - anon_sym_TILDE, - ACTIONS(3338), 1, - anon_sym_PLUS, - ACTIONS(3340), 1, anon_sym_DASH, - ACTIONS(3344), 1, anon_sym_DASH_GT, - ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, anon_sym_PIPE, - ACTIONS(3350), 1, anon_sym_AMP, - ACTIONS(3352), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 19, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, - ACTIONS(3362), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SLASH, - ACTIONS(3368), 1, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [95353] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3364), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(165), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 19, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(147), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3358), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94216] = 14, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [95426] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, + ACTIONS(3292), 1, + anon_sym_PLUS, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3314), 1, + anon_sym_STAR, + ACTIONS(3316), 1, + anon_sym_SLASH, + ACTIONS(3322), 1, + anon_sym_COLON, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3412), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3418), 2, + ACTIONS(3320), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(235), 9, + ACTIONS(153), 6, anon_sym_EQ, - anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(237), 19, + ACTIONS(151), 15, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, @@ -109195,1030 +110113,1026 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [94287] = 22, + [95509] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3338), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3360), 1, + ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_AMP, + ACTIONS(3306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3308), 1, + anon_sym_AMP_AMP, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(147), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(149), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3358), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(147), 11, + ACTIONS(149), 9, sym__external_else, - sym__external_close_bracket, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_comma, - [94374] = 14, + [95604] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3374), 1, + ACTIONS(3292), 1, + anon_sym_PLUS, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3314), 1, + anon_sym_STAR, + ACTIONS(3316), 1, + anon_sym_SLASH, + ACTIONS(3322), 1, + anon_sym_COLON, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3364), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3370), 2, + ACTIONS(3320), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(149), 9, + ACTIONS(153), 4, anon_sym_EQ, - anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(147), 19, + ACTIONS(3312), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(151), 11, sym__external_else, - sym__external_close_bracket, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [94445] = 29, + [95691] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, - ACTIONS(3336), 1, - anon_sym_TILDE, - ACTIONS(3338), 1, - anon_sym_PLUS, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, - ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, - anon_sym_PIPE, ACTIONS(3350), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3358), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 7, + ACTIONS(163), 9, sym__external_else, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, sym_comma, - [94546] = 27, + [95786] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3384), 1, - anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3396), 1, - anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3404), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3406), 4, + ACTIONS(153), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 8, + ACTIONS(151), 10, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, sym_comma, - [94643] = 30, + [95877] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, - ACTIONS(3336), 1, + ACTIONS(3290), 1, anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, - ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(151), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3358), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94746] = 30, + ACTIONS(151), 8, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [95974] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3288), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3290), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3298), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3300), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(233), 4, + ACTIONS(151), 4, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94849] = 26, + [96077] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3338), 1, - anon_sym_PLUS, - ACTIONS(3340), 1, - anon_sym_DASH, - ACTIONS(3348), 1, - anon_sym_PIPE, - ACTIONS(3350), 1, - anon_sym_AMP, - ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, - anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, - sym_subset2_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3364), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3366), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3370), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3358), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 9, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [94944] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3386), 1, - anon_sym_PLUS, - ACTIONS(3388), 1, - anon_sym_DASH, - ACTIONS(3398), 1, - anon_sym_AMP, - ACTIONS(3402), 1, - anon_sym_AMP_AMP, - ACTIONS(3408), 1, - anon_sym_STAR, - ACTIONS(3410), 1, - anon_sym_SLASH, - ACTIONS(3416), 1, - anon_sym_COLON, - ACTIONS(3422), 1, - sym__external_open_parenthesis, - ACTIONS(3424), 1, - sym__external_open_bracket, - ACTIONS(3426), 1, - sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, + STATE(268), 1, sym__open_bracket, - STATE(273), 1, - sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3404), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3412), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 3, + ACTIONS(153), 7, anon_sym_EQ, + anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, - ACTIONS(3406), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 10, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(151), 16, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, sym_comma, - [95035] = 18, + [96156] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3360), 1, + ACTIONS(3292), 1, + anon_sym_PLUS, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_AMP, + ACTIONS(3306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3308), 1, + anon_sym_AMP_AMP, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3364), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3310), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 16, + ACTIONS(3312), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(151), 9, sym__external_else, - sym__external_close_bracket, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, sym_comma, - [95114] = 30, + [96251] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3288), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3290), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3298), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3300), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(187), 4, + ACTIONS(151), 4, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95217] = 30, + [96354] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, + ACTIONS(3288), 1, anon_sym_EQ, - ACTIONS(3336), 1, + ACTIONS(3290), 1, anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3298), 1, anon_sym_DASH_GT, - ACTIONS(3346), 1, + ACTIONS(3300), 1, anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(151), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3358), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95320] = 22, + ACTIONS(151), 7, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + sym_comma, + [96455] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, + ACTIONS(3336), 1, + anon_sym_EQ, + ACTIONS(3338), 1, + anon_sym_TILDE, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3408), 1, + ACTIONS(3346), 1, + anon_sym_DASH_GT, + ACTIONS(3348), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3350), 1, + anon_sym_PIPE, + ACTIONS(3352), 1, + anon_sym_AMP, + ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, + anon_sym_AMP_AMP, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3406), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 11, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(163), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, sym_comma, - [95407] = 27, + ACTIONS(3360), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [96558] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(3336), 1, - anon_sym_TILDE, + anon_sym_EQ, ACTIONS(3338), 1, - anon_sym_PLUS, + anon_sym_TILDE, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, + ACTIONS(3346), 1, + anon_sym_DASH_GT, ACTIONS(3348), 1, - anon_sym_PIPE, + anon_sym_DASH_GT_GT, ACTIONS(3350), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3356), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3358), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 8, + ACTIONS(163), 7, sym__external_else, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, sym_comma, - [95504] = 30, + [96659] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(237), 4, + ACTIONS(159), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95607] = 24, + [96762] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3338), 1, - anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3328), 1, + sym__external_open_parenthesis, + ACTIONS(3330), 1, + sym__external_open_bracket, + ACTIONS(3332), 1, + sym__external_open_bracket2, + STATE(256), 1, + sym__open_bracket2, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, + sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3318), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3324), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(201), 9, + anon_sym_EQ, anon_sym_DASH, - ACTIONS(3350), 1, + anon_sym_DASH_GT, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3354), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(199), 19, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [96833] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3292), 1, + anon_sym_PLUS, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 3, + ACTIONS(201), 4, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_PIPE, - ACTIONS(3358), 4, + anon_sym_AMP, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 10, + ACTIONS(199), 11, sym__external_else, - sym__external_close_bracket, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, @@ -110226,55 +111140,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_comma, - [95698] = 20, + [96920] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3408), 1, + ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_AMP, + ACTIONS(3306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3308), 1, + anon_sym_AMP_AMP, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3412), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(201), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3310), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 15, + ACTIONS(3312), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(199), 9, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, @@ -110283,247 +111210,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + sym_comma, + [97015] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3288), 1, + anon_sym_EQ, + ACTIONS(3290), 1, + anon_sym_TILDE, + ACTIONS(3292), 1, + anon_sym_PLUS, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3298), 1, + anon_sym_DASH_GT, + ACTIONS(3300), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_AMP, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, + ACTIONS(3308), 1, anon_sym_AMP_AMP, + ACTIONS(3314), 1, + anon_sym_STAR, + ACTIONS(3316), 1, + anon_sym_SLASH, + ACTIONS(3322), 1, + anon_sym_COLON, + ACTIONS(3328), 1, + sym__external_open_parenthesis, + ACTIONS(3330), 1, + sym__external_open_bracket, + ACTIONS(3332), 1, + sym__external_open_bracket2, + STATE(256), 1, + sym__open_bracket2, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, + sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3318), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3320), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3324), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3296), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(199), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [95781] = 22, + [97118] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3338), 1, + ACTIONS(3288), 1, + anon_sym_EQ, + ACTIONS(3290), 1, + anon_sym_TILDE, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3360), 1, + ACTIONS(3298), 1, + anon_sym_DASH_GT, + ACTIONS(3300), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_AMP, + ACTIONS(3306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3308), 1, + anon_sym_AMP_AMP, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3358), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 11, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(203), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, sym_comma, - [95868] = 30, + ACTIONS(3312), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [97221] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, + ACTIONS(3288), 1, anon_sym_EQ, - ACTIONS(3336), 1, + ACTIONS(3290), 1, anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3298), 1, anon_sym_DASH_GT, - ACTIONS(3346), 1, + ACTIONS(3300), 1, anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(211), 4, + ACTIONS(207), 4, sym__external_else, - sym__external_close_bracket, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3358), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95971] = 20, + [97324] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(3336), 1, + anon_sym_EQ, ACTIONS(3338), 1, - anon_sym_PLUS, + anon_sym_TILDE, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3360), 1, - anon_sym_STAR, + ACTIONS(3346), 1, + anon_sym_DASH_GT, + ACTIONS(3348), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3350), 1, + anon_sym_PIPE, + ACTIONS(3352), 1, + anon_sym_AMP, + ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, + anon_sym_AMP_AMP, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3364), 2, + ACTIONS(3358), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 15, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(155), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [96054] = 16, + [97427] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3416), 1, - anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 8, + ACTIONS(153), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -110532,9 +111539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(151), 17, + anon_sym_COLON, + ACTIONS(151), 19, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -110549,37 +111557,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [96129] = 16, + [97498] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, ACTIONS(153), 8, @@ -110591,9 +111598,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(151), 17, + ACTIONS(151), 19, sym__external_else, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -110608,101 +111615,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, - sym_comma, - [96204] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3386), 1, - anon_sym_PLUS, - ACTIONS(3388), 1, - anon_sym_DASH, - ACTIONS(3396), 1, - anon_sym_PIPE, - ACTIONS(3398), 1, - anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, - anon_sym_AMP_AMP, - ACTIONS(3408), 1, - anon_sym_STAR, - ACTIONS(3410), 1, - anon_sym_SLASH, - ACTIONS(3416), 1, - anon_sym_COLON, - ACTIONS(3422), 1, - sym__external_open_parenthesis, - ACTIONS(3424), 1, - sym__external_open_bracket, - ACTIONS(3426), 1, - sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, - sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, - sym_subset2_arguments, - ACTIONS(235), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3404), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3412), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3414), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3406), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(237), 9, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, sym_comma, - [96299] = 14, + [97571] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, ACTIONS(153), 9, @@ -110717,7 +111657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(151), 19, sym__external_else, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -110735,34 +111675,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [96370] = 14, + [97642] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, + ACTIONS(3370), 1, + anon_sym_COLON, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3418), 2, + ACTIONS(3368), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, + ACTIONS(153), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -110771,10 +111716,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 19, + ACTIONS(151), 17, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -110789,53 +111733,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [96441] = 15, + [97717] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3368), 1, + ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, + anon_sym_DASH, + ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, + anon_sym_SLASH, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3370), 2, + ACTIONS(3368), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 8, + ACTIONS(153), 6, anon_sym_EQ, - anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - ACTIONS(151), 19, + ACTIONS(151), 15, sym__external_else, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, @@ -110846,66 +111796,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [96514] = 22, + [97800] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3408), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 4, + ACTIONS(153), 4, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3406), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 11, + ACTIONS(151), 11, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, @@ -110915,93 +111862,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_comma, - [96601] = 14, + [97887] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3374), 1, - sym__external_open_parenthesis, + ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, + anon_sym_DASH, + ACTIONS(3352), 1, + anon_sym_AMP, + ACTIONS(3356), 1, + anon_sym_AMP_AMP, + ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, + anon_sym_SLASH, + ACTIONS(3370), 1, + anon_sym_COLON, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3364), 2, + ACTIONS(3358), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3370), 2, + ACTIONS(3368), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, + ACTIONS(153), 3, anon_sym_EQ, - anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 19, + ACTIONS(3360), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(151), 10, sym__external_else, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [96672] = 15, + [97978] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3416), 1, + ACTIONS(3338), 1, + anon_sym_TILDE, + ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, + anon_sym_DASH, + ACTIONS(3350), 1, + anon_sym_PIPE, + ACTIONS(3352), 1, + anon_sym_AMP, + ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, + anon_sym_AMP_AMP, + ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, + anon_sym_SLASH, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3412), 2, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3358), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3418), 2, + ACTIONS(3368), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 8, + ACTIONS(3360), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(151), 8, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [98075] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3328), 1, + sym__external_open_parenthesis, + ACTIONS(3330), 1, + sym__external_open_bracket, + ACTIONS(3332), 1, + sym__external_open_bracket2, + STATE(256), 1, + sym__open_bracket2, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, + sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3318), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3324), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(147), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -111010,7 +112035,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(151), 19, + anon_sym_COLON, + ACTIONS(149), 19, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, @@ -111030,29 +112056,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [96745] = 30, + [98146] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, - anon_sym_EQ, - ACTIONS(3290), 1, - anon_sym_TILDE, ACTIONS(3292), 1, anon_sym_PLUS, ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3298), 1, - anon_sym_DASH_GT, - ACTIONS(3300), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, - anon_sym_PIPE, - ACTIONS(3304), 1, - anon_sym_AMP, - ACTIONS(3306), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, - anon_sym_AMP_AMP, ACTIONS(3314), 1, anon_sym_STAR, ACTIONS(3316), 1, @@ -111065,18 +112075,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, @@ -111089,259 +112099,284 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3296), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(241), 4, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, + ACTIONS(147), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96848] = 30, + ACTIONS(149), 11, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [98233] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, ACTIONS(3336), 1, - anon_sym_TILDE, + anon_sym_EQ, ACTIONS(3338), 1, - anon_sym_PLUS, + anon_sym_TILDE, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, + anon_sym_DASH_GT, ACTIONS(3348), 1, - anon_sym_PIPE, + anon_sym_DASH_GT_GT, ACTIONS(3350), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(155), 4, + ACTIONS(151), 4, sym__external_else, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3358), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96951] = 30, + [98336] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, + ACTIONS(3288), 1, anon_sym_EQ, - ACTIONS(3336), 1, + ACTIONS(3290), 1, anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3298), 1, anon_sym_DASH_GT, - ACTIONS(3346), 1, + ACTIONS(3300), 1, anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3306), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(159), 4, + ACTIONS(149), 4, sym__external_else, - sym__external_close_bracket, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3358), 4, + ACTIONS(3312), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97054] = 22, + [98439] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, + ACTIONS(3288), 1, + anon_sym_EQ, + ACTIONS(3290), 1, + anon_sym_TILDE, + ACTIONS(3292), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(3408), 1, + ACTIONS(3298), 1, + anon_sym_DASH_GT, + ACTIONS(3300), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_AMP, + ACTIONS(3306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3308), 1, + anon_sym_AMP_AMP, + ACTIONS(3314), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3316), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3328), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3330), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, + ACTIONS(3310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3320), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3324), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(235), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3406), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(237), 11, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3296), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(245), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, sym_comma, - [97141] = 14, + ACTIONS(3312), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [98542] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, + ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, + anon_sym_SLASH, + ACTIONS(3370), 1, + anon_sym_COLON, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3418), 2, + ACTIONS(3368), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, + ACTIONS(153), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -111349,11 +112384,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 19, + ACTIONS(151), 16, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -111367,261 +112400,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [97212] = 29, + [98621] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, - ACTIONS(3336), 1, - anon_sym_TILDE, - ACTIONS(3338), 1, - anon_sym_PLUS, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, - ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, - anon_sym_PIPE, ACTIONS(3350), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3358), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 7, + ACTIONS(151), 9, sym__external_else, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, sym_comma, - [97313] = 30, + [98716] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, ACTIONS(3336), 1, - anon_sym_TILDE, + anon_sym_EQ, ACTIONS(3338), 1, - anon_sym_PLUS, + anon_sym_TILDE, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, + anon_sym_DASH_GT, ACTIONS(3348), 1, - anon_sym_PIPE, + anon_sym_DASH_GT_GT, ACTIONS(3350), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(163), 4, + ACTIONS(151), 4, sym__external_else, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3358), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97416] = 26, + [98819] = 29, ACTIONS(3), 1, sym_comment, + ACTIONS(3336), 1, + anon_sym_EQ, ACTIONS(3338), 1, - anon_sym_PLUS, + anon_sym_TILDE, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, + ACTIONS(3346), 1, + anon_sym_DASH_GT, ACTIONS(3348), 1, - anon_sym_PIPE, + anon_sym_DASH_GT_GT, ACTIONS(3350), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3356), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3358), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 9, + ACTIONS(151), 7, sym__external_else, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, - anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, sym_comma, - [97511] = 18, + [98920] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3360), 1, - anon_sym_STAR, - ACTIONS(3362), 1, - anon_sym_SLASH, - ACTIONS(3368), 1, - anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 7, + ACTIONS(201), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -111629,228 +112650,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(163), 16, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - sym_comma, - [97590] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, - ACTIONS(3336), 1, - anon_sym_TILDE, - ACTIONS(3338), 1, - anon_sym_PLUS, - ACTIONS(3340), 1, - anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, - ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, - anon_sym_PIPE, - ACTIONS(3350), 1, - anon_sym_AMP, - ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, - anon_sym_AMP_AMP, - ACTIONS(3360), 1, anon_sym_STAR, - ACTIONS(3362), 1, - anon_sym_SLASH, - ACTIONS(3368), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, - ACTIONS(3376), 1, - sym__external_open_bracket, - ACTIONS(3378), 1, - sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, - sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, - sym_subset2_arguments, - ACTIONS(3356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3364), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3366), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3370), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3342), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(163), 4, + ACTIONS(199), 19, sym__external_else, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, - sym_comma, - ACTIONS(3358), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [97693] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, - ACTIONS(3336), 1, anon_sym_TILDE, - ACTIONS(3338), 1, anon_sym_PLUS, - ACTIONS(3340), 1, - anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, - ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, - anon_sym_PIPE, - ACTIONS(3350), 1, - anon_sym_AMP, - ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, - anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, - ACTIONS(3362), 1, - anon_sym_SLASH, - ACTIONS(3368), 1, - anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, - ACTIONS(3376), 1, - sym__external_open_bracket, - ACTIONS(3378), 1, - sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, - sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, - sym_subset2_arguments, - ACTIONS(3356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3364), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3366), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3370), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3342), 3, anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(183), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3358), 4, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97796] = 24, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [98991] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3338), 1, - anon_sym_PLUS, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3350), 1, - anon_sym_AMP, - ACTIONS(3354), 1, - anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 3, + ACTIONS(201), 4, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_PIPE, - ACTIONS(3358), 4, + anon_sym_AMP, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 10, + ACTIONS(199), 11, sym__external_else, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, @@ -111858,337 +112735,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_comma, - [97887] = 22, + [99078] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3338), 1, - anon_sym_PLUS, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3360), 1, - anon_sym_STAR, + ACTIONS(3350), 1, + anon_sym_PIPE, + ACTIONS(3352), 1, + anon_sym_AMP, + ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, + anon_sym_AMP_AMP, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + ACTIONS(201), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3358), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 11, + ACTIONS(199), 9, sym__external_else, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_comma, - [97974] = 20, + [99173] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(3336), 1, + anon_sym_EQ, ACTIONS(3338), 1, - anon_sym_PLUS, + anon_sym_TILDE, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3360), 1, - anon_sym_STAR, + ACTIONS(3346), 1, + anon_sym_DASH_GT, + ACTIONS(3348), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3350), 1, + anon_sym_PIPE, + ACTIONS(3352), 1, + anon_sym_AMP, + ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, + anon_sym_AMP_AMP, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3364), 2, + ACTIONS(3358), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 15, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(199), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [98057] = 16, + [99276] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3368), 1, + ACTIONS(3336), 1, + anon_sym_EQ, + ACTIONS(3338), 1, + anon_sym_TILDE, + ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, + anon_sym_DASH, + ACTIONS(3346), 1, + anon_sym_DASH_GT, + ACTIONS(3348), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3350), 1, + anon_sym_PIPE, + ACTIONS(3352), 1, + anon_sym_AMP, + ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, + anon_sym_AMP_AMP, + ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, + anon_sym_SLASH, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3364), 2, + ACTIONS(3358), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - ACTIONS(163), 17, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(203), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - sym_comma, - [98132] = 14, + [99379] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3374), 1, - sym__external_open_parenthesis, - ACTIONS(3376), 1, - sym__external_open_bracket, - ACTIONS(3378), 1, - sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, - sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, - sym_subset2_arguments, - ACTIONS(3364), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3370), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(165), 9, + ACTIONS(3336), 1, anon_sym_EQ, + ACTIONS(3338), 1, + anon_sym_TILDE, + ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, + ACTIONS(3346), 1, anon_sym_DASH_GT, + ACTIONS(3348), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3350), 1, anon_sym_PIPE, + ACTIONS(3352), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 19, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [98203] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3364), 2, + ACTIONS(3358), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3370), 2, + ACTIONS(3368), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - ACTIONS(163), 19, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(207), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [98276] = 14, + [99482] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, + ACTIONS(147), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -112198,9 +113062,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(163), 19, + ACTIONS(149), 19, sym__external_else, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -112218,358 +113082,273 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [98347] = 30, + [99553] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, - ACTIONS(3336), 1, - anon_sym_TILDE, - ACTIONS(3338), 1, - anon_sym_PLUS, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, - ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, - anon_sym_PIPE, - ACTIONS(3350), 1, - anon_sym_AMP, - ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, - anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(167), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3358), 4, + ACTIONS(147), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [98450] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, - ACTIONS(3336), 1, + ACTIONS(149), 11, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3338), 1, - anon_sym_PLUS, - ACTIONS(3340), 1, - anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, - ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, - anon_sym_PIPE, - ACTIONS(3350), 1, - anon_sym_AMP, - ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, - anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, - ACTIONS(3362), 1, - anon_sym_SLASH, - ACTIONS(3368), 1, - anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, - ACTIONS(3376), 1, - sym__external_open_bracket, - ACTIONS(3378), 1, - sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, - sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, - sym_subset2_arguments, - ACTIONS(3356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3364), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3366), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3370), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3342), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(171), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_comma, - ACTIONS(3358), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [98553] = 30, + [99640] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, - ACTIONS(3336), 1, - anon_sym_TILDE, - ACTIONS(3338), 1, - anon_sym_PLUS, ACTIONS(3340), 1, + anon_sym_PLUS, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, - ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, - anon_sym_PIPE, ACTIONS(3350), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3354), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, ACTIONS(3362), 1, + anon_sym_STAR, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, ACTIONS(3376), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3378), 1, + sym__external_open_bracket, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(264), 1, sym__open_bracket, - STATE(279), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1645), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1647), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + ACTIONS(147), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(215), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3358), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [98656] = 30, + ACTIONS(149), 9, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [99735] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(271), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(264), 1, sym__open_bracket, - STATE(273), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1643), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1644), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(191), 4, + ACTIONS(149), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [98759] = 30, + [99838] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3338), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3340), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3342), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3346), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3348), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3350), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3352), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3354), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3356), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3362), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3376), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3378), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3380), 1, sym__external_open_bracket2, - STATE(280), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(281), 1, + STATE(264), 1, sym__open_bracket, - STATE(282), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1653), 1, + STATE(1699), 1, sym_call_arguments, - STATE(1654), 1, + STATE(1700), 1, sym_subset_arguments, - STATE(1655), 1, + STATE(1701), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + ACTIONS(3358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3366), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3368), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3372), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3296), 3, + ACTIONS(3344), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, @@ -112578,1402 +113357,1410 @@ static const uint16_t ts_small_parse_table[] = { sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3312), 4, + ACTIONS(3360), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [98862] = 30, + [99941] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3296), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(147), 4, + ACTIONS(239), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3312), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [98965] = 26, + [100044] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 1, + ACTIONS(3390), 1, + anon_sym_EQ, + ACTIONS(3392), 1, + anon_sym_TILDE, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3302), 1, + ACTIONS(3400), 1, + anon_sym_DASH_GT, + ACTIONS(3402), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(149), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3310), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3312), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(147), 9, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(235), 4, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, sym_comma, - [99060] = 30, + ACTIONS(3414), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [100147] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, + STATE(248), 1, sym__open_bracket, - STATE(273), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(155), 4, + ACTIONS(231), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [99163] = 22, + [100250] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 1, + ACTIONS(3390), 1, + anon_sym_EQ, + ACTIONS(3392), 1, + anon_sym_TILDE, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3314), 1, + ACTIONS(3400), 1, + anon_sym_DASH_GT, + ACTIONS(3402), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3404), 1, + anon_sym_PIPE, + ACTIONS(3406), 1, + anon_sym_AMP, + ACTIONS(3408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3410), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(149), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3312), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(147), 11, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(227), 4, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, sym_comma, - [99250] = 30, + ACTIONS(3414), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [100353] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, + STATE(248), 1, sym__open_bracket, - STATE(273), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(159), 4, + ACTIONS(223), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [99353] = 30, + [100456] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3336), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3346), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, sym__open_parenthesis, STATE(278), 1, - sym__open_bracket, - STATE(279), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(175), 4, + ACTIONS(219), 4, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3358), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [99456] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3328), 1, - sym__external_open_parenthesis, - ACTIONS(3330), 1, - sym__external_open_bracket, - ACTIONS(3332), 1, - sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, - sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, - sym_subset2_arguments, - ACTIONS(3318), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3324), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(149), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(147), 19, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [99527] = 30, + [100559] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3336), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3346), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, sym__open_parenthesis, STATE(278), 1, - sym__open_bracket, - STATE(279), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(179), 4, + ACTIONS(143), 4, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3358), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [99630] = 29, + [100662] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3312), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 7, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, + ACTIONS(215), 4, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, sym_comma, - [99731] = 30, + ACTIONS(3414), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [100765] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, + STATE(248), 1, sym__open_bracket, - STATE(273), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(195), 4, + ACTIONS(211), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [99834] = 30, + [100868] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3296), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(151), 4, + ACTIONS(195), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3312), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [99937] = 30, + [100971] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, + STATE(248), 1, sym__open_bracket, - STATE(273), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(199), 4, + ACTIONS(191), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [100040] = 26, + [101074] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 1, + ACTIONS(3390), 1, + anon_sym_EQ, + ACTIONS(3392), 1, + anon_sym_TILDE, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3302), 1, + ACTIONS(3400), 1, + anon_sym_DASH_GT, + ACTIONS(3402), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3310), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3312), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 9, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(187), 4, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, sym_comma, - [100135] = 30, + ACTIONS(3414), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [101177] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3336), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3346), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, sym__open_parenthesis, STATE(278), 1, - sym__open_bracket, - STATE(279), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(219), 4, + ACTIONS(183), 4, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3358), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [100238] = 18, + [101280] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3390), 1, + anon_sym_EQ, + ACTIONS(3392), 1, + anon_sym_TILDE, + ACTIONS(3394), 1, + anon_sym_PLUS, + ACTIONS(3396), 1, + anon_sym_DASH, + ACTIONS(3400), 1, + anon_sym_DASH_GT, + ACTIONS(3402), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3404), 1, + anon_sym_PIPE, + ACTIONS(3406), 1, + anon_sym_AMP, + ACTIONS(3408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3410), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3318), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 16, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(179), 4, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [100317] = 30, + [101383] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, + STATE(248), 1, sym__open_bracket, - STATE(273), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(203), 4, + ACTIONS(175), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [100420] = 30, + [101486] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3296), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(151), 4, + ACTIONS(171), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3312), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [100523] = 30, + [101589] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3336), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3346), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, sym__open_parenthesis, STATE(278), 1, - sym__open_bracket, - STATE(279), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(145), 4, + ACTIONS(167), 4, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3358), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [100626] = 27, + [101692] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3290), 1, - anon_sym_TILDE, - ACTIONS(3292), 1, - anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3430), 1, + sym__external_open_parenthesis, + ACTIONS(3432), 1, + sym__external_open_bracket, + ACTIONS(3434), 1, + sym__external_open_bracket2, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, + sym__open_bracket2, + STATE(1693), 1, + sym_subset2_arguments, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3420), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3426), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(165), 9, + anon_sym_EQ, anon_sym_DASH, - ACTIONS(3302), 1, + anon_sym_DASH_GT, anon_sym_PIPE, - ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3306), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 19, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, - anon_sym_STAR, - ACTIONS(3316), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SLASH, - ACTIONS(3322), 1, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [101763] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3310), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3318), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3312), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 8, + ACTIONS(165), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 19, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [100723] = 20, + [101836] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, - anon_sym_PLUS, - ACTIONS(3388), 1, - anon_sym_DASH, - ACTIONS(3408), 1, - anon_sym_STAR, - ACTIONS(3410), 1, - anon_sym_SLASH, - ACTIONS(3416), 1, - anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, + STATE(248), 1, sym__open_bracket, - STATE(273), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3412), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 6, + ACTIONS(165), 9, anon_sym_EQ, + anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(163), 15, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 19, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, @@ -113984,203 +114771,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [100806] = 24, + [101907] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 1, - anon_sym_PLUS, - ACTIONS(3294), 1, - anon_sym_DASH, - ACTIONS(3304), 1, - anon_sym_AMP, - ACTIONS(3308), 1, - anon_sym_AMP_AMP, - ACTIONS(3314), 1, - anon_sym_STAR, - ACTIONS(3316), 1, - anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3318), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 3, + ACTIONS(165), 8, anon_sym_EQ, + anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, - ACTIONS(3312), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 10, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 17, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, sym_comma, - [100897] = 30, + [101982] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, - anon_sym_EQ, - ACTIONS(3384), 1, - anon_sym_TILDE, - ACTIONS(3386), 1, - anon_sym_PLUS, - ACTIONS(3388), 1, - anon_sym_DASH, - ACTIONS(3392), 1, - anon_sym_DASH_GT, ACTIONS(3394), 1, - anon_sym_DASH_GT_GT, + anon_sym_PLUS, ACTIONS(3396), 1, - anon_sym_PIPE, - ACTIONS(3398), 1, - anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, - anon_sym_AMP_AMP, - ACTIONS(3408), 1, + anon_sym_DASH, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, + STATE(248), 1, sym__open_bracket, - STATE(273), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3404), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3412), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(165), 6, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 15, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(207), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3406), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [101000] = 22, + sym_comma, + [102065] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 4, + ACTIONS(165), 4, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3312), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 11, + ACTIONS(163), 11, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, @@ -114190,248 +114962,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_comma, - [101087] = 30, + [102152] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, - anon_sym_EQ, - ACTIONS(3384), 1, - anon_sym_TILDE, - ACTIONS(3386), 1, - anon_sym_PLUS, - ACTIONS(3388), 1, - anon_sym_DASH, - ACTIONS(3392), 1, - anon_sym_DASH_GT, ACTIONS(3394), 1, - anon_sym_DASH_GT_GT, + anon_sym_PLUS, ACTIONS(3396), 1, - anon_sym_PIPE, - ACTIONS(3398), 1, + anon_sym_DASH, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, + STATE(248), 1, sym__open_bracket, - STATE(273), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(211), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3406), 4, + ACTIONS(165), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [101190] = 20, + ACTIONS(163), 10, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + sym_comma, + [102243] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 1, + ACTIONS(3392), 1, + anon_sym_TILDE, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3314), 1, + ACTIONS(3404), 1, + anon_sym_PIPE, + ACTIONS(3406), 1, + anon_sym_AMP, + ACTIONS(3408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3410), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3318), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3412), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 15, + ACTIONS(3414), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(163), 8, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, sym_comma, - [101273] = 30, + [102340] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3336), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3346), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, sym__open_parenthesis, STATE(278), 1, - sym__open_bracket, - STATE(279), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(223), 4, + ACTIONS(163), 4, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3358), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [101376] = 16, + [102443] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3322), 1, + ACTIONS(3416), 1, + anon_sym_STAR, + ACTIONS(3418), 1, + anon_sym_SLASH, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3318), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 8, + ACTIONS(165), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -114439,10 +115216,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - ACTIONS(151), 17, + ACTIONS(163), 16, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -114456,367 +115232,392 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, sym_comma, - [101451] = 30, + [102522] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, - anon_sym_EQ, - ACTIONS(3384), 1, - anon_sym_TILDE, - ACTIONS(3386), 1, - anon_sym_PLUS, - ACTIONS(3388), 1, - anon_sym_DASH, - ACTIONS(3392), 1, - anon_sym_DASH_GT, ACTIONS(3394), 1, - anon_sym_DASH_GT_GT, + anon_sym_PLUS, ACTIONS(3396), 1, + anon_sym_DASH, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, + STATE(248), 1, sym__open_bracket, - STATE(273), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(215), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3406), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [101554] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3328), 1, - sym__external_open_parenthesis, - ACTIONS(3330), 1, - sym__external_open_bracket, - ACTIONS(3332), 1, - sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, - sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, - sym_subset2_arguments, - ACTIONS(3318), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3324), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(153), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 19, + ACTIONS(163), 9, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, sym_comma, - [101625] = 30, + [102617] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, + STATE(248), 1, sym__open_bracket, - STATE(273), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(219), 4, + ACTIONS(163), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [101728] = 15, + [102720] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3322), 1, + ACTIONS(3390), 1, + anon_sym_EQ, + ACTIONS(3392), 1, + anon_sym_TILDE, + ACTIONS(3394), 1, + anon_sym_PLUS, + ACTIONS(3396), 1, + anon_sym_DASH, + ACTIONS(3400), 1, + anon_sym_DASH_GT, + ACTIONS(3402), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3404), 1, + anon_sym_PIPE, + ACTIONS(3406), 1, + anon_sym_AMP, + ACTIONS(3408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3410), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, + anon_sym_STAR, + ACTIONS(3418), 1, + anon_sym_SLASH, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3318), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3324), 2, + ACTIONS(3422), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 8, + ACTIONS(3414), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(163), 7, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + sym_comma, + [102821] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3390), 1, anon_sym_EQ, + ACTIONS(3392), 1, + anon_sym_TILDE, + ACTIONS(3394), 1, + anon_sym_PLUS, + ACTIONS(3396), 1, anon_sym_DASH, + ACTIONS(3400), 1, anon_sym_DASH_GT, + ACTIONS(3402), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3404), 1, anon_sym_PIPE, + ACTIONS(3406), 1, anon_sym_AMP, + ACTIONS(3408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3410), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, + anon_sym_STAR, + ACTIONS(3418), 1, + anon_sym_SLASH, + ACTIONS(3424), 1, + anon_sym_COLON, + ACTIONS(3430), 1, + sym__external_open_parenthesis, + ACTIONS(3432), 1, + sym__external_open_bracket, + ACTIONS(3434), 1, + sym__external_open_bracket2, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, + sym__open_bracket2, + STATE(1693), 1, + sym_subset2_arguments, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - ACTIONS(151), 19, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3420), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3422), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3426), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(159), 4, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [101801] = 30, + [102924] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3384), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3386), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3388), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3394), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3398), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, + STATE(248), 1, sym__open_bracket, - STATE(273), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(145), 4, + ACTIONS(155), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3406), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [101904] = 14, + [103027] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3318), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, ACTIONS(153), 9, @@ -114831,7 +115632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(151), 19, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -114849,112 +115650,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [101975] = 30, + [103098] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, - ACTIONS(3336), 1, - anon_sym_TILDE, - ACTIONS(3338), 1, - anon_sym_PLUS, - ACTIONS(3340), 1, - anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, - ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, - anon_sym_PIPE, - ACTIONS(3350), 1, - anon_sym_AMP, - ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, - anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, - ACTIONS(3362), 1, - anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, sym__open_parenthesis, STATE(278), 1, - sym__open_bracket, - STATE(279), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3364), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(227), 4, + ACTIONS(153), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(151), 19, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3358), 4, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [102078] = 16, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [103171] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3416), 1, - anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, + STATE(248), 1, sym__open_bracket, - STATE(273), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3412), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, + ACTIONS(153), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -114963,9 +115744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(163), 17, + anon_sym_COLON, + ACTIONS(151), 19, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -114980,840 +115762,879 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [102153] = 30, + [103242] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, - anon_sym_EQ, - ACTIONS(3290), 1, - anon_sym_TILDE, - ACTIONS(3292), 1, - anon_sym_PLUS, - ACTIONS(3294), 1, - anon_sym_DASH, - ACTIONS(3298), 1, - anon_sym_DASH_GT, - ACTIONS(3300), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, - anon_sym_PIPE, - ACTIONS(3304), 1, - anon_sym_AMP, - ACTIONS(3306), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, - anon_sym_AMP_AMP, - ACTIONS(3314), 1, - anon_sym_STAR, - ACTIONS(3316), 1, - anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3318), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3296), 3, + ACTIONS(153), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(151), 17, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(155), 4, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3312), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [102256] = 30, + anon_sym_SLASH, + sym_comma, + [103317] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, - anon_sym_EQ, - ACTIONS(3290), 1, - anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3298), 1, - anon_sym_DASH_GT, - ACTIONS(3300), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, - anon_sym_PIPE, - ACTIONS(3304), 1, - anon_sym_AMP, - ACTIONS(3306), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, - anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3318), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3296), 3, + ACTIONS(153), 6, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(151), 15, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(159), 4, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3312), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [102359] = 30, + sym_comma, + [103400] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, - anon_sym_EQ, - ACTIONS(3384), 1, - anon_sym_TILDE, - ACTIONS(3386), 1, - anon_sym_PLUS, - ACTIONS(3388), 1, - anon_sym_DASH, - ACTIONS(3392), 1, - anon_sym_DASH_GT, ACTIONS(3394), 1, - anon_sym_DASH_GT_GT, + anon_sym_PLUS, ACTIONS(3396), 1, - anon_sym_PIPE, - ACTIONS(3398), 1, - anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, - anon_sym_AMP_AMP, - ACTIONS(3408), 1, + anon_sym_DASH, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, + STATE(248), 1, sym__open_bracket, - STATE(273), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(223), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3406), 4, + ACTIONS(153), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [102462] = 30, + ACTIONS(151), 11, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [103487] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, - anon_sym_EQ, - ACTIONS(3384), 1, - anon_sym_TILDE, - ACTIONS(3386), 1, - anon_sym_PLUS, - ACTIONS(3388), 1, - anon_sym_DASH, - ACTIONS(3392), 1, - anon_sym_DASH_GT, ACTIONS(3394), 1, - anon_sym_DASH_GT_GT, + anon_sym_PLUS, ACTIONS(3396), 1, - anon_sym_PIPE, - ACTIONS(3398), 1, + anon_sym_DASH, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3408), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3410), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3416), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, + STATE(248), 1, sym__open_bracket, - STATE(273), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3404), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3412), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3414), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3418), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3390), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(227), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3406), 4, + ACTIONS(153), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [102565] = 29, + ACTIONS(151), 10, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + sym_comma, + [103578] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, - anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3298), 1, - anon_sym_DASH_GT, - ACTIONS(3300), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3312), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 7, + ACTIONS(151), 8, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, sym_comma, - [102666] = 30, + [103675] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3296), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(163), 4, + ACTIONS(151), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3312), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [102769] = 26, + [103778] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 1, - anon_sym_PLUS, - ACTIONS(3294), 1, - anon_sym_DASH, - ACTIONS(3302), 1, - anon_sym_PIPE, - ACTIONS(3304), 1, - anon_sym_AMP, - ACTIONS(3306), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, - anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3310), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3318), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3312), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 9, + ACTIONS(153), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(151), 16, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, sym_comma, - [102864] = 18, + [103857] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3394), 1, + anon_sym_PLUS, + ACTIONS(3396), 1, + anon_sym_DASH, + ACTIONS(3404), 1, + anon_sym_PIPE, + ACTIONS(3406), 1, + anon_sym_AMP, + ACTIONS(3408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3410), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3318), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3412), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 16, + ACTIONS(3414), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(151), 9, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, sym_comma, - [102943] = 30, + [103952] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3296), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(163), 4, + ACTIONS(151), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3312), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [103046] = 27, + [104055] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3290), 1, + ACTIONS(3390), 1, + anon_sym_EQ, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3302), 1, + ACTIONS(3400), 1, + anon_sym_DASH_GT, + ACTIONS(3402), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3310), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3312), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 8, + ACTIONS(151), 7, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, sym_comma, - [103143] = 24, + [104156] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3304), 1, + ACTIONS(3404), 1, + anon_sym_PIPE, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3308), 1, + ACTIONS(3408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(147), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 3, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - ACTIONS(3312), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 10, + ACTIONS(149), 9, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + sym_comma, + [104251] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3390), 1, + anon_sym_EQ, + ACTIONS(3392), 1, + anon_sym_TILDE, + ACTIONS(3394), 1, + anon_sym_PLUS, + ACTIONS(3396), 1, + anon_sym_DASH, + ACTIONS(3400), 1, + anon_sym_DASH_GT, + ACTIONS(3402), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3404), 1, + anon_sym_PIPE, + ACTIONS(3406), 1, + anon_sym_AMP, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, + ACTIONS(3410), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, + anon_sym_STAR, + ACTIONS(3418), 1, + anon_sym_SLASH, + ACTIONS(3424), 1, + anon_sym_COLON, + ACTIONS(3430), 1, + sym__external_open_parenthesis, + ACTIONS(3432), 1, + sym__external_open_bracket, + ACTIONS(3434), 1, + sym__external_open_bracket2, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, + sym__open_bracket2, + STATE(1693), 1, + sym_subset2_arguments, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3420), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3422), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3426), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3398), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(207), 4, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, sym_comma, - [103234] = 22, + ACTIONS(3414), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [104354] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 4, + ACTIONS(147), 4, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3312), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 11, + ACTIONS(149), 11, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, @@ -115823,102 +116644,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_comma, - [103321] = 20, + [104441] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3314), 1, + ACTIONS(3404), 1, + anon_sym_PIPE, + ACTIONS(3406), 1, + anon_sym_AMP, + ACTIONS(3408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3410), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3318), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(201), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3412), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 15, + ACTIONS(3414), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(199), 9, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, sym_comma, - [103404] = 16, + [104536] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3322), 1, - anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3318), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, + ACTIONS(147), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -115927,9 +116749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(163), 17, + anon_sym_COLON, + ACTIONS(149), 19, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -115944,8 +116767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [103479] = 14, + [104607] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(3328), 1, @@ -115954,18 +116779,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3332), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(256), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(268), 1, + sym__open_bracket, + STATE(269), 1, + sym__open_parenthesis, + STATE(1678), 1, sym_subset2_arguments, + STATE(1705), 1, + sym_subset_arguments, + STATE(1708), 1, + sym_call_arguments, ACTIONS(3318), 2, anon_sym_STAR_STAR, anon_sym_CARET, @@ -115984,7 +116809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(163), 19, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -116002,92 +116827,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [103550] = 15, + [104678] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3322), 1, + ACTIONS(3394), 1, + anon_sym_PLUS, + ACTIONS(3396), 1, + anon_sym_DASH, + ACTIONS(3416), 1, + anon_sym_STAR, + ACTIONS(3418), 1, + anon_sym_SLASH, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3318), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3324), 2, + ACTIONS(3422), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, + ACTIONS(201), 4, anon_sym_EQ, - anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - ACTIONS(163), 19, + ACTIONS(3414), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(199), 11, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [103623] = 14, + [104765] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3318), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, + ACTIONS(201), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -116097,9 +116929,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(163), 19, + ACTIONS(199), 19, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -116117,617 +116949,325 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [103694] = 30, + [104836] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, - sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, - sym_subset2_arguments, - ACTIONS(3310), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3318), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3320), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3324), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3296), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(167), 4, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3312), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [103797] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3288), 1, - anon_sym_EQ, - ACTIONS(3290), 1, - anon_sym_TILDE, - ACTIONS(3292), 1, - anon_sym_PLUS, - ACTIONS(3294), 1, - anon_sym_DASH, - ACTIONS(3298), 1, - anon_sym_DASH_GT, - ACTIONS(3300), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, - anon_sym_PIPE, - ACTIONS(3304), 1, - anon_sym_AMP, - ACTIONS(3306), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, - anon_sym_AMP_AMP, - ACTIONS(3314), 1, - anon_sym_STAR, - ACTIONS(3316), 1, - anon_sym_SLASH, - ACTIONS(3322), 1, - anon_sym_COLON, - ACTIONS(3328), 1, - sym__external_open_parenthesis, - ACTIONS(3330), 1, - sym__external_open_bracket, - ACTIONS(3332), 1, - sym__external_open_bracket2, - STATE(280), 1, + STATE(276), 1, sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3318), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3320), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3324), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3296), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(171), 4, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3312), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [103900] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3382), 1, - anon_sym_EQ, - ACTIONS(3384), 1, - anon_sym_TILDE, - ACTIONS(3386), 1, - anon_sym_PLUS, - ACTIONS(3388), 1, - anon_sym_DASH, - ACTIONS(3392), 1, - anon_sym_DASH_GT, - ACTIONS(3394), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, - anon_sym_PIPE, - ACTIONS(3398), 1, - anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, - anon_sym_AMP_AMP, - ACTIONS(3408), 1, - anon_sym_STAR, - ACTIONS(3410), 1, - anon_sym_SLASH, - ACTIONS(3416), 1, - anon_sym_COLON, - ACTIONS(3422), 1, - sym__external_open_parenthesis, - ACTIONS(3424), 1, - sym__external_open_bracket, - ACTIONS(3426), 1, - sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, - sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, + STATE(1694), 1, sym_subset_arguments, - STATE(1646), 1, - sym_subset2_arguments, - ACTIONS(3404), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3412), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3414), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3418), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3390), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(241), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3406), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [104003] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, - ACTIONS(3336), 1, - anon_sym_TILDE, - ACTIONS(3338), 1, - anon_sym_PLUS, - ACTIONS(3340), 1, - anon_sym_DASH, - ACTIONS(3344), 1, - anon_sym_DASH_GT, - ACTIONS(3346), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, - anon_sym_PIPE, - ACTIONS(3350), 1, - anon_sym_AMP, - ACTIONS(3352), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, - anon_sym_AMP_AMP, - ACTIONS(3360), 1, - anon_sym_STAR, - ACTIONS(3362), 1, - anon_sym_SLASH, - ACTIONS(3368), 1, - anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, - ACTIONS(3376), 1, - sym__external_open_bracket, - ACTIONS(3378), 1, - sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, - STATE(279), 1, - sym__open_bracket2, - STATE(1645), 1, + STATE(1695), 1, sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, - sym_subset2_arguments, - ACTIONS(3356), 2, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(233), 4, + ACTIONS(245), 4, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3358), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [104106] = 29, + [104939] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3384), 1, - anon_sym_TILDE, - ACTIONS(3386), 1, - anon_sym_PLUS, - ACTIONS(3388), 1, - anon_sym_DASH, ACTIONS(3392), 1, - anon_sym_DASH_GT, - ACTIONS(3394), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3396), 1, - anon_sym_PIPE, - ACTIONS(3398), 1, - anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3402), 1, - anon_sym_AMP_AMP, - ACTIONS(3408), 1, - anon_sym_STAR, - ACTIONS(3410), 1, - anon_sym_SLASH, - ACTIONS(3416), 1, - anon_sym_COLON, - ACTIONS(3422), 1, - sym__external_open_parenthesis, - ACTIONS(3424), 1, - sym__external_open_bracket, - ACTIONS(3426), 1, - sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, - sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, - sym_subset2_arguments, - ACTIONS(3404), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3412), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3414), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3418), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3406), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 7, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - sym_comma, - [104207] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ, - ACTIONS(3336), 1, anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3346), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3348), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3376), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3378), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(277), 1, + STATE(248), 1, + sym__open_bracket, + STATE(276), 1, sym__open_parenthesis, STATE(278), 1, - sym__open_bracket, - STATE(279), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3356), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3342), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(237), 4, + ACTIONS(203), 4, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3358), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [104310] = 30, + [105042] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3390), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3392), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3394), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3396), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3400), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3402), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3404), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3406), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3408), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3410), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3416), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3418), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3424), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3430), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3432), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3434), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, + STATE(248), 1, sym__open_bracket, - STATE(282), 1, + STATE(276), 1, + sym__open_parenthesis, + STATE(278), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1693), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + STATE(1694), 1, + sym_subset_arguments, + STATE(1695), 1, + sym_call_arguments, + ACTIONS(3412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3420), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3422), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3426), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3296), 3, + ACTIONS(3398), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(175), 4, + ACTIONS(149), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3312), 4, + ACTIONS(3414), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [104413] = 30, + [105145] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3479), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3481), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3487), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3489), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3495), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3505), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(3310), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3318), 2, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, + ACTIONS(3509), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3296), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(179), 4, - sym__external_else, + ACTIONS(235), 3, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3312), 4, + ACTIONS(3485), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [104516] = 14, + [105247] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, + ACTIONS(3525), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3527), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3529), 1, sym__external_open_bracket2, - STATE(271), 1, - sym__open_parenthesis, - STATE(272), 1, - sym__open_bracket, - STATE(273), 1, + STATE(279), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1646), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3412), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3418), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, + ACTIONS(147), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -116737,9 +117277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(163), 19, - sym__external_else, - sym__external_close_parenthesis, + ACTIONS(149), 18, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -116757,178 +117296,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [104587] = 30, + [105317] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, - anon_sym_EQ, - ACTIONS(3290), 1, - anon_sym_TILDE, - ACTIONS(3292), 1, - anon_sym_PLUS, - ACTIONS(3294), 1, - anon_sym_DASH, - ACTIONS(3298), 1, - anon_sym_DASH_GT, - ACTIONS(3300), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, - anon_sym_PIPE, - ACTIONS(3304), 1, - anon_sym_AMP, - ACTIONS(3306), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, - anon_sym_AMP_AMP, - ACTIONS(3314), 1, - anon_sym_STAR, - ACTIONS(3316), 1, - anon_sym_SLASH, - ACTIONS(3322), 1, - anon_sym_COLON, - ACTIONS(3328), 1, + ACTIONS(3525), 1, sym__external_open_parenthesis, - ACTIONS(3330), 1, + ACTIONS(3527), 1, sym__external_open_bracket, - ACTIONS(3332), 1, + ACTIONS(3529), 1, sym__external_open_bracket2, - STATE(280), 1, - sym__open_parenthesis, - STATE(281), 1, - sym__open_bracket, - STATE(282), 1, - sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, - sym_subset2_arguments, - ACTIONS(3310), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3318), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3320), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3324), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3296), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(183), 4, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3312), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [104690] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3338), 1, + ACTIONS(3531), 1, + anon_sym_TILDE, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3348), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, - ACTIONS(3376), 1, - sym__external_open_bracket, - ACTIONS(3378), 1, - sym__external_open_bracket2, - STATE(277), 1, - sym__open_parenthesis, - STATE(278), 1, - sym__open_bracket, STATE(279), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1648), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(235), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(165), 2, anon_sym_EQ, anon_sym_DASH_GT, - ACTIONS(3356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3364), 2, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3358), 4, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(237), 9, - sym__external_else, + ACTIONS(163), 7, sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, sym_comma, - [104785] = 15, + [105413] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3416), 1, - anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3424), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3426), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(271), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(272), 1, + STATE(261), 1, sym__open_bracket, - STATE(273), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1643), 1, - sym_call_arguments, - STATE(1644), 1, - sym_subset_arguments, - STATE(1646), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3412), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3418), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, + ACTIONS(201), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -116937,8 +117401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(163), 19, - sym__external_else, + anon_sym_COLON, + ACTIONS(199), 18, sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, @@ -116957,431 +117421,432 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [104858] = 22, + [105483] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3338), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3360), 1, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, + anon_sym_PIPE, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, + anon_sym_AMP_AMP, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, - ACTIONS(3376), 1, - sym__external_open_bracket, - ACTIONS(3378), 1, - sym__external_open_bracket2, - STATE(277), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(261), 1, sym__open_bracket, - STATE(279), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3364), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(235), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3358), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(237), 11, - sym__external_else, - sym__external_close_bracket, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(235), 3, + sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_comma, - [104945] = 30, + ACTIONS(3591), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [105585] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3290), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3292), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3294), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3300), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3302), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3304), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3308), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3314), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3316), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3322), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3328), 1, - sym__external_open_parenthesis, - ACTIONS(3330), 1, - sym__external_open_bracket, - ACTIONS(3332), 1, - sym__external_open_bracket2, - STATE(280), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(281), 1, + STATE(261), 1, sym__open_bracket, - STATE(282), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1653), 1, - sym_call_arguments, - STATE(1654), 1, - sym_subset_arguments, - STATE(1655), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3310), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3318), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3320), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3324), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3296), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(231), 3, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(187), 4, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3312), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [105048] = 27, + [105687] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3336), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3338), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3340), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3348), 1, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3350), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3352), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3354), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3360), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3362), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3374), 1, - sym__external_open_parenthesis, - ACTIONS(3376), 1, - sym__external_open_bracket, - ACTIONS(3378), 1, - sym__external_open_bracket2, - STATE(277), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(278), 1, + STATE(261), 1, sym__open_bracket, - STATE(279), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1645), 1, - sym_call_arguments, - STATE(1647), 1, - sym_subset_arguments, - STATE(1648), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3364), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3366), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3370), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3358), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 8, - sym__external_else, - sym__external_close_bracket, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(227), 3, + sym__external_close_parenthesis, anon_sym_QMARK, + sym_comma, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [105145] = 30, + ACTIONS(3591), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [105789] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(211), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3591), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(151), 6, sym__external_close_parenthesis, anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [105247] = 30, + sym_comma, + [105889] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, - anon_sym_EQ, - ACTIONS(3523), 1, - anon_sym_TILDE, ACTIONS(3525), 1, - anon_sym_PLUS, + sym__external_open_parenthesis, ACTIONS(3527), 1, - anon_sym_DASH, - ACTIONS(3531), 1, - anon_sym_DASH_GT, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, ACTIONS(3533), 1, - anon_sym_DASH_GT_GT, + anon_sym_PLUS, ACTIONS(3535), 1, - anon_sym_PIPE, - ACTIONS(3537), 1, - anon_sym_AMP, + anon_sym_DASH, ACTIONS(3539), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + anon_sym_AMP, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, - anon_sym_STAR, ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, anon_sym_SLASH, ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + STATE(279), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1727), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3523), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3553), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3557), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(155), 3, + ACTIONS(165), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + ACTIONS(3547), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(163), 9, sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [105349] = 30, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + sym_comma, + [105979] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(159), 3, - sym__external_close_bracket, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(223), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3529), 3, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [105451] = 32, + [106081] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, @@ -117416,24 +117881,20 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3601), 1, anon_sym_QMARK, - ACTIONS(3567), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(503), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -117446,6 +117907,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, + ACTIONS(3603), 2, + sym__external_close_bracket2, + sym_comma, ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, @@ -117455,210 +117919,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [105557] = 29, + [106185] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3545), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 6, - sym__external_close_bracket, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(219), 3, + sym__external_close_parenthesis, anon_sym_QMARK, + sym_comma, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - sym_comma, - [105657] = 30, + ACTIONS(3591), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [106287] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(163), 3, - sym__external_close_bracket, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(151), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3529), 3, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [105759] = 26, + [106389] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(165), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(153), 2, anon_sym_EQ, anon_sym_DASH_GT, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3545), 4, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 8, - sym__external_close_bracket, + ACTIONS(151), 8, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, @@ -117666,115 +118131,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, sym_comma, - [105853] = 30, + [106483] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(3515), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3519), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, - sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(187), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [105955] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, - sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(261), 1, + sym__open_bracket, + STATE(262), 1, + sym__open_bracket2, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 7, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(153), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -117782,8 +118175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(163), 15, - sym__external_close_bracket, + ACTIONS(151), 15, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -117798,268 +118191,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, sym_comma, - [106033] = 30, + [106561] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(163), 3, - sym__external_close_bracket, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(151), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3529), 3, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [106135] = 27, + [106663] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3535), 1, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3545), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 7, - sym__external_close_bracket, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(143), 3, + sym__external_close_parenthesis, anon_sym_QMARK, + sym_comma, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [106231] = 24, + ACTIONS(3591), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [106765] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3537), 1, + ACTIONS(3581), 1, + anon_sym_PIPE, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3541), 1, + ACTIONS(3585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 3, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - ACTIONS(3545), 4, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 9, - sym__external_close_bracket, + ACTIONS(151), 7, + sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, sym_comma, - [106321] = 22, + [106861] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3547), 1, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3587), 1, + anon_sym_AMP_AMP, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 4, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(153), 3, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 10, - sym__external_close_bracket, + ACTIONS(151), 9, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, @@ -118067,260 +118469,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_comma, - [106407] = 20, + [106951] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 1, - anon_sym_PLUS, - ACTIONS(3527), 1, - anon_sym_DASH, - ACTIONS(3547), 1, - anon_sym_STAR, - ACTIONS(3549), 1, - anon_sym_SLASH, - ACTIONS(3555), 1, - anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, ACTIONS(3561), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, - sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, - sym_subset2_arguments, - ACTIONS(3551), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(165), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 14, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - sym_comma, - [106489] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3477), 1, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(191), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(215), 3, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3485), 3, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [106591] = 30, + [107053] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(195), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(153), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3591), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(151), 10, sym__external_close_parenthesis, anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [106693] = 16, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [107139] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, - anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, ACTIONS(3561), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(262), 1, + ACTIONS(3571), 1, + anon_sym_PLUS, + ACTIONS(3573), 1, + anon_sym_DASH, + ACTIONS(3593), 1, + anon_sym_STAR, + ACTIONS(3595), 1, + anon_sym_SLASH, + ACTIONS(3599), 1, + anon_sym_COLON, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(153), 6, anon_sym_EQ, - anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - ACTIONS(163), 16, - sym__external_close_bracket, + ACTIONS(151), 14, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, @@ -118331,108 +118667,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, sym_comma, - [106767] = 30, + [107221] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3607), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1017), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(199), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [106869] = 14, + [107327] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, - sym__external_open_parenthesis, ACTIONS(3561), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(262), 1, + ACTIONS(3599), 1, + anon_sym_COLON, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(153), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -118441,9 +118783,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 18, - sym__external_close_bracket, + ACTIONS(151), 16, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -118458,39 +118799,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [106939] = 15, + [107401] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, - anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, ACTIONS(3561), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, + ACTIONS(153), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -118499,8 +118836,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(163), 18, - sym__external_close_bracket, + anon_sym_COLON, + ACTIONS(151), 18, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -118518,2695 +118856,2545 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [107011] = 30, + [107471] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(3515), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3519), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(255), 1, + ACTIONS(3599), 1, + anon_sym_COLON, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(183), 3, + ACTIONS(153), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(151), 18, sym__external_close_parenthesis, anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [107113] = 30, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [107543] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3609), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(594), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(203), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [107215] = 30, + [107649] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(3515), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3519), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(207), 3, + ACTIONS(153), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(151), 18, sym__external_close_parenthesis, anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [107317] = 30, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [107719] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(167), 3, - sym__external_close_bracket, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(211), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3529), 3, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [107419] = 30, + [107821] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3611), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(600), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(233), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [107521] = 30, + [107927] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, - anon_sym_EQ, - ACTIONS(3523), 1, - anon_sym_TILDE, ACTIONS(3525), 1, - anon_sym_PLUS, + sym__external_open_parenthesis, ACTIONS(3527), 1, - anon_sym_DASH, - ACTIONS(3531), 1, - anon_sym_DASH_GT, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, ACTIONS(3533), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, - anon_sym_PIPE, - ACTIONS(3537), 1, - anon_sym_AMP, - ACTIONS(3539), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, - anon_sym_AMP_AMP, - ACTIONS(3547), 1, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3535), 1, + anon_sym_DASH, ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, anon_sym_SLASH, ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + STATE(279), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1727), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3523), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3553), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3557), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(171), 3, + ACTIONS(165), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3547), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(163), 10, sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [107623] = 32, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [108013] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3569), 1, + ACTIONS(3613), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(479), 1, + STATE(1008), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [107729] = 30, + [108119] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(237), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(195), 3, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3485), 3, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [107831] = 26, + [108221] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3491), 1, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(235), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(237), 8, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [107925] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, - sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, - ACTIONS(3499), 2, + ACTIONS(3589), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3507), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3509), 2, + ACTIONS(3597), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3513), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(235), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(237), 10, + ACTIONS(191), 3, sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_comma, - [108011] = 30, + ACTIONS(3591), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [108323] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(175), 3, - sym__external_close_bracket, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(187), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3529), 3, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [108113] = 30, + [108425] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(179), 3, - sym__external_close_bracket, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(183), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3529), 3, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [108215] = 14, + [108527] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3525), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3527), 1, sym__external_open_bracket, - ACTIONS(3519), 1, + ACTIONS(3529), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3531), 1, + anon_sym_TILDE, + ACTIONS(3533), 1, + anon_sym_PLUS, + ACTIONS(3535), 1, + anon_sym_DASH, + ACTIONS(3537), 1, + anon_sym_PIPE, + ACTIONS(3539), 1, + anon_sym_AMP, + ACTIONS(3541), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3543), 1, + anon_sym_AMP_AMP, + ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, + anon_sym_SLASH, + ACTIONS(3555), 1, + anon_sym_COLON, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(235), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3545), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(237), 18, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3603), 2, + sym__external_close_bracket, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [108285] = 30, + [108631] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3625), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(520), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(215), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [108387] = 30, + [108737] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, - anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, - anon_sym_DASH_GT, - ACTIONS(3533), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(183), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [108489] = 32, + ACTIONS(163), 7, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [108833] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3571), 1, - sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(480), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(179), 3, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [108595] = 30, + [108935] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(187), 3, - sym__external_close_bracket, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(175), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3529), 3, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [108697] = 31, + [109037] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - STATE(255), 1, + ACTIONS(3627), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(607), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3573), 2, - sym__external_close_parenthesis, - sym_comma, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [108801] = 30, + [109143] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3629), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(624), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(191), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [108903] = 30, + [109249] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3631), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(633), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(195), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109005] = 30, + [109355] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3633), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, - sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(261), 1, + sym__open_bracket, + STATE(262), 1, + sym__open_bracket2, + STATE(635), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(199), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109107] = 30, + [109461] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, - anon_sym_EQ, - ACTIONS(3523), 1, - anon_sym_TILDE, ACTIONS(3525), 1, - anon_sym_PLUS, + sym__external_open_parenthesis, ACTIONS(3527), 1, - anon_sym_DASH, - ACTIONS(3531), 1, - anon_sym_DASH_GT, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, ACTIONS(3533), 1, - anon_sym_DASH_GT_GT, + anon_sym_PLUS, ACTIONS(3535), 1, - anon_sym_PIPE, - ACTIONS(3537), 1, - anon_sym_AMP, - ACTIONS(3539), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, - anon_sym_AMP_AMP, - ACTIONS(3547), 1, - anon_sym_STAR, + anon_sym_DASH, ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, anon_sym_SLASH, ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + STATE(279), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1727), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3523), 2, + anon_sym_DOLLAR, + anon_sym_AT, ACTIONS(3553), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3557), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(203), 3, + ACTIONS(165), 6, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 14, sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109209] = 32, + sym_comma, + [109543] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3575), 1, - sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(639), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(171), 3, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109315] = 30, + [109645] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(207), 3, - sym__external_close_bracket, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(167), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3529), 3, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109417] = 30, + [109747] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3635), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(638), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(211), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109519] = 30, + [109853] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3637), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(640), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(241), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109621] = 30, + [109959] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3639), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(648), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(215), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109723] = 30, + [110065] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3555), 1, + anon_sym_COLON, + STATE(279), 1, + sym__open_bracket2, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, + sym_subset_arguments, + STATE(1767), 1, + sym_subset2_arguments, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3523), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(165), 8, anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3487), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3495), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 16, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(3515), 1, + sym_comma, + [110139] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3525), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3527), 1, sym__external_open_bracket, - ACTIONS(3519), 1, + ACTIONS(3529), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(279), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(245), 3, - sym__external_close_parenthesis, + ACTIONS(165), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 18, + sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109825] = 30, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [110209] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3641), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(532), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(219), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109927] = 30, + [110315] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, - anon_sym_EQ, - ACTIONS(3523), 1, - anon_sym_TILDE, ACTIONS(3525), 1, - anon_sym_PLUS, + sym__external_open_parenthesis, ACTIONS(3527), 1, - anon_sym_DASH, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, ACTIONS(3531), 1, - anon_sym_DASH_GT, + anon_sym_TILDE, ACTIONS(3533), 1, - anon_sym_DASH_GT_GT, + anon_sym_PLUS, ACTIONS(3535), 1, - anon_sym_PIPE, + anon_sym_DASH, ACTIONS(3537), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3539), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3541), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, - anon_sym_STAR, ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, anon_sym_SLASH, ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1727), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3523), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3553), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3557), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(145), 3, + ACTIONS(167), 3, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3529), 3, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [110029] = 30, + [110417] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(147), 3, - sym__external_close_parenthesis, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(171), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3485), 3, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [110131] = 26, + [110519] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3491), 1, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3643), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(652), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(149), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(147), 8, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [110225] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, - sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, - ACTIONS(3499), 2, + ACTIONS(3589), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3507), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3509), 2, + ACTIONS(3597), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3513), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(149), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3501), 4, + ACTIONS(3575), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(147), 10, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_comma, - [110311] = 32, + [110625] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3577), 1, + ACTIONS(3645), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(415), 1, + STATE(658), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [110417] = 30, + [110731] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(223), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3545), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [110519] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, - sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(1771), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, - ACTIONS(3507), 2, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(149), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_AT, + ACTIONS(3589), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(147), 18, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(155), 3, sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [110589] = 30, + [110833] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(227), 3, - sym__external_close_bracket, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(159), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3529), 3, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [110691] = 29, + [110935] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3501), 4, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 6, + ACTIONS(163), 6, sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, sym_comma, - [110791] = 30, + [111035] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, @@ -121241,18 +121429,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -121265,8 +121453,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(151), 3, - sym__external_close_parenthesis, + ACTIONS(175), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, ACTIONS(3485), 3, @@ -121278,111 +121466,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [110893] = 26, + [111137] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(3515), 1, + ACTIONS(3525), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3527), 1, sym__external_open_bracket, - ACTIONS(3519), 1, + ACTIONS(3529), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3555), 1, + anon_sym_COLON, + STATE(279), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 8, - sym__external_close_parenthesis, + ACTIONS(165), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 18, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [110987] = 18, + [111209] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(3515), 1, + ACTIONS(3525), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3527), 1, sym__external_open_bracket, - ACTIONS(3519), 1, + ACTIONS(3529), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(279), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 7, + ACTIONS(165), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -121390,8 +121558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(151), 15, - sym__external_close_parenthesis, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 18, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -121405,232 +121575,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [111065] = 30, + [111279] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3647), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(543), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(233), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3587), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [111167] = 30, + [111385] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, + anon_sym_SLASH, + ACTIONS(3555), 1, + anon_sym_COLON, + STATE(279), 1, + sym__open_bracket2, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, + sym_subset_arguments, + STATE(1767), 1, + sym_subset2_arguments, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3523), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(165), 7, anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3487), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3495), 1, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 15, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(3515), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + sym_comma, + [111463] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3519), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(255), 1, + ACTIONS(3571), 1, + anon_sym_PLUS, + ACTIONS(3573), 1, + anon_sym_DASH, + ACTIONS(3593), 1, + anon_sym_STAR, + ACTIONS(3595), 1, + anon_sym_SLASH, + ACTIONS(3599), 1, + anon_sym_COLON, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(151), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(201), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3591), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(199), 10, sym__external_close_parenthesis, anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [111269] = 30, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [111549] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3479), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3481), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3487), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3489), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3495), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3505), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(3601), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 2, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, + ACTIONS(3509), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(237), 3, + ACTIONS(239), 3, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3587), 3, + ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [111371] = 27, + [111651] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(3477), 1, + anon_sym_EQ, ACTIONS(3479), 1, anon_sym_TILDE, ACTIONS(3481), 1, anon_sym_PLUS, ACTIONS(3483), 1, anon_sym_DASH, + ACTIONS(3487), 1, + anon_sym_DASH_GT, + ACTIONS(3489), 1, + anon_sym_DASH_GT_GT, ACTIONS(3491), 1, anon_sym_PIPE, ACTIONS(3493), 1, @@ -121651,21 +121884,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -121678,612 +121908,452 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, + ACTIONS(231), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3485), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 7, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [111467] = 26, + [111753] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3477), 1, + anon_sym_EQ, + ACTIONS(3479), 1, + anon_sym_TILDE, + ACTIONS(3481), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3593), 1, + ACTIONS(3487), 1, + anon_sym_DASH_GT, + ACTIONS(3489), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3495), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3505), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(235), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3601), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 2, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, + ACTIONS(3509), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3603), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(237), 8, + ACTIONS(227), 3, sym__external_close_bracket2, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [111561] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3583), 1, - anon_sym_PLUS, - ACTIONS(3585), 1, - anon_sym_DASH, - ACTIONS(3605), 1, - anon_sym_STAR, - ACTIONS(3607), 1, - anon_sym_SLASH, - ACTIONS(3613), 1, - anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, - sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, - sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(235), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3603), 4, + ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(237), 10, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_comma, - [111647] = 30, + [111855] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3479), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3481), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3487), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3489), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3495), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3505), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3559), 1, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3561), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3563), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(3543), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3551), 2, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, + ACTIONS(3509), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3557), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(233), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3545), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [111749] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, - sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, - sym_subset2_arguments, - ACTIONS(3609), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3615), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(235), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(237), 18, + ACTIONS(223), 3, sym__external_close_bracket2, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [111819] = 30, + [111957] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3479), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3481), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3487), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3489), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3495), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3505), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3559), 1, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3561), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3563), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(3543), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3551), 2, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, + ACTIONS(3509), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(237), 3, - sym__external_close_bracket, + ACTIONS(219), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3529), 3, + ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [111921] = 26, + [112059] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 1, + ACTIONS(3477), 1, + anon_sym_EQ, + ACTIONS(3479), 1, + anon_sym_TILDE, + ACTIONS(3481), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3535), 1, + ACTIONS(3487), 1, + anon_sym_DASH_GT, + ACTIONS(3489), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3495), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3505), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3559), 1, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3561), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3563), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(235), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3543), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3551), 2, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, + ACTIONS(3509), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3545), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(237), 8, - sym__external_close_bracket, + ACTIONS(143), 3, + sym__external_close_bracket2, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [112015] = 22, + ACTIONS(3501), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [112161] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 1, + ACTIONS(3477), 1, + anon_sym_EQ, + ACTIONS(3479), 1, + anon_sym_TILDE, + ACTIONS(3481), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3547), 1, + ACTIONS(3487), 1, + anon_sym_DASH_GT, + ACTIONS(3489), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3491), 1, + anon_sym_PIPE, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3495), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3497), 1, + anon_sym_AMP_AMP, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3505), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3559), 1, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3561), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3563), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(3543), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3551), 2, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, + ACTIONS(3509), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(235), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3545), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(237), 10, - sym__external_close_bracket, + ACTIONS(215), 3, + sym__external_close_bracket2, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_comma, - [112101] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, - sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, - sym_subset2_arguments, - ACTIONS(3551), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3557), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(235), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(237), 18, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [112171] = 30, + [112263] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3479), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3481), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3487), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3489), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3495), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3505), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(3601), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 2, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, + ACTIONS(3509), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(241), 3, + ACTIONS(211), 3, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3587), 3, + ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [112273] = 30, + [112365] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, @@ -122318,18 +122388,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -122342,8 +122412,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(219), 3, - sym__external_close_parenthesis, + ACTIONS(195), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, ACTIONS(3485), 3, @@ -122355,7 +122425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [112375] = 30, + [112467] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, @@ -122390,18 +122460,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -122414,8 +122484,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(145), 3, - sym__external_close_parenthesis, + ACTIONS(191), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, ACTIONS(3485), 3, @@ -122427,211 +122497,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [112477] = 30, + [112569] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3479), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3481), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3487), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3489), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3495), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3505), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(3601), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 2, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, + ACTIONS(3509), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(245), 3, + ACTIONS(187), 3, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3587), 3, + ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [112579] = 30, + [112671] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3479), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3481), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3487), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3489), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3495), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3505), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(3601), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 2, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, + ACTIONS(3509), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(147), 3, + ACTIONS(183), 3, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3587), 3, + ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [112681] = 26, + [112773] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3593), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + STATE(279), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1747), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(149), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(165), 2, anon_sym_EQ, anon_sym_DASH_GT, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3603), 4, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(147), 8, - sym__external_close_bracket2, + ACTIONS(163), 8, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, @@ -122639,374 +122709,474 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, sym_comma, - [112775] = 22, + [112867] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, + anon_sym_TILDE, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3605), 1, + ACTIONS(3537), 1, + anon_sym_PIPE, + ACTIONS(3539), 1, + anon_sym_AMP, + ACTIONS(3541), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3543), 1, + anon_sym_AMP_AMP, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, + ACTIONS(3615), 1, + anon_sym_EQ, ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1747), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(149), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3603), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(147), 10, - sym__external_close_bracket2, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(163), 3, + sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_comma, - [112861] = 14, + ACTIONS(3547), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [112969] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, + anon_sym_PLUS, + ACTIONS(3573), 1, + anon_sym_DASH, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, + anon_sym_PIPE, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, + anon_sym_AMP_AMP, + ACTIONS(3593), 1, + anon_sym_STAR, + ACTIONS(3595), 1, + anon_sym_SLASH, + ACTIONS(3599), 1, + anon_sym_COLON, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3649), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(401), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(149), 9, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3591), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [113075] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, + anon_sym_PLUS, + ACTIONS(3573), 1, anon_sym_DASH, + ACTIONS(3577), 1, anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, anon_sym_PIPE, + ACTIONS(3583), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, + anon_sym_AMP_AMP, + ACTIONS(3593), 1, anon_sym_STAR, + ACTIONS(3595), 1, + anon_sym_SLASH, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(147), 18, - sym__external_close_bracket2, + ACTIONS(3605), 1, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3651), 1, + sym__external_close_parenthesis, + STATE(260), 1, + sym__open_parenthesis, + STATE(261), 1, + sym__open_bracket, + STATE(262), 1, + sym__open_bracket2, + STATE(910), 1, + sym__close_parenthesis, + STATE(1763), 1, + sym_subset2_arguments, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3559), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [112931] = 29, + [113181] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3653), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(1731), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3603), 4, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 6, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - sym_comma, - [113031] = 30, + [113287] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3479), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3481), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3487), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3489), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3495), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3505), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(3601), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 2, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, + ACTIONS(3509), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(151), 3, + ACTIONS(179), 3, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3587), 3, + ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [113133] = 26, + [113389] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3593), 1, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3655), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(662), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3603), 4, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 8, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [113227] = 18, + [113495] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 1, - anon_sym_STAR, - ACTIONS(3607), 1, - anon_sym_SLASH, - ACTIONS(3613), 1, - anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(265), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 7, + ACTIONS(165), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -123014,8 +123184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(151), 15, - sym__external_close_bracket2, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 18, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -123029,373 +123201,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [113305] = 30, + [113565] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3657), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(516), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(151), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3587), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [113407] = 27, + [113671] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3581), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3593), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, + ACTIONS(3615), 1, + anon_sym_EQ, ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1747), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3603), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 7, - sym__external_close_bracket2, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(175), 3, + sym__external_close_bracket, anon_sym_QMARK, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [113503] = 24, + ACTIONS(3547), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [113773] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, + anon_sym_TILDE, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3595), 1, + ACTIONS(3537), 1, + anon_sym_PIPE, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3599), 1, + ACTIONS(3541), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, + ACTIONS(3615), 1, + anon_sym_EQ, ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1747), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 3, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - ACTIONS(3603), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 9, - sym__external_close_bracket2, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(179), 3, + sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - sym_comma, - [113593] = 22, + ACTIONS(3547), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [113875] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, - anon_sym_PLUS, - ACTIONS(3585), 1, - anon_sym_DASH, - ACTIONS(3605), 1, - anon_sym_STAR, - ACTIONS(3607), 1, - anon_sym_SLASH, - ACTIONS(3613), 1, - anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, - sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, - sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(153), 4, + ACTIONS(3567), 1, anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, + anon_sym_PLUS, + ACTIONS(3573), 1, + anon_sym_DASH, + ACTIONS(3577), 1, anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, anon_sym_PIPE, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3603), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 10, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - sym_comma, - [113679] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3583), 1, - anon_sym_PLUS, - ACTIONS(3585), 1, - anon_sym_DASH, - ACTIONS(3605), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3659), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(827), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3589), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(151), 14, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [113761] = 16, + [113981] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3613), 1, - anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3599), 1, + anon_sym_COLON, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 8, + ACTIONS(165), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -123404,8 +123535,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(151), 16, - sym__external_close_bracket2, + ACTIONS(163), 18, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -123420,148 +123551,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [113835] = 14, + [114053] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, - sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, - sym_subset2_arguments, - ACTIONS(3609), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3615), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(153), 9, - anon_sym_EQ, + ACTIONS(3571), 1, + anon_sym_PLUS, + ACTIONS(3573), 1, anon_sym_DASH, - anon_sym_DASH_GT, + ACTIONS(3581), 1, anon_sym_PIPE, + ACTIONS(3583), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 18, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3593), 1, + anon_sym_STAR, + ACTIONS(3595), 1, anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [113905] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(201), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3589), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - ACTIONS(151), 18, - sym__external_close_bracket2, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3591), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(199), 8, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [113977] = 14, + [114147] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(265), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, + ACTIONS(165), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -123571,8 +123659,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(151), 18, - sym__external_close_bracket2, + ACTIONS(163), 18, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -123590,470 +123678,326 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [114047] = 30, + [114217] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(155), 3, - sym__external_close_bracket2, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(163), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3587), 3, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [114149] = 30, + [114319] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3479), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3481), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3487), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3489), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3495), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3505), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(3601), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 2, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, + ACTIONS(3509), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(159), 3, + ACTIONS(171), 3, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3587), 3, + ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [114251] = 30, + [114421] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, - anon_sym_EQ, - ACTIONS(3523), 1, - anon_sym_TILDE, ACTIONS(3525), 1, - anon_sym_PLUS, + sym__external_open_parenthesis, ACTIONS(3527), 1, - anon_sym_DASH, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, ACTIONS(3531), 1, - anon_sym_DASH_GT, + anon_sym_TILDE, ACTIONS(3533), 1, - anon_sym_DASH_GT_GT, + anon_sym_PLUS, ACTIONS(3535), 1, - anon_sym_PIPE, + anon_sym_DASH, ACTIONS(3537), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3539), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3541), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, - anon_sym_STAR, ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, anon_sym_SLASH, ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1727), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(241), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3545), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [114353] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3579), 1, - anon_sym_EQ, - ACTIONS(3581), 1, - anon_sym_TILDE, - ACTIONS(3583), 1, - anon_sym_PLUS, - ACTIONS(3585), 1, - anon_sym_DASH, - ACTIONS(3589), 1, - anon_sym_DASH_GT, - ACTIONS(3591), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, - anon_sym_PIPE, - ACTIONS(3595), 1, - anon_sym_AMP, - ACTIONS(3597), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, - anon_sym_AMP_AMP, - ACTIONS(3605), 1, - anon_sym_STAR, - ACTIONS(3607), 1, - anon_sym_SLASH, - ACTIONS(3613), 1, - anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, - sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, - sym_subset2_arguments, - ACTIONS(3601), 2, + ACTIONS(3545), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3611), 2, + ACTIONS(3553), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3615), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3603), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(163), 6, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, sym_comma, - [114453] = 30, + [114521] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3479), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3481), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3487), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3489), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3495), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3505), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(3601), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 2, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, + ACTIONS(3509), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(163), 3, + ACTIONS(167), 3, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3587), 3, + ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [114555] = 26, + [114623] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, - anon_sym_PLUS, - ACTIONS(3585), 1, - anon_sym_DASH, - ACTIONS(3593), 1, - anon_sym_PIPE, - ACTIONS(3595), 1, - anon_sym_AMP, - ACTIONS(3597), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, - anon_sym_AMP_AMP, - ACTIONS(3605), 1, - anon_sym_STAR, - ACTIONS(3607), 1, - anon_sym_SLASH, - ACTIONS(3613), 1, - anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3599), 1, + anon_sym_COLON, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3603), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 8, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [114649] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3605), 1, - anon_sym_STAR, - ACTIONS(3607), 1, - anon_sym_SLASH, - ACTIONS(3613), 1, - anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, - sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, - sym_subset2_arguments, - ACTIONS(3609), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3611), 2, + ACTIONS(3597), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3615), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(165), 7, + ACTIONS(165), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -124061,8 +124005,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(163), 15, - sym__external_close_bracket2, + anon_sym_STAR, + ACTIONS(163), 16, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -124076,269 +124021,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_SLASH, sym_comma, - [114727] = 30, + [114697] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(669), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(163), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3587), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [114829] = 27, + [114803] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3581), 1, - anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3573), 1, anon_sym_DASH, ACTIONS(3593), 1, - anon_sym_PIPE, - ACTIONS(3595), 1, - anon_sym_AMP, - ACTIONS(3597), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, - anon_sym_AMP_AMP, - ACTIONS(3605), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3603), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 7, - sym__external_close_bracket2, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(165), 6, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 14, + sym__external_close_parenthesis, anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, sym_comma, - [114925] = 24, + [114885] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3595), 1, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, + anon_sym_PIPE, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3599), 1, + ACTIONS(3585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3663), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(671), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 3, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - ACTIONS(3603), 4, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 9, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - sym_comma, - [115015] = 22, + [114991] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3605), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, ACTIONS(165), 4, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3603), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(163), 10, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, @@ -124348,55 +124297,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_comma, - [115101] = 20, + [115077] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3605), 1, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3587), 1, + anon_sym_AMP_AMP, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 6, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(165), 3, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 14, - sym__external_close_bracket2, + ACTIONS(3591), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(163), 9, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, @@ -124404,1436 +124362,1418 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, sym_comma, - [115183] = 16, + [115167] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3613), 1, - anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, + anon_sym_PLUS, + ACTIONS(3573), 1, + anon_sym_DASH, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, + anon_sym_PIPE, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, + anon_sym_AMP_AMP, + ACTIONS(3593), 1, + anon_sym_STAR, + ACTIONS(3595), 1, + anon_sym_SLASH, + ACTIONS(3599), 1, + anon_sym_COLON, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3665), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(546), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3589), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - ACTIONS(163), 16, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - sym_comma, - [115257] = 30, + [115273] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(223), 3, - sym__external_close_parenthesis, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(159), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3485), 3, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [115359] = 30, + [115375] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3667), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(676), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(227), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [115461] = 14, + [115481] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, + anon_sym_PLUS, + ACTIONS(3573), 1, + anon_sym_DASH, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, + anon_sym_PIPE, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, + anon_sym_AMP_AMP, + ACTIONS(3593), 1, + anon_sym_STAR, + ACTIONS(3595), 1, + anon_sym_SLASH, + ACTIONS(3599), 1, + anon_sym_COLON, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3669), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(678), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3589), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 18, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [115531] = 32, + [115587] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3623), 1, - sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1750), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3603), 2, + sym__external_close_parenthesis, + sym_comma, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [115637] = 32, + [115691] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3625), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(822), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(183), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [115743] = 15, + [115793] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3613), 1, - anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3525), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3527), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3529), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + ACTIONS(3531), 1, + anon_sym_TILDE, + ACTIONS(3533), 1, + anon_sym_PLUS, + ACTIONS(3535), 1, + anon_sym_DASH, + ACTIONS(3537), 1, + anon_sym_PIPE, + ACTIONS(3539), 1, + anon_sym_AMP, + ACTIONS(3541), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3543), 1, + anon_sym_AMP_AMP, + ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, + anon_sym_SLASH, + ACTIONS(3555), 1, + anon_sym_COLON, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1747), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3609), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3615), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3545), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - ACTIONS(163), 18, - sym__external_close_bracket2, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(155), 3, + sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [115815] = 32, + [115895] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3627), 1, + ACTIONS(3671), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(837), 1, + STATE(554), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [115921] = 14, + [116001] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3525), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3527), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3529), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + ACTIONS(3531), 1, + anon_sym_TILDE, + ACTIONS(3533), 1, + anon_sym_PLUS, + ACTIONS(3535), 1, + anon_sym_DASH, + ACTIONS(3537), 1, + anon_sym_PIPE, + ACTIONS(3539), 1, + anon_sym_AMP, + ACTIONS(3541), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3543), 1, + anon_sym_AMP_AMP, + ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, + anon_sym_SLASH, + ACTIONS(3555), 1, + anon_sym_COLON, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1747), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3609), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3615), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3545), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 18, - sym__external_close_bracket2, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(245), 3, + sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [115991] = 32, + [116103] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3629), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(839), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(149), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116097] = 32, + [116205] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3631), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(279), 1, sym__open_bracket2, - STATE(855), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(147), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116203] = 30, + ACTIONS(149), 8, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [116299] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, - anon_sym_EQ, - ACTIONS(3581), 1, - anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3589), 1, - anon_sym_DASH_GT, - ACTIONS(3591), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, - anon_sym_PIPE, - ACTIONS(3595), 1, - anon_sym_AMP, - ACTIONS(3597), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, - anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + STATE(279), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1747), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(167), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3587), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(147), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116305] = 30, + ACTIONS(149), 10, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [116385] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(565), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(171), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3587), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116407] = 31, + [116491] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, ACTIONS(3515), 1, sym__external_open_parenthesis, ACTIONS(3517), 1, sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3633), 2, - sym__external_close_parenthesis, - sym_comma, - ACTIONS(3485), 3, + ACTIONS(165), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 18, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116511] = 30, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [116561] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3675), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(1755), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(245), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116613] = 30, + [116667] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3677), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(702), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(147), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116715] = 26, + [116773] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3525), 1, - anon_sym_PLUS, + sym__external_open_parenthesis, ACTIONS(3527), 1, - anon_sym_DASH, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, + anon_sym_TILDE, + ACTIONS(3533), 1, + anon_sym_PLUS, ACTIONS(3535), 1, - anon_sym_PIPE, + anon_sym_DASH, ACTIONS(3537), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3539), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3541), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, - anon_sym_STAR, ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, anon_sym_SLASH, ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1727), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(149), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3523), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3553), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3557), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3545), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(147), 8, + ACTIONS(187), 3, sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [116809] = 24, + ACTIONS(3547), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [116875] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(3515), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3519), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(255), 1, + ACTIONS(3593), 1, + anon_sym_STAR, + ACTIONS(3595), 1, + anon_sym_SLASH, + ACTIONS(3599), 1, + anon_sym_COLON, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 3, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(165), 7, anon_sym_EQ, + anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 9, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 15, sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, sym_comma, - [116899] = 22, + [116953] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3525), 1, - anon_sym_PLUS, + sym__external_open_parenthesis, ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, + anon_sym_TILDE, + ACTIONS(3533), 1, + anon_sym_PLUS, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3547), 1, - anon_sym_STAR, + ACTIONS(3537), 1, + anon_sym_PIPE, + ACTIONS(3539), 1, + anon_sym_AMP, + ACTIONS(3541), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3543), 1, + anon_sym_AMP_AMP, ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, anon_sym_SLASH, ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, - sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, - sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(149), 4, + ACTIONS(3615), 1, anon_sym_EQ, + ACTIONS(3621), 1, anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3545), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(147), 10, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, + ACTIONS(3623), 1, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_comma, - [116985] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + STATE(279), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1727), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3551), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3557), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(149), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3545), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(147), 18, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(191), 3, sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, [117055] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, - anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3589), 1, - anon_sym_DASH_GT, - ACTIONS(3591), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, + ACTIONS(3615), 1, + anon_sym_EQ, ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1747), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(175), 3, - sym__external_close_bracket2, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(195), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3587), 3, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -125841,73 +125781,73 @@ static const uint16_t ts_small_parse_table[] = { [117157] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3635), 1, + ACTIONS(3679), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(445), 1, + STATE(708), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -125915,73 +125855,73 @@ static const uint16_t ts_small_parse_table[] = { [117263] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3637), 1, + ACTIONS(3681), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(485), 1, + STATE(680), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -125989,248 +125929,222 @@ static const uint16_t ts_small_parse_table[] = { [117369] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, - anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3589), 1, - anon_sym_DASH_GT, - ACTIONS(3591), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, + ACTIONS(3615), 1, + anon_sym_EQ, ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1747), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(179), 3, - sym__external_close_bracket2, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(211), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3587), 3, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [117471] = 32, + [117471] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3639), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(490), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(215), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [117577] = 30, + [117573] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(183), 3, - sym__external_close_bracket2, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(203), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3587), 3, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [117679] = 32, + [117675] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, ACTIONS(3511), 1, anon_sym_COLON, ACTIONS(3515), 1, @@ -126239,1757 +126153,1893 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3641), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(494), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(165), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 18, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [117785] = 22, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [117747] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, ACTIONS(3515), 1, sym__external_open_parenthesis, ACTIONS(3517), 1, sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 4, + ACTIONS(165), 9, anon_sym_EQ, + anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 10, - sym__external_close_parenthesis, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 18, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [117871] = 32, + [117817] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3643), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(502), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(143), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [117977] = 20, + [117919] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3503), 1, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, + anon_sym_PIPE, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, + anon_sym_AMP_AMP, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3589), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(151), 14, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(239), 3, sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [118059] = 32, + [118021] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3645), 1, + ACTIONS(3683), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1740), 1, + STATE(736), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [118165] = 32, + [118127] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3647), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(552), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(219), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [118271] = 29, + [118229] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3685), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(748), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3545), 4, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 6, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - sym_comma, - [118371] = 32, + [118335] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3649), 1, + ACTIONS(3687), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(554), 1, + STATE(750), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [118477] = 16, + [118441] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(3515), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3519), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(255), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, + anon_sym_PLUS, + ACTIONS(3573), 1, + anon_sym_DASH, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, + anon_sym_PIPE, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, + anon_sym_AMP_AMP, + ACTIONS(3593), 1, + anon_sym_STAR, + ACTIONS(3595), 1, + anon_sym_SLASH, + ACTIONS(3599), 1, + anon_sym_COLON, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3589), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - ACTIONS(151), 16, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(207), 3, sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - sym_comma, - [118551] = 32, + [118543] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3651), 1, + ACTIONS(3689), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(556), 1, + STATE(752), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [118657] = 30, + [118649] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3691), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(1684), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(187), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3587), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [118759] = 32, + [118755] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3653), 1, + ACTIONS(3693), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(562), 1, + STATE(838), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [118865] = 30, + [118861] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3695), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(846), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(151), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [118967] = 14, + [118967] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3519), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(255), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, + anon_sym_PLUS, + ACTIONS(3573), 1, + anon_sym_DASH, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, + anon_sym_PIPE, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, + anon_sym_AMP_AMP, + ACTIONS(3593), 1, + anon_sym_STAR, + ACTIONS(3595), 1, + anon_sym_SLASH, + ACTIONS(3599), 1, + anon_sym_COLON, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3697), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(848), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3589), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 18, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [119037] = 32, + [119073] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3655), 1, + ACTIONS(3699), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(495), 1, + STATE(850), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [119143] = 32, + [119179] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3657), 1, + ACTIONS(3701), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, + sym__open_bracket2, + STATE(707), 1, + sym__close_parenthesis, + STATE(1763), 1, + sym_subset2_arguments, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3559), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3591), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [119285] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, + anon_sym_TILDE, + ACTIONS(3533), 1, + anon_sym_PLUS, + ACTIONS(3535), 1, + anon_sym_DASH, + ACTIONS(3537), 1, + anon_sym_PIPE, + ACTIONS(3539), 1, + anon_sym_AMP, + ACTIONS(3541), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3543), 1, + anon_sym_AMP_AMP, + ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, + anon_sym_SLASH, + ACTIONS(3555), 1, + anon_sym_COLON, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1741), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(223), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [119249] = 32, + [119387] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3659), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(609), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(227), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [119355] = 30, + [119489] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, - anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3589), 1, - anon_sym_DASH_GT, - ACTIONS(3591), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, + ACTIONS(3615), 1, + anon_sym_EQ, ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1747), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(191), 3, - sym__external_close_bracket2, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(231), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3587), 3, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [119457] = 32, + [119591] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3661), 1, + ACTIONS(3703), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(611), 1, + STATE(1674), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [119563] = 30, + [119697] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, - anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3589), 1, - anon_sym_DASH_GT, - ACTIONS(3591), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, + ACTIONS(3615), 1, + anon_sym_EQ, ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1747), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(195), 3, - sym__external_close_bracket2, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(235), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3587), 3, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [119665] = 15, + [119799] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(3515), 1, + ACTIONS(3525), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3527), 1, sym__external_open_bracket, - ACTIONS(3519), 1, + ACTIONS(3529), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3531), 1, + anon_sym_TILDE, + ACTIONS(3533), 1, + anon_sym_PLUS, + ACTIONS(3535), 1, + anon_sym_DASH, + ACTIONS(3537), 1, + anon_sym_PIPE, + ACTIONS(3539), 1, + anon_sym_AMP, + ACTIONS(3541), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3543), 1, + anon_sym_AMP_AMP, + ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, + anon_sym_SLASH, + ACTIONS(3555), 1, + anon_sym_COLON, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3545), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - ACTIONS(151), 18, - sym__external_close_parenthesis, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(239), 3, + sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [119737] = 32, + [119901] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3663), 1, - sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(613), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(163), 3, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [119843] = 30, + [120003] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3705), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(714), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(199), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3587), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [119945] = 32, + [120109] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3665), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(619), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(207), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [120051] = 26, + [120211] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3525), 1, - anon_sym_PLUS, + sym__external_open_parenthesis, ACTIONS(3527), 1, - anon_sym_DASH, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, + anon_sym_TILDE, + ACTIONS(3533), 1, + anon_sym_PLUS, ACTIONS(3535), 1, - anon_sym_PIPE, + anon_sym_DASH, ACTIONS(3537), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3539), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3541), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, - anon_sym_STAR, ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, anon_sym_SLASH, ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1727), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3523), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3553), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3557), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3545), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 8, + ACTIONS(203), 3, sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [120145] = 14, + ACTIONS(3547), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [120313] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(3511), 1, + anon_sym_COLON, ACTIONS(3515), 1, sym__external_open_parenthesis, ACTIONS(3517), 1, sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3509), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, + ACTIONS(165), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -127998,9 +128048,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 18, - sym__external_close_parenthesis, + ACTIONS(163), 16, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -128015,32 +128064,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [120215] = 32, + [120387] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, ACTIONS(3481), 1, anon_sym_PLUS, ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, ACTIONS(3503), 1, anon_sym_STAR, ACTIONS(3505), 1, @@ -128053,27 +128084,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3667), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(385), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, @@ -128083,392 +128105,257 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(165), 6, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 14, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [120321] = 32, + sym_comma, + [120469] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3669), 1, + ACTIONS(3707), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(696), 1, + STATE(725), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [120427] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3579), 1, - anon_sym_EQ, - ACTIONS(3581), 1, - anon_sym_TILDE, - ACTIONS(3583), 1, - anon_sym_PLUS, - ACTIONS(3585), 1, - anon_sym_DASH, - ACTIONS(3589), 1, - anon_sym_DASH_GT, - ACTIONS(3591), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, - anon_sym_PIPE, - ACTIONS(3595), 1, - anon_sym_AMP, - ACTIONS(3597), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, - anon_sym_AMP_AMP, - ACTIONS(3605), 1, - anon_sym_STAR, - ACTIONS(3607), 1, - anon_sym_SLASH, - ACTIONS(3613), 1, - anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, - sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, - sym_subset2_arguments, - ACTIONS(3601), 2, + ACTIONS(3589), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3611), 2, + ACTIONS(3597), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3615), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(203), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3587), 3, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [120529] = 32, + [120575] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3671), 1, + ACTIONS(3709), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(711), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + STATE(1774), 1, + sym__close_parenthesis, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [120635] = 32, + [120681] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3711), 1, sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, - sym__open_bracket2, - STATE(713), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3485), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [120741] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3547), 1, - anon_sym_STAR, - ACTIONS(3549), 1, - anon_sym_SLASH, - ACTIONS(3555), 1, - anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, - sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(262), 1, + sym__open_bracket2, + STATE(840), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3589), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(151), 15, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [120819] = 32, + [120787] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, ACTIONS(3481), 1, anon_sym_PLUS, ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, ACTIONS(3503), 1, anon_sym_STAR, ACTIONS(3505), 1, @@ -128481,24 +128368,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3675), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(719), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -128511,246 +128392,248 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, + ACTIONS(165), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [120925] = 30, + ACTIONS(163), 10, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [120873] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, - anon_sym_EQ, - ACTIONS(3581), 1, - anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3481), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3589), 1, - anon_sym_DASH_GT, - ACTIONS(3591), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, - anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3597), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3505), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(3601), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 2, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, + ACTIONS(3509), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(207), 3, + ACTIONS(165), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + ACTIONS(3501), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(163), 9, sym__external_close_bracket2, anon_sym_QMARK, - sym_comma, - ACTIONS(3587), 3, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [121027] = 30, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + sym_comma, + [120963] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3713), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(945), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(211), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3587), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [121129] = 30, + [121069] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, - anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3589), 1, - anon_sym_DASH_GT, - ACTIONS(3591), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, + ACTIONS(3615), 1, + anon_sym_EQ, ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1747), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(215), 3, - sym__external_close_bracket2, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(199), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3587), 3, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [121231] = 32, + [121171] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, ACTIONS(3479), 1, anon_sym_TILDE, ACTIONS(3481), 1, anon_sym_PLUS, ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, ACTIONS(3491), 1, anon_sym_PIPE, ACTIONS(3493), 1, @@ -128771,24 +128654,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3677), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1668), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -128801,184 +128681,168 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [121337] = 32, + ACTIONS(163), 7, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [121267] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3679), 1, + ACTIONS(3715), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(770), 1, + STATE(965), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [121443] = 30, + [121373] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3477), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3479), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3481), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3487), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3489), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3495), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3505), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(3601), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 2, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, + ACTIONS(3509), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(219), 3, + ACTIONS(163), 3, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3587), 3, + ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [121545] = 32, + [121475] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, ACTIONS(3503), 1, anon_sym_STAR, ACTIONS(3505), 1, @@ -128991,27 +128855,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3681), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(772), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, @@ -129021,160 +128876,167 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(165), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 15, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [121651] = 30, + sym_comma, + [121553] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, - anon_sym_EQ, - ACTIONS(3581), 1, - anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3481), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3589), 1, - anon_sym_DASH_GT, - ACTIONS(3591), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3495), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3505), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3619), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3621), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(3601), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 2, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, + ACTIONS(3509), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(145), 3, + ACTIONS(3501), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(163), 8, sym__external_close_bracket2, anon_sym_QMARK, - sym_comma, - ACTIONS(3587), 3, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [121753] = 30, + anon_sym_DASH_GT_GT, + sym_comma, + [121647] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, - anon_sym_EQ, - ACTIONS(3523), 1, - anon_sym_TILDE, ACTIONS(3525), 1, - anon_sym_PLUS, + sym__external_open_parenthesis, ACTIONS(3527), 1, - anon_sym_DASH, - ACTIONS(3531), 1, - anon_sym_DASH_GT, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, ACTIONS(3533), 1, - anon_sym_DASH_GT_GT, + anon_sym_PLUS, ACTIONS(3535), 1, - anon_sym_PIPE, + anon_sym_DASH, ACTIONS(3537), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(3539), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3541), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, - anon_sym_STAR, ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, anon_sym_SLASH, ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + STATE(279), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1727), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(201), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3523), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3553), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3557), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(151), 3, + ACTIONS(3547), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(199), 8, sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3529), 3, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [121855] = 32, + anon_sym_DASH_GT_GT, + sym_comma, + [121741] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, @@ -129209,24 +129071,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3683), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(774), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -129239,88 +129095,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [121961] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3579), 1, - anon_sym_EQ, - ACTIONS(3581), 1, - anon_sym_TILDE, - ACTIONS(3583), 1, - anon_sym_PLUS, - ACTIONS(3585), 1, - anon_sym_DASH, - ACTIONS(3589), 1, - anon_sym_DASH_GT, - ACTIONS(3591), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, - anon_sym_PIPE, - ACTIONS(3595), 1, - anon_sym_AMP, - ACTIONS(3597), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, - anon_sym_AMP_AMP, - ACTIONS(3605), 1, - anon_sym_STAR, - ACTIONS(3607), 1, - anon_sym_SLASH, - ACTIONS(3613), 1, - anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, - sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, - sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(223), 3, + ACTIONS(163), 3, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3587), 3, + ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [122063] = 32, + [121843] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, @@ -129355,24 +129143,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(780), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -129385,231 +129167,231 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [122169] = 30, + ACTIONS(163), 6, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + sym_comma, + [121943] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3589), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3591), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - STATE(265), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3717), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(266), 1, + STATE(261), 1, sym__open_bracket, - STATE(267), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, - sym_subset_arguments, - STATE(1747), 1, + STATE(794), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(227), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3587), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [122271] = 27, + [122049] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, - anon_sym_TILDE, ACTIONS(3525), 1, - anon_sym_PLUS, + sym__external_open_parenthesis, ACTIONS(3527), 1, - anon_sym_DASH, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, + anon_sym_PLUS, ACTIONS(3535), 1, - anon_sym_PIPE, - ACTIONS(3537), 1, - anon_sym_AMP, - ACTIONS(3539), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, - anon_sym_AMP_AMP, - ACTIONS(3547), 1, - anon_sym_STAR, + anon_sym_DASH, ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, anon_sym_SLASH, ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + STATE(279), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1727), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3523), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3553), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3557), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3545), 4, + ACTIONS(201), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 7, + ACTIONS(199), 10, sym__external_close_bracket, anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_comma, - [122367] = 32, + [122135] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3687), 1, + ACTIONS(3719), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(327), 1, + STATE(981), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [122473] = 32, + [122241] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, @@ -129644,24 +129426,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3689), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(835), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -129674,6 +129450,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, + ACTIONS(159), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, @@ -129683,7 +129463,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [122579] = 32, + [122343] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + STATE(279), 1, + sym__open_bracket2, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, + sym_subset_arguments, + STATE(1767), 1, + sym_subset2_arguments, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3523), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(153), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(151), 18, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [122413] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, @@ -129718,1073 +129554,1140 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3691), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, + STATE(271), 1, + sym__open_bracket2, + STATE(274), 1, sym__open_bracket, - STATE(257), 1, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3499), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3507), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3509), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3513), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(155), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3485), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3501), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [122515] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + STATE(279), 1, sym__open_bracket2, - STATE(842), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(201), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(199), 18, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [122685] = 32, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [122585] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3693), 1, + ACTIONS(3721), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(846), 1, + STATE(1002), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [122791] = 32, + [122691] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3695), 1, + ACTIONS(3723), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(854), 1, + STATE(867), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [122897] = 31, + [122797] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3525), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3531), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3533), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3535), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3537), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3539), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3541), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3547), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - ACTIONS(3697), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - STATE(262), 1, + ACTIONS(3725), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(371), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3573), 2, - sym__external_close_bracket, - sym_comma, - ACTIONS(3529), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3545), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [123001] = 24, + [122903] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(3525), 1, - anon_sym_PLUS, - ACTIONS(3527), 1, - anon_sym_DASH, - ACTIONS(3537), 1, - anon_sym_AMP, - ACTIONS(3541), 1, - anon_sym_AMP_AMP, - ACTIONS(3547), 1, - anon_sym_STAR, - ACTIONS(3549), 1, - anon_sym_SLASH, - ACTIONS(3555), 1, - anon_sym_COLON, - ACTIONS(3559), 1, sym__external_open_parenthesis, - ACTIONS(3561), 1, + ACTIONS(3527), 1, sym__external_open_bracket, - ACTIONS(3563), 1, + ACTIONS(3529), 1, sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + ACTIONS(3555), 1, + anon_sym_COLON, + STATE(279), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1727), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 3, + ACTIONS(153), 8, anon_sym_EQ, + anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, - ACTIONS(3545), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 9, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(151), 18, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [123091] = 32, + [122975] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(3515), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3699), 1, - sym__external_close_parenthesis, - STATE(255), 1, + sym__external_open_bracket2, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(511), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(147), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(149), 18, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [123197] = 32, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [123045] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3701), 1, + ACTIONS(3727), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1706), 1, + STATE(517), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [123303] = 32, + [123151] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + STATE(279), 1, + sym__open_bracket2, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, + sym_subset_arguments, + STATE(1767), 1, + sym_subset2_arguments, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3523), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(153), 9, anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3487), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3495), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(151), 18, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(3515), 1, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [123221] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3703), 1, - sym__external_close_parenthesis, - STATE(255), 1, + sym__external_open_bracket2, + ACTIONS(3571), 1, + anon_sym_PLUS, + ACTIONS(3573), 1, + anon_sym_DASH, + ACTIONS(3593), 1, + anon_sym_STAR, + ACTIONS(3595), 1, + anon_sym_SLASH, + ACTIONS(3599), 1, + anon_sym_COLON, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(905), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(147), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [123409] = 32, + ACTIONS(149), 10, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [123307] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3705), 1, + ACTIONS(3729), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(907), 1, + STATE(874), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [123515] = 32, + [123413] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3707), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(909), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(163), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [123621] = 32, + [123515] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3709), 1, + ACTIONS(3731), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(915), 1, + STATE(528), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [123727] = 32, + [123621] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3711), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1661), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [123833] = 32, + ACTIONS(151), 6, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + sym_comma, + [123721] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3713), 1, + ACTIONS(3733), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(960), 1, + STATE(530), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [123939] = 32, + [123827] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3715), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(962), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(151), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [124045] = 32, + [123929] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3717), 1, + ACTIONS(3735), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(964), 1, + STATE(533), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [124151] = 32, + [124035] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, @@ -130819,24 +130722,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3719), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(970), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -130849,6 +130746,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, + ACTIONS(245), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, @@ -130858,7 +130759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [124257] = 30, + [124137] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, @@ -130893,18 +130794,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -130917,8 +130818,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(155), 3, - sym__external_close_parenthesis, + ACTIONS(149), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, ACTIONS(3485), 3, @@ -130930,206 +130831,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [124359] = 30, + [124239] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(3515), 1, + ACTIONS(3525), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3527), 1, sym__external_open_bracket, - ACTIONS(3519), 1, + ACTIONS(3529), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3555), 1, + anon_sym_COLON, + STATE(279), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(159), 3, - sym__external_close_parenthesis, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(153), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(151), 16, + sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [124461] = 32, + anon_sym_SLASH, + sym_comma, + [124313] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3721), 1, + ACTIONS(3737), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(978), 1, + STATE(885), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [124567] = 22, + [124419] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(3525), 1, - anon_sym_PLUS, + sym__external_open_parenthesis, ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, + anon_sym_PLUS, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3547), 1, - anon_sym_STAR, ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, anon_sym_SLASH, ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + STATE(279), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1727), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3543), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3551), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3523), 2, + anon_sym_DOLLAR, + anon_sym_AT, ACTIONS(3553), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3557), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(153), 4, + ACTIONS(153), 6, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3545), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 10, + anon_sym_LT, + anon_sym_GT, + ACTIONS(151), 14, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, @@ -131139,249 +131020,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, sym_comma, - [124653] = 32, + [124501] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3723), 1, + ACTIONS(3739), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(981), 1, + STATE(1645), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [124759] = 20, + [124607] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3547), 1, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, + anon_sym_PIPE, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, + anon_sym_AMP_AMP, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3741), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(353), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3553), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3589), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(151), 14, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [124841] = 31, + [124713] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, - anon_sym_EQ, - ACTIONS(3581), 1, - anon_sym_TILDE, - ACTIONS(3583), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3585), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3589), 1, - anon_sym_DASH_GT, - ACTIONS(3591), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3593), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3595), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3597), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3599), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3605), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3607), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3613), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3617), 1, - sym__external_open_parenthesis, - ACTIONS(3619), 1, - sym__external_open_bracket, - ACTIONS(3621), 1, - sym__external_open_bracket2, - ACTIONS(3725), 1, - anon_sym_QMARK, - STATE(265), 1, - sym__open_parenthesis, - STATE(266), 1, - sym__open_bracket, - STATE(267), 1, + STATE(279), 1, sym__open_bracket2, - STATE(1744), 1, - sym_call_arguments, - STATE(1745), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1747), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3573), 2, - sym__external_close_bracket2, - sym_comma, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3611), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3615), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3587), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3603), 4, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [124945] = 16, + ACTIONS(151), 8, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [124807] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, - anon_sym_COLON, - ACTIONS(3559), 1, + ACTIONS(3525), 1, sym__external_open_parenthesis, - ACTIONS(3561), 1, + ACTIONS(3527), 1, sym__external_open_bracket, - ACTIONS(3563), 1, + ACTIONS(3529), 1, sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, + anon_sym_SLASH, + ACTIONS(3555), 1, + anon_sym_COLON, + STATE(279), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1727), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3551), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3523), 2, + anon_sym_DOLLAR, + anon_sym_AT, ACTIONS(3553), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3557), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(153), 8, + ACTIONS(153), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -131389,8 +131285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - ACTIONS(151), 16, + ACTIONS(151), 15, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, @@ -131405,179 +131300,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, sym_comma, - [125019] = 29, + [124885] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, ACTIONS(3515), 1, sym__external_open_parenthesis, ACTIONS(3517), 1, sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 6, - sym__external_close_parenthesis, + ACTIONS(153), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(151), 18, + sym__external_close_bracket2, anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [125119] = 30, + [124955] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(147), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(163), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3591), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(149), 8, sym__external_close_parenthesis, anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [125221] = 14, + anon_sym_DASH_GT_GT, + sym_comma, + [125049] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, + ACTIONS(3511), 1, + anon_sym_COLON, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3561), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3563), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(3551), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3557), 2, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, + ACTIONS(153), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -131586,9 +131463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - anon_sym_COLON, ACTIONS(151), 18, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -131606,21 +131482,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [125291] = 32, + [125121] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, ACTIONS(3481), 1, anon_sym_PLUS, ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, ACTIONS(3491), 1, anon_sym_PIPE, ACTIONS(3493), 1, @@ -131641,24 +131509,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3727), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(991), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(147), 2, + anon_sym_EQ, + anon_sym_DASH_GT, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -131671,164 +131536,151 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [125397] = 26, + ACTIONS(149), 8, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [125215] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, ACTIONS(3515), 1, sym__external_open_parenthesis, ACTIONS(3517), 1, sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 8, - sym__external_close_parenthesis, + ACTIONS(153), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(151), 18, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [125491] = 32, + [125285] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3729), 1, - sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(993), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(149), 3, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [125597] = 18, + [125387] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, ACTIONS(3511), 1, anon_sym_COLON, ACTIONS(3515), 1, @@ -131837,18 +131689,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, @@ -131858,59 +131710,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 15, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - sym_comma, - [125675] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - anon_sym_COLON, - ACTIONS(3559), 1, - sym__external_open_parenthesis, - ACTIONS(3561), 1, - sym__external_open_bracket, - ACTIONS(3563), 1, - sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, - sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, - sym_subset2_arguments, - ACTIONS(3551), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3557), 2, - anon_sym_DOLLAR, - anon_sym_AT, ACTIONS(153), 8, anon_sym_EQ, anon_sym_DASH, @@ -131920,8 +131719,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(151), 18, - sym__external_close_bracket, + ACTIONS(151), 16, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -131936,32 +131735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [125747] = 30, + [125461] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, + anon_sym_PLUS, + ACTIONS(3483), 1, + anon_sym_DASH, ACTIONS(3503), 1, anon_sym_STAR, ACTIONS(3505), 1, @@ -131974,18 +131755,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -131998,278 +131779,272 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(163), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, + ACTIONS(147), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [125849] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(149), 10, + sym__external_close_bracket2, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, - anon_sym_STAR, - ACTIONS(3505), 1, - anon_sym_SLASH, - ACTIONS(3511), 1, - anon_sym_COLON, + sym_comma, + [125547] = 14, + ACTIONS(3), 1, + sym_comment, ACTIONS(3515), 1, sym__external_open_parenthesis, ACTIONS(3517), 1, sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3731), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(998), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(147), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(149), 18, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [125955] = 32, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [125617] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3733), 1, + ACTIONS(3743), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1000), 1, + STATE(999), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [126061] = 27, + [125723] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(279), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3501), 4, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(153), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 7, - sym__external_close_parenthesis, + ACTIONS(151), 10, + sym__external_close_bracket, anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_comma, - [126157] = 14, + [125809] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, + ACTIONS(3481), 1, + anon_sym_PLUS, + ACTIONS(3483), 1, + anon_sym_DASH, + ACTIONS(3503), 1, + anon_sym_STAR, + ACTIONS(3505), 1, + anon_sym_SLASH, + ACTIONS(3511), 1, + anon_sym_COLON, + ACTIONS(3515), 1, sym__external_open_parenthesis, - ACTIONS(3561), 1, + ACTIONS(3517), 1, sym__external_open_bracket, - ACTIONS(3563), 1, + ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(262), 1, - sym__open_parenthesis, - STATE(263), 1, - sym__open_bracket, - STATE(264), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, sym_subset2_arguments, - ACTIONS(3551), 2, + STATE(1754), 1, + sym_subset_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3557), 2, + ACTIONS(3509), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, + ACTIONS(153), 6, anon_sym_EQ, - anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 18, - sym__external_close_bracket, + ACTIONS(151), 14, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, @@ -132280,21 +132055,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [126227] = 24, + [125891] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(3481), 1, anon_sym_PLUS, ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, ACTIONS(3503), 1, anon_sym_STAR, ACTIONS(3505), 1, @@ -132307,18 +132075,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -132331,17 +132099,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 3, + ACTIONS(153), 4, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_PIPE, + anon_sym_AMP, ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 9, - sym__external_close_parenthesis, + ACTIONS(151), 10, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, @@ -132349,28 +132118,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_comma, - [126317] = 32, + [125977] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, ACTIONS(3481), 1, anon_sym_PLUS, ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, - anon_sym_PIPE, ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, ACTIONS(3497), 1, anon_sym_AMP_AMP, ACTIONS(3503), 1, @@ -132385,24 +132143,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3735), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1005), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -132415,22 +132167,42 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, + ACTIONS(153), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [126423] = 22, + ACTIONS(151), 9, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + sym_comma, + [126067] = 27, ACTIONS(3), 1, sym_comment, + ACTIONS(3479), 1, + anon_sym_TILDE, ACTIONS(3481), 1, anon_sym_PLUS, ACTIONS(3483), 1, anon_sym_DASH, + ACTIONS(3491), 1, + anon_sym_PIPE, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3495), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3497), 1, + anon_sym_AMP_AMP, ACTIONS(3503), 1, anon_sym_STAR, ACTIONS(3505), 1, @@ -132443,18 +132215,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -132467,28 +132242,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 10, - sym__external_close_parenthesis, + ACTIONS(151), 7, + sym__external_close_bracket2, anon_sym_QMARK, - anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_comma, - [126509] = 32, + [126163] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, @@ -132523,24 +132290,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3737), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1007), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -132553,6 +132314,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, + ACTIONS(151), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, @@ -132562,13 +132327,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [126615] = 20, + [126265] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(3483), 1, - anon_sym_DASH, ACTIONS(3503), 1, anon_sym_STAR, ACTIONS(3505), 1, @@ -132581,18 +132342,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, @@ -132602,17 +132363,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 6, + ACTIONS(153), 7, anon_sym_EQ, + anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(163), 14, - sym__external_close_parenthesis, + ACTIONS(151), 15, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, @@ -132624,9 +132387,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, sym_comma, - [126697] = 16, + [126343] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(3481), 1, + anon_sym_PLUS, + ACTIONS(3483), 1, + anon_sym_DASH, + ACTIONS(3491), 1, + anon_sym_PIPE, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3495), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3497), 1, + anon_sym_AMP_AMP, + ACTIONS(3503), 1, + anon_sym_STAR, + ACTIONS(3505), 1, + anon_sym_SLASH, ACTIONS(3511), 1, anon_sym_COLON, ACTIONS(3515), 1, @@ -132635,18 +132414,24 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3499), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, @@ -132656,33 +132441,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - ACTIONS(163), 16, - sym__external_close_parenthesis, + ACTIONS(3501), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(151), 8, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, sym_comma, - [126771] = 32, + [126437] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, @@ -132717,24 +132490,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3739), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1011), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -132747,6 +132514,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, + ACTIONS(151), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, @@ -132756,7 +132527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [126877] = 32, + [126539] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, @@ -132791,24 +132562,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3741), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1013), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -132821,129 +132586,241 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [126983] = 14, + ACTIONS(151), 6, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + sym_comma, + [126639] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3519), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(255), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, + anon_sym_PLUS, + ACTIONS(3573), 1, + anon_sym_DASH, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, + anon_sym_PIPE, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, + anon_sym_AMP_AMP, + ACTIONS(3593), 1, + anon_sym_STAR, + ACTIONS(3595), 1, + anon_sym_SLASH, + ACTIONS(3599), 1, + anon_sym_COLON, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3745), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1040), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3591), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [126745] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, + anon_sym_PLUS, + ACTIONS(3573), 1, anon_sym_DASH, + ACTIONS(3577), 1, anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, anon_sym_PIPE, + ACTIONS(3583), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, + anon_sym_AMP_AMP, + ACTIONS(3593), 1, anon_sym_STAR, + ACTIONS(3595), 1, + anon_sym_SLASH, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(163), 18, - sym__external_close_parenthesis, + ACTIONS(3605), 1, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3747), 1, + sym__external_close_parenthesis, + STATE(260), 1, + sym__open_parenthesis, + STATE(261), 1, + sym__open_bracket, + STATE(262), 1, + sym__open_bracket2, + STATE(1025), 1, + sym__close_parenthesis, + STATE(1763), 1, + sym_subset2_arguments, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3559), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [127053] = 15, + [126851] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(3515), 1, + ACTIONS(3561), 1, sym__external_open_parenthesis, - ACTIONS(3517), 1, + ACTIONS(3563), 1, sym__external_open_bracket, - ACTIONS(3519), 1, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(255), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, + anon_sym_PLUS, + ACTIONS(3573), 1, + anon_sym_DASH, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, + anon_sym_PIPE, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, + anon_sym_AMP_AMP, + ACTIONS(3593), 1, + anon_sym_STAR, + ACTIONS(3595), 1, + anon_sym_SLASH, + ACTIONS(3599), 1, + anon_sym_COLON, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3749), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(605), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3589), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - ACTIONS(163), 18, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [127125] = 14, + [126957] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(3515), 1, @@ -132952,25 +132829,25 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3507), 2, anon_sym_STAR_STAR, anon_sym_CARET, ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, + ACTIONS(201), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132980,8 +132857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(163), 18, - sym__external_close_parenthesis, + ACTIONS(199), 18, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -132999,29 +132876,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [127195] = 32, + [127027] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, ACTIONS(3481), 1, anon_sym_PLUS, ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_AMP, - ACTIONS(3495), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, - anon_sym_AMP_AMP, ACTIONS(3503), 1, anon_sym_STAR, ACTIONS(3505), 1, @@ -133034,24 +132895,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3743), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1019), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -133064,178 +132919,315 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(201), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3501), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(199), 10, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [127113] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, + anon_sym_PLUS, + ACTIONS(3535), 1, + anon_sym_DASH, + ACTIONS(3539), 1, + anon_sym_AMP, + ACTIONS(3543), 1, + anon_sym_AMP_AMP, + ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, + anon_sym_SLASH, + ACTIONS(3555), 1, + anon_sym_COLON, + STATE(279), 1, + sym__open_bracket2, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, + sym_subset_arguments, + STATE(1767), 1, + sym_subset2_arguments, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3523), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(153), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [127301] = 32, + ACTIONS(151), 9, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + sym_comma, + [127203] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3745), 1, - sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1021), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(199), 3, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [127305] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, + anon_sym_TILDE, + ACTIONS(3533), 1, + anon_sym_PLUS, + ACTIONS(3535), 1, + anon_sym_DASH, + ACTIONS(3537), 1, + anon_sym_PIPE, + ACTIONS(3539), 1, + anon_sym_AMP, + ACTIONS(3541), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3543), 1, + anon_sym_AMP_AMP, + ACTIONS(3549), 1, + anon_sym_STAR, + ACTIONS(3551), 1, + anon_sym_SLASH, + ACTIONS(3555), 1, + anon_sym_COLON, + STATE(279), 1, + sym__open_bracket2, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, + sym_subset_arguments, + STATE(1767), 1, + sym_subset2_arguments, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3521), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3523), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [127407] = 32, + ACTIONS(151), 7, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [127401] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3747), 1, + ACTIONS(3751), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1027), 1, + STATE(1030), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [127513] = 32, + [127507] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, ACTIONS(3481), 1, anon_sym_PLUS, ACTIONS(3483), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, ACTIONS(3491), 1, anon_sym_PIPE, ACTIONS(3493), 1, @@ -133256,24 +133248,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3749), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1029), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, + ACTIONS(201), 2, + anon_sym_EQ, + anon_sym_DASH_GT, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -133286,90 +133275,93 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, ACTIONS(3501), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [127619] = 32, + ACTIONS(199), 8, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [127601] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3525), 1, + sym__external_open_parenthesis, + ACTIONS(3527), 1, + sym__external_open_bracket, + ACTIONS(3529), 1, + sym__external_open_bracket2, + ACTIONS(3531), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3533), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3535), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3537), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3539), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3541), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3543), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3549), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3551), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3751), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + ACTIONS(3615), 1, + anon_sym_EQ, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_DASH_GT_GT, + STATE(279), 1, sym__open_bracket2, - STATE(1035), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, + STATE(280), 1, + sym__open_bracket, + STATE(283), 1, + sym__open_parenthesis, + STATE(1765), 1, sym_subset_arguments, - STATE(1755), 1, + STATE(1767), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1778), 1, + sym_call_arguments, + ACTIONS(3521), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3523), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3553), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(151), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3619), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3547), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [127725] = 32, + [127703] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, @@ -133404,24 +133396,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - anon_sym_QMARK, - ACTIONS(3753), 1, - sym__external_close_parenthesis, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1037), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -133434,6 +133420,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, + ACTIONS(199), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, ACTIONS(3485), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, @@ -133443,7 +133433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [127831] = 30, + [127805] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, @@ -133478,18 +133468,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -133502,8 +133492,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(167), 3, - sym__external_close_parenthesis, + ACTIONS(203), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, ACTIONS(3485), 3, @@ -133515,299 +133505,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [127933] = 32, + [127907] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3753), 1, sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1043), 1, + STATE(440), 1, sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [128039] = 30, + [128013] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(171), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(245), 3, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3485), 3, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [128141] = 32, + [128115] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3569), 1, anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, + ACTIONS(3577), 1, anon_sym_DASH_GT, - ACTIONS(3489), 1, + ACTIONS(3579), 1, anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - ACTIONS(3565), 1, + ACTIONS(3605), 1, anon_sym_QMARK, - ACTIONS(3757), 1, - sym__external_close_parenthesis, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1045), 1, - sym__close_parenthesis, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3485), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3755), 2, + sym__external_close_parenthesis, + sym_comma, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [128247] = 30, + [128219] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_EQ, - ACTIONS(3479), 1, - anon_sym_TILDE, - ACTIONS(3481), 1, + ACTIONS(3561), 1, + sym__external_open_parenthesis, + ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, + sym__external_open_bracket2, + ACTIONS(3571), 1, anon_sym_PLUS, - ACTIONS(3483), 1, + ACTIONS(3573), 1, anon_sym_DASH, - ACTIONS(3487), 1, - anon_sym_DASH_GT, - ACTIONS(3489), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3491), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3493), 1, + ACTIONS(3583), 1, anon_sym_AMP, - ACTIONS(3495), 1, + ACTIONS(3585), 1, anon_sym_PIPE_PIPE, - ACTIONS(3497), 1, + ACTIONS(3587), 1, anon_sym_AMP_AMP, - ACTIONS(3503), 1, + ACTIONS(3593), 1, anon_sym_STAR, - ACTIONS(3505), 1, + ACTIONS(3595), 1, anon_sym_SLASH, - ACTIONS(3511), 1, + ACTIONS(3599), 1, anon_sym_COLON, - ACTIONS(3515), 1, - sym__external_open_parenthesis, - ACTIONS(3517), 1, - sym__external_open_bracket, - ACTIONS(3519), 1, - sym__external_open_bracket2, - STATE(255), 1, + STATE(260), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(261), 1, sym__open_bracket, - STATE(257), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, - STATE(1754), 1, - sym_subset_arguments, - STATE(1755), 1, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3499), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3507), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3509), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3513), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(175), 3, + ACTIONS(3589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3591), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(163), 8, sym__external_close_parenthesis, anon_sym_QMARK, - sym_comma, - ACTIONS(3485), 3, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3501), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [128349] = 30, + anon_sym_DASH_GT_GT, + sym_comma, + [128313] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, @@ -133842,18 +133827,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3519), 1, sym__external_open_bracket2, - STATE(255), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(257), 1, + STATE(271), 1, sym__open_bracket2, - STATE(1753), 1, - sym_call_arguments, + STATE(274), 1, + sym__open_bracket, + STATE(275), 1, + sym__open_parenthesis, + STATE(1752), 1, + sym_subset2_arguments, STATE(1754), 1, sym_subset_arguments, - STATE(1755), 1, - sym_subset2_arguments, + STATE(1758), 1, + sym_call_arguments, ACTIONS(3499), 2, anon_sym_LT, anon_sym_GT, @@ -133866,8 +133851,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3513), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(179), 3, - sym__external_close_parenthesis, + ACTIONS(207), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, ACTIONS(3485), 3, @@ -133879,66 +133864,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [128451] = 14, + [128415] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, - sym__external_open_parenthesis, ACTIONS(3561), 1, - sym__external_open_bracket, + sym__external_open_parenthesis, ACTIONS(3563), 1, + sym__external_open_bracket, + ACTIONS(3565), 1, sym__external_open_bracket2, - STATE(262), 1, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_TILDE, + ACTIONS(3571), 1, + anon_sym_PLUS, + ACTIONS(3573), 1, + anon_sym_DASH, + ACTIONS(3577), 1, + anon_sym_DASH_GT, + ACTIONS(3579), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3581), 1, + anon_sym_PIPE, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3587), 1, + anon_sym_AMP_AMP, + ACTIONS(3593), 1, + anon_sym_STAR, + ACTIONS(3595), 1, + anon_sym_SLASH, + ACTIONS(3599), 1, + anon_sym_COLON, + ACTIONS(3605), 1, + anon_sym_QMARK, + ACTIONS(3757), 1, + sym__external_close_parenthesis, + STATE(260), 1, sym__open_parenthesis, - STATE(263), 1, + STATE(261), 1, sym__open_bracket, - STATE(264), 1, + STATE(262), 1, sym__open_bracket2, - STATE(1724), 1, - sym_call_arguments, - STATE(1725), 1, - sym_subset_arguments, - STATE(1727), 1, + STATE(722), 1, + sym__close_parenthesis, + STATE(1763), 1, sym_subset2_arguments, - ACTIONS(3551), 2, + STATE(1771), 1, + sym_subset_arguments, + STATE(1772), 1, + sym_call_arguments, + ACTIONS(3557), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3557), 2, + ACTIONS(3559), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3589), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 18, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3597), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3575), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3591), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, [128521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(641), 10, + ACTIONS(667), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133949,12 +133952,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(643), 27, + ACTIONS(665), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -133977,14 +133980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [128566] = 5, + [128566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(649), 1, - anon_sym_COLON_COLON, - ACTIONS(651), 1, - anon_sym_COLON_COLON_COLON, - ACTIONS(645), 9, + ACTIONS(637), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133994,12 +133993,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(647), 26, + anon_sym_COLON_COLON, + ACTIONS(635), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134020,11 +134020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [128615] = 3, + [128611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(669), 10, + ACTIONS(655), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134035,12 +134036,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(671), 27, + ACTIONS(653), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134063,10 +134064,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [128660] = 3, + [128656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(641), 10, + ACTIONS(671), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134077,12 +134078,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(643), 27, + ACTIONS(669), 27, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134105,10 +134106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [128705] = 3, + [128701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(673), 10, + ACTIONS(667), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134119,7 +134120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(675), 27, + ACTIONS(665), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -134147,58 +134148,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [128750] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(649), 1, - anon_sym_COLON_COLON, - ACTIONS(651), 1, - anon_sym_COLON_COLON_COLON, - ACTIONS(645), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(647), 26, - sym__external_else, - sym__external_open_parenthesis, - sym__external_close_parenthesis, - sym__external_open_bracket, - sym__external_open_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - sym_comma, - [128799] = 5, + [128746] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3759), 1, anon_sym_L, ACTIONS(3761), 1, anon_sym_i, - ACTIONS(653), 9, + ACTIONS(641), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134208,7 +134165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(655), 26, + ACTIONS(643), 26, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -134235,52 +134192,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [128848] = 3, + [128795] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(661), 10, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, + ACTIONS(661), 1, anon_sym_COLON_COLON, - ACTIONS(663), 27, - sym__external_else, - sym__external_open_parenthesis, - sym__external_close_parenthesis, - sym__external_open_bracket, - sym__external_open_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, + ACTIONS(663), 1, anon_sym_COLON_COLON_COLON, - sym_comma, - [128893] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(661), 10, + ACTIONS(659), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134290,12 +134209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(663), 27, + ACTIONS(657), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -134317,12 +134235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [128938] = 3, + [128844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(641), 10, + ACTIONS(651), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134333,12 +134250,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(643), 27, + ACTIONS(649), 27, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134361,14 +134278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [128983] = 5, + [128889] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(649), 1, + ACTIONS(661), 1, anon_sym_COLON_COLON, - ACTIONS(651), 1, + ACTIONS(663), 1, anon_sym_COLON_COLON_COLON, - ACTIONS(645), 9, + ACTIONS(659), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134378,56 +134295,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(647), 26, - sym__external_else, - sym__external_open_parenthesis, - sym__external_open_bracket, - sym__external_open_bracket2, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - sym_comma, - [129032] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3763), 1, - anon_sym_L, - ACTIONS(3765), 1, - anon_sym_i, - ACTIONS(653), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(655), 26, + ACTIONS(657), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134449,10 +134322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129081] = 3, + [128938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(661), 10, + ACTIONS(651), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134463,12 +134336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(663), 27, + ACTIONS(649), 27, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134491,10 +134364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [129126] = 3, + [128983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(661), 10, + ACTIONS(667), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134505,12 +134378,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(663), 27, + ACTIONS(665), 27, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134533,14 +134406,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [129171] = 5, + [129028] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3767), 1, + ACTIONS(3763), 1, anon_sym_L, - ACTIONS(3769), 1, + ACTIONS(3765), 1, anon_sym_i, - ACTIONS(653), 9, + ACTIONS(641), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134550,7 +134423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(655), 26, + ACTIONS(643), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -134577,10 +134450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129220] = 3, + [129077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(669), 10, + ACTIONS(651), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134591,53 +134464,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(671), 27, + ACTIONS(649), 27, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, - sym__external_open_bracket, - sym__external_open_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_COLON_COLON_COLON, - sym_comma, - [129265] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(673), 10, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(675), 27, - sym__external_else, - sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -134661,10 +134492,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [129310] = 3, + [129122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(661), 10, + ACTIONS(651), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134675,7 +134506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(663), 27, + ACTIONS(649), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -134703,10 +134534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [129355] = 3, + [129167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(669), 10, + ACTIONS(633), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134717,12 +134548,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(671), 27, + ACTIONS(631), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134745,10 +134576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [129400] = 3, + [129212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(673), 10, + ACTIONS(637), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134759,12 +134590,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(675), 27, + ACTIONS(635), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134787,10 +134618,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [129445] = 3, + [129257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(661), 10, + ACTIONS(383), 16, + sym__newline, + sym__semicolon, + sym__raw_string_literal, + sym__external_open_parenthesis, + sym__external_open_brace, + sym__external_close_brace, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + sym__hex_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + sym_dot_dot_i, + ACTIONS(381), 21, + anon_sym_function, + anon_sym_if, + anon_sym_for, + anon_sym_while, + anon_sym_repeat, + sym__number_literal, + sym_identifier, + sym_dots, + sym_return, + sym_next, + sym_break, + sym_true, + sym_false, + sym_null, + sym_inf, + sym_nan, + anon_sym_NA, + anon_sym_NA_integer_, + anon_sym_NA_real_, + anon_sym_NA_complex_, + anon_sym_NA_character_, + [129302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(633), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134801,11 +134674,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(663), 27, + ACTIONS(631), 27, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -134829,10 +134702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [129490] = 3, + [129347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 10, + ACTIONS(655), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134843,12 +134716,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(637), 27, + ACTIONS(653), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134871,10 +134744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [129535] = 3, + [129392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(635), 10, + ACTIONS(637), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134885,12 +134758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(633), 27, + ACTIONS(635), 27, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134913,10 +134786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [129580] = 3, + [129437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 10, + ACTIONS(671), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134927,11 +134800,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(637), 27, + ACTIONS(669), 27, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -134955,10 +134828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [129625] = 3, + [129482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(635), 10, + ACTIONS(671), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134969,7 +134842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(633), 27, + ACTIONS(669), 27, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -134997,52 +134870,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [129670] = 3, + [129527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(359), 16, - sym__newline, - sym__semicolon, - sym__raw_string_literal, + ACTIONS(633), 10, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_COLON_COLON, + ACTIONS(631), 27, + sym__external_else, sym__external_open_parenthesis, - sym__external_open_brace, - sym__external_close_brace, - anon_sym_BSLASH, + sym__external_open_bracket, + sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_BANG, anon_sym_PLUS, - anon_sym_DASH, - sym__hex_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_dot_dot_i, - ACTIONS(357), 21, - anon_sym_function, - anon_sym_if, - anon_sym_for, - anon_sym_while, - anon_sym_repeat, - sym__number_literal, - sym_identifier, - sym_dots, - sym_return, - sym_next, - sym_break, - sym_true, - sym_false, - sym_null, - sym_inf, - sym_nan, - anon_sym_NA, - anon_sym_NA_integer_, - anon_sym_NA_real_, - anon_sym_NA_complex_, - anon_sym_NA_character_, - [129715] = 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_COLON_COLON_COLON, + sym_comma, + [129572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 10, + ACTIONS(651), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135053,12 +134926,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(637), 27, + ACTIONS(649), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -135081,10 +134954,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [129760] = 3, + [129617] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(635), 10, + ACTIONS(3767), 1, + anon_sym_L, + ACTIONS(3769), 1, + anon_sym_i, + ACTIONS(641), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135094,13 +134971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(633), 27, + ACTIONS(643), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -135121,12 +134997,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + sym_comma, + [129666] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(661), 1, + anon_sym_COLON_COLON, + ACTIONS(663), 1, anon_sym_COLON_COLON_COLON, + ACTIONS(659), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(657), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, sym_comma, - [129805] = 3, + [129715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(661), 10, + ACTIONS(655), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135137,10 +135056,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(663), 26, + ACTIONS(653), 27, + sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -135164,14 +135084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [129849] = 5, + [129760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3771), 1, - anon_sym_L, - ACTIONS(3773), 1, - anon_sym_i, - ACTIONS(653), 9, + ACTIONS(651), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135181,11 +135097,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(655), 25, + anon_sym_COLON_COLON, + ACTIONS(649), 27, + sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -135206,15 +135124,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [129897] = 5, + [129805] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(649), 1, + ACTIONS(661), 1, anon_sym_COLON_COLON, - ACTIONS(651), 1, + ACTIONS(663), 1, anon_sym_COLON_COLON_COLON, - ACTIONS(645), 9, + ACTIONS(659), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135224,11 +135143,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(647), 25, + ACTIONS(657), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -135250,10 +135169,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129945] = 3, + [129853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(641), 10, + ACTIONS(651), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135264,7 +135183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(643), 26, + ACTIONS(649), 26, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -135291,10 +135210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [129989] = 3, + [129897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(669), 10, + ACTIONS(637), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135305,7 +135224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(671), 26, + ACTIONS(635), 26, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -135332,10 +135251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [130033] = 3, + [129941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(669), 10, + ACTIONS(671), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135346,10 +135265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(671), 26, + ACTIONS(669), 26, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -135373,10 +135292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [130077] = 3, + [129985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(673), 10, + ACTIONS(633), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135387,11 +135306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(675), 26, + ACTIONS(631), 26, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -135414,11 +135333,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [130121] = 3, + [130029] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 10, + ACTIONS(661), 1, + anon_sym_COLON_COLON, + ACTIONS(663), 1, + anon_sym_COLON_COLON_COLON, + ACTIONS(3771), 1, anon_sym_EQ, + ACTIONS(659), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -135427,12 +135351,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(637), 26, + ACTIONS(657), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -135453,13 +135376,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [130165] = 3, + [130079] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(673), 10, + ACTIONS(661), 1, + anon_sym_COLON_COLON, + ACTIONS(663), 1, + anon_sym_COLON_COLON_COLON, + ACTIONS(3771), 1, anon_sym_EQ, + ACTIONS(659), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -135468,12 +135395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(675), 26, + ACTIONS(657), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -135494,16 +135420,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [130209] = 5, + [130129] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3775), 1, + ACTIONS(3773), 1, sym__newline, - STATE(1613), 1, + STATE(1611), 1, aux_sym_function_definition_repeat1, - ACTIONS(681), 13, + ACTIONS(677), 13, sym__raw_string_literal, sym__external_open_parenthesis, sym__external_open_brace, @@ -135517,7 +135442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, sym_dot_dot_i, - ACTIONS(683), 21, + ACTIONS(679), 21, anon_sym_function, anon_sym_if, anon_sym_for, @@ -135539,16 +135464,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - [130257] = 6, + [130177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(649), 1, - anon_sym_COLON_COLON, - ACTIONS(651), 1, - anon_sym_COLON_COLON_COLON, - ACTIONS(3778), 1, + ACTIONS(655), 10, anon_sym_EQ, - ACTIONS(645), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -135557,7 +135477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(647), 25, + anon_sym_COLON_COLON, + ACTIONS(653), 26, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -135582,11 +135503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [130307] = 3, + [130221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(635), 10, + ACTIONS(671), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135597,11 +135519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(633), 26, + ACTIONS(669), 26, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -135624,11 +135546,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [130351] = 3, + [130265] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 10, + ACTIONS(661), 1, + anon_sym_COLON_COLON, + ACTIONS(663), 1, + anon_sym_COLON_COLON_COLON, + ACTIONS(3771), 1, anon_sym_EQ, + ACTIONS(659), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -135637,12 +135564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(637), 26, + ACTIONS(657), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -135663,12 +135589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [130395] = 3, + [130315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(635), 10, + ACTIONS(667), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135679,11 +135604,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(633), 26, + ACTIONS(665), 26, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -135706,10 +135631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [130439] = 3, + [130359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(661), 10, + ACTIONS(651), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135720,7 +135645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(663), 26, + ACTIONS(649), 26, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -135745,12 +135670,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, + anon_sym_COLON_COLON_COLON, + sym_comma, + [130403] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(661), 1, + anon_sym_COLON_COLON, + ACTIONS(663), 1, + anon_sym_COLON_COLON_COLON, + ACTIONS(659), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(657), 25, + sym__external_open_parenthesis, + sym__external_open_bracket, + sym__external_close_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, sym_comma, - [130483] = 3, + [130451] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(669), 10, + ACTIONS(3776), 1, + anon_sym_L, + ACTIONS(3778), 1, + anon_sym_i, + ACTIONS(641), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135760,11 +135732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(671), 26, + ACTIONS(643), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -135786,18 +135757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [130527] = 6, + [130499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(649), 1, - anon_sym_COLON_COLON, - ACTIONS(651), 1, - anon_sym_COLON_COLON_COLON, - ACTIONS(3778), 1, + ACTIONS(651), 10, anon_sym_EQ, - ACTIONS(645), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -135806,7 +135771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(647), 25, + anon_sym_COLON_COLON, + ACTIONS(649), 26, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -135831,11 +135797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [130577] = 3, + [130543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(661), 10, + ACTIONS(633), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135846,10 +135813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(663), 26, + ACTIONS(631), 26, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -135873,10 +135840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [130621] = 3, + [130587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(673), 10, + ACTIONS(637), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135887,10 +135854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(675), 26, + ACTIONS(635), 26, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -135914,10 +135881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [130665] = 3, + [130631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 10, + ACTIONS(655), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135928,7 +135895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(637), 26, + ACTIONS(653), 26, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -135955,16 +135922,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [130709] = 6, + [130675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(649), 1, - anon_sym_COLON_COLON, - ACTIONS(651), 1, - anon_sym_COLON_COLON_COLON, - ACTIONS(3778), 1, + ACTIONS(667), 10, anon_sym_EQ, - ACTIONS(645), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -135973,11 +135935,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(647), 25, + anon_sym_COLON_COLON, + ACTIONS(665), 26, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -135998,11 +135961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [130759] = 3, + [130719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(641), 10, + ACTIONS(667), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136013,7 +135977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(643), 26, + ACTIONS(665), 26, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -136040,10 +136004,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [130803] = 3, + [130763] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(635), 10, + ACTIONS(661), 1, + anon_sym_COLON_COLON, + ACTIONS(663), 1, + anon_sym_COLON_COLON_COLON, + ACTIONS(659), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136053,8 +136021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(633), 26, + ACTIONS(657), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -136079,12 +136046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [130847] = 3, + [130811] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(641), 10, + ACTIONS(3780), 1, + anon_sym_L, + ACTIONS(3782), 1, + anon_sym_i, + ACTIONS(641), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136094,12 +136064,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(643), 26, + ACTIONS(643), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136120,16 +136089,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [130891] = 5, + [130859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(649), 1, - anon_sym_COLON_COLON, - ACTIONS(651), 1, - anon_sym_COLON_COLON_COLON, - ACTIONS(645), 9, + ACTIONS(651), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136139,10 +136103,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(647), 25, + anon_sym_COLON_COLON, + ACTIONS(649), 26, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -136164,15 +136129,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [130939] = 5, + [130903] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3780), 1, + ACTIONS(3784), 1, anon_sym_L, - ACTIONS(3782), 1, + ACTIONS(3786), 1, anon_sym_i, - ACTIONS(653), 9, + ACTIONS(641), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136182,11 +136148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(655), 25, + ACTIONS(643), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136208,14 +136174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130987] = 5, + [130951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(649), 1, - anon_sym_COLON_COLON, - ACTIONS(651), 1, - anon_sym_COLON_COLON_COLON, - ACTIONS(645), 9, + ACTIONS(651), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136225,7 +136187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(647), 25, + anon_sym_COLON_COLON, + ACTIONS(649), 26, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -136250,11 +136213,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [131035] = 3, + [130995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(661), 10, + ACTIONS(671), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136265,7 +136229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(663), 26, + ACTIONS(669), 26, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -136292,14 +136256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [131079] = 5, + [131039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3784), 1, - anon_sym_L, - ACTIONS(3786), 1, - anon_sym_i, - ACTIONS(653), 9, + ACTIONS(637), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136309,7 +136269,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(655), 25, + anon_sym_COLON_COLON, + ACTIONS(635), 26, + sym__external_open_parenthesis, + sym__external_close_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_COLON_COLON_COLON, + sym_comma, + [131083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(651), 10, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_COLON_COLON, + ACTIONS(649), 26, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -136334,11 +136336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, [131127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(661), 10, + ACTIONS(633), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136349,11 +136352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(663), 26, + ACTIONS(631), 26, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136379,7 +136382,7 @@ static const uint16_t ts_small_parse_table[] = { [131171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(661), 10, + ACTIONS(655), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136390,11 +136393,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(663), 26, + ACTIONS(653), 26, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136420,7 +136423,7 @@ static const uint16_t ts_small_parse_table[] = { [131215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(819), 9, + ACTIONS(741), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136430,11 +136433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(821), 26, + ACTIONS(739), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -136460,47 +136463,47 @@ static const uint16_t ts_small_parse_table[] = { [131258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 14, - sym__newline, - sym__raw_string_literal, + ACTIONS(785), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(783), 26, + sym__external_else, sym__external_open_parenthesis, - sym__external_open_brace, - anon_sym_BSLASH, + sym__external_close_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_BANG, anon_sym_PLUS, - anon_sym_DASH, - sym__hex_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_dot_dot_i, - ACTIONS(3788), 21, - anon_sym_function, - anon_sym_if, - anon_sym_for, - anon_sym_while, - anon_sym_repeat, - sym__number_literal, - sym_identifier, - sym_dots, - sym_return, - sym_next, - sym_break, - sym_true, - sym_false, - sym_null, - sym_inf, - sym_nan, - anon_sym_NA, - anon_sym_NA_integer_, - anon_sym_NA_real_, - anon_sym_NA_complex_, - anon_sym_NA_character_, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, [131301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(753), 9, + ACTIONS(777), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136510,7 +136513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(755), 26, + ACTIONS(775), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -136540,7 +136543,7 @@ static const uint16_t ts_small_parse_table[] = { [131344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(779), 9, + ACTIONS(791), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136550,12 +136553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(777), 26, + ACTIONS(789), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136580,7 +136583,7 @@ static const uint16_t ts_small_parse_table[] = { [131387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(783), 9, + ACTIONS(795), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136590,12 +136593,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(781), 26, + ACTIONS(793), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136620,7 +136623,7 @@ static const uint16_t ts_small_parse_table[] = { [131430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(753), 9, + ACTIONS(771), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136630,12 +136633,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(755), 26, + ACTIONS(769), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136660,7 +136663,7 @@ static const uint16_t ts_small_parse_table[] = { [131473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(779), 9, + ACTIONS(799), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136670,7 +136673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(777), 26, + ACTIONS(797), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -136700,7 +136703,7 @@ static const uint16_t ts_small_parse_table[] = { [131516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(783), 9, + ACTIONS(848), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136710,12 +136713,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(781), 26, + ACTIONS(850), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [131559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(852), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(854), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_close_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [131602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(803), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(801), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136737,10 +136820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131559] = 3, + [131645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 9, + ACTIONS(824), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136750,7 +136833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(793), 26, + ACTIONS(822), 26, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -136777,10 +136860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131602] = 3, + [131688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(699), 9, + ACTIONS(807), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136790,12 +136873,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(701), 26, + ACTIONS(805), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136817,10 +136900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131645] = 3, + [131731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 9, + ACTIONS(811), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136830,12 +136913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(793), 26, + ACTIONS(809), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136857,10 +136940,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131688] = 3, + [131774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(703), 9, + ACTIONS(820), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136870,12 +136953,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(705), 26, + ACTIONS(818), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136897,10 +136980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131731] = 3, + [131817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(699), 9, + ACTIONS(836), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136910,11 +136993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(701), 26, + ACTIONS(838), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -136937,10 +137020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131774] = 3, + [131860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(703), 9, + ACTIONS(820), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136950,7 +137033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(705), 26, + ACTIONS(818), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -136977,10 +137060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131817] = 3, + [131903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(707), 9, + ACTIONS(811), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136990,7 +137073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(709), 26, + ACTIONS(809), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -137017,50 +137100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(709), 26, - sym__external_else, - sym__external_open_parenthesis, - sym__external_close_parenthesis, - sym__external_open_bracket, - sym__external_open_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - sym_comma, - [131903] = 3, + [131946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(783), 9, + ACTIONS(859), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137070,7 +137113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(781), 26, + ACTIONS(861), 26, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -137097,50 +137140,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131946] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3794), 14, - sym__newline, - sym__raw_string_literal, - sym__external_open_parenthesis, - sym__external_open_brace, - anon_sym_BSLASH, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - sym__hex_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_dot_dot_i, - ACTIONS(3792), 21, - anon_sym_function, - anon_sym_if, - anon_sym_for, - anon_sym_while, - anon_sym_repeat, - sym__number_literal, - sym_identifier, - sym_dots, - sym_return, - sym_next, - sym_break, - sym_true, - sym_false, - sym_null, - sym_inf, - sym_nan, - anon_sym_NA, - anon_sym_NA_integer_, - anon_sym_NA_real_, - anon_sym_NA_complex_, - anon_sym_NA_character_, [131989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 9, + ACTIONS(807), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137150,12 +137153,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(793), 26, + ACTIONS(805), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137180,7 +137183,7 @@ static const uint16_t ts_small_parse_table[] = { [132032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(699), 9, + ACTIONS(820), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137190,12 +137193,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(701), 26, + ACTIONS(818), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137220,7 +137223,7 @@ static const uint16_t ts_small_parse_table[] = { [132075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(703), 9, + ACTIONS(737), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137230,12 +137233,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(705), 26, + ACTIONS(735), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137260,7 +137263,7 @@ static const uint16_t ts_small_parse_table[] = { [132118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(757), 9, + ACTIONS(799), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137270,12 +137273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(759), 26, + ACTIONS(797), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137300,7 +137303,7 @@ static const uint16_t ts_small_parse_table[] = { [132161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(707), 9, + ACTIONS(795), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137310,12 +137313,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(709), 26, + ACTIONS(793), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137340,7 +137343,7 @@ static const uint16_t ts_small_parse_table[] = { [132204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(761), 9, + ACTIONS(811), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137350,12 +137353,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(763), 26, + ACTIONS(809), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137380,7 +137383,7 @@ static const uint16_t ts_small_parse_table[] = { [132247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(765), 9, + ACTIONS(791), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137390,12 +137393,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(767), 26, + ACTIONS(789), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137420,7 +137423,7 @@ static const uint16_t ts_small_parse_table[] = { [132290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 9, + ACTIONS(785), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137430,12 +137433,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(771), 26, + ACTIONS(783), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137460,7 +137463,7 @@ static const uint16_t ts_small_parse_table[] = { [132333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(695), 9, + ACTIONS(807), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137470,12 +137473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(697), 26, + ACTIONS(805), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137500,47 +137503,7 @@ static const uint16_t ts_small_parse_table[] = { [132376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(775), 26, - sym__external_else, - sym__external_open_parenthesis, - sym__external_open_bracket, - sym__external_open_bracket2, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - sym_comma, - [132419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(757), 9, + ACTIONS(836), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137550,7 +137513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(759), 26, + ACTIONS(838), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -137577,90 +137540,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(757), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(759), 26, - sym__external_else, - sym__external_open_parenthesis, - sym__external_close_parenthesis, - sym__external_open_bracket, - sym__external_open_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - sym_comma, - [132505] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(761), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(763), 26, - sym__external_else, - sym__external_open_parenthesis, - sym__external_close_parenthesis, - sym__external_open_bracket, - sym__external_open_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - sym_comma, - [132548] = 3, + [132419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(765), 9, + ACTIONS(799), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137670,7 +137553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(767), 26, + ACTIONS(797), 26, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -137697,10 +137580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132591] = 3, + [132462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 9, + ACTIONS(781), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137710,11 +137593,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(771), 26, + ACTIONS(779), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -137737,10 +137620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132634] = 3, + [132505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(695), 9, + ACTIONS(777), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137750,11 +137633,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(697), 26, + ACTIONS(775), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -137777,10 +137660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132677] = 3, + [132548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 9, + ACTIONS(771), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137790,11 +137673,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(775), 26, + ACTIONS(769), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -137817,10 +137700,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132720] = 3, + [132591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(853), 9, + ACTIONS(3790), 14, + sym__newline, + sym__raw_string_literal, + sym__external_open_parenthesis, + sym__external_open_brace, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + sym__hex_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + sym_dot_dot_i, + ACTIONS(3788), 21, + anon_sym_function, + anon_sym_if, + anon_sym_for, + anon_sym_while, + anon_sym_repeat, + sym__number_literal, + sym_identifier, + sym_dots, + sym_return, + sym_next, + sym_break, + sym_true, + sym_false, + sym_null, + sym_inf, + sym_nan, + anon_sym_NA, + anon_sym_NA_integer_, + anon_sym_NA_real_, + anon_sym_NA_complex_, + anon_sym_NA_character_, + [132634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(795), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137830,12 +137753,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(855), 26, + ACTIONS(793), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137857,10 +137780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132763] = 3, + [132677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(787), 9, + ACTIONS(791), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137870,12 +137793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(785), 26, + ACTIONS(789), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137897,10 +137820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132806] = 3, + [132720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(791), 9, + ACTIONS(803), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137910,7 +137833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(789), 26, + ACTIONS(801), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -137937,10 +137860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132849] = 3, + [132763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(801), 9, + ACTIONS(785), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137950,7 +137873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(799), 26, + ACTIONS(783), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -137977,10 +137900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132892] = 3, + [132806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(803), 9, + ACTIONS(781), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137990,7 +137913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(805), 26, + ACTIONS(779), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -138017,10 +137940,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132935] = 3, + [132849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(853), 9, + ACTIONS(863), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138030,11 +137953,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(855), 26, + ACTIONS(865), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -138057,10 +137980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132978] = 3, + [132892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(811), 9, + ACTIONS(824), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138070,12 +137993,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(813), 26, + ACTIONS(822), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138097,10 +138020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133021] = 3, + [132935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(815), 9, + ACTIONS(781), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138110,12 +138033,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(817), 26, + ACTIONS(779), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138137,10 +138060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133064] = 3, + [132978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(819), 9, + ACTIONS(777), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138150,12 +138073,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(821), 26, + ACTIONS(775), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138177,10 +138100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133107] = 3, + [133021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(823), 9, + ACTIONS(848), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138190,12 +138113,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(825), 26, + ACTIONS(850), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138217,10 +138140,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133150] = 3, + [133064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 9, + ACTIONS(745), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138230,12 +138153,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(829), 26, + ACTIONS(743), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138257,50 +138180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133193] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3798), 14, - sym__newline, - sym__raw_string_literal, - sym__external_open_parenthesis, - sym__external_open_brace, - anon_sym_BSLASH, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - sym__hex_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_dot_dot_i, - ACTIONS(3796), 21, - anon_sym_function, - anon_sym_if, - anon_sym_for, - anon_sym_while, - anon_sym_repeat, - sym__number_literal, - sym_identifier, - sym_dots, - sym_return, - sym_next, - sym_break, - sym_true, - sym_false, - sym_null, - sym_inf, - sym_nan, - anon_sym_NA, - anon_sym_NA_integer_, - anon_sym_NA_real_, - anon_sym_NA_complex_, - anon_sym_NA_character_, - [133236] = 3, + [133107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(787), 9, + ACTIONS(852), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138310,7 +138193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(785), 26, + ACTIONS(854), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -138337,10 +138220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133279] = 3, + [133150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(791), 9, + ACTIONS(859), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138350,7 +138233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(789), 26, + ACTIONS(861), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -138377,10 +138260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133322] = 3, + [133193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(787), 9, + ACTIONS(863), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138390,11 +138273,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(785), 26, + ACTIONS(865), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -138417,10 +138300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133365] = 3, + [133236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(791), 9, + ACTIONS(836), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138430,12 +138313,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(789), 26, + ACTIONS(838), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138457,10 +138340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133408] = 3, + [133279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(801), 9, + ACTIONS(767), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138470,7 +138353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(799), 26, + ACTIONS(765), 26, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -138497,10 +138380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133451] = 3, + [133322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(803), 9, + ACTIONS(824), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138510,12 +138393,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(805), 26, + ACTIONS(822), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138537,10 +138420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133494] = 3, + [133365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(807), 9, + ACTIONS(848), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138550,12 +138433,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(809), 26, + ACTIONS(850), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138577,10 +138460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133537] = 3, + [133408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(811), 9, + ACTIONS(852), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138590,12 +138473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(813), 26, + ACTIONS(854), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138617,10 +138500,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133580] = 3, + [133451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3794), 14, + sym__newline, + sym__raw_string_literal, + sym__external_open_parenthesis, + sym__external_open_brace, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + sym__hex_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + sym_dot_dot_i, + ACTIONS(3792), 21, + anon_sym_function, + anon_sym_if, + anon_sym_for, + anon_sym_while, + anon_sym_repeat, + sym__number_literal, + sym_identifier, + sym_dots, + sym_return, + sym_next, + sym_break, + sym_true, + sym_false, + sym_null, + sym_inf, + sym_nan, + anon_sym_NA, + anon_sym_NA_integer_, + anon_sym_NA_real_, + anon_sym_NA_complex_, + anon_sym_NA_character_, + [133494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(815), 9, + ACTIONS(737), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138630,11 +138553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(817), 26, + ACTIONS(735), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -138657,10 +138580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133623] = 3, + [133537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(801), 9, + ACTIONS(737), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138670,12 +138593,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(799), 26, + ACTIONS(735), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138697,10 +138620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133666] = 3, + [133580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(803), 9, + ACTIONS(763), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138710,12 +138633,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(805), 26, + ACTIONS(761), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138737,10 +138660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133709] = 3, + [133623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(807), 9, + ACTIONS(859), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138750,12 +138673,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(809), 26, + ACTIONS(861), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138777,10 +138700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133752] = 3, + [133666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(811), 9, + ACTIONS(741), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138790,7 +138713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(813), 26, + ACTIONS(739), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -138817,10 +138740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133795] = 3, + [133709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(819), 9, + ACTIONS(745), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138830,11 +138753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(821), 26, + ACTIONS(743), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -138857,10 +138780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133838] = 3, + [133752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(823), 9, + ACTIONS(751), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138870,11 +138793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(825), 26, + ACTIONS(749), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -138897,10 +138820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133881] = 3, + [133795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 9, + ACTIONS(755), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138910,11 +138833,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(829), 26, + ACTIONS(753), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -138937,10 +138860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133924] = 3, + [133838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(815), 9, + ACTIONS(763), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138950,7 +138873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(817), 26, + ACTIONS(761), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -138977,10 +138900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133967] = 3, + [133881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(779), 9, + ACTIONS(767), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138990,7 +138913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(777), 26, + ACTIONS(765), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -139017,10 +138940,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134010] = 3, + [133924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(853), 9, + ACTIONS(863), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139030,12 +138953,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(855), 26, + ACTIONS(865), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139057,10 +138980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134053] = 3, + [133967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(761), 9, + ACTIONS(755), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139070,12 +138993,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(763), 26, + ACTIONS(753), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139097,10 +139020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134096] = 3, + [134010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(765), 9, + ACTIONS(751), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139110,12 +139033,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(767), 26, + ACTIONS(749), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139137,10 +139060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134139] = 3, + [134053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(823), 9, + ACTIONS(745), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139150,12 +139073,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(825), 26, + ACTIONS(743), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139177,10 +139100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134182] = 3, + [134096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 9, + ACTIONS(741), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139190,12 +139113,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(829), 26, + ACTIONS(739), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139217,10 +139140,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134225] = 3, + [134139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 9, + ACTIONS(803), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139230,7 +139153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(771), 26, + ACTIONS(801), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -139257,10 +139180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134268] = 3, + [134182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(695), 9, + ACTIONS(771), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139270,11 +139193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(697), 26, + ACTIONS(769), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -139297,10 +139220,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, + [134225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(751), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(749), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_close_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [134268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3798), 14, + sym__newline, + sym__raw_string_literal, + sym__external_open_parenthesis, + sym__external_open_brace, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + sym__hex_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + sym_dot_dot_i, + ACTIONS(3796), 21, + anon_sym_function, + anon_sym_if, + anon_sym_for, + anon_sym_while, + anon_sym_repeat, + sym__number_literal, + sym_identifier, + sym_dots, + sym_return, + sym_next, + sym_break, + sym_true, + sym_false, + sym_null, + sym_inf, + sym_nan, + anon_sym_NA, + anon_sym_NA_integer_, + anon_sym_NA_real_, + anon_sym_NA_complex_, + anon_sym_NA_character_, [134311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(753), 9, + ACTIONS(767), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139310,12 +139313,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(755), 26, + ACTIONS(765), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139340,7 +139343,7 @@ static const uint16_t ts_small_parse_table[] = { [134354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 9, + ACTIONS(755), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139350,11 +139353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(775), 26, + ACTIONS(753), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -139380,7 +139383,7 @@ static const uint16_t ts_small_parse_table[] = { [134397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(807), 9, + ACTIONS(763), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139390,12 +139393,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(809), 26, + ACTIONS(761), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139420,7 +139423,7 @@ static const uint16_t ts_small_parse_table[] = { [134440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 9, + ACTIONS(785), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139430,7 +139433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(775), 25, + ACTIONS(783), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -139459,7 +139462,7 @@ static const uint16_t ts_small_parse_table[] = { [134482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(753), 9, + ACTIONS(848), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139469,11 +139472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(755), 25, + ACTIONS(850), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139498,7 +139501,7 @@ static const uint16_t ts_small_parse_table[] = { [134524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(779), 9, + ACTIONS(807), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139508,10 +139511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(777), 25, + ACTIONS(805), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -139537,7 +139540,7 @@ static const uint16_t ts_small_parse_table[] = { [134566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(819), 9, + ACTIONS(799), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139547,11 +139550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(821), 25, + ACTIONS(797), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139576,7 +139579,7 @@ static const uint16_t ts_small_parse_table[] = { [134608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(823), 9, + ACTIONS(859), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139586,11 +139589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(825), 25, + ACTIONS(861), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139615,7 +139618,7 @@ static const uint16_t ts_small_parse_table[] = { [134650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 9, + ACTIONS(795), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139625,11 +139628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(829), 25, + ACTIONS(793), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139654,7 +139657,7 @@ static const uint16_t ts_small_parse_table[] = { [134692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(783), 9, + ACTIONS(811), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139664,10 +139667,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(781), 25, + ACTIONS(809), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -139693,7 +139696,7 @@ static const uint16_t ts_small_parse_table[] = { [134734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(787), 9, + ACTIONS(791), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139703,7 +139706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(785), 25, + ACTIONS(789), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -139732,7 +139735,7 @@ static const uint16_t ts_small_parse_table[] = { [134776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(819), 9, + ACTIONS(820), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139742,10 +139745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(821), 25, + ACTIONS(818), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -139771,7 +139774,7 @@ static const uint16_t ts_small_parse_table[] = { [134818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(823), 9, + ACTIONS(781), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139781,7 +139784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(825), 25, + ACTIONS(779), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -139810,7 +139813,7 @@ static const uint16_t ts_small_parse_table[] = { [134860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 9, + ACTIONS(777), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139820,7 +139823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(829), 25, + ACTIONS(775), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -139849,7 +139852,7 @@ static const uint16_t ts_small_parse_table[] = { [134902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(779), 9, + ACTIONS(771), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139859,11 +139862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(777), 25, + ACTIONS(769), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139888,7 +139891,7 @@ static const uint16_t ts_small_parse_table[] = { [134944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(753), 9, + ACTIONS(811), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139898,10 +139901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(755), 25, + ACTIONS(809), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -139927,7 +139930,7 @@ static const uint16_t ts_small_parse_table[] = { [134986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(783), 9, + ACTIONS(859), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139937,7 +139940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(781), 25, + ACTIONS(861), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -139966,7 +139969,7 @@ static const uint16_t ts_small_parse_table[] = { [135028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 9, + ACTIONS(852), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139976,10 +139979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(793), 25, + ACTIONS(854), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -140005,7 +140008,7 @@ static const uint16_t ts_small_parse_table[] = { [135070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(699), 9, + ACTIONS(807), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140015,10 +140018,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(701), 25, + ACTIONS(805), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -140044,7 +140047,7 @@ static const uint16_t ts_small_parse_table[] = { [135112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(753), 9, + ACTIONS(848), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140054,7 +140057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(755), 25, + ACTIONS(850), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -140083,7 +140086,7 @@ static const uint16_t ts_small_parse_table[] = { [135154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(703), 9, + ACTIONS(799), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140093,10 +140096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(705), 25, + ACTIONS(797), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -140122,7 +140125,7 @@ static const uint16_t ts_small_parse_table[] = { [135196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(853), 9, + ACTIONS(863), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140132,11 +140135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(855), 25, + ACTIONS(865), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -140161,7 +140164,7 @@ static const uint16_t ts_small_parse_table[] = { [135238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(815), 9, + ACTIONS(795), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140171,10 +140174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(817), 25, + ACTIONS(793), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -140200,7 +140203,7 @@ static const uint16_t ts_small_parse_table[] = { [135280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(757), 9, + ACTIONS(791), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140210,7 +140213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(759), 25, + ACTIONS(789), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -140239,7 +140242,7 @@ static const uint16_t ts_small_parse_table[] = { [135322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(707), 9, + ACTIONS(824), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140249,10 +140252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(709), 25, + ACTIONS(822), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -140278,7 +140281,7 @@ static const uint16_t ts_small_parse_table[] = { [135364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(757), 9, + ACTIONS(785), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140288,11 +140291,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(759), 25, + ACTIONS(783), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -140317,7 +140320,7 @@ static const uint16_t ts_small_parse_table[] = { [135406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(807), 9, + ACTIONS(836), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140327,10 +140330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(809), 25, + ACTIONS(838), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -140356,7 +140359,7 @@ static const uint16_t ts_small_parse_table[] = { [135448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(779), 9, + ACTIONS(781), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140366,10 +140369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(777), 25, + ACTIONS(779), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -140395,7 +140398,7 @@ static const uint16_t ts_small_parse_table[] = { [135490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(791), 9, + ACTIONS(777), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140405,10 +140408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(789), 25, + ACTIONS(775), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -140434,7 +140437,7 @@ static const uint16_t ts_small_parse_table[] = { [135532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(761), 9, + ACTIONS(771), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140444,11 +140447,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(763), 25, + ACTIONS(769), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -140473,7 +140476,7 @@ static const uint16_t ts_small_parse_table[] = { [135574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(765), 9, + ACTIONS(820), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140483,7 +140486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(767), 25, + ACTIONS(818), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -140522,11 +140525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(813), 25, + ACTIONS(809), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -140551,7 +140554,7 @@ static const uint16_t ts_small_parse_table[] = { [135658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(783), 9, + ACTIONS(820), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140561,7 +140564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(781), 25, + ACTIONS(818), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -140590,7 +140593,7 @@ static const uint16_t ts_small_parse_table[] = { [135700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(695), 9, + ACTIONS(807), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140600,11 +140603,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(697), 25, + ACTIONS(805), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -140629,7 +140632,7 @@ static const uint16_t ts_small_parse_table[] = { [135742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(695), 9, + ACTIONS(799), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140639,7 +140642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(697), 25, + ACTIONS(797), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -140668,7 +140671,7 @@ static const uint16_t ts_small_parse_table[] = { [135784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 9, + ACTIONS(795), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140678,7 +140681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(775), 25, + ACTIONS(793), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -140707,7 +140710,7 @@ static const uint16_t ts_small_parse_table[] = { [135826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(761), 9, + ACTIONS(741), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140717,11 +140720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(763), 25, + ACTIONS(739), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -140746,7 +140749,7 @@ static const uint16_t ts_small_parse_table[] = { [135868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 9, + ACTIONS(791), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140756,7 +140759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(793), 25, + ACTIONS(789), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -140785,7 +140788,7 @@ static const uint16_t ts_small_parse_table[] = { [135910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(699), 9, + ACTIONS(836), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140795,11 +140798,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(701), 25, + ACTIONS(838), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -140824,7 +140827,7 @@ static const uint16_t ts_small_parse_table[] = { [135952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(765), 9, + ACTIONS(803), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140834,10 +140837,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(767), 25, + ACTIONS(801), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -140863,7 +140866,7 @@ static const uint16_t ts_small_parse_table[] = { [135994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(703), 9, + ACTIONS(852), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140873,7 +140876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(705), 25, + ACTIONS(854), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -140902,7 +140905,7 @@ static const uint16_t ts_small_parse_table[] = { [136036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(707), 9, + ACTIONS(785), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140912,7 +140915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(709), 25, + ACTIONS(783), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -140941,7 +140944,7 @@ static const uint16_t ts_small_parse_table[] = { [136078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 9, + ACTIONS(781), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140951,11 +140954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(771), 25, + ACTIONS(779), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -140980,7 +140983,7 @@ static const uint16_t ts_small_parse_table[] = { [136120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(695), 9, + ACTIONS(777), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140990,11 +140993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(697), 25, + ACTIONS(775), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -141019,7 +141022,7 @@ static const uint16_t ts_small_parse_table[] = { [136162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 9, + ACTIONS(771), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141029,11 +141032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(775), 25, + ACTIONS(769), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -141058,7 +141061,7 @@ static const uint16_t ts_small_parse_table[] = { [136204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(853), 9, + ACTIONS(745), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141068,11 +141071,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(855), 25, + ACTIONS(743), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -141097,7 +141100,7 @@ static const uint16_t ts_small_parse_table[] = { [136246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 9, + ACTIONS(737), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141107,7 +141110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(793), 25, + ACTIONS(735), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -141136,7 +141139,7 @@ static const uint16_t ts_small_parse_table[] = { [136288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(699), 9, + ACTIONS(751), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141146,11 +141149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(701), 25, + ACTIONS(749), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -141175,7 +141178,7 @@ static const uint16_t ts_small_parse_table[] = { [136330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(703), 9, + ACTIONS(824), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141185,10 +141188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(705), 25, + ACTIONS(822), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -141214,7 +141217,7 @@ static const uint16_t ts_small_parse_table[] = { [136372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(707), 9, + ACTIONS(741), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141224,7 +141227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(709), 25, + ACTIONS(739), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -141253,7 +141256,7 @@ static const uint16_t ts_small_parse_table[] = { [136414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(853), 9, + ACTIONS(863), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141263,11 +141266,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(855), 25, + ACTIONS(865), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -141292,7 +141295,7 @@ static const uint16_t ts_small_parse_table[] = { [136456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(801), 9, + ACTIONS(755), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141302,11 +141305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(799), 25, + ACTIONS(753), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -141341,10 +141344,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(805), 25, + ACTIONS(801), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -141370,7 +141373,7 @@ static const uint16_t ts_small_parse_table[] = { [136540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(757), 9, + ACTIONS(737), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141380,11 +141383,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(759), 25, + ACTIONS(735), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -141409,7 +141412,7 @@ static const uint16_t ts_small_parse_table[] = { [136582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(787), 9, + ACTIONS(767), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141419,7 +141422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(785), 25, + ACTIONS(765), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -141448,7 +141451,7 @@ static const uint16_t ts_small_parse_table[] = { [136624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(787), 9, + ACTIONS(763), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141458,10 +141461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(785), 25, + ACTIONS(761), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -141487,7 +141490,7 @@ static const uint16_t ts_small_parse_table[] = { [136666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(791), 9, + ACTIONS(745), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141497,11 +141500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(789), 25, + ACTIONS(743), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -141526,7 +141529,7 @@ static const uint16_t ts_small_parse_table[] = { [136708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(791), 9, + ACTIONS(767), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141536,10 +141539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(789), 25, + ACTIONS(765), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -141565,7 +141568,7 @@ static const uint16_t ts_small_parse_table[] = { [136750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(801), 9, + ACTIONS(751), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141575,11 +141578,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(799), 25, + ACTIONS(749), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -141604,7 +141607,7 @@ static const uint16_t ts_small_parse_table[] = { [136792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(801), 9, + ACTIONS(852), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141614,10 +141617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(799), 25, + ACTIONS(854), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -141643,7 +141646,7 @@ static const uint16_t ts_small_parse_table[] = { [136834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(803), 9, + ACTIONS(745), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141653,11 +141656,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(805), 25, + ACTIONS(743), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -141682,7 +141685,7 @@ static const uint16_t ts_small_parse_table[] = { [136876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(761), 9, + ACTIONS(741), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141692,7 +141695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(763), 25, + ACTIONS(739), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -141721,7 +141724,7 @@ static const uint16_t ts_small_parse_table[] = { [136918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(803), 9, + ACTIONS(859), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141731,10 +141734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(805), 25, + ACTIONS(861), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -141760,7 +141763,7 @@ static const uint16_t ts_small_parse_table[] = { [136960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(807), 9, + ACTIONS(737), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141770,10 +141773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(809), 25, + ACTIONS(735), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -141799,7 +141802,7 @@ static const uint16_t ts_small_parse_table[] = { [137002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(811), 9, + ACTIONS(751), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141809,7 +141812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(813), 25, + ACTIONS(749), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -141838,7 +141841,7 @@ static const uint16_t ts_small_parse_table[] = { [137044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(815), 9, + ACTIONS(755), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141848,7 +141851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(817), 25, + ACTIONS(753), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -141877,7 +141880,7 @@ static const uint16_t ts_small_parse_table[] = { [137086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(807), 9, + ACTIONS(848), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141887,7 +141890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(809), 25, + ACTIONS(850), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -141916,7 +141919,7 @@ static const uint16_t ts_small_parse_table[] = { [137128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(811), 9, + ACTIONS(824), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141926,7 +141929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(813), 25, + ACTIONS(822), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -141955,7 +141958,7 @@ static const uint16_t ts_small_parse_table[] = { [137170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(765), 9, + ACTIONS(803), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -141965,11 +141968,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(767), 25, + ACTIONS(801), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -141994,7 +141997,7 @@ static const uint16_t ts_small_parse_table[] = { [137212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(819), 9, + ACTIONS(763), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -142004,7 +142007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(821), 25, + ACTIONS(761), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -142033,7 +142036,7 @@ static const uint16_t ts_small_parse_table[] = { [137254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(823), 9, + ACTIONS(767), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -142043,7 +142046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(825), 25, + ACTIONS(765), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -142072,7 +142075,7 @@ static const uint16_t ts_small_parse_table[] = { [137296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 9, + ACTIONS(755), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -142082,10 +142085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(829), 25, + ACTIONS(753), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -142111,7 +142114,7 @@ static const uint16_t ts_small_parse_table[] = { [137338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 9, + ACTIONS(836), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -142121,11 +142124,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(771), 25, + ACTIONS(838), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -142150,7 +142153,7 @@ static const uint16_t ts_small_parse_table[] = { [137380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(815), 9, + ACTIONS(863), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -142160,11 +142163,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(817), 25, + ACTIONS(865), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -142189,7 +142192,7 @@ static const uint16_t ts_small_parse_table[] = { [137422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 9, + ACTIONS(763), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -142199,7 +142202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(771), 25, + ACTIONS(761), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -142232,17 +142235,17 @@ static const uint16_t ts_small_parse_table[] = { sym_dot_dot_i, ACTIONS(3804), 1, sym__external_close_parenthesis, - STATE(1681), 1, + STATE(1706), 1, sym__close_parenthesis, - STATE(1856), 1, + STATE(1954), 1, sym_parameter, - STATE(2019), 1, - sym__parameter_name, - STATE(2021), 1, + STATE(2018), 1, sym__identifier_or_dots_or_dot_dot_i, - STATE(2041), 1, + STATE(2025), 1, + sym__parameter_name, + STATE(2046), 1, sym__parameter_without_default, - STATE(2043), 1, + STATE(2049), 1, sym__parameter_with_default, ACTIONS(3800), 2, sym_identifier, @@ -142252,15 +142255,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3802), 1, sym_dot_dot_i, - STATE(2019), 1, - sym__parameter_name, - STATE(2021), 1, + STATE(2018), 1, sym__identifier_or_dots_or_dot_dot_i, - STATE(2029), 1, + STATE(2025), 1, + sym__parameter_name, + STATE(2034), 1, sym_parameter, - STATE(2041), 1, + STATE(2046), 1, sym__parameter_without_default, - STATE(2043), 1, + STATE(2049), 1, sym__parameter_with_default, ACTIONS(3800), 2, sym_identifier, @@ -142272,11 +142275,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, ACTIONS(3808), 1, sym__external_open_parenthesis, - STATE(455), 1, + STATE(644), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(1803), 1, aux_sym_function_definition_repeat1, [137541] = 6, ACTIONS(3), 1, @@ -142285,24 +142288,24 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(3810), 1, sym__newline, - STATE(735), 1, + STATE(588), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(1786), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, [137560] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, ACTIONS(3808), 1, sym__external_open_parenthesis, - STATE(755), 1, + ACTIONS(3810), 1, + sym__newline, + STATE(870), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, [137579] = 6, ACTIONS(3), 1, @@ -142311,11 +142314,11 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(3812), 1, sym__newline, - STATE(517), 1, + STATE(753), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(1797), 1, + STATE(1792), 1, aux_sym_function_definition_repeat1, [137598] = 6, ACTIONS(3), 1, @@ -142324,11 +142327,11 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(3814), 1, sym__newline, - STATE(989), 1, + STATE(826), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(1784), 1, + STATE(1790), 1, aux_sym_function_definition_repeat1, [137617] = 6, ACTIONS(3), 1, @@ -142337,50 +142340,50 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(3816), 1, sym__newline, - STATE(636), 1, + STATE(916), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(1791), 1, + STATE(1786), 1, aux_sym_function_definition_repeat1, [137636] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3808), 1, sym__external_open_parenthesis, - ACTIONS(3818), 1, + ACTIONS(3810), 1, sym__newline, - STATE(926), 1, + STATE(791), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(1792), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, [137655] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, ACTIONS(3808), 1, sym__external_open_parenthesis, - STATE(667), 1, + ACTIONS(3818), 1, + sym__newline, + STATE(592), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(1797), 1, aux_sym_function_definition_repeat1, [137674] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, ACTIONS(3808), 1, sym__external_open_parenthesis, - STATE(945), 1, + ACTIONS(3810), 1, + sym__newline, + STATE(790), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, [137693] = 6, ACTIONS(3), 1, @@ -142389,2357 +142392,2357 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(3820), 1, sym__newline, - STATE(794), 1, + STATE(913), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(1794), 1, + STATE(1798), 1, aux_sym_function_definition_repeat1, [137712] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, ACTIONS(3808), 1, sym__external_open_parenthesis, - STATE(818), 1, + ACTIONS(3810), 1, + sym__newline, + STATE(713), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, [137731] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3808), 1, sym__external_open_parenthesis, - ACTIONS(3822), 1, + ACTIONS(3810), 1, sym__newline, - STATE(573), 1, + STATE(630), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(1796), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, [137750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, ACTIONS(3808), 1, sym__external_open_parenthesis, + ACTIONS(3822), 1, + sym__newline, STATE(593), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(1795), 1, aux_sym_function_definition_repeat1, [137769] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, ACTIONS(3808), 1, sym__external_open_parenthesis, - STATE(537), 1, + ACTIONS(3810), 1, + sym__newline, + STATE(1005), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, [137788] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3808), 1, sym__external_open_parenthesis, - ACTIONS(3824), 1, + ACTIONS(3810), 1, sym__newline, - STATE(487), 1, + STATE(949), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(1800), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, [137807] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3808), 1, sym__external_open_parenthesis, - ACTIONS(3826), 1, + ACTIONS(3824), 1, sym__newline, - STATE(871), 1, + STATE(768), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(1803), 1, + STATE(1785), 1, aux_sym_function_definition_repeat1, [137826] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, ACTIONS(3808), 1, sym__external_open_parenthesis, - STATE(492), 1, + ACTIONS(3810), 1, + sym__newline, + STATE(478), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, [137845] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3808), 1, sym__external_open_parenthesis, - ACTIONS(3828), 1, + ACTIONS(3826), 1, sym__newline, - STATE(678), 1, + STATE(458), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(1802), 1, + STATE(1800), 1, aux_sym_function_definition_repeat1, [137864] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, ACTIONS(3808), 1, sym__external_open_parenthesis, - STATE(709), 1, + ACTIONS(3828), 1, + sym__newline, + STATE(498), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(1794), 1, aux_sym_function_definition_repeat1, [137883] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, ACTIONS(3808), 1, sym__external_open_parenthesis, - STATE(890), 1, + ACTIONS(3810), 1, + sym__newline, + STATE(928), 1, sym_parameters, STATE(1782), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, - [137902] = 4, - ACTIONS(3830), 1, - anon_sym_SQUOTE, - ACTIONS(3834), 1, - sym_comment, - STATE(1907), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [137916] = 5, + [137902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(469), 1, sym_comma, - ACTIONS(3836), 1, - sym__external_close_parenthesis, - STATE(342), 1, - sym__close_parenthesis, - STATE(1809), 1, + ACTIONS(3830), 1, + sym__external_close_bracket2, + STATE(1639), 1, + sym__close_bracket2, + STATE(1806), 1, aux_sym_call_arguments_repeat1, + [137918] = 4, + ACTIONS(3832), 1, + anon_sym_DQUOTE, + ACTIONS(3836), 1, + sym_comment, + STATE(1992), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3834), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, [137932] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(469), 1, sym_comma, ACTIONS(3838), 1, - sym__external_close_parenthesis, - STATE(348), 1, - sym__close_parenthesis, - STATE(2022), 1, + sym__external_close_bracket2, + STATE(1648), 1, + sym__close_bracket2, + STATE(2024), 1, aux_sym_call_arguments_repeat1, [137948] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(519), 1, sym_comma, ACTIONS(3840), 1, sym__external_close_parenthesis, - STATE(427), 1, + STATE(1740), 1, sym__close_parenthesis, - STATE(2022), 1, + STATE(2019), 1, aux_sym_call_arguments_repeat1, [137964] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(423), 1, sym_comma, ACTIONS(3842), 1, - sym__external_close_parenthesis, - STATE(429), 1, - sym__close_parenthesis, + sym__external_close_bracket, + STATE(1647), 1, + sym__close_bracket, STATE(2022), 1, aux_sym_call_arguments_repeat1, [137980] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(469), 1, sym_comma, ACTIONS(3844), 1, - sym__external_close_parenthesis, - STATE(364), 1, - sym__close_parenthesis, - STATE(2022), 1, + sym__external_close_bracket2, + STATE(1668), 1, + sym__close_bracket2, + STATE(1880), 1, aux_sym_call_arguments_repeat1, [137996] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, + ACTIONS(469), 1, + sym_comma, ACTIONS(3846), 1, - sym__external_open_parenthesis, - STATE(1857), 1, - sym__open_parenthesis, - STATE(2020), 1, - aux_sym_function_definition_repeat1, + sym__external_close_bracket2, + STATE(1663), 1, + sym__close_bracket2, + STATE(2024), 1, + aux_sym_call_arguments_repeat1, [138012] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(469), 1, sym_comma, ACTIONS(3848), 1, - sym__external_close_bracket, - STATE(421), 1, - sym__close_bracket, - STATE(2018), 1, + sym__external_close_bracket2, + STATE(1641), 1, + sym__close_bracket2, + STATE(2024), 1, aux_sym_call_arguments_repeat1, - [138028] = 5, - ACTIONS(3), 1, + [138028] = 4, + ACTIONS(3836), 1, sym_comment, ACTIONS(3850), 1, - sym__newline, - ACTIONS(3852), 1, - sym__external_open_parenthesis, - STATE(1056), 1, - sym__open_parenthesis, - STATE(1918), 1, - aux_sym_function_definition_repeat1, - [138044] = 4, - ACTIONS(3834), 1, - sym_comment, - ACTIONS(3854), 1, - anon_sym_SQUOTE, - STATE(1848), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [138058] = 4, - ACTIONS(3834), 1, - sym_comment, - ACTIONS(3856), 1, anon_sym_SQUOTE, - STATE(1818), 1, + STATE(1816), 1, aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, + ACTIONS(3852), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [138072] = 4, - ACTIONS(3834), 1, + [138042] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(3858), 1, + ACTIONS(3854), 1, anon_sym_DQUOTE, - STATE(1819), 1, + STATE(1817), 1, aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, + ACTIONS(3834), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [138086] = 5, + [138056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, - sym_comma, - ACTIONS(3862), 1, - sym__external_close_bracket, - STATE(418), 1, - sym__close_bracket, - STATE(1890), 1, - aux_sym_call_arguments_repeat1, - [138102] = 4, - ACTIONS(3834), 1, + ACTIONS(3810), 1, + sym__newline, + ACTIONS(3856), 1, + sym__external_open_parenthesis, + STATE(1926), 1, + sym__open_parenthesis, + STATE(2026), 1, + aux_sym_function_definition_repeat1, + [138072] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3864), 1, - anon_sym_DQUOTE, - STATE(1849), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [138116] = 4, - ACTIONS(3834), 1, + ACTIONS(3810), 1, + sym__newline, + ACTIONS(3858), 1, + sym__external_open_parenthesis, + STATE(1978), 1, + sym__open_parenthesis, + STATE(2026), 1, + aux_sym_function_definition_repeat1, + [138088] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(3866), 1, + ACTIONS(3860), 1, anon_sym_SQUOTE, - STATE(1904), 1, + STATE(1984), 1, aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, + ACTIONS(3852), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [138130] = 4, - ACTIONS(3834), 1, + [138102] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(3868), 1, + ACTIONS(3862), 1, anon_sym_DQUOTE, - STATE(1936), 1, + STATE(1992), 1, aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, + ACTIONS(3834), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [138144] = 5, + [138116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, - sym_comma, - ACTIONS(3870), 1, - sym__external_close_bracket, - STATE(1703), 1, - sym__close_bracket, - STATE(2018), 1, - aux_sym_call_arguments_repeat1, - [138160] = 5, + ACTIONS(3866), 1, + sym_dot_dot_i, + STATE(2061), 1, + sym__identifier_or_dots_or_dot_dot_i, + ACTIONS(3864), 2, + sym_identifier, + sym_dots, + [138130] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - sym_comma, - ACTIONS(3872), 1, - sym__external_close_bracket2, - STATE(423), 1, - sym__close_bracket2, - STATE(1933), 1, - aux_sym_call_arguments_repeat1, - [138176] = 5, + ACTIONS(3810), 1, + sym__newline, + ACTIONS(3868), 1, + sym__external_open_parenthesis, + STATE(1054), 1, + sym__open_parenthesis, + STATE(2026), 1, + aux_sym_function_definition_repeat1, + [138146] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(3874), 1, - sym__external_close_bracket2, - STATE(437), 1, - sym__close_bracket2, - STATE(2023), 1, + ACTIONS(3870), 1, + sym__external_close_bracket, + STATE(1638), 1, + sym__close_bracket, + STATE(2022), 1, aux_sym_call_arguments_repeat1, - [138192] = 5, + [138162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(3876), 1, + ACTIONS(3872), 1, sym__external_close_bracket, - STATE(1679), 1, + STATE(1671), 1, sym__close_bracket, - STATE(2018), 1, + STATE(1808), 1, aux_sym_call_arguments_repeat1, - [138208] = 4, - ACTIONS(3834), 1, - sym_comment, - ACTIONS(3878), 1, - anon_sym_SQUOTE, - STATE(1836), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [138222] = 5, + [138178] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(3880), 1, + ACTIONS(3874), 1, sym__external_close_parenthesis, - STATE(1685), 1, + STATE(340), 1, sym__close_parenthesis, - STATE(1829), 1, + STATE(1825), 1, aux_sym_call_arguments_repeat1, - [138238] = 5, + [138194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(3882), 1, + ACTIONS(3876), 1, sym__external_close_parenthesis, - STATE(1686), 1, + STATE(341), 1, sym__close_parenthesis, - STATE(2022), 1, + STATE(2019), 1, aux_sym_call_arguments_repeat1, - [138254] = 4, - ACTIONS(3834), 1, - sym_comment, - ACTIONS(3884), 1, - anon_sym_DQUOTE, - STATE(1839), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [138268] = 5, + [138210] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(469), 1, sym_comma, - ACTIONS(3886), 1, + ACTIONS(3878), 1, sym__external_close_bracket2, - STATE(1680), 1, + STATE(379), 1, sym__close_bracket2, - STATE(2023), 1, + STATE(2016), 1, aux_sym_call_arguments_repeat1, - [138284] = 5, + [138226] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(3888), 1, + ACTIONS(3880), 1, sym__external_close_parenthesis, - STATE(1695), 1, + STATE(348), 1, sym__close_parenthesis, - STATE(2022), 1, - aux_sym_call_arguments_repeat1, - [138300] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - sym_comma, - ACTIONS(3890), 1, - sym__external_close_bracket2, - STATE(1704), 1, - sym__close_bracket2, - STATE(2023), 1, - aux_sym_call_arguments_repeat1, - [138316] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(431), 1, - sym_comma, - ACTIONS(3892), 1, - sym__external_close_bracket, - STATE(1767), 1, - sym__close_bracket, - STATE(1922), 1, - aux_sym_call_arguments_repeat1, - [138332] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(431), 1, - sym_comma, - ACTIONS(3894), 1, - sym__external_close_bracket, - STATE(1773), 1, - sym__close_bracket, - STATE(2018), 1, + STATE(2019), 1, aux_sym_call_arguments_repeat1, - [138348] = 5, + [138242] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - sym_comma, - ACTIONS(3896), 1, - sym__external_close_bracket2, - STATE(362), 1, - sym__close_bracket2, - STATE(1891), 1, - aux_sym_call_arguments_repeat1, - [138364] = 4, - ACTIONS(3834), 1, + ACTIONS(3882), 1, + sym__newline, + ACTIONS(3884), 1, + sym__external_open_parenthesis, + STATE(1814), 1, + aux_sym_function_definition_repeat1, + STATE(1932), 1, + sym__open_parenthesis, + [138258] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(3898), 1, + ACTIONS(3886), 1, anon_sym_SQUOTE, - STATE(1837), 1, + STATE(1830), 1, aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, + ACTIONS(3852), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [138378] = 4, - ACTIONS(3834), 1, + [138272] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(3900), 1, + ACTIONS(3888), 1, anon_sym_DQUOTE, - STATE(1838), 1, + STATE(1831), 1, aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, + ACTIONS(3834), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [138392] = 4, - ACTIONS(3834), 1, + [138286] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 1, - anon_sym_SQUOTE, - STATE(1904), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [138406] = 4, - ACTIONS(3834), 1, + ACTIONS(3810), 1, + sym__newline, + ACTIONS(3890), 1, + sym__external_open_parenthesis, + STATE(1934), 1, + sym__open_parenthesis, + STATE(2026), 1, + aux_sym_function_definition_repeat1, + [138302] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(3904), 1, + ACTIONS(3892), 1, anon_sym_SQUOTE, - STATE(1904), 1, + STATE(1984), 1, aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, + ACTIONS(3852), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [138420] = 4, - ACTIONS(3834), 1, - sym_comment, - ACTIONS(3906), 1, - anon_sym_DQUOTE, - STATE(1936), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [138434] = 4, - ACTIONS(3834), 1, + [138316] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(3894), 1, anon_sym_DQUOTE, - STATE(1936), 1, + STATE(1992), 1, aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, + ACTIONS(3834), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [138448] = 4, - ACTIONS(3834), 1, + [138330] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3910), 1, - anon_sym_DQUOTE, - STATE(1936), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [138462] = 5, + ACTIONS(3896), 1, + sym__newline, + ACTIONS(3898), 1, + sym__external_open_parenthesis, + STATE(1829), 1, + aux_sym_function_definition_repeat1, + STATE(1937), 1, + sym__open_parenthesis, + [138346] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(3912), 1, - sym__external_close_bracket2, - STATE(1774), 1, - sym__close_bracket2, - STATE(1934), 1, + ACTIONS(3900), 1, + sym__external_close_parenthesis, + STATE(1676), 1, + sym__close_parenthesis, + STATE(1836), 1, aux_sym_call_arguments_repeat1, - [138478] = 5, + [138362] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(3914), 1, - sym__external_close_bracket2, - STATE(424), 1, - sym__close_bracket2, - STATE(2023), 1, + ACTIONS(3902), 1, + sym__external_close_parenthesis, + STATE(1675), 1, + sym__close_parenthesis, + STATE(2019), 1, aux_sym_call_arguments_repeat1, - [138494] = 5, + [138378] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(3916), 1, - sym__external_close_parenthesis, - STATE(350), 1, - sym__close_parenthesis, - STATE(1846), 1, + ACTIONS(3904), 1, + sym__external_close_bracket, + STATE(1748), 1, + sym__close_bracket, + STATE(1919), 1, aux_sym_call_arguments_repeat1, - [138510] = 5, + [138394] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(3918), 1, + ACTIONS(3906), 1, sym__external_close_parenthesis, - STATE(351), 1, + STATE(1661), 1, sym__close_parenthesis, - STATE(2022), 1, + STATE(2019), 1, aux_sym_call_arguments_repeat1, - [138526] = 5, + [138410] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(3920), 1, - sym__external_close_bracket2, - STATE(1780), 1, - sym__close_bracket2, - STATE(2023), 1, + ACTIONS(3908), 1, + sym__external_close_bracket, + STATE(1744), 1, + sym__close_bracket, + STATE(2022), 1, aux_sym_call_arguments_repeat1, - [138542] = 5, + [138426] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(469), 1, sym_comma, - ACTIONS(3922), 1, - sym__external_close_parenthesis, - STATE(357), 1, - sym__close_parenthesis, - STATE(2022), 1, + ACTIONS(3910), 1, + sym__external_close_bracket2, + STATE(1742), 1, + sym__close_bracket2, + STATE(1925), 1, aux_sym_call_arguments_repeat1, - [138558] = 5, + [138442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(469), 1, sym_comma, - ACTIONS(3924), 1, - sym__external_close_bracket, - STATE(444), 1, - sym__close_bracket, - STATE(2018), 1, + ACTIONS(3912), 1, + sym__external_close_bracket2, + STATE(420), 1, + sym__close_bracket2, + STATE(2024), 1, aux_sym_call_arguments_repeat1, - [138574] = 4, - ACTIONS(3834), 1, + [138458] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(3926), 1, + ACTIONS(3914), 1, anon_sym_SQUOTE, - STATE(1904), 1, + STATE(1845), 1, aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, + ACTIONS(3852), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [138588] = 4, - ACTIONS(3834), 1, + [138472] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(3928), 1, + ACTIONS(3916), 1, anon_sym_DQUOTE, - STATE(1936), 1, + STATE(1846), 1, aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, + ACTIONS(3834), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [138602] = 4, - ACTIONS(3834), 1, + [138486] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_SQUOTE, - STATE(1853), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [138616] = 4, - ACTIONS(3834), 1, + ACTIONS(3810), 1, + sym__newline, + ACTIONS(3918), 1, + sym__external_open_parenthesis, + STATE(1949), 1, + sym__open_parenthesis, + STATE(2026), 1, + aux_sym_function_definition_repeat1, + [138502] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, - anon_sym_DQUOTE, - STATE(1854), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [138630] = 5, + ACTIONS(3920), 1, + sym__newline, + ACTIONS(3922), 1, + sym__external_open_parenthesis, + STATE(1842), 1, + aux_sym_function_definition_repeat1, + STATE(1951), 1, + sym__open_parenthesis, + [138518] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(3934), 1, + ACTIONS(3924), 1, sym__external_close_parenthesis, - STATE(1735), 1, + STATE(1749), 1, sym__close_parenthesis, - STATE(1862), 1, + STATE(2019), 1, aux_sym_call_arguments_repeat1, - [138646] = 4, - ACTIONS(3834), 1, + [138534] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3926), 1, anon_sym_SQUOTE, - STATE(1904), 1, + STATE(1984), 1, aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, + ACTIONS(3852), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [138660] = 4, - ACTIONS(3834), 1, + [138548] = 4, + ACTIONS(3836), 1, + sym_comment, + ACTIONS(3928), 1, + anon_sym_DQUOTE, + STATE(1992), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3834), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [138562] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(3938), 1, + ACTIONS(3930), 1, anon_sym_DQUOTE, - STATE(1936), 1, + STATE(1805), 1, aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, + ACTIONS(3834), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [138674] = 5, + [138576] = 4, + ACTIONS(3836), 1, + sym_comment, + ACTIONS(3932), 1, + anon_sym_SQUOTE, + STATE(1939), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3852), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [138590] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(3940), 1, - sym__external_close_parenthesis, - STATE(1758), 1, - sym__close_parenthesis, + ACTIONS(3934), 1, + sym__external_close_bracket, + STATE(421), 1, + sym__close_bracket, STATE(2022), 1, aux_sym_call_arguments_repeat1, - [138690] = 5, + [138606] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(3810), 1, + sym__newline, + ACTIONS(3936), 1, + sym__external_open_parenthesis, + STATE(1960), 1, + sym__open_parenthesis, + STATE(2026), 1, + aux_sym_function_definition_repeat1, + [138622] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(519), 1, sym_comma, - ACTIONS(3944), 1, + ACTIONS(3938), 1, sym__external_close_parenthesis, - STATE(1636), 1, + STATE(1725), 1, sym__close_parenthesis, - STATE(1911), 1, - aux_sym_parameters_repeat1, - [138706] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3948), 1, - sym_dot_dot_i, - STATE(2058), 1, - sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(3946), 2, - sym_identifier, - sym_dots, - [138720] = 5, + STATE(2019), 1, + aux_sym_call_arguments_repeat1, + [138638] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(3950), 1, + ACTIONS(3940), 1, sym__external_close_parenthesis, - STATE(1683), 1, + STATE(361), 1, sym__close_parenthesis, - STATE(1861), 1, + STATE(1856), 1, aux_sym_call_arguments_repeat1, - [138736] = 5, + [138654] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(3952), 1, + ACTIONS(3942), 1, sym__external_close_parenthesis, - STATE(1691), 1, + STATE(358), 1, sym__close_parenthesis, - STATE(2022), 1, + STATE(2019), 1, aux_sym_call_arguments_repeat1, - [138752] = 5, + [138670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(3954), 1, - sym__external_close_bracket, - STATE(1769), 1, - sym__close_bracket, - STATE(1924), 1, + ACTIONS(3944), 1, + sym__external_close_parenthesis, + STATE(408), 1, + sym__close_parenthesis, + STATE(2019), 1, aux_sym_call_arguments_repeat1, - [138768] = 5, + [138686] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(3956), 1, + ACTIONS(3946), 1, sym__external_close_parenthesis, - STATE(1635), 1, + STATE(1750), 1, sym__close_parenthesis, - STATE(2022), 1, + STATE(1807), 1, aux_sym_call_arguments_repeat1, - [138784] = 5, + [138702] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(3958), 1, + ACTIONS(3948), 1, sym__external_close_parenthesis, - STATE(1718), 1, + STATE(392), 1, sym__close_parenthesis, - STATE(2022), 1, + STATE(2019), 1, aux_sym_call_arguments_repeat1, - [138800] = 5, + [138718] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, - sym_comma, - ACTIONS(3960), 1, - sym__external_close_bracket, - STATE(1770), 1, - sym__close_bracket, - STATE(2018), 1, - aux_sym_call_arguments_repeat1, - [138816] = 5, + ACTIONS(3950), 1, + sym__newline, + ACTIONS(3952), 1, + sym__external_open_parenthesis, + STATE(1850), 1, + aux_sym_function_definition_repeat1, + STATE(1962), 1, + sym__open_parenthesis, + [138734] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - sym_comma, - ACTIONS(3962), 1, - sym__external_close_bracket2, - STATE(1720), 1, - sym__close_bracket2, - STATE(2023), 1, - aux_sym_call_arguments_repeat1, - [138832] = 5, + ACTIONS(3810), 1, + sym__newline, + ACTIONS(3954), 1, + sym__external_open_parenthesis, + STATE(1051), 1, + sym__open_parenthesis, + STATE(2026), 1, + aux_sym_function_definition_repeat1, + [138750] = 4, + ACTIONS(3836), 1, + sym_comment, + ACTIONS(3956), 1, + anon_sym_DQUOTE, + STATE(1992), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3834), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [138764] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(469), 1, sym_comma, - ACTIONS(3964), 1, + ACTIONS(3958), 1, sym__external_close_bracket2, - STATE(1771), 1, + STATE(352), 1, sym__close_bracket2, - STATE(1927), 1, + STATE(2024), 1, aux_sym_call_arguments_repeat1, - [138848] = 5, + [138780] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(3966), 1, + ACTIONS(3960), 1, sym__external_close_bracket, - STATE(1674), 1, + STATE(349), 1, sym__close_bracket, - STATE(1823), 1, - aux_sym_call_arguments_repeat1, - [138864] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_comma, - ACTIONS(3968), 1, - sym__external_close_parenthesis, - STATE(408), 1, - sym__close_parenthesis, STATE(2022), 1, aux_sym_call_arguments_repeat1, - [138880] = 4, - ACTIONS(3834), 1, + [138796] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(3970), 1, + ACTIONS(3962), 1, anon_sym_SQUOTE, - STATE(1872), 1, + STATE(1984), 1, aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, + ACTIONS(3852), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [138894] = 4, - ACTIONS(3834), 1, + [138810] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(3972), 1, + ACTIONS(3964), 1, + anon_sym_SQUOTE, + STATE(1868), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3852), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [138824] = 4, + ACTIONS(3836), 1, + sym_comment, + ACTIONS(3966), 1, anon_sym_DQUOTE, - STATE(1873), 1, + STATE(1869), 1, aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, + ACTIONS(3834), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [138908] = 5, + [138838] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, - sym_comma, - ACTIONS(3974), 1, - sym__external_close_bracket, - STATE(1709), 1, - sym__close_bracket, - STATE(2018), 1, - aux_sym_call_arguments_repeat1, - [138924] = 5, + ACTIONS(3810), 1, + sym__newline, + ACTIONS(3968), 1, + sym__external_open_parenthesis, + STATE(1965), 1, + sym__open_parenthesis, + STATE(2026), 1, + aux_sym_function_definition_repeat1, + [138854] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - sym_comma, - ACTIONS(3976), 1, - sym__external_close_bracket2, - STATE(1676), 1, - sym__close_bracket2, - STATE(1828), 1, - aux_sym_call_arguments_repeat1, - [138940] = 4, - ACTIONS(3834), 1, + ACTIONS(3970), 1, + sym__newline, + ACTIONS(3972), 1, + sym__external_open_parenthesis, + STATE(1865), 1, + aux_sym_function_definition_repeat1, + STATE(1967), 1, + sym__open_parenthesis, + [138870] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3810), 1, + sym__newline, + ACTIONS(3974), 1, + sym__external_open_parenthesis, + STATE(1972), 1, + sym__open_parenthesis, + STATE(2026), 1, + aux_sym_function_definition_repeat1, + [138886] = 4, + ACTIONS(3836), 1, + sym_comment, + ACTIONS(3976), 1, anon_sym_SQUOTE, - STATE(1904), 1, + STATE(1984), 1, aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, + ACTIONS(3852), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [138954] = 4, - ACTIONS(3834), 1, + [138900] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(3980), 1, + ACTIONS(3978), 1, anon_sym_DQUOTE, - STATE(1936), 1, + STATE(1992), 1, aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, + ACTIONS(3834), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [138968] = 5, + [138914] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - sym_comma, + ACTIONS(3980), 1, + sym__newline, ACTIONS(3982), 1, - sym__external_close_bracket2, - STATE(1772), 1, - sym__close_bracket2, - STATE(2023), 1, - aux_sym_call_arguments_repeat1, - [138984] = 4, - ACTIONS(3834), 1, + sym__external_open_parenthesis, + STATE(1867), 1, + aux_sym_function_definition_repeat1, + STATE(1973), 1, + sym__open_parenthesis, + [138930] = 4, + ACTIONS(3836), 1, sym_comment, ACTIONS(3984), 1, + anon_sym_DQUOTE, + STATE(1859), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3834), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [138944] = 4, + ACTIONS(3836), 1, + sym_comment, + ACTIONS(3986), 1, anon_sym_SQUOTE, - STATE(1884), 1, + STATE(1862), 1, aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, + ACTIONS(3852), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [138998] = 5, + [138958] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(469), 1, sym_comma, - ACTIONS(3986), 1, - sym__external_close_bracket, - STATE(1696), 1, - sym__close_bracket, - STATE(2018), 1, - aux_sym_call_arguments_repeat1, - [139014] = 4, - ACTIONS(3834), 1, - sym_comment, ACTIONS(3988), 1, - anon_sym_DQUOTE, - STATE(1885), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [139028] = 5, + sym__external_close_bracket2, + STATE(1650), 1, + sym__close_bracket2, + STATE(2024), 1, + aux_sym_call_arguments_repeat1, + [138974] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(423), 1, sym_comma, ACTIONS(3990), 1, - sym__external_close_parenthesis, - STATE(1672), 1, - sym__close_parenthesis, - STATE(1880), 1, + sym__external_close_bracket, + STATE(1651), 1, + sym__close_bracket, + STATE(2022), 1, aux_sym_call_arguments_repeat1, - [139044] = 5, + [138990] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(519), 1, sym_comma, ACTIONS(3992), 1, sym__external_close_parenthesis, - STATE(1673), 1, + STATE(1665), 1, sym__close_parenthesis, - STATE(2022), 1, + STATE(1879), 1, aux_sym_call_arguments_repeat1, - [139060] = 5, + [139006] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(519), 1, sym_comma, ACTIONS(3994), 1, sym__external_close_parenthesis, - STATE(1678), 1, + STATE(1664), 1, sym__close_parenthesis, - STATE(2022), 1, + STATE(2019), 1, aux_sym_call_arguments_repeat1, - [139076] = 5, + [139022] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(423), 1, sym_comma, ACTIONS(3996), 1, - sym__external_close_bracket2, - STATE(1697), 1, - sym__close_bracket2, - STATE(2023), 1, - aux_sym_call_arguments_repeat1, - [139092] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - sym_comma, - ACTIONS(3998), 1, - sym__external_close_bracket2, - STATE(363), 1, - sym__close_bracket2, - STATE(2023), 1, + sym__external_close_bracket, + STATE(1710), 1, + sym__close_bracket, + STATE(1966), 1, aux_sym_call_arguments_repeat1, - [139108] = 5, + [139038] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(3810), 1, sym__newline, - ACTIONS(4000), 1, + ACTIONS(3998), 1, sym__external_open_parenthesis, - STATE(1052), 1, + STATE(1981), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, - [139124] = 4, - ACTIONS(3834), 1, - sym_comment, - ACTIONS(4002), 1, - anon_sym_SQUOTE, - STATE(1904), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [139138] = 4, - ACTIONS(3834), 1, + [139054] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 1, - anon_sym_DQUOTE, - STATE(1936), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [139152] = 5, + ACTIONS(519), 1, + sym_comma, + ACTIONS(4000), 1, + sym__external_close_parenthesis, + STATE(1653), 1, + sym__close_parenthesis, + STATE(2019), 1, + aux_sym_call_arguments_repeat1, + [139070] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4006), 1, - sym__newline, - ACTIONS(4008), 1, - sym__external_open_parenthesis, - STATE(1810), 1, - aux_sym_function_definition_repeat1, - STATE(1928), 1, - sym__open_parenthesis, - [139168] = 5, + ACTIONS(469), 1, + sym_comma, + ACTIONS(4002), 1, + sym__external_close_bracket2, + STATE(1654), 1, + sym__close_bracket2, + STATE(2024), 1, + aux_sym_call_arguments_repeat1, + [139086] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(4010), 1, + ACTIONS(4004), 1, sym__external_close_bracket, - STATE(365), 1, + STATE(1717), 1, sym__close_bracket, - STATE(2018), 1, + STATE(2022), 1, aux_sym_call_arguments_repeat1, - [139184] = 5, + [139102] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(4012), 1, - sym__external_close_bracket2, - STATE(436), 1, - sym__close_bracket2, - STATE(1898), 1, + ACTIONS(4006), 1, + sym__external_close_parenthesis, + STATE(1712), 1, + sym__close_parenthesis, + STATE(2019), 1, aux_sym_call_arguments_repeat1, - [139200] = 5, + [139118] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(4014), 1, - sym__external_close_bracket2, - STATE(1677), 1, - sym__close_bracket2, - STATE(2023), 1, + ACTIONS(4008), 1, + sym__external_close_bracket, + STATE(1658), 1, + sym__close_bracket, + STATE(2022), 1, aux_sym_call_arguments_repeat1, - [139216] = 5, + [139134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(4016), 1, + ACTIONS(4010), 1, sym__external_close_bracket, - STATE(430), 1, + STATE(355), 1, sym__close_bracket, - STATE(2018), 1, + STATE(2004), 1, aux_sym_call_arguments_repeat1, - [139232] = 5, + [139150] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(469), 1, sym_comma, - ACTIONS(4018), 1, + ACTIONS(4012), 1, sym__external_close_bracket2, - STATE(366), 1, + STATE(1715), 1, sym__close_bracket2, - STATE(2023), 1, + STATE(1975), 1, aux_sym_call_arguments_repeat1, - [139248] = 4, - ACTIONS(3834), 1, + [139166] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(4020), 1, + ACTIONS(4014), 1, anon_sym_SQUOTE, - STATE(1896), 1, + STATE(1891), 1, aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, + ACTIONS(3852), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [139262] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(431), 1, - sym_comma, - ACTIONS(4022), 1, - sym__external_close_bracket, - STATE(432), 1, - sym__close_bracket, - STATE(1847), 1, - aux_sym_call_arguments_repeat1, - [139278] = 4, - ACTIONS(3834), 1, + [139180] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(4024), 1, + ACTIONS(4016), 1, anon_sym_DQUOTE, - STATE(1897), 1, + STATE(1892), 1, aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, + ACTIONS(3834), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [139292] = 5, + [139194] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4018), 1, + sym__newline, + ACTIONS(4020), 1, + sym__external_open_parenthesis, + STATE(1878), 1, + aux_sym_function_definition_repeat1, + STATE(1982), 1, + sym__open_parenthesis, + [139210] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4022), 1, + sym__newline, + ACTIONS(4024), 1, + sym__external_open_parenthesis, + STATE(1090), 1, + sym__open_parenthesis, + STATE(1858), 1, + aux_sym_function_definition_repeat1, + [139226] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(519), 1, sym_comma, ACTIONS(4026), 1, sym__external_close_parenthesis, - STATE(405), 1, + STATE(1719), 1, sym__close_parenthesis, - STATE(1808), 1, + STATE(2019), 1, aux_sym_call_arguments_repeat1, - [139308] = 4, - ACTIONS(3834), 1, + [139242] = 4, + ACTIONS(3836), 1, sym_comment, ACTIONS(4028), 1, anon_sym_SQUOTE, - STATE(1904), 1, + STATE(1984), 1, aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, + ACTIONS(3852), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [139322] = 4, - ACTIONS(3834), 1, + [139256] = 4, + ACTIONS(3836), 1, sym_comment, ACTIONS(4030), 1, anon_sym_DQUOTE, - STATE(1936), 1, + STATE(1992), 1, aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, + ACTIONS(3834), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [139336] = 5, + [139270] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - sym_comma, ACTIONS(4032), 1, - sym__external_close_bracket2, - STATE(407), 1, - sym__close_bracket2, - STATE(2023), 1, - aux_sym_call_arguments_repeat1, - [139352] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_comma, + sym__newline, ACTIONS(4034), 1, - sym__external_close_parenthesis, - STATE(1763), 1, - sym__close_parenthesis, - STATE(1912), 1, - aux_sym_call_arguments_repeat1, - [139368] = 5, + sym__external_open_parenthesis, + STATE(1815), 1, + aux_sym_function_definition_repeat1, + STATE(1818), 1, + sym__open_parenthesis, + [139286] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, - sym_comma, ACTIONS(4036), 1, - sym__external_close_bracket, - STATE(1719), 1, - sym__close_bracket, - STATE(2018), 1, - aux_sym_call_arguments_repeat1, - [139384] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(431), 1, - sym_comma, + sym__newline, ACTIONS(4038), 1, - sym__external_close_bracket, - STATE(356), 1, - sym__close_bracket, - STATE(1887), 1, - aux_sym_call_arguments_repeat1, - [139400] = 5, + sym__external_open_parenthesis, + STATE(1049), 1, + sym__open_parenthesis, + STATE(1819), 1, + aux_sym_function_definition_repeat1, + [139302] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(519), 1, sym_comma, ACTIONS(4040), 1, - sym__external_close_bracket, - STATE(1692), 1, - sym__close_bracket, - STATE(1820), 1, - aux_sym_call_arguments_repeat1, - [139416] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_comma, - ACTIONS(4042), 1, sym__external_close_parenthesis, - STATE(1764), 1, + STATE(1720), 1, sym__close_parenthesis, - STATE(1908), 1, + STATE(1882), 1, aux_sym_call_arguments_repeat1, - [139432] = 4, - ACTIONS(3834), 1, + [139318] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(4044), 1, + ACTIONS(4042), 1, anon_sym_SQUOTE, - STATE(1904), 1, + STATE(1927), 1, aux_sym__single_quoted_string_content, - ACTIONS(4046), 2, + ACTIONS(3852), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [139446] = 5, + [139332] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(4049), 1, - sym__external_close_parenthesis, - STATE(1766), 1, - sym__close_parenthesis, + ACTIONS(4044), 1, + sym__external_close_bracket, + STATE(360), 1, + sym__close_bracket, STATE(2022), 1, aux_sym_call_arguments_repeat1, - [139462] = 5, + [139348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(4051), 1, + ACTIONS(4046), 1, sym__external_close_parenthesis, - STATE(1765), 1, + STATE(1637), 1, sym__close_parenthesis, - STATE(2022), 1, + STATE(1901), 1, aux_sym_call_arguments_repeat1, - [139478] = 4, - ACTIONS(3834), 1, - sym_comment, - ACTIONS(4053), 1, - anon_sym_SQUOTE, - STATE(1904), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [139492] = 5, + [139364] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(4055), 1, + ACTIONS(4048), 1, sym__external_close_parenthesis, - STATE(1776), 1, + STATE(1672), 1, sym__close_parenthesis, - STATE(2022), 1, + STATE(2019), 1, aux_sym_call_arguments_repeat1, - [139508] = 5, + [139380] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(469), 1, sym_comma, - ACTIONS(4057), 1, + ACTIONS(4050), 1, sym__external_close_bracket2, - STATE(1694), 1, + STATE(399), 1, sym__close_bracket2, - STATE(1830), 1, + STATE(2024), 1, aux_sym_call_arguments_repeat1, - [139524] = 5, + [139396] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(4059), 1, - sym__external_close_bracket, - STATE(352), 1, - sym__close_bracket, - STATE(1950), 1, + ACTIONS(4052), 1, + sym__external_close_parenthesis, + STATE(1646), 1, + sym__close_parenthesis, + STATE(2019), 1, aux_sym_call_arguments_repeat1, - [139540] = 5, + [139412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(469), 1, sym_comma, - ACTIONS(4061), 1, - sym__external_close_parenthesis, - STATE(1652), 1, - sym__close_parenthesis, + ACTIONS(4054), 1, + sym__external_close_bracket2, + STATE(381), 1, + sym__close_bracket2, STATE(2024), 1, - aux_sym_parameters_repeat1, - [139556] = 5, + aux_sym_call_arguments_repeat1, + [139428] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(4056), 1, sym_comma, - ACTIONS(4063), 1, + ACTIONS(4058), 1, sym__external_close_parenthesis, - STATE(1713), 1, + STATE(1687), 1, sym__close_parenthesis, - STATE(2022), 1, - aux_sym_call_arguments_repeat1, - [139572] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(431), 1, - sym_comma, - ACTIONS(4065), 1, - sym__external_close_bracket, - STATE(353), 1, - sym__close_bracket, - STATE(2018), 1, - aux_sym_call_arguments_repeat1, - [139588] = 5, + STATE(2020), 1, + aux_sym_parameters_repeat1, + [139444] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(469), 1, sym_comma, - ACTIONS(4067), 1, + ACTIONS(4060), 1, sym__external_close_bracket2, - STATE(354), 1, + STATE(1713), 1, sym__close_bracket2, - STATE(1955), 1, + STATE(2024), 1, aux_sym_call_arguments_repeat1, - [139604] = 5, + [139460] = 4, + ACTIONS(3836), 1, + sym_comment, + ACTIONS(4062), 1, + anon_sym_DQUOTE, + STATE(1992), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3834), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [139474] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(469), 1, sym_comma, - ACTIONS(4069), 1, + ACTIONS(4064), 1, sym__external_close_bracket2, - STATE(355), 1, + STATE(405), 1, sym__close_bracket2, - STATE(2023), 1, - aux_sym_call_arguments_repeat1, - [139620] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(431), 1, - sym_comma, - ACTIONS(4071), 1, - sym__external_close_bracket, - STATE(360), 1, - sym__close_bracket, - STATE(2018), 1, - aux_sym_call_arguments_repeat1, - [139636] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_comma, - ACTIONS(4073), 1, - sym__external_close_parenthesis, - STATE(448), 1, - sym__close_parenthesis, - STATE(1807), 1, - aux_sym_call_arguments_repeat1, - [139652] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3806), 1, - sym__newline, - ACTIONS(4075), 1, - sym__external_open_parenthesis, - STATE(1051), 1, - sym__open_parenthesis, - STATE(2020), 1, - aux_sym_function_definition_repeat1, - [139668] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(431), 1, - sym_comma, - ACTIONS(4077), 1, - sym__external_close_bracket, - STATE(1687), 1, - sym__close_bracket, - STATE(1876), 1, + STATE(1839), 1, aux_sym_call_arguments_repeat1, - [139684] = 5, + [139490] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(469), 1, sym_comma, - ACTIONS(4079), 1, - sym__external_close_bracket, - STATE(435), 1, - sym__close_bracket, - STATE(2018), 1, + ACTIONS(4066), 1, + sym__external_close_bracket2, + STATE(1656), 1, + sym__close_bracket2, + STATE(2024), 1, aux_sym_call_arguments_repeat1, - [139700] = 5, + [139506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(469), 1, sym_comma, - ACTIONS(4081), 1, - sym__external_close_bracket, - STATE(1688), 1, - sym__close_bracket, - STATE(2018), 1, + ACTIONS(4068), 1, + sym__external_close_bracket2, + STATE(1657), 1, + sym__close_bracket2, + STATE(1873), 1, aux_sym_call_arguments_repeat1, - [139716] = 5, + [139522] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(4083), 1, + ACTIONS(4070), 1, sym__external_close_bracket, - STATE(1714), 1, + STATE(1659), 1, sym__close_bracket, - STATE(2018), 1, - aux_sym_call_arguments_repeat1, - [139732] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_comma, - ACTIONS(4085), 1, - sym__external_close_parenthesis, - STATE(422), 1, - sym__close_parenthesis, STATE(2022), 1, aux_sym_call_arguments_repeat1, - [139748] = 5, + [139538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(4087), 1, + ACTIONS(4072), 1, sym__external_close_bracket, - STATE(1777), 1, + STATE(1660), 1, sym__close_bracket, - STATE(2018), 1, + STATE(1874), 1, aux_sym_call_arguments_repeat1, - [139764] = 4, - ACTIONS(3834), 1, + [139554] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(4089), 1, + ACTIONS(4074), 1, anon_sym_SQUOTE, - STATE(1938), 1, + STATE(1984), 1, aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, + ACTIONS(3852), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [139778] = 4, - ACTIONS(3834), 1, - sym_comment, - ACTIONS(4091), 1, - anon_sym_DQUOTE, - STATE(1940), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [139792] = 5, + [139568] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(4093), 1, - sym__external_close_bracket2, - STATE(1778), 1, - sym__close_bracket2, - STATE(2023), 1, + ACTIONS(4076), 1, + sym__external_close_bracket, + STATE(406), 1, + sym__close_bracket, + STATE(2022), 1, aux_sym_call_arguments_repeat1, - [139808] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4097), 1, - sym_dot_dot_i, - STATE(2059), 1, - sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(4095), 2, - sym_identifier, - sym_dots, - [139822] = 5, + [139584] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 1, + ACTIONS(3810), 1, sym__newline, - ACTIONS(4101), 1, + ACTIONS(4078), 1, sym__external_open_parenthesis, - STATE(1058), 1, + STATE(1993), 1, sym__open_parenthesis, - STATE(1931), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, - [139838] = 5, + [139600] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(4103), 1, + ACTIONS(4080), 1, sym__external_close_bracket, - STATE(1759), 1, + STATE(409), 1, sym__close_bracket, - STATE(1900), 1, + STATE(1849), 1, aux_sym_call_arguments_repeat1, - [139854] = 5, + [139616] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(4082), 1, sym__newline, - ACTIONS(4105), 1, + ACTIONS(4084), 1, sym__external_open_parenthesis, - STATE(1059), 1, - sym__open_parenthesis, - STATE(2020), 1, + STATE(1913), 1, aux_sym_function_definition_repeat1, - [139870] = 5, + STATE(1994), 1, + sym__open_parenthesis, + [139632] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(519), 1, sym_comma, - ACTIONS(4107), 1, - sym__external_close_bracket2, - STATE(1689), 1, - sym__close_bracket2, - STATE(1881), 1, + ACTIONS(4086), 1, + sym__external_close_parenthesis, + STATE(410), 1, + sym__close_parenthesis, + STATE(2019), 1, aux_sym_call_arguments_repeat1, - [139886] = 5, - ACTIONS(3), 1, + [139648] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(477), 1, - sym_comma, - ACTIONS(4109), 1, - sym__external_close_bracket2, - STATE(431), 1, - sym__close_bracket2, - STATE(2023), 1, - aux_sym_call_arguments_repeat1, - [139902] = 5, + ACTIONS(4088), 1, + anon_sym_DQUOTE, + STATE(1905), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3834), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [139662] = 4, + ACTIONS(3836), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_SQUOTE, + STATE(1911), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3852), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [139676] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(4111), 1, - sym__external_close_bracket2, - STATE(1715), 1, - sym__close_bracket2, - STATE(2023), 1, + ACTIONS(4092), 1, + sym__external_close_bracket, + STATE(1738), 1, + sym__close_bracket, + STATE(2022), 1, aux_sym_call_arguments_repeat1, - [139918] = 5, + [139692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4113), 1, + ACTIONS(3810), 1, sym__newline, - ACTIONS(4115), 1, + ACTIONS(4094), 1, sym__external_open_parenthesis, - STATE(1062), 1, + STATE(2002), 1, sym__open_parenthesis, - STATE(1937), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, - [139934] = 4, - ACTIONS(3834), 1, + [139708] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(4117), 1, + ACTIONS(4096), 1, anon_sym_DQUOTE, - STATE(1936), 1, + STATE(1930), 1, aux_sym__double_quoted_string_content, - ACTIONS(4119), 2, + ACTIONS(3834), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [139948] = 5, + [139722] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(3810), 1, sym__newline, - ACTIONS(4122), 1, + ACTIONS(4098), 1, sym__external_open_parenthesis, - STATE(1063), 1, + STATE(1052), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, - [139964] = 4, - ACTIONS(3834), 1, + [139738] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, - anon_sym_SQUOTE, - STATE(1904), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3832), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [139978] = 5, + ACTIONS(4100), 1, + sym__newline, + ACTIONS(4102), 1, + sym__external_open_parenthesis, + STATE(1920), 1, + aux_sym_function_definition_repeat1, + STATE(2005), 1, + sym__open_parenthesis, + [139754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, + ACTIONS(4104), 1, sym__newline, - ACTIONS(4128), 1, + ACTIONS(4106), 1, sym__external_open_parenthesis, - STATE(1067), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1941), 1, + STATE(1922), 1, aux_sym_function_definition_repeat1, - [139994] = 4, - ACTIONS(3834), 1, + [139770] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, + sym_comma, + ACTIONS(4108), 1, + sym__external_close_bracket2, + STATE(1737), 1, + sym__close_bracket2, + STATE(2024), 1, + aux_sym_call_arguments_repeat1, + [139786] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4112), 1, + sym_dot_dot_i, + STATE(2064), 1, + sym__identifier_or_dots_or_dot_dot_i, + ACTIONS(4110), 2, + sym_identifier, + sym_dots, + [139800] = 4, + ACTIONS(3836), 1, + sym_comment, + ACTIONS(4114), 1, + anon_sym_SQUOTE, + STATE(1984), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3852), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [139814] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(519), 1, + sym_comma, + ACTIONS(4116), 1, + sym__external_close_parenthesis, + STATE(423), 1, + sym__close_parenthesis, + STATE(1854), 1, + aux_sym_call_arguments_repeat1, + [139830] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(519), 1, + sym_comma, + ACTIONS(4118), 1, + sym__external_close_parenthesis, + STATE(431), 1, + sym__close_parenthesis, + STATE(2019), 1, + aux_sym_call_arguments_repeat1, + [139846] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(4130), 1, + ACTIONS(4120), 1, anon_sym_DQUOTE, - STATE(1936), 1, + STATE(1992), 1, aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, + ACTIONS(3834), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [140008] = 5, + [139860] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(519), 1, + sym_comma, + ACTIONS(4122), 1, + sym__external_close_parenthesis, + STATE(426), 1, + sym__close_parenthesis, + STATE(2019), 1, + aux_sym_call_arguments_repeat1, + [139876] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4126), 1, + sym_dot_dot_i, + STATE(2066), 1, + sym__identifier_or_dots_or_dot_dot_i, + ACTIONS(4124), 2, + sym_identifier, + sym_dots, + [139890] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, + sym_comma, + ACTIONS(4128), 1, + sym__external_close_bracket2, + STATE(1741), 1, + sym__close_bracket2, + STATE(2024), 1, + aux_sym_call_arguments_repeat1, + [139906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, ACTIONS(4132), 1, - sym__external_open_parenthesis, - STATE(1068), 1, - sym__open_parenthesis, - STATE(2020), 1, - aux_sym_function_definition_repeat1, - [140024] = 5, + sym_dot_dot_i, + STATE(2063), 1, + sym__identifier_or_dots_or_dot_dot_i, + ACTIONS(4130), 2, + sym_identifier, + sym_dots, + [139920] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(519), 1, + sym_comma, ACTIONS(4134), 1, - sym__newline, + sym__external_close_parenthesis, + STATE(412), 1, + sym__close_parenthesis, + STATE(1929), 1, + aux_sym_call_arguments_repeat1, + [139936] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(519), 1, + sym_comma, ACTIONS(4136), 1, - sym__external_open_parenthesis, - STATE(1072), 1, - sym__open_parenthesis, - STATE(1944), 1, - aux_sym_function_definition_repeat1, - [140040] = 5, + sym__external_close_parenthesis, + STATE(1735), 1, + sym__close_parenthesis, + STATE(1851), 1, + aux_sym_call_arguments_repeat1, + [139952] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - sym__newline, ACTIONS(4140), 1, - sym__external_open_parenthesis, - STATE(1050), 1, - sym__open_parenthesis, - STATE(1883), 1, - aux_sym_function_definition_repeat1, - [140056] = 5, + sym_dot_dot_i, + STATE(2060), 1, + sym__identifier_or_dots_or_dot_dot_i, + ACTIONS(4138), 2, + sym_identifier, + sym_dots, + [139966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(3810), 1, sym__newline, ACTIONS(4142), 1, sym__external_open_parenthesis, - STATE(1073), 1, + STATE(1058), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, - [140072] = 5, - ACTIONS(3), 1, + [139982] = 4, + ACTIONS(3836), 1, sym_comment, ACTIONS(4144), 1, - sym__newline, + anon_sym_SQUOTE, + STATE(1984), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3852), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [139996] = 5, + ACTIONS(3), 1, + sym_comment, ACTIONS(4146), 1, + sym__newline, + ACTIONS(4148), 1, sym__external_open_parenthesis, - STATE(1077), 1, + STATE(1059), 1, sym__open_parenthesis, - STATE(1947), 1, + STATE(1938), 1, aux_sym_function_definition_repeat1, - [140088] = 5, + [140012] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(4148), 1, + ACTIONS(4150), 1, sym__external_close_bracket, - STATE(1733), 1, + STATE(1722), 1, sym__close_bracket, - STATE(2018), 1, + STATE(2022), 1, aux_sym_call_arguments_repeat1, - [140104] = 5, + [140028] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, - ACTIONS(4150), 1, - sym__external_open_parenthesis, - STATE(1078), 1, - sym__open_parenthesis, - STATE(2020), 1, - aux_sym_function_definition_repeat1, - [140120] = 4, - ACTIONS(3834), 1, - sym_comment, + ACTIONS(423), 1, + sym_comma, ACTIONS(4152), 1, + sym__external_close_bracket, + STATE(1669), 1, + sym__close_bracket, + STATE(2022), 1, + aux_sym_call_arguments_repeat1, + [140044] = 4, + ACTIONS(3836), 1, + sym_comment, + ACTIONS(4154), 1, anon_sym_DQUOTE, - STATE(1840), 1, + STATE(1992), 1, aux_sym__double_quoted_string_content, - ACTIONS(3860), 2, + ACTIONS(3834), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [140134] = 5, + [140058] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 1, - sym__newline, + ACTIONS(469), 1, + sym_comma, ACTIONS(4156), 1, - sym__external_open_parenthesis, - STATE(1082), 1, - sym__open_parenthesis, - STATE(1951), 1, - aux_sym_function_definition_repeat1, - [140150] = 5, + sym__external_close_bracket2, + STATE(1718), 1, + sym__close_bracket2, + STATE(2024), 1, + aux_sym_call_arguments_repeat1, + [140074] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 1, + ACTIONS(469), 1, sym_comma, ACTIONS(4158), 1, - sym__external_close_bracket, - STATE(358), 1, - sym__close_bracket, - STATE(2018), 1, + sym__external_close_bracket2, + STATE(1727), 1, + sym__close_bracket2, + STATE(2024), 1, aux_sym_call_arguments_repeat1, - [140166] = 5, - ACTIONS(3), 1, + [140090] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, ACTIONS(4160), 1, - sym__external_open_parenthesis, - STATE(1083), 1, - sym__open_parenthesis, - STATE(2020), 1, - aux_sym_function_definition_repeat1, - [140182] = 5, + anon_sym_SQUOTE, + STATE(1984), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3852), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [140104] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(519), 1, sym_comma, ACTIONS(4162), 1, - sym__external_close_bracket2, - STATE(1738), 1, - sym__close_bracket2, - STATE(1864), 1, + sym__external_close_parenthesis, + STATE(1734), 1, + sym__close_parenthesis, + STATE(2019), 1, aux_sym_call_arguments_repeat1, - [140198] = 5, + [140120] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(469), 1, + sym_comma, ACTIONS(4164), 1, - sym__newline, - ACTIONS(4166), 1, - sym__external_open_parenthesis, - STATE(1087), 1, - sym__open_parenthesis, - STATE(1954), 1, - aux_sym_function_definition_repeat1, - [140214] = 5, + sym__external_close_bracket2, + STATE(1729), 1, + sym__close_bracket2, + STATE(1944), 1, + aux_sym_call_arguments_repeat1, + [140136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, ACTIONS(4168), 1, - sym__external_open_parenthesis, - STATE(1088), 1, - sym__open_parenthesis, - STATE(2020), 1, - aux_sym_function_definition_repeat1, - [140230] = 5, + sym_dot_dot_i, + STATE(2072), 1, + sym__identifier_or_dots_or_dot_dot_i, + ACTIONS(4166), 2, + sym_identifier, + sym_dots, + [140150] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(423), 1, sym_comma, ACTIONS(4170), 1, - sym__external_close_bracket2, - STATE(359), 1, - sym__close_bracket2, - STATE(2023), 1, + sym__external_close_bracket, + STATE(1730), 1, + sym__close_bracket, + STATE(2022), 1, aux_sym_call_arguments_repeat1, - [140246] = 5, + [140166] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4172), 1, - sym__newline, ACTIONS(4174), 1, - sym__external_open_parenthesis, - STATE(1092), 1, - sym__open_parenthesis, - STATE(1958), 1, - aux_sym_function_definition_repeat1, - [140262] = 5, - ACTIONS(3), 1, + sym_dot_dot_i, + STATE(2058), 1, + sym__identifier_or_dots_or_dot_dot_i, + ACTIONS(4172), 2, + sym_identifier, + sym_dots, + [140180] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(477), 1, - sym_comma, ACTIONS(4176), 1, - sym__external_close_bracket2, - STATE(1690), 1, - sym__close_bracket2, - STATE(2023), 1, - aux_sym_call_arguments_repeat1, - [140278] = 5, + anon_sym_DQUOTE, + STATE(1943), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3834), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [140194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(3810), 1, sym__newline, ACTIONS(4178), 1, sym__external_open_parenthesis, - STATE(1093), 1, + STATE(1060), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, - [140294] = 5, + [140210] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(4056), 1, sym_comma, ACTIONS(4180), 1, + sym__external_close_parenthesis, + STATE(1667), 1, + sym__close_parenthesis, + STATE(1903), 1, + aux_sym_parameters_repeat1, + [140226] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, + sym_comma, + ACTIONS(4182), 1, sym__external_close_bracket2, - STATE(1698), 1, + STATE(433), 1, sym__close_bracket2, - STATE(2023), 1, + STATE(2024), 1, aux_sym_call_arguments_repeat1, - [140310] = 5, - ACTIONS(3), 1, + [140242] = 4, + ACTIONS(3836), 1, sym_comment, - ACTIONS(4182), 1, - sym__newline, ACTIONS(4184), 1, - sym__external_open_parenthesis, - STATE(1097), 1, - sym__open_parenthesis, - STATE(1961), 1, - aux_sym_function_definition_repeat1, - [140326] = 5, + anon_sym_SQUOTE, + STATE(1946), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3852), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [140256] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, + ACTIONS(423), 1, + sym_comma, ACTIONS(4186), 1, - sym__external_open_parenthesis, - STATE(1098), 1, - sym__open_parenthesis, - STATE(2020), 1, - aux_sym_function_definition_repeat1, - [140342] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4188), 1, - sym__newline, - ACTIONS(4190), 1, - sym__external_open_parenthesis, - STATE(1101), 1, - sym__open_parenthesis, - STATE(1964), 1, - aux_sym_function_definition_repeat1, - [140358] = 5, + sym__external_close_bracket, + STATE(1636), 1, + sym__close_bracket, + STATE(1883), 1, + aux_sym_call_arguments_repeat1, + [140272] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(423), 1, sym_comma, - ACTIONS(4192), 1, - sym__external_close_bracket2, - STATE(1729), 1, - sym__close_bracket2, - STATE(2023), 1, + ACTIONS(4188), 1, + sym__external_close_bracket, + STATE(432), 1, + sym__close_bracket, + STATE(2022), 1, aux_sym_call_arguments_repeat1, - [140374] = 5, + [140288] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(4190), 1, sym__newline, - ACTIONS(4194), 1, + ACTIONS(4192), 1, sym__external_open_parenthesis, - STATE(1102), 1, + STATE(1061), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(1953), 1, aux_sym_function_definition_repeat1, - [140390] = 4, + [140304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4198), 1, + ACTIONS(4196), 1, sym_dot_dot_i, - STATE(2071), 1, + STATE(2067), 1, sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(4196), 2, + ACTIONS(4194), 2, sym_identifier, sym_dots, - [140404] = 4, + [140318] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(423), 1, + sym_comma, + ACTIONS(4198), 1, + sym__external_close_bracket, + STATE(1732), 1, + sym__close_bracket, + STATE(1941), 1, + aux_sym_call_arguments_repeat1, + [140334] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4202), 1, sym_dot_dot_i, - STATE(2062), 1, + STATE(2059), 1, sym__identifier_or_dots_or_dot_dot_i, ACTIONS(4200), 2, sym_identifier, sym_dots, - [140418] = 5, + [140348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4204), 1, + ACTIONS(3810), 1, sym__newline, - ACTIONS(4206), 1, + ACTIONS(4204), 1, sym__external_open_parenthesis, - STATE(1103), 1, + STATE(1068), 1, sym__open_parenthesis, - STATE(1968), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, - [140434] = 5, + [140364] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(4206), 1, sym__newline, ACTIONS(4208), 1, sym__external_open_parenthesis, - STATE(1104), 1, + STATE(1070), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(1963), 1, aux_sym_function_definition_repeat1, - [140450] = 4, + [140380] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4212), 1, sym_dot_dot_i, - STATE(2074), 1, + STATE(2078), 1, sym__identifier_or_dots_or_dot_dot_i, ACTIONS(4210), 2, sym_identifier, sym_dots, - [140464] = 4, + [140394] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(423), 1, + sym_comma, + ACTIONS(4214), 1, + sym__external_close_bracket, + STATE(1716), 1, + sym__close_bracket, + STATE(2022), 1, + aux_sym_call_arguments_repeat1, + [140410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4216), 1, + ACTIONS(4218), 1, sym_dot_dot_i, - STATE(2056), 1, + STATE(2077), 1, sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(4214), 2, + ACTIONS(4216), 2, sym_identifier, sym_dots, - [140478] = 5, + [140424] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4218), 1, + ACTIONS(3810), 1, sym__newline, ACTIONS(4220), 1, sym__external_open_parenthesis, - STATE(1105), 1, + STATE(1071), 1, sym__open_parenthesis, - STATE(1972), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, - [140494] = 5, + [140440] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, ACTIONS(4222), 1, + sym__newline, + ACTIONS(4224), 1, sym__external_open_parenthesis, - STATE(1106), 1, + STATE(1098), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(1971), 1, aux_sym_function_definition_repeat1, - [140510] = 4, + [140456] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4226), 1, - sym_dot_dot_i, - STATE(2064), 1, - sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(4224), 2, - sym_identifier, - sym_dots, - [140524] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4230), 1, - sym_dot_dot_i, - STATE(2068), 1, - sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(4228), 2, - sym_identifier, - sym_dots, - [140538] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4232), 1, sym__newline, - ACTIONS(4234), 1, + ACTIONS(4228), 1, sym__external_open_parenthesis, - STATE(1107), 1, + STATE(1072), 1, sym__open_parenthesis, - STATE(1976), 1, + STATE(1968), 1, aux_sym_function_definition_repeat1, - [140554] = 5, + [140472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(3810), 1, sym__newline, - ACTIONS(4236), 1, + ACTIONS(4230), 1, sym__external_open_parenthesis, - STATE(1108), 1, + STATE(1099), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, - [140570] = 4, + [140488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4240), 1, + ACTIONS(4234), 1, sym_dot_dot_i, - STATE(2075), 1, + STATE(2076), 1, sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(4238), 2, + ACTIONS(4232), 2, sym_identifier, sym_dots, - [140584] = 4, + [140502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4244), 1, + ACTIONS(4238), 1, sym_dot_dot_i, - STATE(2077), 1, + STATE(2075), 1, sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(4242), 2, + ACTIONS(4236), 2, sym_identifier, sym_dots, - [140598] = 5, + [140516] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3810), 1, + sym__newline, + ACTIONS(4240), 1, + sym__external_open_parenthesis, + STATE(1073), 1, + sym__open_parenthesis, + STATE(2026), 1, + aux_sym_function_definition_repeat1, + [140532] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, + sym_comma, + ACTIONS(4242), 1, + sym__external_close_bracket2, + STATE(1739), 1, + sym__close_bracket2, + STATE(2024), 1, + aux_sym_call_arguments_repeat1, + [140548] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4246), 1, + ACTIONS(4244), 1, sym__newline, - ACTIONS(4248), 1, + ACTIONS(4246), 1, sym__external_open_parenthesis, - STATE(1109), 1, + STATE(1074), 1, sym__open_parenthesis, - STATE(1980), 1, + STATE(1974), 1, aux_sym_function_definition_repeat1, - [140614] = 5, + [140564] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(4248), 1, sym__newline, ACTIONS(4250), 1, sym__external_open_parenthesis, - STATE(1110), 1, + STATE(1103), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(1979), 1, aux_sym_function_definition_repeat1, - [140630] = 4, + [140580] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4254), 1, sym_dot_dot_i, - STATE(2060), 1, + STATE(2069), 1, sym__identifier_or_dots_or_dot_dot_i, ACTIONS(4252), 2, sym_identifier, sym_dots, - [140644] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4258), 1, - sym_dot_dot_i, - STATE(2061), 1, - sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(4256), 2, - sym_identifier, - sym_dots, - [140658] = 5, + [140594] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4260), 1, + ACTIONS(3810), 1, sym__newline, - ACTIONS(4262), 1, + ACTIONS(4256), 1, sym__external_open_parenthesis, - STATE(1111), 1, + STATE(1104), 1, sym__open_parenthesis, - STATE(1984), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, - [140674] = 5, + [140610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, - ACTIONS(4264), 1, - sym__external_open_parenthesis, - STATE(1112), 1, - sym__open_parenthesis, - STATE(2020), 1, - aux_sym_function_definition_repeat1, - [140690] = 4, + ACTIONS(469), 1, + sym_comma, + ACTIONS(4258), 1, + sym__external_close_bracket2, + STATE(429), 1, + sym__close_bracket2, + STATE(2024), 1, + aux_sym_call_arguments_repeat1, + [140626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4268), 1, + ACTIONS(4262), 1, sym_dot_dot_i, - STATE(2066), 1, + STATE(2074), 1, sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(4266), 2, + ACTIONS(4260), 2, sym_identifier, sym_dots, - [140704] = 4, + [140640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 1, + ACTIONS(4266), 1, sym_dot_dot_i, - STATE(2055), 1, + STATE(2073), 1, sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(4270), 2, + ACTIONS(4264), 2, sym_identifier, sym_dots, - [140718] = 5, + [140654] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, + ACTIONS(4268), 1, sym__newline, - ACTIONS(4276), 1, + ACTIONS(4270), 1, sym__external_open_parenthesis, - STATE(1113), 1, + STATE(1109), 1, sym__open_parenthesis, - STATE(1988), 1, + STATE(1985), 1, aux_sym_function_definition_repeat1, - [140734] = 5, + [140670] = 4, + ACTIONS(3836), 1, + sym_comment, + ACTIONS(4272), 1, + anon_sym_SQUOTE, + STATE(1984), 1, + aux_sym__single_quoted_string_content, + ACTIONS(4274), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [140684] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(3810), 1, sym__newline, - ACTIONS(4278), 1, + ACTIONS(4277), 1, sym__external_open_parenthesis, - STATE(1114), 1, + STATE(1110), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, - [140750] = 4, + [140700] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4282), 1, - sym_dot_dot_i, - STATE(2072), 1, - sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(4280), 2, - sym_identifier, - sym_dots, - [140764] = 4, + ACTIONS(469), 1, + sym_comma, + ACTIONS(4279), 1, + sym__external_close_bracket2, + STATE(428), 1, + sym__close_bracket2, + STATE(1955), 1, + aux_sym_call_arguments_repeat1, + [140716] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4286), 1, - sym_dot_dot_i, - STATE(2073), 1, - sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(4284), 2, - sym_identifier, - sym_dots, - [140778] = 5, + ACTIONS(3810), 1, + sym__newline, + ACTIONS(4281), 1, + sym__external_open_parenthesis, + STATE(1075), 1, + sym__open_parenthesis, + STATE(2026), 1, + aux_sym_function_definition_repeat1, + [140732] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4288), 1, + ACTIONS(4283), 1, sym__newline, - ACTIONS(4290), 1, + ACTIONS(4285), 1, sym__external_open_parenthesis, - STATE(1115), 1, + STATE(1076), 1, sym__open_parenthesis, - STATE(1992), 1, + STATE(1987), 1, aux_sym_function_definition_repeat1, - [140794] = 5, + [140748] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(4287), 1, sym__newline, - ACTIONS(4292), 1, + ACTIONS(4289), 1, sym__external_open_parenthesis, - STATE(1116), 1, + STATE(1114), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(1991), 1, aux_sym_function_definition_repeat1, - [140810] = 4, + [140764] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, - sym_dot_dot_i, - STATE(2078), 1, - sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(4294), 2, - sym_identifier, - sym_dots, - [140824] = 4, + ACTIONS(423), 1, + sym_comma, + ACTIONS(4291), 1, + sym__external_close_bracket, + STATE(427), 1, + sym__close_bracket, + STATE(2022), 1, + aux_sym_call_arguments_repeat1, + [140780] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4300), 1, - sym_dot_dot_i, - STATE(2067), 1, - sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(4298), 2, - sym_identifier, - sym_dots, - [140838] = 4, + ACTIONS(3810), 1, + sym__newline, + ACTIONS(4293), 1, + sym__external_open_parenthesis, + STATE(1115), 1, + sym__open_parenthesis, + STATE(2026), 1, + aux_sym_function_definition_repeat1, + [140796] = 4, + ACTIONS(3836), 1, + sym_comment, + ACTIONS(4295), 1, + anon_sym_DQUOTE, + STATE(1992), 1, + aux_sym__double_quoted_string_content, + ACTIONS(4297), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [140810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4304), 1, + ACTIONS(4302), 1, sym_dot_dot_i, - STATE(2070), 1, + STATE(2071), 1, sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(4302), 2, + ACTIONS(4300), 2, sym_identifier, sym_dots, - [140852] = 4, + [140824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4308), 1, + ACTIONS(4306), 1, sym_dot_dot_i, - STATE(2063), 1, + STATE(2070), 1, sym__identifier_or_dots_or_dot_dot_i, - ACTIONS(4306), 2, + ACTIONS(4304), 2, sym_identifier, sym_dots, - [140866] = 5, + [140838] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 1, + ACTIONS(4308), 1, sym__newline, - ACTIONS(4312), 1, + ACTIONS(4310), 1, sym__external_open_parenthesis, - STATE(1049), 1, + STATE(1105), 1, sym__open_parenthesis, - STATE(1999), 1, + STATE(1997), 1, aux_sym_function_definition_repeat1, - [140882] = 5, + [140854] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 1, - sym__newline, - ACTIONS(4316), 1, - sym__external_open_parenthesis, - STATE(1965), 1, - sym__open_parenthesis, - STATE(2000), 1, - aux_sym_function_definition_repeat1, - [140898] = 5, + ACTIONS(423), 1, + sym_comma, + ACTIONS(4312), 1, + sym__external_close_bracket, + STATE(397), 1, + sym__close_bracket, + STATE(1958), 1, + aux_sym_call_arguments_repeat1, + [140870] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(3810), 1, sym__newline, - ACTIONS(4318), 1, + ACTIONS(4314), 1, sym__external_open_parenthesis, - STATE(1061), 1, + STATE(1096), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, - [140914] = 5, + [140886] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(423), 1, + sym_comma, + ACTIONS(4316), 1, + sym__external_close_bracket, + STATE(342), 1, + sym__close_bracket, + STATE(1861), 1, + aux_sym_call_arguments_repeat1, + [140902] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3810), 1, sym__newline, - ACTIONS(4320), 1, + ACTIONS(4318), 1, sym__external_open_parenthesis, - STATE(1966), 1, + STATE(1077), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, - [140930] = 5, + [140918] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 1, + ACTIONS(4320), 1, sym__newline, - ACTIONS(4324), 1, + ACTIONS(4322), 1, sym__external_open_parenthesis, - STATE(1969), 1, + STATE(1078), 1, sym__open_parenthesis, - STATE(2002), 1, + STATE(1999), 1, aux_sym_function_definition_repeat1, - [140946] = 5, + [140934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(4324), 1, sym__newline, ACTIONS(4326), 1, sym__external_open_parenthesis, - STATE(1970), 1, + STATE(1083), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2003), 1, aux_sym_function_definition_repeat1, - [140962] = 5, + [140950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4328), 1, - sym__newline, ACTIONS(4330), 1, - sym__external_open_parenthesis, - STATE(1973), 1, - sym__open_parenthesis, - STATE(2004), 1, - aux_sym_function_definition_repeat1, - [140978] = 5, + sym_dot_dot_i, + STATE(2055), 1, + sym__identifier_or_dots_or_dot_dot_i, + ACTIONS(4328), 2, + sym_identifier, + sym_dots, + [140964] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(3810), 1, sym__newline, ACTIONS(4332), 1, sym__external_open_parenthesis, - STATE(1974), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, - [140994] = 5, + [140980] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(423), 1, + sym_comma, ACTIONS(4334), 1, - sym__newline, - ACTIONS(4336), 1, - sym__external_open_parenthesis, - STATE(1977), 1, - sym__open_parenthesis, - STATE(2006), 1, - aux_sym_function_definition_repeat1, + sym__external_close_bracket, + STATE(391), 1, + sym__close_bracket, + STATE(2022), 1, + aux_sym_call_arguments_repeat1, + [140996] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4338), 1, + sym_dot_dot_i, + STATE(2065), 1, + sym__identifier_or_dots_or_dot_dot_i, + ACTIONS(4336), 2, + sym_identifier, + sym_dots, [141010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(3810), 1, sym__newline, - ACTIONS(4338), 1, + ACTIONS(4340), 1, sym__external_open_parenthesis, - STATE(1978), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, [141026] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, - sym__newline, ACTIONS(4342), 1, + sym__newline, + ACTIONS(4344), 1, sym__external_open_parenthesis, - STATE(1981), 1, + STATE(1063), 1, sym__open_parenthesis, - STATE(2008), 1, + STATE(2009), 1, aux_sym_function_definition_repeat1, [141042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, - ACTIONS(4344), 1, - sym__external_open_parenthesis, - STATE(1982), 1, - sym__open_parenthesis, - STATE(2020), 1, - aux_sym_function_definition_repeat1, + ACTIONS(469), 1, + sym_comma, + ACTIONS(4346), 1, + sym__external_close_bracket2, + STATE(346), 1, + sym__close_bracket2, + STATE(2024), 1, + aux_sym_call_arguments_repeat1, [141058] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, + ACTIONS(3810), 1, sym__newline, ACTIONS(4348), 1, sym__external_open_parenthesis, - STATE(1985), 1, + STATE(1062), 1, sym__open_parenthesis, - STATE(2010), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, [141074] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, + ACTIONS(423), 1, + sym_comma, ACTIONS(4350), 1, - sym__external_open_parenthesis, - STATE(1986), 1, - sym__open_parenthesis, - STATE(2020), 1, - aux_sym_function_definition_repeat1, + sym__external_close_bracket, + STATE(344), 1, + sym__close_bracket, + STATE(2022), 1, + aux_sym_call_arguments_repeat1, [141090] = 5, ACTIONS(3), 1, sym_comment, @@ -144747,20 +144750,20 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, ACTIONS(4354), 1, sym__external_open_parenthesis, - STATE(1989), 1, + STATE(1080), 1, sym__open_parenthesis, - STATE(2012), 1, + STATE(2006), 1, aux_sym_function_definition_repeat1, [141106] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(3810), 1, sym__newline, ACTIONS(4356), 1, sym__external_open_parenthesis, - STATE(1990), 1, + STATE(1084), 1, sym__open_parenthesis, - STATE(2020), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, [141122] = 5, ACTIONS(3), 1, @@ -144769,308 +144772,308 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, ACTIONS(4360), 1, sym__external_open_parenthesis, - STATE(1993), 1, + STATE(1048), 1, sym__open_parenthesis, - STATE(2014), 1, + STATE(2015), 1, aux_sym_function_definition_repeat1, [141138] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, + ACTIONS(469), 1, + sym_comma, ACTIONS(4362), 1, - sym__external_open_parenthesis, - STATE(1994), 1, - sym__open_parenthesis, - STATE(2020), 1, - aux_sym_function_definition_repeat1, + sym__external_close_bracket2, + STATE(345), 1, + sym__close_bracket2, + STATE(1860), 1, + aux_sym_call_arguments_repeat1, [141154] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4364), 1, + ACTIONS(3810), 1, sym__newline, - ACTIONS(4366), 1, + ACTIONS(4364), 1, sym__external_open_parenthesis, - STATE(1995), 1, + STATE(1093), 1, sym__open_parenthesis, - STATE(2016), 1, + STATE(2026), 1, aux_sym_function_definition_repeat1, [141170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym__newline, - ACTIONS(4368), 1, - sym__external_open_parenthesis, - STATE(1996), 1, - sym__open_parenthesis, - STATE(2020), 1, - aux_sym_function_definition_repeat1, - [141186] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(431), 1, - sym_comma, - ACTIONS(4370), 1, - sym__external_close_bracket, - STATE(1693), 1, - sym__close_bracket, - STATE(2018), 1, - aux_sym_call_arguments_repeat1, - [141202] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 1, + ACTIONS(469), 1, sym_comma, - ACTIONS(4375), 1, - sym__external_close_bracket, - STATE(2018), 1, + ACTIONS(4366), 1, + sym__external_close_bracket2, + STATE(389), 1, + sym__close_bracket2, + STATE(2024), 1, aux_sym_call_arguments_repeat1, - [141215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - anon_sym_EQ, - ACTIONS(4379), 2, - sym__external_close_parenthesis, - sym_comma, - [141226] = 4, + [141186] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(681), 1, - sym__external_open_parenthesis, - ACTIONS(4381), 1, + ACTIONS(4368), 1, sym__newline, - STATE(2020), 1, + ACTIONS(4370), 1, + sym__external_open_parenthesis, + STATE(1085), 1, + sym__open_parenthesis, + STATE(2012), 1, aux_sym_function_definition_repeat1, - [141239] = 2, + [141202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 3, + ACTIONS(4372), 3, sym__external_close_parenthesis, anon_sym_EQ, sym_comma, - [141248] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4375), 1, - sym__external_close_parenthesis, - ACTIONS(4386), 1, - sym_comma, - STATE(2022), 1, - aux_sym_call_arguments_repeat1, - [141261] = 4, + [141211] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4375), 1, - sym__external_close_bracket2, - ACTIONS(4389), 1, + ACTIONS(4374), 1, sym_comma, - STATE(2023), 1, + ACTIONS(4377), 1, + sym__external_close_parenthesis, + STATE(2019), 1, aux_sym_call_arguments_repeat1, - [141274] = 4, + [141224] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(4379), 1, sym_comma, - ACTIONS(4395), 1, + ACTIONS(4382), 1, sym__external_close_parenthesis, - STATE(2024), 1, + STATE(2020), 1, aux_sym_parameters_repeat1, - [141287] = 3, - ACTIONS(3834), 1, + [141237] = 3, + ACTIONS(3836), 1, sym_comment, - ACTIONS(4397), 1, + ACTIONS(4384), 1, anon_sym_SQUOTE, - ACTIONS(4399), 2, + ACTIONS(4386), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [141298] = 3, - ACTIONS(3834), 1, + [141248] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym__external_close_bracket, + ACTIONS(4388), 1, + sym_comma, + STATE(2022), 1, + aux_sym_call_arguments_repeat1, + [141261] = 3, + ACTIONS(3836), 1, sym_comment, - ACTIONS(4401), 1, + ACTIONS(4391), 1, anon_sym_DQUOTE, - ACTIONS(4403), 2, + ACTIONS(4393), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [141309] = 3, + [141272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4405), 1, - anon_sym_COLON_COLON, - ACTIONS(4407), 1, - anon_sym_COLON_COLON_COLON, - [141319] = 2, + ACTIONS(4377), 1, + sym__external_close_bracket2, + ACTIONS(4395), 1, + sym_comma, + STATE(2024), 1, + aux_sym_call_arguments_repeat1, + [141285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4409), 2, + ACTIONS(4398), 1, + anon_sym_EQ, + ACTIONS(4400), 2, sym__external_close_parenthesis, sym_comma, - [141327] = 2, + [141296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4411), 2, - sym__external_close_parenthesis, - sym_comma, - [141335] = 2, + ACTIONS(677), 1, + sym__external_open_parenthesis, + ACTIONS(4402), 1, + sym__newline, + STATE(2026), 1, + aux_sym_function_definition_repeat1, + [141309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 2, - sym__external_close_parenthesis, - sym_comma, - [141343] = 2, + ACTIONS(4405), 1, + anon_sym_COLON_COLON, + ACTIONS(4407), 1, + anon_sym_COLON_COLON_COLON, + [141319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 2, - sym__external_close_bracket2, - sym_comma, - [141351] = 3, + ACTIONS(4409), 1, + anon_sym_COLON_COLON, + ACTIONS(4411), 1, + anon_sym_COLON_COLON_COLON, + [141329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4415), 1, + ACTIONS(4413), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4415), 1, anon_sym_COLON_COLON_COLON, - [141361] = 2, + [141339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4409), 2, + ACTIONS(4417), 2, sym__external_close_bracket2, sym_comma, - [141369] = 2, + [141347] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4419), 2, - sym__external_close_parenthesis, + sym__external_close_bracket2, sym_comma, - [141377] = 2, + [141355] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4421), 2, - sym__external_close_bracket2, + sym__external_close_parenthesis, sym_comma, - [141385] = 2, + [141363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 2, - sym__external_close_bracket2, - sym_comma, - [141393] = 2, + ACTIONS(4423), 1, + anon_sym_COLON_COLON, + ACTIONS(4425), 1, + anon_sym_COLON_COLON_COLON, + [141373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4419), 2, - sym__external_close_bracket, + ACTIONS(4427), 2, + sym__external_close_parenthesis, sym_comma, - [141401] = 3, + [141381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4429), 1, anon_sym_COLON_COLON, - ACTIONS(4427), 1, + ACTIONS(4431), 1, anon_sym_COLON_COLON_COLON, - [141411] = 2, + [141391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 2, - sym__external_close_bracket, - sym_comma, - [141419] = 2, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + ACTIONS(4435), 1, + anon_sym_COLON_COLON_COLON, + [141401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 2, + ACTIONS(4437), 2, sym__external_close_parenthesis, sym_comma, - [141427] = 2, + [141409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4429), 2, - sym__external_close_parenthesis, - sym_comma, - [141435] = 2, + ACTIONS(4439), 1, + anon_sym_COLON_COLON, + ACTIONS(4441), 1, + anon_sym_COLON_COLON_COLON, + [141419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4443), 1, + anon_sym_COLON_COLON, + ACTIONS(4445), 1, + anon_sym_COLON_COLON_COLON, + [141429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4447), 2, sym__external_close_parenthesis, sym_comma, - [141443] = 2, + [141437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 2, + ACTIONS(4419), 2, sym__external_close_parenthesis, sym_comma, - [141451] = 3, + [141445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4433), 1, + ACTIONS(4449), 1, anon_sym_COLON_COLON, - ACTIONS(4435), 1, + ACTIONS(4451), 1, anon_sym_COLON_COLON_COLON, - [141461] = 2, + [141455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 2, + ACTIONS(4447), 2, sym__external_close_bracket, sym_comma, - [141469] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4437), 1, - anon_sym_COLON_COLON, - ACTIONS(4439), 1, - anon_sym_COLON_COLON_COLON, - [141479] = 2, + [141463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4409), 2, + ACTIONS(4417), 2, sym__external_close_bracket, sym_comma, - [141487] = 3, + [141471] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - ACTIONS(4443), 1, - anon_sym_COLON_COLON_COLON, - [141497] = 3, + ACTIONS(4419), 2, + sym__external_close_bracket, + sym_comma, + [141479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4445), 1, - anon_sym_COLON_COLON, - ACTIONS(4447), 1, - anon_sym_COLON_COLON_COLON, - [141507] = 2, + ACTIONS(4453), 2, + sym__external_close_parenthesis, + sym_comma, + [141487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4419), 2, + ACTIONS(4437), 2, sym__external_close_bracket2, sym_comma, - [141515] = 3, + [141495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 1, - anon_sym_COLON_COLON, - ACTIONS(4451), 1, - anon_sym_COLON_COLON_COLON, - [141525] = 3, + ACTIONS(4417), 2, + sym__external_close_parenthesis, + sym_comma, + [141503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4453), 1, - anon_sym_COLON_COLON, - ACTIONS(4455), 1, - anon_sym_COLON_COLON_COLON, - [141535] = 2, + ACTIONS(4455), 2, + sym__external_close_parenthesis, + sym_comma, + [141511] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4421), 2, sym__external_close_bracket, sym_comma, - [141543] = 3, + [141519] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4457), 1, anon_sym_COLON_COLON, ACTIONS(4459), 1, anon_sym_COLON_COLON_COLON, + [141529] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 2, + sym__external_close_bracket2, + sym_comma, + [141537] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4447), 2, + sym__external_close_bracket2, + sym_comma, + [141545] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4437), 2, + sym__external_close_bracket, + sym_comma, [141553] = 2, ACTIONS(3), 1, sym_comment, @@ -145080,12 +145083,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 1, sym_comment, ACTIONS(4463), 1, - anon_sym_in, + anon_sym_EQ, [141567] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4465), 1, - ts_builtin_sym_end, + anon_sym_EQ, [141574] = 2, ACTIONS(3), 1, sym_comment, @@ -145110,7 +145113,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 1, sym_comment, ACTIONS(4475), 1, - anon_sym_in, + anon_sym_EQ, [141609] = 2, ACTIONS(3), 1, sym_comment, @@ -145125,7 +145128,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 1, sym_comment, ACTIONS(4481), 1, - anon_sym_EQ, + anon_sym_in, [141630] = 2, ACTIONS(3), 1, sym_comment, @@ -145140,12 +145143,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 1, sym_comment, ACTIONS(4487), 1, - anon_sym_in, + ts_builtin_sym_end, [141651] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4489), 1, - anon_sym_EQ, + anon_sym_in, [141658] = 2, ACTIONS(3), 1, sym_comment, @@ -145180,7 +145183,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 1, sym_comment, ACTIONS(4503), 1, - anon_sym_EQ, + anon_sym_in, [141707] = 2, ACTIONS(3), 1, sym_comment, @@ -145219,537 +145222,537 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(471)] = 2819, [SMALL_STATE(472)] = 2947, [SMALL_STATE(473)] = 3075, - [SMALL_STATE(474)] = 3201, - [SMALL_STATE(475)] = 3329, - [SMALL_STATE(476)] = 3457, - [SMALL_STATE(477)] = 3585, - [SMALL_STATE(478)] = 3713, - [SMALL_STATE(479)] = 3841, - [SMALL_STATE(480)] = 3969, - [SMALL_STATE(481)] = 4097, - [SMALL_STATE(482)] = 4225, - [SMALL_STATE(483)] = 4353, - [SMALL_STATE(484)] = 4481, - [SMALL_STATE(485)] = 4609, - [SMALL_STATE(486)] = 4737, - [SMALL_STATE(487)] = 4865, - [SMALL_STATE(488)] = 4993, - [SMALL_STATE(489)] = 5121, - [SMALL_STATE(490)] = 5249, - [SMALL_STATE(491)] = 5377, - [SMALL_STATE(492)] = 5505, - [SMALL_STATE(493)] = 5633, - [SMALL_STATE(494)] = 5761, - [SMALL_STATE(495)] = 5889, - [SMALL_STATE(496)] = 6017, - [SMALL_STATE(497)] = 6145, - [SMALL_STATE(498)] = 6273, - [SMALL_STATE(499)] = 6401, - [SMALL_STATE(500)] = 6529, - [SMALL_STATE(501)] = 6657, - [SMALL_STATE(502)] = 6785, - [SMALL_STATE(503)] = 6913, - [SMALL_STATE(504)] = 7041, - [SMALL_STATE(505)] = 7169, - [SMALL_STATE(506)] = 7297, - [SMALL_STATE(507)] = 7425, - [SMALL_STATE(508)] = 7553, - [SMALL_STATE(509)] = 7681, - [SMALL_STATE(510)] = 7809, - [SMALL_STATE(511)] = 7937, - [SMALL_STATE(512)] = 8065, - [SMALL_STATE(513)] = 8193, - [SMALL_STATE(514)] = 8321, - [SMALL_STATE(515)] = 8449, - [SMALL_STATE(516)] = 8577, - [SMALL_STATE(517)] = 8705, - [SMALL_STATE(518)] = 8833, - [SMALL_STATE(519)] = 8961, - [SMALL_STATE(520)] = 9089, - [SMALL_STATE(521)] = 9217, - [SMALL_STATE(522)] = 9345, - [SMALL_STATE(523)] = 9473, - [SMALL_STATE(524)] = 9601, - [SMALL_STATE(525)] = 9729, - [SMALL_STATE(526)] = 9857, - [SMALL_STATE(527)] = 9985, - [SMALL_STATE(528)] = 10113, - [SMALL_STATE(529)] = 10241, - [SMALL_STATE(530)] = 10369, - [SMALL_STATE(531)] = 10497, - [SMALL_STATE(532)] = 10625, - [SMALL_STATE(533)] = 10753, - [SMALL_STATE(534)] = 10881, - [SMALL_STATE(535)] = 11009, - [SMALL_STATE(536)] = 11137, - [SMALL_STATE(537)] = 11265, - [SMALL_STATE(538)] = 11393, - [SMALL_STATE(539)] = 11521, - [SMALL_STATE(540)] = 11649, - [SMALL_STATE(541)] = 11777, - [SMALL_STATE(542)] = 11905, - [SMALL_STATE(543)] = 12033, - [SMALL_STATE(544)] = 12161, - [SMALL_STATE(545)] = 12289, - [SMALL_STATE(546)] = 12417, - [SMALL_STATE(547)] = 12545, - [SMALL_STATE(548)] = 12673, - [SMALL_STATE(549)] = 12801, - [SMALL_STATE(550)] = 12929, - [SMALL_STATE(551)] = 13057, - [SMALL_STATE(552)] = 13185, - [SMALL_STATE(553)] = 13313, - [SMALL_STATE(554)] = 13441, - [SMALL_STATE(555)] = 13569, - [SMALL_STATE(556)] = 13697, - [SMALL_STATE(557)] = 13825, - [SMALL_STATE(558)] = 13953, - [SMALL_STATE(559)] = 14081, - [SMALL_STATE(560)] = 14209, - [SMALL_STATE(561)] = 14337, - [SMALL_STATE(562)] = 14465, - [SMALL_STATE(563)] = 14593, - [SMALL_STATE(564)] = 14721, - [SMALL_STATE(565)] = 14849, - [SMALL_STATE(566)] = 14977, - [SMALL_STATE(567)] = 15105, - [SMALL_STATE(568)] = 15233, - [SMALL_STATE(569)] = 15361, - [SMALL_STATE(570)] = 15489, - [SMALL_STATE(571)] = 15617, - [SMALL_STATE(572)] = 15745, - [SMALL_STATE(573)] = 15873, - [SMALL_STATE(574)] = 16001, - [SMALL_STATE(575)] = 16129, - [SMALL_STATE(576)] = 16257, - [SMALL_STATE(577)] = 16385, - [SMALL_STATE(578)] = 16513, - [SMALL_STATE(579)] = 16641, - [SMALL_STATE(580)] = 16769, - [SMALL_STATE(581)] = 16897, - [SMALL_STATE(582)] = 17025, - [SMALL_STATE(583)] = 17153, - [SMALL_STATE(584)] = 17281, - [SMALL_STATE(585)] = 17409, - [SMALL_STATE(586)] = 17537, - [SMALL_STATE(587)] = 17665, - [SMALL_STATE(588)] = 17793, - [SMALL_STATE(589)] = 17921, - [SMALL_STATE(590)] = 18049, - [SMALL_STATE(591)] = 18177, - [SMALL_STATE(592)] = 18305, - [SMALL_STATE(593)] = 18433, - [SMALL_STATE(594)] = 18561, - [SMALL_STATE(595)] = 18689, - [SMALL_STATE(596)] = 18817, - [SMALL_STATE(597)] = 18945, - [SMALL_STATE(598)] = 19073, - [SMALL_STATE(599)] = 19201, - [SMALL_STATE(600)] = 19329, - [SMALL_STATE(601)] = 19457, - [SMALL_STATE(602)] = 19585, - [SMALL_STATE(603)] = 19713, - [SMALL_STATE(604)] = 19841, - [SMALL_STATE(605)] = 19969, - [SMALL_STATE(606)] = 20097, - [SMALL_STATE(607)] = 20225, - [SMALL_STATE(608)] = 20353, - [SMALL_STATE(609)] = 20481, - [SMALL_STATE(610)] = 20609, - [SMALL_STATE(611)] = 20737, - [SMALL_STATE(612)] = 20865, - [SMALL_STATE(613)] = 20993, - [SMALL_STATE(614)] = 21121, - [SMALL_STATE(615)] = 21249, - [SMALL_STATE(616)] = 21377, - [SMALL_STATE(617)] = 21505, - [SMALL_STATE(618)] = 21633, - [SMALL_STATE(619)] = 21761, - [SMALL_STATE(620)] = 21889, - [SMALL_STATE(621)] = 22017, - [SMALL_STATE(622)] = 22145, - [SMALL_STATE(623)] = 22273, - [SMALL_STATE(624)] = 22401, - [SMALL_STATE(625)] = 22529, - [SMALL_STATE(626)] = 22657, - [SMALL_STATE(627)] = 22785, - [SMALL_STATE(628)] = 22913, - [SMALL_STATE(629)] = 23041, - [SMALL_STATE(630)] = 23169, - [SMALL_STATE(631)] = 23297, - [SMALL_STATE(632)] = 23425, - [SMALL_STATE(633)] = 23553, - [SMALL_STATE(634)] = 23681, - [SMALL_STATE(635)] = 23809, - [SMALL_STATE(636)] = 23937, - [SMALL_STATE(637)] = 24065, - [SMALL_STATE(638)] = 24193, - [SMALL_STATE(639)] = 24321, - [SMALL_STATE(640)] = 24449, - [SMALL_STATE(641)] = 24577, - [SMALL_STATE(642)] = 24705, - [SMALL_STATE(643)] = 24833, - [SMALL_STATE(644)] = 24961, - [SMALL_STATE(645)] = 25089, - [SMALL_STATE(646)] = 25217, - [SMALL_STATE(647)] = 25345, - [SMALL_STATE(648)] = 25473, - [SMALL_STATE(649)] = 25601, - [SMALL_STATE(650)] = 25729, - [SMALL_STATE(651)] = 25857, - [SMALL_STATE(652)] = 25985, - [SMALL_STATE(653)] = 26113, - [SMALL_STATE(654)] = 26241, - [SMALL_STATE(655)] = 26369, - [SMALL_STATE(656)] = 26497, - [SMALL_STATE(657)] = 26625, - [SMALL_STATE(658)] = 26753, - [SMALL_STATE(659)] = 26881, - [SMALL_STATE(660)] = 27009, - [SMALL_STATE(661)] = 27137, - [SMALL_STATE(662)] = 27265, - [SMALL_STATE(663)] = 27393, - [SMALL_STATE(664)] = 27521, - [SMALL_STATE(665)] = 27649, - [SMALL_STATE(666)] = 27777, - [SMALL_STATE(667)] = 27905, - [SMALL_STATE(668)] = 28033, - [SMALL_STATE(669)] = 28161, - [SMALL_STATE(670)] = 28289, - [SMALL_STATE(671)] = 28417, - [SMALL_STATE(672)] = 28545, - [SMALL_STATE(673)] = 28673, - [SMALL_STATE(674)] = 28801, - [SMALL_STATE(675)] = 28929, - [SMALL_STATE(676)] = 29057, - [SMALL_STATE(677)] = 29185, - [SMALL_STATE(678)] = 29313, - [SMALL_STATE(679)] = 29441, - [SMALL_STATE(680)] = 29569, - [SMALL_STATE(681)] = 29697, - [SMALL_STATE(682)] = 29825, - [SMALL_STATE(683)] = 29953, - [SMALL_STATE(684)] = 30081, - [SMALL_STATE(685)] = 30209, - [SMALL_STATE(686)] = 30337, - [SMALL_STATE(687)] = 30465, - [SMALL_STATE(688)] = 30593, - [SMALL_STATE(689)] = 30721, - [SMALL_STATE(690)] = 30849, - [SMALL_STATE(691)] = 30977, - [SMALL_STATE(692)] = 31105, - [SMALL_STATE(693)] = 31233, - [SMALL_STATE(694)] = 31361, - [SMALL_STATE(695)] = 31489, - [SMALL_STATE(696)] = 31617, - [SMALL_STATE(697)] = 31745, - [SMALL_STATE(698)] = 31873, - [SMALL_STATE(699)] = 32001, - [SMALL_STATE(700)] = 32129, - [SMALL_STATE(701)] = 32257, - [SMALL_STATE(702)] = 32385, - [SMALL_STATE(703)] = 32513, - [SMALL_STATE(704)] = 32641, - [SMALL_STATE(705)] = 32769, - [SMALL_STATE(706)] = 32897, - [SMALL_STATE(707)] = 33025, - [SMALL_STATE(708)] = 33153, - [SMALL_STATE(709)] = 33281, - [SMALL_STATE(710)] = 33409, - [SMALL_STATE(711)] = 33537, - [SMALL_STATE(712)] = 33665, - [SMALL_STATE(713)] = 33793, - [SMALL_STATE(714)] = 33921, - [SMALL_STATE(715)] = 34049, - [SMALL_STATE(716)] = 34177, - [SMALL_STATE(717)] = 34305, - [SMALL_STATE(718)] = 34433, - [SMALL_STATE(719)] = 34561, - [SMALL_STATE(720)] = 34689, - [SMALL_STATE(721)] = 34817, - [SMALL_STATE(722)] = 34945, - [SMALL_STATE(723)] = 35073, - [SMALL_STATE(724)] = 35201, - [SMALL_STATE(725)] = 35329, - [SMALL_STATE(726)] = 35457, - [SMALL_STATE(727)] = 35585, - [SMALL_STATE(728)] = 35713, - [SMALL_STATE(729)] = 35841, - [SMALL_STATE(730)] = 35969, - [SMALL_STATE(731)] = 36097, - [SMALL_STATE(732)] = 36225, - [SMALL_STATE(733)] = 36353, - [SMALL_STATE(734)] = 36481, - [SMALL_STATE(735)] = 36609, - [SMALL_STATE(736)] = 36737, - [SMALL_STATE(737)] = 36865, - [SMALL_STATE(738)] = 36993, - [SMALL_STATE(739)] = 37121, - [SMALL_STATE(740)] = 37249, - [SMALL_STATE(741)] = 37377, - [SMALL_STATE(742)] = 37505, - [SMALL_STATE(743)] = 37633, - [SMALL_STATE(744)] = 37761, - [SMALL_STATE(745)] = 37889, - [SMALL_STATE(746)] = 38017, - [SMALL_STATE(747)] = 38145, - [SMALL_STATE(748)] = 38273, - [SMALL_STATE(749)] = 38401, - [SMALL_STATE(750)] = 38529, - [SMALL_STATE(751)] = 38657, - [SMALL_STATE(752)] = 38785, - [SMALL_STATE(753)] = 38913, - [SMALL_STATE(754)] = 39041, - [SMALL_STATE(755)] = 39169, - [SMALL_STATE(756)] = 39297, - [SMALL_STATE(757)] = 39425, - [SMALL_STATE(758)] = 39553, - [SMALL_STATE(759)] = 39681, - [SMALL_STATE(760)] = 39809, - [SMALL_STATE(761)] = 39937, - [SMALL_STATE(762)] = 40065, - [SMALL_STATE(763)] = 40193, - [SMALL_STATE(764)] = 40321, - [SMALL_STATE(765)] = 40449, - [SMALL_STATE(766)] = 40577, - [SMALL_STATE(767)] = 40705, - [SMALL_STATE(768)] = 40833, - [SMALL_STATE(769)] = 40961, - [SMALL_STATE(770)] = 41089, - [SMALL_STATE(771)] = 41217, - [SMALL_STATE(772)] = 41345, - [SMALL_STATE(773)] = 41473, - [SMALL_STATE(774)] = 41601, - [SMALL_STATE(775)] = 41729, - [SMALL_STATE(776)] = 41857, - [SMALL_STATE(777)] = 41985, - [SMALL_STATE(778)] = 42113, - [SMALL_STATE(779)] = 42241, - [SMALL_STATE(780)] = 42369, - [SMALL_STATE(781)] = 42497, - [SMALL_STATE(782)] = 42625, - [SMALL_STATE(783)] = 42753, - [SMALL_STATE(784)] = 42881, - [SMALL_STATE(785)] = 43009, - [SMALL_STATE(786)] = 43137, - [SMALL_STATE(787)] = 43265, - [SMALL_STATE(788)] = 43393, - [SMALL_STATE(789)] = 43521, - [SMALL_STATE(790)] = 43649, - [SMALL_STATE(791)] = 43777, - [SMALL_STATE(792)] = 43905, - [SMALL_STATE(793)] = 44033, - [SMALL_STATE(794)] = 44161, - [SMALL_STATE(795)] = 44289, - [SMALL_STATE(796)] = 44417, - [SMALL_STATE(797)] = 44545, - [SMALL_STATE(798)] = 44673, - [SMALL_STATE(799)] = 44801, - [SMALL_STATE(800)] = 44929, - [SMALL_STATE(801)] = 45057, - [SMALL_STATE(802)] = 45185, - [SMALL_STATE(803)] = 45313, - [SMALL_STATE(804)] = 45441, - [SMALL_STATE(805)] = 45569, - [SMALL_STATE(806)] = 45697, - [SMALL_STATE(807)] = 45825, - [SMALL_STATE(808)] = 45953, - [SMALL_STATE(809)] = 46081, - [SMALL_STATE(810)] = 46209, - [SMALL_STATE(811)] = 46337, - [SMALL_STATE(812)] = 46465, - [SMALL_STATE(813)] = 46593, - [SMALL_STATE(814)] = 46721, - [SMALL_STATE(815)] = 46849, - [SMALL_STATE(816)] = 46977, - [SMALL_STATE(817)] = 47105, - [SMALL_STATE(818)] = 47233, - [SMALL_STATE(819)] = 47361, - [SMALL_STATE(820)] = 47489, - [SMALL_STATE(821)] = 47617, - [SMALL_STATE(822)] = 47745, - [SMALL_STATE(823)] = 47873, - [SMALL_STATE(824)] = 48001, - [SMALL_STATE(825)] = 48129, - [SMALL_STATE(826)] = 48257, - [SMALL_STATE(827)] = 48385, - [SMALL_STATE(828)] = 48513, - [SMALL_STATE(829)] = 48641, - [SMALL_STATE(830)] = 48769, - [SMALL_STATE(831)] = 48897, - [SMALL_STATE(832)] = 49025, - [SMALL_STATE(833)] = 49153, - [SMALL_STATE(834)] = 49281, - [SMALL_STATE(835)] = 49409, - [SMALL_STATE(836)] = 49537, - [SMALL_STATE(837)] = 49665, - [SMALL_STATE(838)] = 49793, - [SMALL_STATE(839)] = 49921, - [SMALL_STATE(840)] = 50049, - [SMALL_STATE(841)] = 50177, - [SMALL_STATE(842)] = 50305, - [SMALL_STATE(843)] = 50433, - [SMALL_STATE(844)] = 50561, - [SMALL_STATE(845)] = 50689, - [SMALL_STATE(846)] = 50817, - [SMALL_STATE(847)] = 50945, - [SMALL_STATE(848)] = 51073, - [SMALL_STATE(849)] = 51201, - [SMALL_STATE(850)] = 51329, - [SMALL_STATE(851)] = 51457, - [SMALL_STATE(852)] = 51585, - [SMALL_STATE(853)] = 51713, - [SMALL_STATE(854)] = 51841, - [SMALL_STATE(855)] = 51969, - [SMALL_STATE(856)] = 52097, - [SMALL_STATE(857)] = 52225, - [SMALL_STATE(858)] = 52353, - [SMALL_STATE(859)] = 52481, - [SMALL_STATE(860)] = 52609, - [SMALL_STATE(861)] = 52737, - [SMALL_STATE(862)] = 52865, - [SMALL_STATE(863)] = 52993, - [SMALL_STATE(864)] = 53121, - [SMALL_STATE(865)] = 53249, - [SMALL_STATE(866)] = 53377, - [SMALL_STATE(867)] = 53505, - [SMALL_STATE(868)] = 53633, - [SMALL_STATE(869)] = 53761, - [SMALL_STATE(870)] = 53889, - [SMALL_STATE(871)] = 54017, - [SMALL_STATE(872)] = 54145, - [SMALL_STATE(873)] = 54273, - [SMALL_STATE(874)] = 54401, - [SMALL_STATE(875)] = 54529, - [SMALL_STATE(876)] = 54657, - [SMALL_STATE(877)] = 54785, - [SMALL_STATE(878)] = 54913, - [SMALL_STATE(879)] = 55041, - [SMALL_STATE(880)] = 55169, - [SMALL_STATE(881)] = 55297, - [SMALL_STATE(882)] = 55425, - [SMALL_STATE(883)] = 55553, - [SMALL_STATE(884)] = 55681, - [SMALL_STATE(885)] = 55809, - [SMALL_STATE(886)] = 55937, - [SMALL_STATE(887)] = 56065, - [SMALL_STATE(888)] = 56193, - [SMALL_STATE(889)] = 56321, - [SMALL_STATE(890)] = 56449, - [SMALL_STATE(891)] = 56577, - [SMALL_STATE(892)] = 56705, - [SMALL_STATE(893)] = 56833, - [SMALL_STATE(894)] = 56961, - [SMALL_STATE(895)] = 57089, - [SMALL_STATE(896)] = 57217, - [SMALL_STATE(897)] = 57345, - [SMALL_STATE(898)] = 57473, - [SMALL_STATE(899)] = 57601, - [SMALL_STATE(900)] = 57729, - [SMALL_STATE(901)] = 57857, - [SMALL_STATE(902)] = 57985, - [SMALL_STATE(903)] = 58113, - [SMALL_STATE(904)] = 58241, - [SMALL_STATE(905)] = 58369, - [SMALL_STATE(906)] = 58497, - [SMALL_STATE(907)] = 58625, - [SMALL_STATE(908)] = 58753, - [SMALL_STATE(909)] = 58881, - [SMALL_STATE(910)] = 59009, - [SMALL_STATE(911)] = 59137, - [SMALL_STATE(912)] = 59265, - [SMALL_STATE(913)] = 59393, - [SMALL_STATE(914)] = 59521, - [SMALL_STATE(915)] = 59649, - [SMALL_STATE(916)] = 59777, - [SMALL_STATE(917)] = 59905, - [SMALL_STATE(918)] = 60033, - [SMALL_STATE(919)] = 60161, - [SMALL_STATE(920)] = 60289, - [SMALL_STATE(921)] = 60417, - [SMALL_STATE(922)] = 60545, - [SMALL_STATE(923)] = 60673, - [SMALL_STATE(924)] = 60801, - [SMALL_STATE(925)] = 60929, - [SMALL_STATE(926)] = 61057, - [SMALL_STATE(927)] = 61185, - [SMALL_STATE(928)] = 61313, - [SMALL_STATE(929)] = 61441, - [SMALL_STATE(930)] = 61569, - [SMALL_STATE(931)] = 61697, - [SMALL_STATE(932)] = 61825, - [SMALL_STATE(933)] = 61953, - [SMALL_STATE(934)] = 62081, - [SMALL_STATE(935)] = 62209, - [SMALL_STATE(936)] = 62337, - [SMALL_STATE(937)] = 62465, - [SMALL_STATE(938)] = 62593, - [SMALL_STATE(939)] = 62721, - [SMALL_STATE(940)] = 62849, - [SMALL_STATE(941)] = 62977, - [SMALL_STATE(942)] = 63105, - [SMALL_STATE(943)] = 63233, - [SMALL_STATE(944)] = 63361, - [SMALL_STATE(945)] = 63489, - [SMALL_STATE(946)] = 63617, - [SMALL_STATE(947)] = 63745, - [SMALL_STATE(948)] = 63873, - [SMALL_STATE(949)] = 64001, - [SMALL_STATE(950)] = 64129, - [SMALL_STATE(951)] = 64257, - [SMALL_STATE(952)] = 64385, - [SMALL_STATE(953)] = 64513, - [SMALL_STATE(954)] = 64641, - [SMALL_STATE(955)] = 64769, - [SMALL_STATE(956)] = 64897, - [SMALL_STATE(957)] = 65025, - [SMALL_STATE(958)] = 65153, - [SMALL_STATE(959)] = 65281, - [SMALL_STATE(960)] = 65409, - [SMALL_STATE(961)] = 65537, - [SMALL_STATE(962)] = 65665, - [SMALL_STATE(963)] = 65793, - [SMALL_STATE(964)] = 65921, - [SMALL_STATE(965)] = 66049, - [SMALL_STATE(966)] = 66177, - [SMALL_STATE(967)] = 66305, - [SMALL_STATE(968)] = 66433, - [SMALL_STATE(969)] = 66561, - [SMALL_STATE(970)] = 66689, - [SMALL_STATE(971)] = 66817, - [SMALL_STATE(972)] = 66945, - [SMALL_STATE(973)] = 67073, - [SMALL_STATE(974)] = 67201, - [SMALL_STATE(975)] = 67329, - [SMALL_STATE(976)] = 67457, - [SMALL_STATE(977)] = 67585, - [SMALL_STATE(978)] = 67713, - [SMALL_STATE(979)] = 67841, - [SMALL_STATE(980)] = 67969, - [SMALL_STATE(981)] = 68097, - [SMALL_STATE(982)] = 68225, - [SMALL_STATE(983)] = 68353, - [SMALL_STATE(984)] = 68481, - [SMALL_STATE(985)] = 68609, - [SMALL_STATE(986)] = 68737, - [SMALL_STATE(987)] = 68865, - [SMALL_STATE(988)] = 68993, - [SMALL_STATE(989)] = 69121, - [SMALL_STATE(990)] = 69249, - [SMALL_STATE(991)] = 69377, - [SMALL_STATE(992)] = 69505, - [SMALL_STATE(993)] = 69633, - [SMALL_STATE(994)] = 69761, - [SMALL_STATE(995)] = 69889, - [SMALL_STATE(996)] = 70017, - [SMALL_STATE(997)] = 70145, - [SMALL_STATE(998)] = 70273, - [SMALL_STATE(999)] = 70401, - [SMALL_STATE(1000)] = 70529, - [SMALL_STATE(1001)] = 70657, - [SMALL_STATE(1002)] = 70785, - [SMALL_STATE(1003)] = 70913, - [SMALL_STATE(1004)] = 71041, + [SMALL_STATE(474)] = 3203, + [SMALL_STATE(475)] = 3331, + [SMALL_STATE(476)] = 3459, + [SMALL_STATE(477)] = 3587, + [SMALL_STATE(478)] = 3715, + [SMALL_STATE(479)] = 3843, + [SMALL_STATE(480)] = 3971, + [SMALL_STATE(481)] = 4099, + [SMALL_STATE(482)] = 4227, + [SMALL_STATE(483)] = 4355, + [SMALL_STATE(484)] = 4483, + [SMALL_STATE(485)] = 4611, + [SMALL_STATE(486)] = 4739, + [SMALL_STATE(487)] = 4867, + [SMALL_STATE(488)] = 4995, + [SMALL_STATE(489)] = 5123, + [SMALL_STATE(490)] = 5251, + [SMALL_STATE(491)] = 5379, + [SMALL_STATE(492)] = 5507, + [SMALL_STATE(493)] = 5635, + [SMALL_STATE(494)] = 5763, + [SMALL_STATE(495)] = 5891, + [SMALL_STATE(496)] = 6019, + [SMALL_STATE(497)] = 6147, + [SMALL_STATE(498)] = 6275, + [SMALL_STATE(499)] = 6403, + [SMALL_STATE(500)] = 6531, + [SMALL_STATE(501)] = 6659, + [SMALL_STATE(502)] = 6787, + [SMALL_STATE(503)] = 6915, + [SMALL_STATE(504)] = 7043, + [SMALL_STATE(505)] = 7171, + [SMALL_STATE(506)] = 7299, + [SMALL_STATE(507)] = 7427, + [SMALL_STATE(508)] = 7555, + [SMALL_STATE(509)] = 7683, + [SMALL_STATE(510)] = 7811, + [SMALL_STATE(511)] = 7939, + [SMALL_STATE(512)] = 8067, + [SMALL_STATE(513)] = 8195, + [SMALL_STATE(514)] = 8323, + [SMALL_STATE(515)] = 8451, + [SMALL_STATE(516)] = 8579, + [SMALL_STATE(517)] = 8707, + [SMALL_STATE(518)] = 8835, + [SMALL_STATE(519)] = 8963, + [SMALL_STATE(520)] = 9091, + [SMALL_STATE(521)] = 9219, + [SMALL_STATE(522)] = 9347, + [SMALL_STATE(523)] = 9475, + [SMALL_STATE(524)] = 9603, + [SMALL_STATE(525)] = 9731, + [SMALL_STATE(526)] = 9859, + [SMALL_STATE(527)] = 9987, + [SMALL_STATE(528)] = 10115, + [SMALL_STATE(529)] = 10243, + [SMALL_STATE(530)] = 10371, + [SMALL_STATE(531)] = 10499, + [SMALL_STATE(532)] = 10627, + [SMALL_STATE(533)] = 10755, + [SMALL_STATE(534)] = 10883, + [SMALL_STATE(535)] = 11011, + [SMALL_STATE(536)] = 11139, + [SMALL_STATE(537)] = 11267, + [SMALL_STATE(538)] = 11395, + [SMALL_STATE(539)] = 11523, + [SMALL_STATE(540)] = 11651, + [SMALL_STATE(541)] = 11779, + [SMALL_STATE(542)] = 11907, + [SMALL_STATE(543)] = 12035, + [SMALL_STATE(544)] = 12163, + [SMALL_STATE(545)] = 12291, + [SMALL_STATE(546)] = 12419, + [SMALL_STATE(547)] = 12547, + [SMALL_STATE(548)] = 12675, + [SMALL_STATE(549)] = 12803, + [SMALL_STATE(550)] = 12931, + [SMALL_STATE(551)] = 13059, + [SMALL_STATE(552)] = 13187, + [SMALL_STATE(553)] = 13315, + [SMALL_STATE(554)] = 13443, + [SMALL_STATE(555)] = 13571, + [SMALL_STATE(556)] = 13699, + [SMALL_STATE(557)] = 13827, + [SMALL_STATE(558)] = 13955, + [SMALL_STATE(559)] = 14083, + [SMALL_STATE(560)] = 14211, + [SMALL_STATE(561)] = 14339, + [SMALL_STATE(562)] = 14467, + [SMALL_STATE(563)] = 14595, + [SMALL_STATE(564)] = 14723, + [SMALL_STATE(565)] = 14851, + [SMALL_STATE(566)] = 14979, + [SMALL_STATE(567)] = 15107, + [SMALL_STATE(568)] = 15235, + [SMALL_STATE(569)] = 15363, + [SMALL_STATE(570)] = 15491, + [SMALL_STATE(571)] = 15619, + [SMALL_STATE(572)] = 15747, + [SMALL_STATE(573)] = 15875, + [SMALL_STATE(574)] = 16003, + [SMALL_STATE(575)] = 16131, + [SMALL_STATE(576)] = 16259, + [SMALL_STATE(577)] = 16387, + [SMALL_STATE(578)] = 16515, + [SMALL_STATE(579)] = 16643, + [SMALL_STATE(580)] = 16771, + [SMALL_STATE(581)] = 16899, + [SMALL_STATE(582)] = 17027, + [SMALL_STATE(583)] = 17155, + [SMALL_STATE(584)] = 17283, + [SMALL_STATE(585)] = 17411, + [SMALL_STATE(586)] = 17539, + [SMALL_STATE(587)] = 17667, + [SMALL_STATE(588)] = 17795, + [SMALL_STATE(589)] = 17923, + [SMALL_STATE(590)] = 18051, + [SMALL_STATE(591)] = 18179, + [SMALL_STATE(592)] = 18307, + [SMALL_STATE(593)] = 18435, + [SMALL_STATE(594)] = 18563, + [SMALL_STATE(595)] = 18691, + [SMALL_STATE(596)] = 18819, + [SMALL_STATE(597)] = 18947, + [SMALL_STATE(598)] = 19075, + [SMALL_STATE(599)] = 19203, + [SMALL_STATE(600)] = 19331, + [SMALL_STATE(601)] = 19459, + [SMALL_STATE(602)] = 19587, + [SMALL_STATE(603)] = 19715, + [SMALL_STATE(604)] = 19843, + [SMALL_STATE(605)] = 19971, + [SMALL_STATE(606)] = 20099, + [SMALL_STATE(607)] = 20227, + [SMALL_STATE(608)] = 20355, + [SMALL_STATE(609)] = 20483, + [SMALL_STATE(610)] = 20611, + [SMALL_STATE(611)] = 20739, + [SMALL_STATE(612)] = 20867, + [SMALL_STATE(613)] = 20995, + [SMALL_STATE(614)] = 21123, + [SMALL_STATE(615)] = 21251, + [SMALL_STATE(616)] = 21379, + [SMALL_STATE(617)] = 21507, + [SMALL_STATE(618)] = 21635, + [SMALL_STATE(619)] = 21763, + [SMALL_STATE(620)] = 21891, + [SMALL_STATE(621)] = 22019, + [SMALL_STATE(622)] = 22147, + [SMALL_STATE(623)] = 22275, + [SMALL_STATE(624)] = 22403, + [SMALL_STATE(625)] = 22531, + [SMALL_STATE(626)] = 22659, + [SMALL_STATE(627)] = 22787, + [SMALL_STATE(628)] = 22915, + [SMALL_STATE(629)] = 23043, + [SMALL_STATE(630)] = 23171, + [SMALL_STATE(631)] = 23299, + [SMALL_STATE(632)] = 23427, + [SMALL_STATE(633)] = 23555, + [SMALL_STATE(634)] = 23683, + [SMALL_STATE(635)] = 23811, + [SMALL_STATE(636)] = 23939, + [SMALL_STATE(637)] = 24067, + [SMALL_STATE(638)] = 24195, + [SMALL_STATE(639)] = 24323, + [SMALL_STATE(640)] = 24451, + [SMALL_STATE(641)] = 24579, + [SMALL_STATE(642)] = 24707, + [SMALL_STATE(643)] = 24835, + [SMALL_STATE(644)] = 24963, + [SMALL_STATE(645)] = 25091, + [SMALL_STATE(646)] = 25219, + [SMALL_STATE(647)] = 25347, + [SMALL_STATE(648)] = 25475, + [SMALL_STATE(649)] = 25603, + [SMALL_STATE(650)] = 25731, + [SMALL_STATE(651)] = 25859, + [SMALL_STATE(652)] = 25987, + [SMALL_STATE(653)] = 26115, + [SMALL_STATE(654)] = 26243, + [SMALL_STATE(655)] = 26371, + [SMALL_STATE(656)] = 26499, + [SMALL_STATE(657)] = 26627, + [SMALL_STATE(658)] = 26755, + [SMALL_STATE(659)] = 26883, + [SMALL_STATE(660)] = 27011, + [SMALL_STATE(661)] = 27139, + [SMALL_STATE(662)] = 27267, + [SMALL_STATE(663)] = 27395, + [SMALL_STATE(664)] = 27523, + [SMALL_STATE(665)] = 27651, + [SMALL_STATE(666)] = 27779, + [SMALL_STATE(667)] = 27907, + [SMALL_STATE(668)] = 28035, + [SMALL_STATE(669)] = 28163, + [SMALL_STATE(670)] = 28291, + [SMALL_STATE(671)] = 28419, + [SMALL_STATE(672)] = 28547, + [SMALL_STATE(673)] = 28675, + [SMALL_STATE(674)] = 28803, + [SMALL_STATE(675)] = 28931, + [SMALL_STATE(676)] = 29059, + [SMALL_STATE(677)] = 29187, + [SMALL_STATE(678)] = 29315, + [SMALL_STATE(679)] = 29443, + [SMALL_STATE(680)] = 29571, + [SMALL_STATE(681)] = 29699, + [SMALL_STATE(682)] = 29827, + [SMALL_STATE(683)] = 29955, + [SMALL_STATE(684)] = 30083, + [SMALL_STATE(685)] = 30211, + [SMALL_STATE(686)] = 30339, + [SMALL_STATE(687)] = 30467, + [SMALL_STATE(688)] = 30595, + [SMALL_STATE(689)] = 30723, + [SMALL_STATE(690)] = 30851, + [SMALL_STATE(691)] = 30979, + [SMALL_STATE(692)] = 31107, + [SMALL_STATE(693)] = 31235, + [SMALL_STATE(694)] = 31363, + [SMALL_STATE(695)] = 31491, + [SMALL_STATE(696)] = 31619, + [SMALL_STATE(697)] = 31747, + [SMALL_STATE(698)] = 31875, + [SMALL_STATE(699)] = 32003, + [SMALL_STATE(700)] = 32131, + [SMALL_STATE(701)] = 32259, + [SMALL_STATE(702)] = 32387, + [SMALL_STATE(703)] = 32515, + [SMALL_STATE(704)] = 32643, + [SMALL_STATE(705)] = 32771, + [SMALL_STATE(706)] = 32899, + [SMALL_STATE(707)] = 33027, + [SMALL_STATE(708)] = 33155, + [SMALL_STATE(709)] = 33283, + [SMALL_STATE(710)] = 33411, + [SMALL_STATE(711)] = 33539, + [SMALL_STATE(712)] = 33667, + [SMALL_STATE(713)] = 33795, + [SMALL_STATE(714)] = 33923, + [SMALL_STATE(715)] = 34051, + [SMALL_STATE(716)] = 34179, + [SMALL_STATE(717)] = 34307, + [SMALL_STATE(718)] = 34435, + [SMALL_STATE(719)] = 34563, + [SMALL_STATE(720)] = 34691, + [SMALL_STATE(721)] = 34819, + [SMALL_STATE(722)] = 34947, + [SMALL_STATE(723)] = 35075, + [SMALL_STATE(724)] = 35203, + [SMALL_STATE(725)] = 35331, + [SMALL_STATE(726)] = 35459, + [SMALL_STATE(727)] = 35587, + [SMALL_STATE(728)] = 35715, + [SMALL_STATE(729)] = 35843, + [SMALL_STATE(730)] = 35971, + [SMALL_STATE(731)] = 36099, + [SMALL_STATE(732)] = 36227, + [SMALL_STATE(733)] = 36355, + [SMALL_STATE(734)] = 36483, + [SMALL_STATE(735)] = 36611, + [SMALL_STATE(736)] = 36739, + [SMALL_STATE(737)] = 36867, + [SMALL_STATE(738)] = 36995, + [SMALL_STATE(739)] = 37123, + [SMALL_STATE(740)] = 37251, + [SMALL_STATE(741)] = 37379, + [SMALL_STATE(742)] = 37507, + [SMALL_STATE(743)] = 37635, + [SMALL_STATE(744)] = 37763, + [SMALL_STATE(745)] = 37891, + [SMALL_STATE(746)] = 38019, + [SMALL_STATE(747)] = 38147, + [SMALL_STATE(748)] = 38275, + [SMALL_STATE(749)] = 38403, + [SMALL_STATE(750)] = 38531, + [SMALL_STATE(751)] = 38659, + [SMALL_STATE(752)] = 38787, + [SMALL_STATE(753)] = 38915, + [SMALL_STATE(754)] = 39043, + [SMALL_STATE(755)] = 39171, + [SMALL_STATE(756)] = 39299, + [SMALL_STATE(757)] = 39427, + [SMALL_STATE(758)] = 39555, + [SMALL_STATE(759)] = 39683, + [SMALL_STATE(760)] = 39811, + [SMALL_STATE(761)] = 39939, + [SMALL_STATE(762)] = 40067, + [SMALL_STATE(763)] = 40195, + [SMALL_STATE(764)] = 40323, + [SMALL_STATE(765)] = 40451, + [SMALL_STATE(766)] = 40579, + [SMALL_STATE(767)] = 40707, + [SMALL_STATE(768)] = 40835, + [SMALL_STATE(769)] = 40963, + [SMALL_STATE(770)] = 41091, + [SMALL_STATE(771)] = 41219, + [SMALL_STATE(772)] = 41347, + [SMALL_STATE(773)] = 41475, + [SMALL_STATE(774)] = 41603, + [SMALL_STATE(775)] = 41731, + [SMALL_STATE(776)] = 41859, + [SMALL_STATE(777)] = 41987, + [SMALL_STATE(778)] = 42115, + [SMALL_STATE(779)] = 42243, + [SMALL_STATE(780)] = 42371, + [SMALL_STATE(781)] = 42499, + [SMALL_STATE(782)] = 42627, + [SMALL_STATE(783)] = 42755, + [SMALL_STATE(784)] = 42883, + [SMALL_STATE(785)] = 43011, + [SMALL_STATE(786)] = 43139, + [SMALL_STATE(787)] = 43267, + [SMALL_STATE(788)] = 43395, + [SMALL_STATE(789)] = 43523, + [SMALL_STATE(790)] = 43651, + [SMALL_STATE(791)] = 43779, + [SMALL_STATE(792)] = 43907, + [SMALL_STATE(793)] = 44035, + [SMALL_STATE(794)] = 44163, + [SMALL_STATE(795)] = 44291, + [SMALL_STATE(796)] = 44419, + [SMALL_STATE(797)] = 44547, + [SMALL_STATE(798)] = 44675, + [SMALL_STATE(799)] = 44803, + [SMALL_STATE(800)] = 44931, + [SMALL_STATE(801)] = 45059, + [SMALL_STATE(802)] = 45187, + [SMALL_STATE(803)] = 45315, + [SMALL_STATE(804)] = 45443, + [SMALL_STATE(805)] = 45571, + [SMALL_STATE(806)] = 45699, + [SMALL_STATE(807)] = 45827, + [SMALL_STATE(808)] = 45955, + [SMALL_STATE(809)] = 46083, + [SMALL_STATE(810)] = 46211, + [SMALL_STATE(811)] = 46339, + [SMALL_STATE(812)] = 46467, + [SMALL_STATE(813)] = 46595, + [SMALL_STATE(814)] = 46723, + [SMALL_STATE(815)] = 46851, + [SMALL_STATE(816)] = 46979, + [SMALL_STATE(817)] = 47107, + [SMALL_STATE(818)] = 47235, + [SMALL_STATE(819)] = 47363, + [SMALL_STATE(820)] = 47491, + [SMALL_STATE(821)] = 47619, + [SMALL_STATE(822)] = 47747, + [SMALL_STATE(823)] = 47875, + [SMALL_STATE(824)] = 48003, + [SMALL_STATE(825)] = 48131, + [SMALL_STATE(826)] = 48259, + [SMALL_STATE(827)] = 48387, + [SMALL_STATE(828)] = 48515, + [SMALL_STATE(829)] = 48643, + [SMALL_STATE(830)] = 48771, + [SMALL_STATE(831)] = 48899, + [SMALL_STATE(832)] = 49027, + [SMALL_STATE(833)] = 49155, + [SMALL_STATE(834)] = 49283, + [SMALL_STATE(835)] = 49411, + [SMALL_STATE(836)] = 49539, + [SMALL_STATE(837)] = 49667, + [SMALL_STATE(838)] = 49795, + [SMALL_STATE(839)] = 49923, + [SMALL_STATE(840)] = 50051, + [SMALL_STATE(841)] = 50179, + [SMALL_STATE(842)] = 50307, + [SMALL_STATE(843)] = 50435, + [SMALL_STATE(844)] = 50563, + [SMALL_STATE(845)] = 50691, + [SMALL_STATE(846)] = 50819, + [SMALL_STATE(847)] = 50947, + [SMALL_STATE(848)] = 51075, + [SMALL_STATE(849)] = 51203, + [SMALL_STATE(850)] = 51331, + [SMALL_STATE(851)] = 51459, + [SMALL_STATE(852)] = 51587, + [SMALL_STATE(853)] = 51715, + [SMALL_STATE(854)] = 51843, + [SMALL_STATE(855)] = 51971, + [SMALL_STATE(856)] = 52099, + [SMALL_STATE(857)] = 52227, + [SMALL_STATE(858)] = 52355, + [SMALL_STATE(859)] = 52483, + [SMALL_STATE(860)] = 52611, + [SMALL_STATE(861)] = 52739, + [SMALL_STATE(862)] = 52867, + [SMALL_STATE(863)] = 52995, + [SMALL_STATE(864)] = 53123, + [SMALL_STATE(865)] = 53251, + [SMALL_STATE(866)] = 53379, + [SMALL_STATE(867)] = 53507, + [SMALL_STATE(868)] = 53635, + [SMALL_STATE(869)] = 53763, + [SMALL_STATE(870)] = 53891, + [SMALL_STATE(871)] = 54019, + [SMALL_STATE(872)] = 54147, + [SMALL_STATE(873)] = 54275, + [SMALL_STATE(874)] = 54403, + [SMALL_STATE(875)] = 54531, + [SMALL_STATE(876)] = 54659, + [SMALL_STATE(877)] = 54787, + [SMALL_STATE(878)] = 54915, + [SMALL_STATE(879)] = 55043, + [SMALL_STATE(880)] = 55171, + [SMALL_STATE(881)] = 55299, + [SMALL_STATE(882)] = 55427, + [SMALL_STATE(883)] = 55555, + [SMALL_STATE(884)] = 55683, + [SMALL_STATE(885)] = 55811, + [SMALL_STATE(886)] = 55939, + [SMALL_STATE(887)] = 56067, + [SMALL_STATE(888)] = 56195, + [SMALL_STATE(889)] = 56323, + [SMALL_STATE(890)] = 56451, + [SMALL_STATE(891)] = 56579, + [SMALL_STATE(892)] = 56707, + [SMALL_STATE(893)] = 56835, + [SMALL_STATE(894)] = 56963, + [SMALL_STATE(895)] = 57091, + [SMALL_STATE(896)] = 57219, + [SMALL_STATE(897)] = 57347, + [SMALL_STATE(898)] = 57475, + [SMALL_STATE(899)] = 57603, + [SMALL_STATE(900)] = 57731, + [SMALL_STATE(901)] = 57859, + [SMALL_STATE(902)] = 57987, + [SMALL_STATE(903)] = 58115, + [SMALL_STATE(904)] = 58243, + [SMALL_STATE(905)] = 58371, + [SMALL_STATE(906)] = 58499, + [SMALL_STATE(907)] = 58627, + [SMALL_STATE(908)] = 58755, + [SMALL_STATE(909)] = 58883, + [SMALL_STATE(910)] = 59011, + [SMALL_STATE(911)] = 59139, + [SMALL_STATE(912)] = 59267, + [SMALL_STATE(913)] = 59395, + [SMALL_STATE(914)] = 59523, + [SMALL_STATE(915)] = 59651, + [SMALL_STATE(916)] = 59779, + [SMALL_STATE(917)] = 59907, + [SMALL_STATE(918)] = 60035, + [SMALL_STATE(919)] = 60163, + [SMALL_STATE(920)] = 60291, + [SMALL_STATE(921)] = 60419, + [SMALL_STATE(922)] = 60547, + [SMALL_STATE(923)] = 60675, + [SMALL_STATE(924)] = 60803, + [SMALL_STATE(925)] = 60931, + [SMALL_STATE(926)] = 61059, + [SMALL_STATE(927)] = 61187, + [SMALL_STATE(928)] = 61315, + [SMALL_STATE(929)] = 61443, + [SMALL_STATE(930)] = 61571, + [SMALL_STATE(931)] = 61699, + [SMALL_STATE(932)] = 61827, + [SMALL_STATE(933)] = 61955, + [SMALL_STATE(934)] = 62083, + [SMALL_STATE(935)] = 62211, + [SMALL_STATE(936)] = 62339, + [SMALL_STATE(937)] = 62467, + [SMALL_STATE(938)] = 62595, + [SMALL_STATE(939)] = 62723, + [SMALL_STATE(940)] = 62851, + [SMALL_STATE(941)] = 62979, + [SMALL_STATE(942)] = 63107, + [SMALL_STATE(943)] = 63235, + [SMALL_STATE(944)] = 63363, + [SMALL_STATE(945)] = 63491, + [SMALL_STATE(946)] = 63619, + [SMALL_STATE(947)] = 63747, + [SMALL_STATE(948)] = 63875, + [SMALL_STATE(949)] = 64003, + [SMALL_STATE(950)] = 64131, + [SMALL_STATE(951)] = 64259, + [SMALL_STATE(952)] = 64387, + [SMALL_STATE(953)] = 64515, + [SMALL_STATE(954)] = 64643, + [SMALL_STATE(955)] = 64771, + [SMALL_STATE(956)] = 64899, + [SMALL_STATE(957)] = 65027, + [SMALL_STATE(958)] = 65155, + [SMALL_STATE(959)] = 65283, + [SMALL_STATE(960)] = 65411, + [SMALL_STATE(961)] = 65539, + [SMALL_STATE(962)] = 65667, + [SMALL_STATE(963)] = 65795, + [SMALL_STATE(964)] = 65923, + [SMALL_STATE(965)] = 66051, + [SMALL_STATE(966)] = 66179, + [SMALL_STATE(967)] = 66307, + [SMALL_STATE(968)] = 66435, + [SMALL_STATE(969)] = 66563, + [SMALL_STATE(970)] = 66691, + [SMALL_STATE(971)] = 66819, + [SMALL_STATE(972)] = 66947, + [SMALL_STATE(973)] = 67075, + [SMALL_STATE(974)] = 67203, + [SMALL_STATE(975)] = 67331, + [SMALL_STATE(976)] = 67459, + [SMALL_STATE(977)] = 67587, + [SMALL_STATE(978)] = 67715, + [SMALL_STATE(979)] = 67843, + [SMALL_STATE(980)] = 67971, + [SMALL_STATE(981)] = 68099, + [SMALL_STATE(982)] = 68227, + [SMALL_STATE(983)] = 68355, + [SMALL_STATE(984)] = 68483, + [SMALL_STATE(985)] = 68611, + [SMALL_STATE(986)] = 68739, + [SMALL_STATE(987)] = 68867, + [SMALL_STATE(988)] = 68995, + [SMALL_STATE(989)] = 69123, + [SMALL_STATE(990)] = 69251, + [SMALL_STATE(991)] = 69379, + [SMALL_STATE(992)] = 69507, + [SMALL_STATE(993)] = 69635, + [SMALL_STATE(994)] = 69763, + [SMALL_STATE(995)] = 69891, + [SMALL_STATE(996)] = 70019, + [SMALL_STATE(997)] = 70147, + [SMALL_STATE(998)] = 70275, + [SMALL_STATE(999)] = 70403, + [SMALL_STATE(1000)] = 70531, + [SMALL_STATE(1001)] = 70659, + [SMALL_STATE(1002)] = 70787, + [SMALL_STATE(1003)] = 70915, + [SMALL_STATE(1004)] = 71043, [SMALL_STATE(1005)] = 71169, [SMALL_STATE(1006)] = 71297, [SMALL_STATE(1007)] = 71425, @@ -145889,495 +145892,495 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1141)] = 86899, [SMALL_STATE(1142)] = 87007, [SMALL_STATE(1143)] = 87115, - [SMALL_STATE(1144)] = 87169, - [SMALL_STATE(1145)] = 87277, - [SMALL_STATE(1146)] = 87385, - [SMALL_STATE(1147)] = 87493, - [SMALL_STATE(1148)] = 87547, - [SMALL_STATE(1149)] = 87655, - [SMALL_STATE(1150)] = 87763, - [SMALL_STATE(1151)] = 87871, - [SMALL_STATE(1152)] = 87979, - [SMALL_STATE(1153)] = 88087, - [SMALL_STATE(1154)] = 88195, - [SMALL_STATE(1155)] = 88303, - [SMALL_STATE(1156)] = 88411, - [SMALL_STATE(1157)] = 88465, - [SMALL_STATE(1158)] = 88573, - [SMALL_STATE(1159)] = 88681, - [SMALL_STATE(1160)] = 88789, - [SMALL_STATE(1161)] = 88897, - [SMALL_STATE(1162)] = 89005, + [SMALL_STATE(1144)] = 87223, + [SMALL_STATE(1145)] = 87331, + [SMALL_STATE(1146)] = 87439, + [SMALL_STATE(1147)] = 87547, + [SMALL_STATE(1148)] = 87655, + [SMALL_STATE(1149)] = 87763, + [SMALL_STATE(1150)] = 87871, + [SMALL_STATE(1151)] = 87979, + [SMALL_STATE(1152)] = 88087, + [SMALL_STATE(1153)] = 88141, + [SMALL_STATE(1154)] = 88249, + [SMALL_STATE(1155)] = 88357, + [SMALL_STATE(1156)] = 88465, + [SMALL_STATE(1157)] = 88573, + [SMALL_STATE(1158)] = 88627, + [SMALL_STATE(1159)] = 88735, + [SMALL_STATE(1160)] = 88843, + [SMALL_STATE(1161)] = 88951, + [SMALL_STATE(1162)] = 89059, [SMALL_STATE(1163)] = 89113, [SMALL_STATE(1164)] = 89221, [SMALL_STATE(1165)] = 89329, [SMALL_STATE(1166)] = 89437, - [SMALL_STATE(1167)] = 89532, - [SMALL_STATE(1168)] = 89635, - [SMALL_STATE(1169)] = 89706, - [SMALL_STATE(1170)] = 89809, - [SMALL_STATE(1171)] = 89912, - [SMALL_STATE(1172)] = 90015, - [SMALL_STATE(1173)] = 90118, - [SMALL_STATE(1174)] = 90221, - [SMALL_STATE(1175)] = 90292, - [SMALL_STATE(1176)] = 90387, - [SMALL_STATE(1177)] = 90490, - [SMALL_STATE(1178)] = 90593, - [SMALL_STATE(1179)] = 90680, - [SMALL_STATE(1180)] = 90783, - [SMALL_STATE(1181)] = 90886, - [SMALL_STATE(1182)] = 90989, - [SMALL_STATE(1183)] = 91060, - [SMALL_STATE(1184)] = 91163, - [SMALL_STATE(1185)] = 91266, - [SMALL_STATE(1186)] = 91369, - [SMALL_STATE(1187)] = 91472, - [SMALL_STATE(1188)] = 91573, - [SMALL_STATE(1189)] = 91676, - [SMALL_STATE(1190)] = 91779, - [SMALL_STATE(1191)] = 91882, - [SMALL_STATE(1192)] = 91977, - [SMALL_STATE(1193)] = 92080, - [SMALL_STATE(1194)] = 92159, - [SMALL_STATE(1195)] = 92254, - [SMALL_STATE(1196)] = 92357, - [SMALL_STATE(1197)] = 92460, - [SMALL_STATE(1198)] = 92547, - [SMALL_STATE(1199)] = 92642, - [SMALL_STATE(1200)] = 92713, - [SMALL_STATE(1201)] = 92792, - [SMALL_STATE(1202)] = 92895, - [SMALL_STATE(1203)] = 92998, - [SMALL_STATE(1204)] = 93101, - [SMALL_STATE(1205)] = 93204, - [SMALL_STATE(1206)] = 93307, - [SMALL_STATE(1207)] = 93410, - [SMALL_STATE(1208)] = 93513, - [SMALL_STATE(1209)] = 93616, - [SMALL_STATE(1210)] = 93719, - [SMALL_STATE(1211)] = 93816, - [SMALL_STATE(1212)] = 93907, - [SMALL_STATE(1213)] = 94010, - [SMALL_STATE(1214)] = 94113, - [SMALL_STATE(1215)] = 94216, - [SMALL_STATE(1216)] = 94287, - [SMALL_STATE(1217)] = 94374, - [SMALL_STATE(1218)] = 94445, - [SMALL_STATE(1219)] = 94546, - [SMALL_STATE(1220)] = 94643, - [SMALL_STATE(1221)] = 94746, + [SMALL_STATE(1167)] = 89540, + [SMALL_STATE(1168)] = 89643, + [SMALL_STATE(1169)] = 89746, + [SMALL_STATE(1170)] = 89849, + [SMALL_STATE(1171)] = 89952, + [SMALL_STATE(1172)] = 90055, + [SMALL_STATE(1173)] = 90158, + [SMALL_STATE(1174)] = 90261, + [SMALL_STATE(1175)] = 90364, + [SMALL_STATE(1176)] = 90467, + [SMALL_STATE(1177)] = 90570, + [SMALL_STATE(1178)] = 90673, + [SMALL_STATE(1179)] = 90776, + [SMALL_STATE(1180)] = 90851, + [SMALL_STATE(1181)] = 90954, + [SMALL_STATE(1182)] = 91057, + [SMALL_STATE(1183)] = 91160, + [SMALL_STATE(1184)] = 91263, + [SMALL_STATE(1185)] = 91336, + [SMALL_STATE(1186)] = 91439, + [SMALL_STATE(1187)] = 91542, + [SMALL_STATE(1188)] = 91645, + [SMALL_STATE(1189)] = 91748, + [SMALL_STATE(1190)] = 91851, + [SMALL_STATE(1191)] = 91954, + [SMALL_STATE(1192)] = 92025, + [SMALL_STATE(1193)] = 92098, + [SMALL_STATE(1194)] = 92201, + [SMALL_STATE(1195)] = 92272, + [SMALL_STATE(1196)] = 92347, + [SMALL_STATE(1197)] = 92450, + [SMALL_STATE(1198)] = 92553, + [SMALL_STATE(1199)] = 92656, + [SMALL_STATE(1200)] = 92739, + [SMALL_STATE(1201)] = 92842, + [SMALL_STATE(1202)] = 92929, + [SMALL_STATE(1203)] = 93032, + [SMALL_STATE(1204)] = 93135, + [SMALL_STATE(1205)] = 93238, + [SMALL_STATE(1206)] = 93341, + [SMALL_STATE(1207)] = 93444, + [SMALL_STATE(1208)] = 93547, + [SMALL_STATE(1209)] = 93650, + [SMALL_STATE(1210)] = 93721, + [SMALL_STATE(1211)] = 93824, + [SMALL_STATE(1212)] = 93927, + [SMALL_STATE(1213)] = 93998, + [SMALL_STATE(1214)] = 94099, + [SMALL_STATE(1215)] = 94202, + [SMALL_STATE(1216)] = 94297, + [SMALL_STATE(1217)] = 94376, + [SMALL_STATE(1218)] = 94479, + [SMALL_STATE(1219)] = 94570, + [SMALL_STATE(1220)] = 94667, + [SMALL_STATE(1221)] = 94770, [SMALL_STATE(1222)] = 94849, - [SMALL_STATE(1223)] = 94944, - [SMALL_STATE(1224)] = 95035, - [SMALL_STATE(1225)] = 95114, - [SMALL_STATE(1226)] = 95217, - [SMALL_STATE(1227)] = 95320, - [SMALL_STATE(1228)] = 95407, - [SMALL_STATE(1229)] = 95504, - [SMALL_STATE(1230)] = 95607, - [SMALL_STATE(1231)] = 95698, - [SMALL_STATE(1232)] = 95781, - [SMALL_STATE(1233)] = 95868, - [SMALL_STATE(1234)] = 95971, - [SMALL_STATE(1235)] = 96054, - [SMALL_STATE(1236)] = 96129, - [SMALL_STATE(1237)] = 96204, - [SMALL_STATE(1238)] = 96299, - [SMALL_STATE(1239)] = 96370, - [SMALL_STATE(1240)] = 96441, - [SMALL_STATE(1241)] = 96514, - [SMALL_STATE(1242)] = 96601, - [SMALL_STATE(1243)] = 96672, - [SMALL_STATE(1244)] = 96745, - [SMALL_STATE(1245)] = 96848, - [SMALL_STATE(1246)] = 96951, - [SMALL_STATE(1247)] = 97054, - [SMALL_STATE(1248)] = 97141, - [SMALL_STATE(1249)] = 97212, - [SMALL_STATE(1250)] = 97313, - [SMALL_STATE(1251)] = 97416, - [SMALL_STATE(1252)] = 97511, - [SMALL_STATE(1253)] = 97590, - [SMALL_STATE(1254)] = 97693, - [SMALL_STATE(1255)] = 97796, + [SMALL_STATE(1223)] = 94946, + [SMALL_STATE(1224)] = 95037, + [SMALL_STATE(1225)] = 95124, + [SMALL_STATE(1226)] = 95207, + [SMALL_STATE(1227)] = 95282, + [SMALL_STATE(1228)] = 95353, + [SMALL_STATE(1229)] = 95426, + [SMALL_STATE(1230)] = 95509, + [SMALL_STATE(1231)] = 95604, + [SMALL_STATE(1232)] = 95691, + [SMALL_STATE(1233)] = 95786, + [SMALL_STATE(1234)] = 95877, + [SMALL_STATE(1235)] = 95974, + [SMALL_STATE(1236)] = 96077, + [SMALL_STATE(1237)] = 96156, + [SMALL_STATE(1238)] = 96251, + [SMALL_STATE(1239)] = 96354, + [SMALL_STATE(1240)] = 96455, + [SMALL_STATE(1241)] = 96558, + [SMALL_STATE(1242)] = 96659, + [SMALL_STATE(1243)] = 96762, + [SMALL_STATE(1244)] = 96833, + [SMALL_STATE(1245)] = 96920, + [SMALL_STATE(1246)] = 97015, + [SMALL_STATE(1247)] = 97118, + [SMALL_STATE(1248)] = 97221, + [SMALL_STATE(1249)] = 97324, + [SMALL_STATE(1250)] = 97427, + [SMALL_STATE(1251)] = 97498, + [SMALL_STATE(1252)] = 97571, + [SMALL_STATE(1253)] = 97642, + [SMALL_STATE(1254)] = 97717, + [SMALL_STATE(1255)] = 97800, [SMALL_STATE(1256)] = 97887, - [SMALL_STATE(1257)] = 97974, - [SMALL_STATE(1258)] = 98057, - [SMALL_STATE(1259)] = 98132, - [SMALL_STATE(1260)] = 98203, - [SMALL_STATE(1261)] = 98276, - [SMALL_STATE(1262)] = 98347, - [SMALL_STATE(1263)] = 98450, - [SMALL_STATE(1264)] = 98553, - [SMALL_STATE(1265)] = 98656, - [SMALL_STATE(1266)] = 98759, - [SMALL_STATE(1267)] = 98862, - [SMALL_STATE(1268)] = 98965, - [SMALL_STATE(1269)] = 99060, - [SMALL_STATE(1270)] = 99163, - [SMALL_STATE(1271)] = 99250, - [SMALL_STATE(1272)] = 99353, - [SMALL_STATE(1273)] = 99456, - [SMALL_STATE(1274)] = 99527, - [SMALL_STATE(1275)] = 99630, - [SMALL_STATE(1276)] = 99731, - [SMALL_STATE(1277)] = 99834, - [SMALL_STATE(1278)] = 99937, - [SMALL_STATE(1279)] = 100040, - [SMALL_STATE(1280)] = 100135, - [SMALL_STATE(1281)] = 100238, - [SMALL_STATE(1282)] = 100317, - [SMALL_STATE(1283)] = 100420, - [SMALL_STATE(1284)] = 100523, - [SMALL_STATE(1285)] = 100626, - [SMALL_STATE(1286)] = 100723, - [SMALL_STATE(1287)] = 100806, - [SMALL_STATE(1288)] = 100897, - [SMALL_STATE(1289)] = 101000, - [SMALL_STATE(1290)] = 101087, - [SMALL_STATE(1291)] = 101190, - [SMALL_STATE(1292)] = 101273, - [SMALL_STATE(1293)] = 101376, - [SMALL_STATE(1294)] = 101451, - [SMALL_STATE(1295)] = 101554, - [SMALL_STATE(1296)] = 101625, - [SMALL_STATE(1297)] = 101728, - [SMALL_STATE(1298)] = 101801, - [SMALL_STATE(1299)] = 101904, - [SMALL_STATE(1300)] = 101975, - [SMALL_STATE(1301)] = 102078, - [SMALL_STATE(1302)] = 102153, - [SMALL_STATE(1303)] = 102256, - [SMALL_STATE(1304)] = 102359, - [SMALL_STATE(1305)] = 102462, - [SMALL_STATE(1306)] = 102565, - [SMALL_STATE(1307)] = 102666, - [SMALL_STATE(1308)] = 102769, - [SMALL_STATE(1309)] = 102864, - [SMALL_STATE(1310)] = 102943, - [SMALL_STATE(1311)] = 103046, - [SMALL_STATE(1312)] = 103143, - [SMALL_STATE(1313)] = 103234, - [SMALL_STATE(1314)] = 103321, - [SMALL_STATE(1315)] = 103404, - [SMALL_STATE(1316)] = 103479, - [SMALL_STATE(1317)] = 103550, - [SMALL_STATE(1318)] = 103623, - [SMALL_STATE(1319)] = 103694, - [SMALL_STATE(1320)] = 103797, - [SMALL_STATE(1321)] = 103900, - [SMALL_STATE(1322)] = 104003, - [SMALL_STATE(1323)] = 104106, - [SMALL_STATE(1324)] = 104207, - [SMALL_STATE(1325)] = 104310, - [SMALL_STATE(1326)] = 104413, - [SMALL_STATE(1327)] = 104516, - [SMALL_STATE(1328)] = 104587, - [SMALL_STATE(1329)] = 104690, - [SMALL_STATE(1330)] = 104785, - [SMALL_STATE(1331)] = 104858, - [SMALL_STATE(1332)] = 104945, - [SMALL_STATE(1333)] = 105048, + [SMALL_STATE(1257)] = 97978, + [SMALL_STATE(1258)] = 98075, + [SMALL_STATE(1259)] = 98146, + [SMALL_STATE(1260)] = 98233, + [SMALL_STATE(1261)] = 98336, + [SMALL_STATE(1262)] = 98439, + [SMALL_STATE(1263)] = 98542, + [SMALL_STATE(1264)] = 98621, + [SMALL_STATE(1265)] = 98716, + [SMALL_STATE(1266)] = 98819, + [SMALL_STATE(1267)] = 98920, + [SMALL_STATE(1268)] = 98991, + [SMALL_STATE(1269)] = 99078, + [SMALL_STATE(1270)] = 99173, + [SMALL_STATE(1271)] = 99276, + [SMALL_STATE(1272)] = 99379, + [SMALL_STATE(1273)] = 99482, + [SMALL_STATE(1274)] = 99553, + [SMALL_STATE(1275)] = 99640, + [SMALL_STATE(1276)] = 99735, + [SMALL_STATE(1277)] = 99838, + [SMALL_STATE(1278)] = 99941, + [SMALL_STATE(1279)] = 100044, + [SMALL_STATE(1280)] = 100147, + [SMALL_STATE(1281)] = 100250, + [SMALL_STATE(1282)] = 100353, + [SMALL_STATE(1283)] = 100456, + [SMALL_STATE(1284)] = 100559, + [SMALL_STATE(1285)] = 100662, + [SMALL_STATE(1286)] = 100765, + [SMALL_STATE(1287)] = 100868, + [SMALL_STATE(1288)] = 100971, + [SMALL_STATE(1289)] = 101074, + [SMALL_STATE(1290)] = 101177, + [SMALL_STATE(1291)] = 101280, + [SMALL_STATE(1292)] = 101383, + [SMALL_STATE(1293)] = 101486, + [SMALL_STATE(1294)] = 101589, + [SMALL_STATE(1295)] = 101692, + [SMALL_STATE(1296)] = 101763, + [SMALL_STATE(1297)] = 101836, + [SMALL_STATE(1298)] = 101907, + [SMALL_STATE(1299)] = 101982, + [SMALL_STATE(1300)] = 102065, + [SMALL_STATE(1301)] = 102152, + [SMALL_STATE(1302)] = 102243, + [SMALL_STATE(1303)] = 102340, + [SMALL_STATE(1304)] = 102443, + [SMALL_STATE(1305)] = 102522, + [SMALL_STATE(1306)] = 102617, + [SMALL_STATE(1307)] = 102720, + [SMALL_STATE(1308)] = 102821, + [SMALL_STATE(1309)] = 102924, + [SMALL_STATE(1310)] = 103027, + [SMALL_STATE(1311)] = 103098, + [SMALL_STATE(1312)] = 103171, + [SMALL_STATE(1313)] = 103242, + [SMALL_STATE(1314)] = 103317, + [SMALL_STATE(1315)] = 103400, + [SMALL_STATE(1316)] = 103487, + [SMALL_STATE(1317)] = 103578, + [SMALL_STATE(1318)] = 103675, + [SMALL_STATE(1319)] = 103778, + [SMALL_STATE(1320)] = 103857, + [SMALL_STATE(1321)] = 103952, + [SMALL_STATE(1322)] = 104055, + [SMALL_STATE(1323)] = 104156, + [SMALL_STATE(1324)] = 104251, + [SMALL_STATE(1325)] = 104354, + [SMALL_STATE(1326)] = 104441, + [SMALL_STATE(1327)] = 104536, + [SMALL_STATE(1328)] = 104607, + [SMALL_STATE(1329)] = 104678, + [SMALL_STATE(1330)] = 104765, + [SMALL_STATE(1331)] = 104836, + [SMALL_STATE(1332)] = 104939, + [SMALL_STATE(1333)] = 105042, [SMALL_STATE(1334)] = 105145, [SMALL_STATE(1335)] = 105247, - [SMALL_STATE(1336)] = 105349, - [SMALL_STATE(1337)] = 105451, - [SMALL_STATE(1338)] = 105557, - [SMALL_STATE(1339)] = 105657, - [SMALL_STATE(1340)] = 105759, - [SMALL_STATE(1341)] = 105853, - [SMALL_STATE(1342)] = 105955, - [SMALL_STATE(1343)] = 106033, - [SMALL_STATE(1344)] = 106135, - [SMALL_STATE(1345)] = 106231, - [SMALL_STATE(1346)] = 106321, - [SMALL_STATE(1347)] = 106407, - [SMALL_STATE(1348)] = 106489, - [SMALL_STATE(1349)] = 106591, - [SMALL_STATE(1350)] = 106693, - [SMALL_STATE(1351)] = 106767, - [SMALL_STATE(1352)] = 106869, - [SMALL_STATE(1353)] = 106939, - [SMALL_STATE(1354)] = 107011, - [SMALL_STATE(1355)] = 107113, - [SMALL_STATE(1356)] = 107215, - [SMALL_STATE(1357)] = 107317, - [SMALL_STATE(1358)] = 107419, - [SMALL_STATE(1359)] = 107521, - [SMALL_STATE(1360)] = 107623, - [SMALL_STATE(1361)] = 107729, - [SMALL_STATE(1362)] = 107831, - [SMALL_STATE(1363)] = 107925, - [SMALL_STATE(1364)] = 108011, - [SMALL_STATE(1365)] = 108113, - [SMALL_STATE(1366)] = 108215, - [SMALL_STATE(1367)] = 108285, - [SMALL_STATE(1368)] = 108387, - [SMALL_STATE(1369)] = 108489, - [SMALL_STATE(1370)] = 108595, - [SMALL_STATE(1371)] = 108697, - [SMALL_STATE(1372)] = 108801, - [SMALL_STATE(1373)] = 108903, - [SMALL_STATE(1374)] = 109005, - [SMALL_STATE(1375)] = 109107, - [SMALL_STATE(1376)] = 109209, - [SMALL_STATE(1377)] = 109315, - [SMALL_STATE(1378)] = 109417, - [SMALL_STATE(1379)] = 109519, - [SMALL_STATE(1380)] = 109621, - [SMALL_STATE(1381)] = 109723, - [SMALL_STATE(1382)] = 109825, - [SMALL_STATE(1383)] = 109927, - [SMALL_STATE(1384)] = 110029, - [SMALL_STATE(1385)] = 110131, - [SMALL_STATE(1386)] = 110225, - [SMALL_STATE(1387)] = 110311, - [SMALL_STATE(1388)] = 110417, - [SMALL_STATE(1389)] = 110519, - [SMALL_STATE(1390)] = 110589, - [SMALL_STATE(1391)] = 110691, - [SMALL_STATE(1392)] = 110791, - [SMALL_STATE(1393)] = 110893, - [SMALL_STATE(1394)] = 110987, - [SMALL_STATE(1395)] = 111065, - [SMALL_STATE(1396)] = 111167, - [SMALL_STATE(1397)] = 111269, - [SMALL_STATE(1398)] = 111371, - [SMALL_STATE(1399)] = 111467, - [SMALL_STATE(1400)] = 111561, - [SMALL_STATE(1401)] = 111647, - [SMALL_STATE(1402)] = 111749, - [SMALL_STATE(1403)] = 111819, - [SMALL_STATE(1404)] = 111921, - [SMALL_STATE(1405)] = 112015, - [SMALL_STATE(1406)] = 112101, - [SMALL_STATE(1407)] = 112171, - [SMALL_STATE(1408)] = 112273, - [SMALL_STATE(1409)] = 112375, - [SMALL_STATE(1410)] = 112477, - [SMALL_STATE(1411)] = 112579, - [SMALL_STATE(1412)] = 112681, - [SMALL_STATE(1413)] = 112775, - [SMALL_STATE(1414)] = 112861, - [SMALL_STATE(1415)] = 112931, - [SMALL_STATE(1416)] = 113031, - [SMALL_STATE(1417)] = 113133, - [SMALL_STATE(1418)] = 113227, - [SMALL_STATE(1419)] = 113305, - [SMALL_STATE(1420)] = 113407, - [SMALL_STATE(1421)] = 113503, - [SMALL_STATE(1422)] = 113593, - [SMALL_STATE(1423)] = 113679, - [SMALL_STATE(1424)] = 113761, - [SMALL_STATE(1425)] = 113835, - [SMALL_STATE(1426)] = 113905, - [SMALL_STATE(1427)] = 113977, - [SMALL_STATE(1428)] = 114047, - [SMALL_STATE(1429)] = 114149, - [SMALL_STATE(1430)] = 114251, - [SMALL_STATE(1431)] = 114353, - [SMALL_STATE(1432)] = 114453, - [SMALL_STATE(1433)] = 114555, - [SMALL_STATE(1434)] = 114649, - [SMALL_STATE(1435)] = 114727, - [SMALL_STATE(1436)] = 114829, - [SMALL_STATE(1437)] = 114925, - [SMALL_STATE(1438)] = 115015, - [SMALL_STATE(1439)] = 115101, - [SMALL_STATE(1440)] = 115183, - [SMALL_STATE(1441)] = 115257, - [SMALL_STATE(1442)] = 115359, - [SMALL_STATE(1443)] = 115461, - [SMALL_STATE(1444)] = 115531, - [SMALL_STATE(1445)] = 115637, - [SMALL_STATE(1446)] = 115743, - [SMALL_STATE(1447)] = 115815, - [SMALL_STATE(1448)] = 115921, - [SMALL_STATE(1449)] = 115991, - [SMALL_STATE(1450)] = 116097, - [SMALL_STATE(1451)] = 116203, - [SMALL_STATE(1452)] = 116305, - [SMALL_STATE(1453)] = 116407, - [SMALL_STATE(1454)] = 116511, - [SMALL_STATE(1455)] = 116613, - [SMALL_STATE(1456)] = 116715, - [SMALL_STATE(1457)] = 116809, - [SMALL_STATE(1458)] = 116899, - [SMALL_STATE(1459)] = 116985, - [SMALL_STATE(1460)] = 117055, - [SMALL_STATE(1461)] = 117157, - [SMALL_STATE(1462)] = 117263, - [SMALL_STATE(1463)] = 117369, - [SMALL_STATE(1464)] = 117471, - [SMALL_STATE(1465)] = 117577, - [SMALL_STATE(1466)] = 117679, - [SMALL_STATE(1467)] = 117785, - [SMALL_STATE(1468)] = 117871, - [SMALL_STATE(1469)] = 117977, - [SMALL_STATE(1470)] = 118059, - [SMALL_STATE(1471)] = 118165, - [SMALL_STATE(1472)] = 118271, - [SMALL_STATE(1473)] = 118371, - [SMALL_STATE(1474)] = 118477, - [SMALL_STATE(1475)] = 118551, - [SMALL_STATE(1476)] = 118657, - [SMALL_STATE(1477)] = 118759, - [SMALL_STATE(1478)] = 118865, - [SMALL_STATE(1479)] = 118967, - [SMALL_STATE(1480)] = 119037, - [SMALL_STATE(1481)] = 119143, - [SMALL_STATE(1482)] = 119249, - [SMALL_STATE(1483)] = 119355, - [SMALL_STATE(1484)] = 119457, - [SMALL_STATE(1485)] = 119563, - [SMALL_STATE(1486)] = 119665, - [SMALL_STATE(1487)] = 119737, - [SMALL_STATE(1488)] = 119843, - [SMALL_STATE(1489)] = 119945, - [SMALL_STATE(1490)] = 120051, - [SMALL_STATE(1491)] = 120145, - [SMALL_STATE(1492)] = 120215, - [SMALL_STATE(1493)] = 120321, - [SMALL_STATE(1494)] = 120427, - [SMALL_STATE(1495)] = 120529, - [SMALL_STATE(1496)] = 120635, - [SMALL_STATE(1497)] = 120741, - [SMALL_STATE(1498)] = 120819, - [SMALL_STATE(1499)] = 120925, - [SMALL_STATE(1500)] = 121027, - [SMALL_STATE(1501)] = 121129, - [SMALL_STATE(1502)] = 121231, - [SMALL_STATE(1503)] = 121337, - [SMALL_STATE(1504)] = 121443, - [SMALL_STATE(1505)] = 121545, - [SMALL_STATE(1506)] = 121651, - [SMALL_STATE(1507)] = 121753, - [SMALL_STATE(1508)] = 121855, - [SMALL_STATE(1509)] = 121961, - [SMALL_STATE(1510)] = 122063, - [SMALL_STATE(1511)] = 122169, - [SMALL_STATE(1512)] = 122271, - [SMALL_STATE(1513)] = 122367, - [SMALL_STATE(1514)] = 122473, - [SMALL_STATE(1515)] = 122579, - [SMALL_STATE(1516)] = 122685, - [SMALL_STATE(1517)] = 122791, - [SMALL_STATE(1518)] = 122897, - [SMALL_STATE(1519)] = 123001, - [SMALL_STATE(1520)] = 123091, - [SMALL_STATE(1521)] = 123197, - [SMALL_STATE(1522)] = 123303, - [SMALL_STATE(1523)] = 123409, - [SMALL_STATE(1524)] = 123515, - [SMALL_STATE(1525)] = 123621, - [SMALL_STATE(1526)] = 123727, - [SMALL_STATE(1527)] = 123833, - [SMALL_STATE(1528)] = 123939, - [SMALL_STATE(1529)] = 124045, - [SMALL_STATE(1530)] = 124151, - [SMALL_STATE(1531)] = 124257, - [SMALL_STATE(1532)] = 124359, - [SMALL_STATE(1533)] = 124461, - [SMALL_STATE(1534)] = 124567, - [SMALL_STATE(1535)] = 124653, - [SMALL_STATE(1536)] = 124759, - [SMALL_STATE(1537)] = 124841, - [SMALL_STATE(1538)] = 124945, - [SMALL_STATE(1539)] = 125019, - [SMALL_STATE(1540)] = 125119, - [SMALL_STATE(1541)] = 125221, - [SMALL_STATE(1542)] = 125291, - [SMALL_STATE(1543)] = 125397, - [SMALL_STATE(1544)] = 125491, - [SMALL_STATE(1545)] = 125597, - [SMALL_STATE(1546)] = 125675, - [SMALL_STATE(1547)] = 125747, - [SMALL_STATE(1548)] = 125849, - [SMALL_STATE(1549)] = 125955, - [SMALL_STATE(1550)] = 126061, - [SMALL_STATE(1551)] = 126157, - [SMALL_STATE(1552)] = 126227, - [SMALL_STATE(1553)] = 126317, - [SMALL_STATE(1554)] = 126423, - [SMALL_STATE(1555)] = 126509, - [SMALL_STATE(1556)] = 126615, - [SMALL_STATE(1557)] = 126697, - [SMALL_STATE(1558)] = 126771, - [SMALL_STATE(1559)] = 126877, - [SMALL_STATE(1560)] = 126983, - [SMALL_STATE(1561)] = 127053, - [SMALL_STATE(1562)] = 127125, - [SMALL_STATE(1563)] = 127195, - [SMALL_STATE(1564)] = 127301, - [SMALL_STATE(1565)] = 127407, - [SMALL_STATE(1566)] = 127513, - [SMALL_STATE(1567)] = 127619, - [SMALL_STATE(1568)] = 127725, - [SMALL_STATE(1569)] = 127831, - [SMALL_STATE(1570)] = 127933, - [SMALL_STATE(1571)] = 128039, - [SMALL_STATE(1572)] = 128141, - [SMALL_STATE(1573)] = 128247, - [SMALL_STATE(1574)] = 128349, - [SMALL_STATE(1575)] = 128451, + [SMALL_STATE(1336)] = 105317, + [SMALL_STATE(1337)] = 105413, + [SMALL_STATE(1338)] = 105483, + [SMALL_STATE(1339)] = 105585, + [SMALL_STATE(1340)] = 105687, + [SMALL_STATE(1341)] = 105789, + [SMALL_STATE(1342)] = 105889, + [SMALL_STATE(1343)] = 105979, + [SMALL_STATE(1344)] = 106081, + [SMALL_STATE(1345)] = 106185, + [SMALL_STATE(1346)] = 106287, + [SMALL_STATE(1347)] = 106389, + [SMALL_STATE(1348)] = 106483, + [SMALL_STATE(1349)] = 106561, + [SMALL_STATE(1350)] = 106663, + [SMALL_STATE(1351)] = 106765, + [SMALL_STATE(1352)] = 106861, + [SMALL_STATE(1353)] = 106951, + [SMALL_STATE(1354)] = 107053, + [SMALL_STATE(1355)] = 107139, + [SMALL_STATE(1356)] = 107221, + [SMALL_STATE(1357)] = 107327, + [SMALL_STATE(1358)] = 107401, + [SMALL_STATE(1359)] = 107471, + [SMALL_STATE(1360)] = 107543, + [SMALL_STATE(1361)] = 107649, + [SMALL_STATE(1362)] = 107719, + [SMALL_STATE(1363)] = 107821, + [SMALL_STATE(1364)] = 107927, + [SMALL_STATE(1365)] = 108013, + [SMALL_STATE(1366)] = 108119, + [SMALL_STATE(1367)] = 108221, + [SMALL_STATE(1368)] = 108323, + [SMALL_STATE(1369)] = 108425, + [SMALL_STATE(1370)] = 108527, + [SMALL_STATE(1371)] = 108631, + [SMALL_STATE(1372)] = 108737, + [SMALL_STATE(1373)] = 108833, + [SMALL_STATE(1374)] = 108935, + [SMALL_STATE(1375)] = 109037, + [SMALL_STATE(1376)] = 109143, + [SMALL_STATE(1377)] = 109249, + [SMALL_STATE(1378)] = 109355, + [SMALL_STATE(1379)] = 109461, + [SMALL_STATE(1380)] = 109543, + [SMALL_STATE(1381)] = 109645, + [SMALL_STATE(1382)] = 109747, + [SMALL_STATE(1383)] = 109853, + [SMALL_STATE(1384)] = 109959, + [SMALL_STATE(1385)] = 110065, + [SMALL_STATE(1386)] = 110139, + [SMALL_STATE(1387)] = 110209, + [SMALL_STATE(1388)] = 110315, + [SMALL_STATE(1389)] = 110417, + [SMALL_STATE(1390)] = 110519, + [SMALL_STATE(1391)] = 110625, + [SMALL_STATE(1392)] = 110731, + [SMALL_STATE(1393)] = 110833, + [SMALL_STATE(1394)] = 110935, + [SMALL_STATE(1395)] = 111035, + [SMALL_STATE(1396)] = 111137, + [SMALL_STATE(1397)] = 111209, + [SMALL_STATE(1398)] = 111279, + [SMALL_STATE(1399)] = 111385, + [SMALL_STATE(1400)] = 111463, + [SMALL_STATE(1401)] = 111549, + [SMALL_STATE(1402)] = 111651, + [SMALL_STATE(1403)] = 111753, + [SMALL_STATE(1404)] = 111855, + [SMALL_STATE(1405)] = 111957, + [SMALL_STATE(1406)] = 112059, + [SMALL_STATE(1407)] = 112161, + [SMALL_STATE(1408)] = 112263, + [SMALL_STATE(1409)] = 112365, + [SMALL_STATE(1410)] = 112467, + [SMALL_STATE(1411)] = 112569, + [SMALL_STATE(1412)] = 112671, + [SMALL_STATE(1413)] = 112773, + [SMALL_STATE(1414)] = 112867, + [SMALL_STATE(1415)] = 112969, + [SMALL_STATE(1416)] = 113075, + [SMALL_STATE(1417)] = 113181, + [SMALL_STATE(1418)] = 113287, + [SMALL_STATE(1419)] = 113389, + [SMALL_STATE(1420)] = 113495, + [SMALL_STATE(1421)] = 113565, + [SMALL_STATE(1422)] = 113671, + [SMALL_STATE(1423)] = 113773, + [SMALL_STATE(1424)] = 113875, + [SMALL_STATE(1425)] = 113981, + [SMALL_STATE(1426)] = 114053, + [SMALL_STATE(1427)] = 114147, + [SMALL_STATE(1428)] = 114217, + [SMALL_STATE(1429)] = 114319, + [SMALL_STATE(1430)] = 114421, + [SMALL_STATE(1431)] = 114521, + [SMALL_STATE(1432)] = 114623, + [SMALL_STATE(1433)] = 114697, + [SMALL_STATE(1434)] = 114803, + [SMALL_STATE(1435)] = 114885, + [SMALL_STATE(1436)] = 114991, + [SMALL_STATE(1437)] = 115077, + [SMALL_STATE(1438)] = 115167, + [SMALL_STATE(1439)] = 115273, + [SMALL_STATE(1440)] = 115375, + [SMALL_STATE(1441)] = 115481, + [SMALL_STATE(1442)] = 115587, + [SMALL_STATE(1443)] = 115691, + [SMALL_STATE(1444)] = 115793, + [SMALL_STATE(1445)] = 115895, + [SMALL_STATE(1446)] = 116001, + [SMALL_STATE(1447)] = 116103, + [SMALL_STATE(1448)] = 116205, + [SMALL_STATE(1449)] = 116299, + [SMALL_STATE(1450)] = 116385, + [SMALL_STATE(1451)] = 116491, + [SMALL_STATE(1452)] = 116561, + [SMALL_STATE(1453)] = 116667, + [SMALL_STATE(1454)] = 116773, + [SMALL_STATE(1455)] = 116875, + [SMALL_STATE(1456)] = 116953, + [SMALL_STATE(1457)] = 117055, + [SMALL_STATE(1458)] = 117157, + [SMALL_STATE(1459)] = 117263, + [SMALL_STATE(1460)] = 117369, + [SMALL_STATE(1461)] = 117471, + [SMALL_STATE(1462)] = 117573, + [SMALL_STATE(1463)] = 117675, + [SMALL_STATE(1464)] = 117747, + [SMALL_STATE(1465)] = 117817, + [SMALL_STATE(1466)] = 117919, + [SMALL_STATE(1467)] = 118021, + [SMALL_STATE(1468)] = 118127, + [SMALL_STATE(1469)] = 118229, + [SMALL_STATE(1470)] = 118335, + [SMALL_STATE(1471)] = 118441, + [SMALL_STATE(1472)] = 118543, + [SMALL_STATE(1473)] = 118649, + [SMALL_STATE(1474)] = 118755, + [SMALL_STATE(1475)] = 118861, + [SMALL_STATE(1476)] = 118967, + [SMALL_STATE(1477)] = 119073, + [SMALL_STATE(1478)] = 119179, + [SMALL_STATE(1479)] = 119285, + [SMALL_STATE(1480)] = 119387, + [SMALL_STATE(1481)] = 119489, + [SMALL_STATE(1482)] = 119591, + [SMALL_STATE(1483)] = 119697, + [SMALL_STATE(1484)] = 119799, + [SMALL_STATE(1485)] = 119901, + [SMALL_STATE(1486)] = 120003, + [SMALL_STATE(1487)] = 120109, + [SMALL_STATE(1488)] = 120211, + [SMALL_STATE(1489)] = 120313, + [SMALL_STATE(1490)] = 120387, + [SMALL_STATE(1491)] = 120469, + [SMALL_STATE(1492)] = 120575, + [SMALL_STATE(1493)] = 120681, + [SMALL_STATE(1494)] = 120787, + [SMALL_STATE(1495)] = 120873, + [SMALL_STATE(1496)] = 120963, + [SMALL_STATE(1497)] = 121069, + [SMALL_STATE(1498)] = 121171, + [SMALL_STATE(1499)] = 121267, + [SMALL_STATE(1500)] = 121373, + [SMALL_STATE(1501)] = 121475, + [SMALL_STATE(1502)] = 121553, + [SMALL_STATE(1503)] = 121647, + [SMALL_STATE(1504)] = 121741, + [SMALL_STATE(1505)] = 121843, + [SMALL_STATE(1506)] = 121943, + [SMALL_STATE(1507)] = 122049, + [SMALL_STATE(1508)] = 122135, + [SMALL_STATE(1509)] = 122241, + [SMALL_STATE(1510)] = 122343, + [SMALL_STATE(1511)] = 122413, + [SMALL_STATE(1512)] = 122515, + [SMALL_STATE(1513)] = 122585, + [SMALL_STATE(1514)] = 122691, + [SMALL_STATE(1515)] = 122797, + [SMALL_STATE(1516)] = 122903, + [SMALL_STATE(1517)] = 122975, + [SMALL_STATE(1518)] = 123045, + [SMALL_STATE(1519)] = 123151, + [SMALL_STATE(1520)] = 123221, + [SMALL_STATE(1521)] = 123307, + [SMALL_STATE(1522)] = 123413, + [SMALL_STATE(1523)] = 123515, + [SMALL_STATE(1524)] = 123621, + [SMALL_STATE(1525)] = 123721, + [SMALL_STATE(1526)] = 123827, + [SMALL_STATE(1527)] = 123929, + [SMALL_STATE(1528)] = 124035, + [SMALL_STATE(1529)] = 124137, + [SMALL_STATE(1530)] = 124239, + [SMALL_STATE(1531)] = 124313, + [SMALL_STATE(1532)] = 124419, + [SMALL_STATE(1533)] = 124501, + [SMALL_STATE(1534)] = 124607, + [SMALL_STATE(1535)] = 124713, + [SMALL_STATE(1536)] = 124807, + [SMALL_STATE(1537)] = 124885, + [SMALL_STATE(1538)] = 124955, + [SMALL_STATE(1539)] = 125049, + [SMALL_STATE(1540)] = 125121, + [SMALL_STATE(1541)] = 125215, + [SMALL_STATE(1542)] = 125285, + [SMALL_STATE(1543)] = 125387, + [SMALL_STATE(1544)] = 125461, + [SMALL_STATE(1545)] = 125547, + [SMALL_STATE(1546)] = 125617, + [SMALL_STATE(1547)] = 125723, + [SMALL_STATE(1548)] = 125809, + [SMALL_STATE(1549)] = 125891, + [SMALL_STATE(1550)] = 125977, + [SMALL_STATE(1551)] = 126067, + [SMALL_STATE(1552)] = 126163, + [SMALL_STATE(1553)] = 126265, + [SMALL_STATE(1554)] = 126343, + [SMALL_STATE(1555)] = 126437, + [SMALL_STATE(1556)] = 126539, + [SMALL_STATE(1557)] = 126639, + [SMALL_STATE(1558)] = 126745, + [SMALL_STATE(1559)] = 126851, + [SMALL_STATE(1560)] = 126957, + [SMALL_STATE(1561)] = 127027, + [SMALL_STATE(1562)] = 127113, + [SMALL_STATE(1563)] = 127203, + [SMALL_STATE(1564)] = 127305, + [SMALL_STATE(1565)] = 127401, + [SMALL_STATE(1566)] = 127507, + [SMALL_STATE(1567)] = 127601, + [SMALL_STATE(1568)] = 127703, + [SMALL_STATE(1569)] = 127805, + [SMALL_STATE(1570)] = 127907, + [SMALL_STATE(1571)] = 128013, + [SMALL_STATE(1572)] = 128115, + [SMALL_STATE(1573)] = 128219, + [SMALL_STATE(1574)] = 128313, + [SMALL_STATE(1575)] = 128415, [SMALL_STATE(1576)] = 128521, [SMALL_STATE(1577)] = 128566, - [SMALL_STATE(1578)] = 128615, - [SMALL_STATE(1579)] = 128660, - [SMALL_STATE(1580)] = 128705, - [SMALL_STATE(1581)] = 128750, - [SMALL_STATE(1582)] = 128799, - [SMALL_STATE(1583)] = 128848, - [SMALL_STATE(1584)] = 128893, + [SMALL_STATE(1578)] = 128611, + [SMALL_STATE(1579)] = 128656, + [SMALL_STATE(1580)] = 128701, + [SMALL_STATE(1581)] = 128746, + [SMALL_STATE(1582)] = 128795, + [SMALL_STATE(1583)] = 128844, + [SMALL_STATE(1584)] = 128889, [SMALL_STATE(1585)] = 128938, [SMALL_STATE(1586)] = 128983, - [SMALL_STATE(1587)] = 129032, - [SMALL_STATE(1588)] = 129081, - [SMALL_STATE(1589)] = 129126, - [SMALL_STATE(1590)] = 129171, - [SMALL_STATE(1591)] = 129220, - [SMALL_STATE(1592)] = 129265, - [SMALL_STATE(1593)] = 129310, - [SMALL_STATE(1594)] = 129355, - [SMALL_STATE(1595)] = 129400, - [SMALL_STATE(1596)] = 129445, - [SMALL_STATE(1597)] = 129490, - [SMALL_STATE(1598)] = 129535, - [SMALL_STATE(1599)] = 129580, - [SMALL_STATE(1600)] = 129625, - [SMALL_STATE(1601)] = 129670, + [SMALL_STATE(1587)] = 129028, + [SMALL_STATE(1588)] = 129077, + [SMALL_STATE(1589)] = 129122, + [SMALL_STATE(1590)] = 129167, + [SMALL_STATE(1591)] = 129212, + [SMALL_STATE(1592)] = 129257, + [SMALL_STATE(1593)] = 129302, + [SMALL_STATE(1594)] = 129347, + [SMALL_STATE(1595)] = 129392, + [SMALL_STATE(1596)] = 129437, + [SMALL_STATE(1597)] = 129482, + [SMALL_STATE(1598)] = 129527, + [SMALL_STATE(1599)] = 129572, + [SMALL_STATE(1600)] = 129617, + [SMALL_STATE(1601)] = 129666, [SMALL_STATE(1602)] = 129715, [SMALL_STATE(1603)] = 129760, [SMALL_STATE(1604)] = 129805, - [SMALL_STATE(1605)] = 129849, + [SMALL_STATE(1605)] = 129853, [SMALL_STATE(1606)] = 129897, - [SMALL_STATE(1607)] = 129945, - [SMALL_STATE(1608)] = 129989, - [SMALL_STATE(1609)] = 130033, - [SMALL_STATE(1610)] = 130077, - [SMALL_STATE(1611)] = 130121, - [SMALL_STATE(1612)] = 130165, - [SMALL_STATE(1613)] = 130209, - [SMALL_STATE(1614)] = 130257, - [SMALL_STATE(1615)] = 130307, - [SMALL_STATE(1616)] = 130351, - [SMALL_STATE(1617)] = 130395, - [SMALL_STATE(1618)] = 130439, - [SMALL_STATE(1619)] = 130483, - [SMALL_STATE(1620)] = 130527, - [SMALL_STATE(1621)] = 130577, - [SMALL_STATE(1622)] = 130621, - [SMALL_STATE(1623)] = 130665, - [SMALL_STATE(1624)] = 130709, - [SMALL_STATE(1625)] = 130759, - [SMALL_STATE(1626)] = 130803, - [SMALL_STATE(1627)] = 130847, - [SMALL_STATE(1628)] = 130891, - [SMALL_STATE(1629)] = 130939, - [SMALL_STATE(1630)] = 130987, - [SMALL_STATE(1631)] = 131035, - [SMALL_STATE(1632)] = 131079, + [SMALL_STATE(1607)] = 129941, + [SMALL_STATE(1608)] = 129985, + [SMALL_STATE(1609)] = 130029, + [SMALL_STATE(1610)] = 130079, + [SMALL_STATE(1611)] = 130129, + [SMALL_STATE(1612)] = 130177, + [SMALL_STATE(1613)] = 130221, + [SMALL_STATE(1614)] = 130265, + [SMALL_STATE(1615)] = 130315, + [SMALL_STATE(1616)] = 130359, + [SMALL_STATE(1617)] = 130403, + [SMALL_STATE(1618)] = 130451, + [SMALL_STATE(1619)] = 130499, + [SMALL_STATE(1620)] = 130543, + [SMALL_STATE(1621)] = 130587, + [SMALL_STATE(1622)] = 130631, + [SMALL_STATE(1623)] = 130675, + [SMALL_STATE(1624)] = 130719, + [SMALL_STATE(1625)] = 130763, + [SMALL_STATE(1626)] = 130811, + [SMALL_STATE(1627)] = 130859, + [SMALL_STATE(1628)] = 130903, + [SMALL_STATE(1629)] = 130951, + [SMALL_STATE(1630)] = 130995, + [SMALL_STATE(1631)] = 131039, + [SMALL_STATE(1632)] = 131083, [SMALL_STATE(1633)] = 131127, [SMALL_STATE(1634)] = 131171, [SMALL_STATE(1635)] = 131215, @@ -146550,7 +146553,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1802)] = 137864, [SMALL_STATE(1803)] = 137883, [SMALL_STATE(1804)] = 137902, - [SMALL_STATE(1805)] = 137916, + [SMALL_STATE(1805)] = 137918, [SMALL_STATE(1806)] = 137932, [SMALL_STATE(1807)] = 137948, [SMALL_STATE(1808)] = 137964, @@ -146558,199 +146561,199 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1810)] = 137996, [SMALL_STATE(1811)] = 138012, [SMALL_STATE(1812)] = 138028, - [SMALL_STATE(1813)] = 138044, - [SMALL_STATE(1814)] = 138058, + [SMALL_STATE(1813)] = 138042, + [SMALL_STATE(1814)] = 138056, [SMALL_STATE(1815)] = 138072, - [SMALL_STATE(1816)] = 138086, + [SMALL_STATE(1816)] = 138088, [SMALL_STATE(1817)] = 138102, [SMALL_STATE(1818)] = 138116, [SMALL_STATE(1819)] = 138130, - [SMALL_STATE(1820)] = 138144, - [SMALL_STATE(1821)] = 138160, - [SMALL_STATE(1822)] = 138176, - [SMALL_STATE(1823)] = 138192, - [SMALL_STATE(1824)] = 138208, - [SMALL_STATE(1825)] = 138222, - [SMALL_STATE(1826)] = 138238, - [SMALL_STATE(1827)] = 138254, - [SMALL_STATE(1828)] = 138268, - [SMALL_STATE(1829)] = 138284, - [SMALL_STATE(1830)] = 138300, + [SMALL_STATE(1820)] = 138146, + [SMALL_STATE(1821)] = 138162, + [SMALL_STATE(1822)] = 138178, + [SMALL_STATE(1823)] = 138194, + [SMALL_STATE(1824)] = 138210, + [SMALL_STATE(1825)] = 138226, + [SMALL_STATE(1826)] = 138242, + [SMALL_STATE(1827)] = 138258, + [SMALL_STATE(1828)] = 138272, + [SMALL_STATE(1829)] = 138286, + [SMALL_STATE(1830)] = 138302, [SMALL_STATE(1831)] = 138316, - [SMALL_STATE(1832)] = 138332, - [SMALL_STATE(1833)] = 138348, - [SMALL_STATE(1834)] = 138364, + [SMALL_STATE(1832)] = 138330, + [SMALL_STATE(1833)] = 138346, + [SMALL_STATE(1834)] = 138362, [SMALL_STATE(1835)] = 138378, - [SMALL_STATE(1836)] = 138392, - [SMALL_STATE(1837)] = 138406, - [SMALL_STATE(1838)] = 138420, - [SMALL_STATE(1839)] = 138434, - [SMALL_STATE(1840)] = 138448, - [SMALL_STATE(1841)] = 138462, - [SMALL_STATE(1842)] = 138478, - [SMALL_STATE(1843)] = 138494, - [SMALL_STATE(1844)] = 138510, - [SMALL_STATE(1845)] = 138526, - [SMALL_STATE(1846)] = 138542, - [SMALL_STATE(1847)] = 138558, - [SMALL_STATE(1848)] = 138574, - [SMALL_STATE(1849)] = 138588, - [SMALL_STATE(1850)] = 138602, - [SMALL_STATE(1851)] = 138616, - [SMALL_STATE(1852)] = 138630, - [SMALL_STATE(1853)] = 138646, - [SMALL_STATE(1854)] = 138660, - [SMALL_STATE(1855)] = 138674, - [SMALL_STATE(1856)] = 138690, - [SMALL_STATE(1857)] = 138706, - [SMALL_STATE(1858)] = 138720, - [SMALL_STATE(1859)] = 138736, - [SMALL_STATE(1860)] = 138752, - [SMALL_STATE(1861)] = 138768, - [SMALL_STATE(1862)] = 138784, - [SMALL_STATE(1863)] = 138800, - [SMALL_STATE(1864)] = 138816, - [SMALL_STATE(1865)] = 138832, - [SMALL_STATE(1866)] = 138848, - [SMALL_STATE(1867)] = 138864, - [SMALL_STATE(1868)] = 138880, - [SMALL_STATE(1869)] = 138894, - [SMALL_STATE(1870)] = 138908, - [SMALL_STATE(1871)] = 138924, - [SMALL_STATE(1872)] = 138940, - [SMALL_STATE(1873)] = 138954, - [SMALL_STATE(1874)] = 138968, - [SMALL_STATE(1875)] = 138984, - [SMALL_STATE(1876)] = 138998, - [SMALL_STATE(1877)] = 139014, - [SMALL_STATE(1878)] = 139028, - [SMALL_STATE(1879)] = 139044, - [SMALL_STATE(1880)] = 139060, - [SMALL_STATE(1881)] = 139076, - [SMALL_STATE(1882)] = 139092, - [SMALL_STATE(1883)] = 139108, - [SMALL_STATE(1884)] = 139124, - [SMALL_STATE(1885)] = 139138, - [SMALL_STATE(1886)] = 139152, - [SMALL_STATE(1887)] = 139168, - [SMALL_STATE(1888)] = 139184, - [SMALL_STATE(1889)] = 139200, - [SMALL_STATE(1890)] = 139216, - [SMALL_STATE(1891)] = 139232, - [SMALL_STATE(1892)] = 139248, - [SMALL_STATE(1893)] = 139262, - [SMALL_STATE(1894)] = 139278, - [SMALL_STATE(1895)] = 139292, - [SMALL_STATE(1896)] = 139308, - [SMALL_STATE(1897)] = 139322, - [SMALL_STATE(1898)] = 139336, - [SMALL_STATE(1899)] = 139352, - [SMALL_STATE(1900)] = 139368, - [SMALL_STATE(1901)] = 139384, - [SMALL_STATE(1902)] = 139400, - [SMALL_STATE(1903)] = 139416, - [SMALL_STATE(1904)] = 139432, - [SMALL_STATE(1905)] = 139446, - [SMALL_STATE(1906)] = 139462, - [SMALL_STATE(1907)] = 139478, - [SMALL_STATE(1908)] = 139492, - [SMALL_STATE(1909)] = 139508, - [SMALL_STATE(1910)] = 139524, - [SMALL_STATE(1911)] = 139540, - [SMALL_STATE(1912)] = 139556, - [SMALL_STATE(1913)] = 139572, - [SMALL_STATE(1914)] = 139588, - [SMALL_STATE(1915)] = 139604, - [SMALL_STATE(1916)] = 139620, - [SMALL_STATE(1917)] = 139636, - [SMALL_STATE(1918)] = 139652, - [SMALL_STATE(1919)] = 139668, - [SMALL_STATE(1920)] = 139684, - [SMALL_STATE(1921)] = 139700, - [SMALL_STATE(1922)] = 139716, - [SMALL_STATE(1923)] = 139732, - [SMALL_STATE(1924)] = 139748, - [SMALL_STATE(1925)] = 139764, - [SMALL_STATE(1926)] = 139778, - [SMALL_STATE(1927)] = 139792, - [SMALL_STATE(1928)] = 139808, - [SMALL_STATE(1929)] = 139822, - [SMALL_STATE(1930)] = 139838, - [SMALL_STATE(1931)] = 139854, - [SMALL_STATE(1932)] = 139870, - [SMALL_STATE(1933)] = 139886, - [SMALL_STATE(1934)] = 139902, - [SMALL_STATE(1935)] = 139918, - [SMALL_STATE(1936)] = 139934, - [SMALL_STATE(1937)] = 139948, - [SMALL_STATE(1938)] = 139964, - [SMALL_STATE(1939)] = 139978, - [SMALL_STATE(1940)] = 139994, - [SMALL_STATE(1941)] = 140008, - [SMALL_STATE(1942)] = 140024, - [SMALL_STATE(1943)] = 140040, - [SMALL_STATE(1944)] = 140056, - [SMALL_STATE(1945)] = 140072, - [SMALL_STATE(1946)] = 140088, + [SMALL_STATE(1836)] = 138394, + [SMALL_STATE(1837)] = 138410, + [SMALL_STATE(1838)] = 138426, + [SMALL_STATE(1839)] = 138442, + [SMALL_STATE(1840)] = 138458, + [SMALL_STATE(1841)] = 138472, + [SMALL_STATE(1842)] = 138486, + [SMALL_STATE(1843)] = 138502, + [SMALL_STATE(1844)] = 138518, + [SMALL_STATE(1845)] = 138534, + [SMALL_STATE(1846)] = 138548, + [SMALL_STATE(1847)] = 138562, + [SMALL_STATE(1848)] = 138576, + [SMALL_STATE(1849)] = 138590, + [SMALL_STATE(1850)] = 138606, + [SMALL_STATE(1851)] = 138622, + [SMALL_STATE(1852)] = 138638, + [SMALL_STATE(1853)] = 138654, + [SMALL_STATE(1854)] = 138670, + [SMALL_STATE(1855)] = 138686, + [SMALL_STATE(1856)] = 138702, + [SMALL_STATE(1857)] = 138718, + [SMALL_STATE(1858)] = 138734, + [SMALL_STATE(1859)] = 138750, + [SMALL_STATE(1860)] = 138764, + [SMALL_STATE(1861)] = 138780, + [SMALL_STATE(1862)] = 138796, + [SMALL_STATE(1863)] = 138810, + [SMALL_STATE(1864)] = 138824, + [SMALL_STATE(1865)] = 138838, + [SMALL_STATE(1866)] = 138854, + [SMALL_STATE(1867)] = 138870, + [SMALL_STATE(1868)] = 138886, + [SMALL_STATE(1869)] = 138900, + [SMALL_STATE(1870)] = 138914, + [SMALL_STATE(1871)] = 138930, + [SMALL_STATE(1872)] = 138944, + [SMALL_STATE(1873)] = 138958, + [SMALL_STATE(1874)] = 138974, + [SMALL_STATE(1875)] = 138990, + [SMALL_STATE(1876)] = 139006, + [SMALL_STATE(1877)] = 139022, + [SMALL_STATE(1878)] = 139038, + [SMALL_STATE(1879)] = 139054, + [SMALL_STATE(1880)] = 139070, + [SMALL_STATE(1881)] = 139086, + [SMALL_STATE(1882)] = 139102, + [SMALL_STATE(1883)] = 139118, + [SMALL_STATE(1884)] = 139134, + [SMALL_STATE(1885)] = 139150, + [SMALL_STATE(1886)] = 139166, + [SMALL_STATE(1887)] = 139180, + [SMALL_STATE(1888)] = 139194, + [SMALL_STATE(1889)] = 139210, + [SMALL_STATE(1890)] = 139226, + [SMALL_STATE(1891)] = 139242, + [SMALL_STATE(1892)] = 139256, + [SMALL_STATE(1893)] = 139270, + [SMALL_STATE(1894)] = 139286, + [SMALL_STATE(1895)] = 139302, + [SMALL_STATE(1896)] = 139318, + [SMALL_STATE(1897)] = 139332, + [SMALL_STATE(1898)] = 139348, + [SMALL_STATE(1899)] = 139364, + [SMALL_STATE(1900)] = 139380, + [SMALL_STATE(1901)] = 139396, + [SMALL_STATE(1902)] = 139412, + [SMALL_STATE(1903)] = 139428, + [SMALL_STATE(1904)] = 139444, + [SMALL_STATE(1905)] = 139460, + [SMALL_STATE(1906)] = 139474, + [SMALL_STATE(1907)] = 139490, + [SMALL_STATE(1908)] = 139506, + [SMALL_STATE(1909)] = 139522, + [SMALL_STATE(1910)] = 139538, + [SMALL_STATE(1911)] = 139554, + [SMALL_STATE(1912)] = 139568, + [SMALL_STATE(1913)] = 139584, + [SMALL_STATE(1914)] = 139600, + [SMALL_STATE(1915)] = 139616, + [SMALL_STATE(1916)] = 139632, + [SMALL_STATE(1917)] = 139648, + [SMALL_STATE(1918)] = 139662, + [SMALL_STATE(1919)] = 139676, + [SMALL_STATE(1920)] = 139692, + [SMALL_STATE(1921)] = 139708, + [SMALL_STATE(1922)] = 139722, + [SMALL_STATE(1923)] = 139738, + [SMALL_STATE(1924)] = 139754, + [SMALL_STATE(1925)] = 139770, + [SMALL_STATE(1926)] = 139786, + [SMALL_STATE(1927)] = 139800, + [SMALL_STATE(1928)] = 139814, + [SMALL_STATE(1929)] = 139830, + [SMALL_STATE(1930)] = 139846, + [SMALL_STATE(1931)] = 139860, + [SMALL_STATE(1932)] = 139876, + [SMALL_STATE(1933)] = 139890, + [SMALL_STATE(1934)] = 139906, + [SMALL_STATE(1935)] = 139920, + [SMALL_STATE(1936)] = 139936, + [SMALL_STATE(1937)] = 139952, + [SMALL_STATE(1938)] = 139966, + [SMALL_STATE(1939)] = 139982, + [SMALL_STATE(1940)] = 139996, + [SMALL_STATE(1941)] = 140012, + [SMALL_STATE(1942)] = 140028, + [SMALL_STATE(1943)] = 140044, + [SMALL_STATE(1944)] = 140058, + [SMALL_STATE(1945)] = 140074, + [SMALL_STATE(1946)] = 140090, [SMALL_STATE(1947)] = 140104, [SMALL_STATE(1948)] = 140120, - [SMALL_STATE(1949)] = 140134, + [SMALL_STATE(1949)] = 140136, [SMALL_STATE(1950)] = 140150, [SMALL_STATE(1951)] = 140166, - [SMALL_STATE(1952)] = 140182, - [SMALL_STATE(1953)] = 140198, - [SMALL_STATE(1954)] = 140214, - [SMALL_STATE(1955)] = 140230, - [SMALL_STATE(1956)] = 140246, - [SMALL_STATE(1957)] = 140262, - [SMALL_STATE(1958)] = 140278, - [SMALL_STATE(1959)] = 140294, - [SMALL_STATE(1960)] = 140310, - [SMALL_STATE(1961)] = 140326, - [SMALL_STATE(1962)] = 140342, - [SMALL_STATE(1963)] = 140358, - [SMALL_STATE(1964)] = 140374, - [SMALL_STATE(1965)] = 140390, - [SMALL_STATE(1966)] = 140404, - [SMALL_STATE(1967)] = 140418, - [SMALL_STATE(1968)] = 140434, - [SMALL_STATE(1969)] = 140450, - [SMALL_STATE(1970)] = 140464, - [SMALL_STATE(1971)] = 140478, - [SMALL_STATE(1972)] = 140494, - [SMALL_STATE(1973)] = 140510, - [SMALL_STATE(1974)] = 140524, - [SMALL_STATE(1975)] = 140538, - [SMALL_STATE(1976)] = 140554, - [SMALL_STATE(1977)] = 140570, - [SMALL_STATE(1978)] = 140584, - [SMALL_STATE(1979)] = 140598, - [SMALL_STATE(1980)] = 140614, - [SMALL_STATE(1981)] = 140630, - [SMALL_STATE(1982)] = 140644, - [SMALL_STATE(1983)] = 140658, - [SMALL_STATE(1984)] = 140674, - [SMALL_STATE(1985)] = 140690, - [SMALL_STATE(1986)] = 140704, - [SMALL_STATE(1987)] = 140718, - [SMALL_STATE(1988)] = 140734, - [SMALL_STATE(1989)] = 140750, + [SMALL_STATE(1952)] = 140180, + [SMALL_STATE(1953)] = 140194, + [SMALL_STATE(1954)] = 140210, + [SMALL_STATE(1955)] = 140226, + [SMALL_STATE(1956)] = 140242, + [SMALL_STATE(1957)] = 140256, + [SMALL_STATE(1958)] = 140272, + [SMALL_STATE(1959)] = 140288, + [SMALL_STATE(1960)] = 140304, + [SMALL_STATE(1961)] = 140318, + [SMALL_STATE(1962)] = 140334, + [SMALL_STATE(1963)] = 140348, + [SMALL_STATE(1964)] = 140364, + [SMALL_STATE(1965)] = 140380, + [SMALL_STATE(1966)] = 140394, + [SMALL_STATE(1967)] = 140410, + [SMALL_STATE(1968)] = 140424, + [SMALL_STATE(1969)] = 140440, + [SMALL_STATE(1970)] = 140456, + [SMALL_STATE(1971)] = 140472, + [SMALL_STATE(1972)] = 140488, + [SMALL_STATE(1973)] = 140502, + [SMALL_STATE(1974)] = 140516, + [SMALL_STATE(1975)] = 140532, + [SMALL_STATE(1976)] = 140548, + [SMALL_STATE(1977)] = 140564, + [SMALL_STATE(1978)] = 140580, + [SMALL_STATE(1979)] = 140594, + [SMALL_STATE(1980)] = 140610, + [SMALL_STATE(1981)] = 140626, + [SMALL_STATE(1982)] = 140640, + [SMALL_STATE(1983)] = 140654, + [SMALL_STATE(1984)] = 140670, + [SMALL_STATE(1985)] = 140684, + [SMALL_STATE(1986)] = 140700, + [SMALL_STATE(1987)] = 140716, + [SMALL_STATE(1988)] = 140732, + [SMALL_STATE(1989)] = 140748, [SMALL_STATE(1990)] = 140764, - [SMALL_STATE(1991)] = 140778, - [SMALL_STATE(1992)] = 140794, + [SMALL_STATE(1991)] = 140780, + [SMALL_STATE(1992)] = 140796, [SMALL_STATE(1993)] = 140810, [SMALL_STATE(1994)] = 140824, [SMALL_STATE(1995)] = 140838, - [SMALL_STATE(1996)] = 140852, - [SMALL_STATE(1997)] = 140866, - [SMALL_STATE(1998)] = 140882, - [SMALL_STATE(1999)] = 140898, - [SMALL_STATE(2000)] = 140914, - [SMALL_STATE(2001)] = 140930, - [SMALL_STATE(2002)] = 140946, - [SMALL_STATE(2003)] = 140962, - [SMALL_STATE(2004)] = 140978, - [SMALL_STATE(2005)] = 140994, + [SMALL_STATE(1996)] = 140854, + [SMALL_STATE(1997)] = 140870, + [SMALL_STATE(1998)] = 140886, + [SMALL_STATE(1999)] = 140902, + [SMALL_STATE(2000)] = 140918, + [SMALL_STATE(2001)] = 140934, + [SMALL_STATE(2002)] = 140950, + [SMALL_STATE(2003)] = 140964, + [SMALL_STATE(2004)] = 140980, + [SMALL_STATE(2005)] = 140996, [SMALL_STATE(2006)] = 141010, [SMALL_STATE(2007)] = 141026, [SMALL_STATE(2008)] = 141042, @@ -146764,42 +146767,42 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2016)] = 141170, [SMALL_STATE(2017)] = 141186, [SMALL_STATE(2018)] = 141202, - [SMALL_STATE(2019)] = 141215, - [SMALL_STATE(2020)] = 141226, - [SMALL_STATE(2021)] = 141239, + [SMALL_STATE(2019)] = 141211, + [SMALL_STATE(2020)] = 141224, + [SMALL_STATE(2021)] = 141237, [SMALL_STATE(2022)] = 141248, [SMALL_STATE(2023)] = 141261, - [SMALL_STATE(2024)] = 141274, - [SMALL_STATE(2025)] = 141287, - [SMALL_STATE(2026)] = 141298, + [SMALL_STATE(2024)] = 141272, + [SMALL_STATE(2025)] = 141285, + [SMALL_STATE(2026)] = 141296, [SMALL_STATE(2027)] = 141309, [SMALL_STATE(2028)] = 141319, - [SMALL_STATE(2029)] = 141327, - [SMALL_STATE(2030)] = 141335, - [SMALL_STATE(2031)] = 141343, - [SMALL_STATE(2032)] = 141351, - [SMALL_STATE(2033)] = 141361, - [SMALL_STATE(2034)] = 141369, - [SMALL_STATE(2035)] = 141377, - [SMALL_STATE(2036)] = 141385, - [SMALL_STATE(2037)] = 141393, - [SMALL_STATE(2038)] = 141401, - [SMALL_STATE(2039)] = 141411, - [SMALL_STATE(2040)] = 141419, - [SMALL_STATE(2041)] = 141427, - [SMALL_STATE(2042)] = 141435, - [SMALL_STATE(2043)] = 141443, - [SMALL_STATE(2044)] = 141451, - [SMALL_STATE(2045)] = 141461, - [SMALL_STATE(2046)] = 141469, - [SMALL_STATE(2047)] = 141479, - [SMALL_STATE(2048)] = 141487, - [SMALL_STATE(2049)] = 141497, - [SMALL_STATE(2050)] = 141507, - [SMALL_STATE(2051)] = 141515, - [SMALL_STATE(2052)] = 141525, - [SMALL_STATE(2053)] = 141535, - [SMALL_STATE(2054)] = 141543, + [SMALL_STATE(2029)] = 141329, + [SMALL_STATE(2030)] = 141339, + [SMALL_STATE(2031)] = 141347, + [SMALL_STATE(2032)] = 141355, + [SMALL_STATE(2033)] = 141363, + [SMALL_STATE(2034)] = 141373, + [SMALL_STATE(2035)] = 141381, + [SMALL_STATE(2036)] = 141391, + [SMALL_STATE(2037)] = 141401, + [SMALL_STATE(2038)] = 141409, + [SMALL_STATE(2039)] = 141419, + [SMALL_STATE(2040)] = 141429, + [SMALL_STATE(2041)] = 141437, + [SMALL_STATE(2042)] = 141445, + [SMALL_STATE(2043)] = 141455, + [SMALL_STATE(2044)] = 141463, + [SMALL_STATE(2045)] = 141471, + [SMALL_STATE(2046)] = 141479, + [SMALL_STATE(2047)] = 141487, + [SMALL_STATE(2048)] = 141495, + [SMALL_STATE(2049)] = 141503, + [SMALL_STATE(2050)] = 141511, + [SMALL_STATE(2051)] = 141519, + [SMALL_STATE(2052)] = 141529, + [SMALL_STATE(2053)] = 141537, + [SMALL_STATE(2054)] = 141545, [SMALL_STATE(2055)] = 141553, [SMALL_STATE(2056)] = 141560, [SMALL_STATE(2057)] = 141567, @@ -146830,79 +146833,79 @@ 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_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 35), - [9] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 35), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [57] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 40), - [59] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 40), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [63] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 44), - [65] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 44), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [69] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 39), - [71] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 39), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 54), - [145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 54), - [147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 3, 0, 13), - [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 3, 0, 13), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [7] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 35), + [9] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 35), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [57] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 39), + [59] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 39), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [63] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 40), + [65] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 40), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [69] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 44), + [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 44), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 50), + [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 50), + [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 3), + [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 3), [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 15), [153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 15), [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 22), @@ -146927,2129 +146930,2129 @@ static const TSParseActionEntry ts_parse_actions[] = { [193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 46), [195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 47), [197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 47), - [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 48), - [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 48), - [203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 49), - [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 49), - [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 50), - [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 50), - [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 51), - [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 51), - [215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 52), - [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 52), - [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 53), - [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 53), - [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 55), - [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 55), - [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, 0, 56), - [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, 0, 56), - [231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 2, 0, 2), - [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 2, 0, 2), - [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 3), - [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 3), - [239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 8), - [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 8), - [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 3, 0, 12), - [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 3, 0, 12), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extract_operator, 2, 0, 4), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extract_operator, 2, 0, 4), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 1, 0, 6), - [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 1, 0, 6), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extract_operator, 3, 0, 4), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extract_operator, 3, 0, 4), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_operator, 2, 0, 4), - [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_operator, 2, 0, 4), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 1, 0, 0), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_quoted_string, 3, 0, 14), - [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_quoted_string, 3, 0, 14), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_quoted_string, 3, 0, 14), - [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_quoted_string, 3, 0, 14), - [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 0), - [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 0), - [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_or_identifier_or_dots_or_dot_dot_i, 1, 0, 0), - [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_or_identifier_or_dots_or_dot_dot_i, 1, 0, 0), - [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1, 0, 0), - [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1, 0, 0), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 1), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 1), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_quoted_string, 2, 0, 0), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_quoted_string, 2, 0, 0), - [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_quoted_string, 2, 0, 0), - [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_quoted_string, 2, 0, 0), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(316), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 19), - [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 19), - [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset, 2, 0, 5), - [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset, 2, 0, 5), - [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2, 2, 0, 5), - [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2, 2, 0, 5), - [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braced_expression, 2, 0, 7), - [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braced_expression, 2, 0, 7), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_operator, 3, 0, 15), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_operator, 3, 0, 15), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extract_operator, 3, 0, 15), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extract_operator, 3, 0, 15), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 2, 0, 7), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 2, 0, 7), - [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset_arguments, 2, 0, 7), - [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset_arguments, 2, 0, 7), - [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2_arguments, 2, 0, 7), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2_arguments, 2, 0, 7), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braced_expression, 3, 0, 20), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braced_expression, 3, 0, 20), - [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2, 0, 0), - [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2, 0, 0), - [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex, 2, 0, 0), - [783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex, 2, 0, 0), - [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extract_operator, 4, 0, 25), - [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extract_operator, 4, 0, 25), - [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 3, 0, 27), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 3, 0, 27), - [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 5), - [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 5), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 3, 0, 28), - [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 3, 0, 28), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset_arguments, 3, 0, 27), - [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset_arguments, 3, 0, 27), - [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset_arguments, 3, 0, 28), - [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset_arguments, 3, 0, 28), - [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2_arguments, 3, 0, 27), - [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2_arguments, 3, 0, 27), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2_arguments, 3, 0, 28), - [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2_arguments, 3, 0, 28), - [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 4, 0, 37), - [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 4, 0, 37), - [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset_arguments, 4, 0, 37), - [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset_arguments, 4, 0, 37), - [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2_arguments, 4, 0, 37), - [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2_arguments, 4, 0, 37), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_na, 1, 0, 0), - [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_na, 1, 0, 0), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(386), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(390), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(309), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1788), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1788), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1967), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(2001), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1935), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(979), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(982), - [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(983), - [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(985), - [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(986), - [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(313), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(313), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1813), - [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1817), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(309), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(189), - [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(419), - [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1601), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(321), - [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1117), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(372), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(320), - [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1812), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1943), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(482), - [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(486), - [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(635), - [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(323), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(323), - [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1804), - [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1948), - [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(320), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(398), - [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(310), - [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1053), - [1008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(378), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 3, 0, 13), + [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 3, 0, 13), + [203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 3, 0, 12), + [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 3, 0, 12), + [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 8), + [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 8), + [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 48), + [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 48), + [215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 49), + [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 49), + [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 51), + [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 51), + [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 52), + [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 52), + [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 53), + [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 53), + [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 54), + [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 54), + [235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 55), + [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 55), + [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, 0, 56), + [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, 0, 56), + [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 2, 0, 2), + [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 2, 0, 2), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extract_operator, 3, 0, 4), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extract_operator, 3, 0, 4), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extract_operator, 2, 0, 4), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extract_operator, 2, 0, 4), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 1, 0, 6), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 1, 0, 6), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_operator, 2, 0, 4), + [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_operator, 2, 0, 4), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_quoted_string, 2, 0, 0), + [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_quoted_string, 2, 0, 0), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_quoted_string, 2, 0, 0), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_quoted_string, 2, 0, 0), + [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 1, 0, 0), + [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1, 0, 0), + [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1, 0, 0), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 1), + [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 1), + [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_quoted_string, 3, 0, 14), + [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_quoted_string, 3, 0, 14), + [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_or_identifier_or_dots_or_dot_dot_i, 1, 0, 0), + [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_or_identifier_or_dots_or_dot_dot_i, 1, 0, 0), + [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 0), + [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 0), + [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_quoted_string, 3, 0, 14), + [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_quoted_string, 3, 0, 14), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), + [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(307), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(323), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_operator, 3, 0, 15), + [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_operator, 3, 0, 15), + [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braced_expression, 2, 0, 7), + [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braced_expression, 2, 0, 7), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2, 2, 0, 5), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2, 2, 0, 5), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset, 2, 0, 5), + [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset, 2, 0, 5), + [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 5), + [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 5), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex, 2, 0, 0), + [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex, 2, 0, 0), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2, 0, 0), + [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2, 0, 0), + [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extract_operator, 4, 0, 25), + [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extract_operator, 4, 0, 25), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 3, 0, 27), + [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 3, 0, 27), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 3, 0, 28), + [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 3, 0, 28), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset_arguments, 3, 0, 27), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset_arguments, 3, 0, 27), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset_arguments, 3, 0, 28), + [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset_arguments, 3, 0, 28), + [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2_arguments, 3, 0, 27), + [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2_arguments, 3, 0, 27), + [797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2_arguments, 3, 0, 28), + [799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2_arguments, 3, 0, 28), + [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_na, 1, 0, 0), + [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_na, 1, 0, 0), + [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 4, 0, 37), + [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 4, 0, 37), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset_arguments, 4, 0, 37), + [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset_arguments, 4, 0, 37), + [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(350), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2_arguments, 4, 0, 37), + [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2_arguments, 4, 0, 37), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 19), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 19), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braced_expression, 3, 0, 20), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braced_expression, 3, 0, 20), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2_arguments, 2, 0, 7), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2_arguments, 2, 0, 7), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset_arguments, 2, 0, 7), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset_arguments, 2, 0, 7), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(374), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 2, 0, 7), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 2, 0, 7), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extract_operator, 3, 0, 15), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extract_operator, 3, 0, 15), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1784), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1784), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1894), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(626), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(627), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(628), + [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(636), + [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1847), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(411), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1092), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(370), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(310), + [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1801), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1801), + [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(2000), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1915), + [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1977), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(727), + [1008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(454), + [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(455), + [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(456), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(457), + [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(309), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(309), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1956), + [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1952), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(310), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(239), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(419), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1592), + [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(311), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1106), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(354), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_named, 2, 0, 11), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_with_default, 2, 0, 10), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_with_default, 2, 0, 10), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1136), [3282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1137), [3285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1138), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1143), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1147), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1156), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_value, 1, 0, 18), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_with_default, 3, 0, 33), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [3775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i, 1, 0, 0), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1152), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1157), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1162), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_value, 1, 0, 18), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_with_default, 3, 0, 33), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_name_string_or_identifier_or_dots_or_dot_dot_i, 1, 0, 0), + [3773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1611), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 23), [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 23), [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 31), [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 31), [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 7), [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 7), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__single_quoted_string_content, 2, 0, 0), - [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__single_quoted_string_content, 2, 0, 0), SHIFT_REPEAT(2025), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [4117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__double_quoted_string_content, 2, 0, 0), - [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__double_quoted_string_content, 2, 0, 0), SHIFT_REPEAT(2026), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 29), SHIFT_REPEAT(286), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 29), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_without_default, 1, 0, 10), - [4381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2020), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 11), - [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 29), SHIFT_REPEAT(290), - [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 29), SHIFT_REPEAT(288), - [4392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 32), SHIFT_REPEAT(1783), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 32), - [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__single_quoted_string_content, 1, 0, 0), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__single_quoted_string_content, 1, 0, 0), - [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__double_quoted_string_content, 1, 0, 0), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__double_quoted_string_content, 1, 0, 0), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 17), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 30), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 26), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_named, 3, 0, 38), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_unnamed, 1, 0, 17), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 16), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 10), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 9), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4465] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__single_quoted_string_content, 2, 0, 0), + [4274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__single_quoted_string_content, 2, 0, 0), SHIFT_REPEAT(2021), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__double_quoted_string_content, 2, 0, 0), + [4297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__double_quoted_string_content, 2, 0, 0), SHIFT_REPEAT(2023), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 11), + [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 29), SHIFT_REPEAT(292), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 29), + [4379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 32), SHIFT_REPEAT(1783), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 32), + [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__single_quoted_string_content, 1, 0, 0), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__single_quoted_string_content, 1, 0, 0), + [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 29), SHIFT_REPEAT(288), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__double_quoted_string_content, 1, 0, 0), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__double_quoted_string_content, 1, 0, 0), + [4395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 29), SHIFT_REPEAT(293), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_without_default, 1, 0, 10), + [4402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 17), + [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_unnamed, 1, 0, 17), + [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_named, 3, 0, 38), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 30), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 26), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 16), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 10), + [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 9), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4487] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), }; @@ -149114,6 +149117,7 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, [ts_external_token__external_open_brace] = true, + [ts_external_token__external_close_brace] = true, [ts_external_token__external_open_bracket] = true, [ts_external_token__external_open_bracket2] = true, }, @@ -149124,7 +149128,6 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, [ts_external_token__external_open_brace] = true, - [ts_external_token__external_close_brace] = true, [ts_external_token__external_open_bracket] = true, [ts_external_token__external_open_bracket2] = true, }, @@ -149197,16 +149200,16 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, [ts_external_token__external_open_bracket] = true, + [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, - [ts_external_token__external_close_bracket2] = true, }, [15] = { [ts_external_token__newline] = true, [ts_external_token__raw_string_literal] = true, [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, + [ts_external_token__external_close_parenthesis] = true, [ts_external_token__external_open_bracket] = true, - [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, }, [16] = { @@ -149214,9 +149217,9 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__raw_string_literal] = true, [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, - [ts_external_token__external_close_parenthesis] = true, [ts_external_token__external_open_bracket] = true, [ts_external_token__external_open_bracket2] = true, + [ts_external_token__external_close_bracket2] = true, }, [17] = { [ts_external_token__newline] = true, @@ -149231,39 +149234,39 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__raw_string_literal] = true, [ts_external_token__external_open_parenthesis] = true, [ts_external_token__external_open_bracket] = true, + [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, - [ts_external_token__external_close_bracket2] = true, }, [19] = { [ts_external_token__newline] = true, [ts_external_token__raw_string_literal] = true, [ts_external_token__external_open_parenthesis] = true, [ts_external_token__external_open_bracket] = true, - [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, + [ts_external_token__external_close_bracket2] = true, }, [20] = { [ts_external_token__raw_string_literal] = true, [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, + [ts_external_token__external_close_parenthesis] = true, [ts_external_token__external_open_bracket] = true, [ts_external_token__external_open_bracket2] = true, - [ts_external_token__external_close_bracket2] = true, }, [21] = { [ts_external_token__raw_string_literal] = true, [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, [ts_external_token__external_open_bracket] = true, - [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, + [ts_external_token__external_close_bracket2] = true, }, [22] = { [ts_external_token__raw_string_literal] = true, [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, - [ts_external_token__external_close_parenthesis] = true, [ts_external_token__external_open_bracket] = true, + [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, }, [23] = { @@ -149277,42 +149280,42 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__raw_string_literal] = true, [ts_external_token__external_open_parenthesis] = true, [ts_external_token__external_open_bracket] = true, + [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, - [ts_external_token__external_close_bracket2] = true, }, [25] = { [ts_external_token__raw_string_literal] = true, [ts_external_token__external_open_parenthesis] = true, [ts_external_token__external_open_bracket] = true, - [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, + [ts_external_token__external_close_bracket2] = true, }, [26] = { [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, + [ts_external_token__external_close_parenthesis] = true, [ts_external_token__external_open_bracket] = true, [ts_external_token__external_open_bracket2] = true, - [ts_external_token__external_close_bracket2] = true, }, [27] = { [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, [ts_external_token__external_open_bracket] = true, - [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, + [ts_external_token__external_close_bracket2] = true, }, [28] = { [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, - [ts_external_token__external_close_parenthesis] = true, [ts_external_token__external_open_bracket] = true, + [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, }, [29] = { [ts_external_token__external_open_parenthesis] = true, - [ts_external_token__external_close_parenthesis] = true, [ts_external_token__external_open_bracket] = true, [ts_external_token__external_open_bracket2] = true, + [ts_external_token__external_close_bracket2] = true, }, [30] = { [ts_external_token__external_open_parenthesis] = true, @@ -149322,9 +149325,9 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { }, [31] = { [ts_external_token__external_open_parenthesis] = true, + [ts_external_token__external_close_parenthesis] = true, [ts_external_token__external_open_bracket] = true, [ts_external_token__external_open_bracket2] = true, - [ts_external_token__external_close_bracket2] = true, }, [32] = { [ts_external_token__external_close_parenthesis] = true, @@ -149334,10 +149337,10 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__external_open_parenthesis] = true, }, [34] = { - [ts_external_token__external_close_bracket] = true, + [ts_external_token__external_close_bracket2] = true, }, [35] = { - [ts_external_token__external_close_bracket2] = true, + [ts_external_token__external_close_bracket] = true, }, }; From 9414f9a80de606c75088db754ff8b4442513bca9 Mon Sep 17 00:00:00 2001 From: Felix Andreas Date: Thu, 26 Jun 2025 22:09:54 +0200 Subject: [PATCH 2/3] re-generate --- src/grammar.json | 1 + src/node-types.json | 1 + src/parser.c | 137382 ++++++++++++++++++------------------- src/tree_sitter/alloc.h | 8 +- src/tree_sitter/array.h | 3 +- 5 files changed, 68699 insertions(+), 68696 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 572f591..5fb3d51 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "r", "word": "identifier", "rules": { diff --git a/src/node-types.json b/src/node-types.json index 4a317c9..86a2ade 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2344,6 +2344,7 @@ { "type": "program", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, diff --git a/src/parser.c b/src/parser.c index e33994c..7beca71 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1333,17 +1333,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 4, [5] = 5, [6] = 2, - [7] = 3, - [8] = 4, - [9] = 5, - [10] = 2, - [11] = 3, - [12] = 4, - [13] = 5, - [14] = 2, - [15] = 3, - [16] = 4, - [17] = 5, + [7] = 5, + [8] = 3, + [9] = 4, + [10] = 4, + [11] = 2, + [12] = 5, + [13] = 3, + [14] = 4, + [15] = 2, + [16] = 5, + [17] = 3, [18] = 18, [19] = 19, [20] = 20, @@ -1380,7 +1380,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [51] = 51, [52] = 52, [53] = 53, - [54] = 44, + [54] = 54, [55] = 55, [56] = 56, [57] = 57, @@ -1389,7 +1389,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [60] = 60, [61] = 61, [62] = 62, - [63] = 63, + [63] = 18, [64] = 64, [65] = 65, [66] = 66, @@ -1401,266 +1401,266 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [72] = 72, [73] = 73, [74] = 74, - [75] = 64, - [76] = 74, - [77] = 61, - [78] = 19, - [79] = 72, - [80] = 60, - [81] = 70, - [82] = 69, - [83] = 68, - [84] = 67, - [85] = 66, - [86] = 65, - [87] = 18, - [88] = 63, - [89] = 62, - [90] = 53, - [91] = 52, - [92] = 51, - [93] = 50, - [94] = 49, - [95] = 59, - [96] = 58, - [97] = 57, - [98] = 56, - [99] = 71, - [100] = 55, - [101] = 48, - [102] = 73, - [103] = 20, - [104] = 21, - [105] = 22, - [106] = 23, - [107] = 24, - [108] = 25, - [109] = 26, - [110] = 47, - [111] = 27, - [112] = 46, - [113] = 28, - [114] = 29, - [115] = 30, - [116] = 31, - [117] = 32, - [118] = 33, - [119] = 34, - [120] = 35, - [121] = 36, - [122] = 37, - [123] = 38, - [124] = 39, - [125] = 40, - [126] = 41, - [127] = 42, - [128] = 45, - [129] = 43, - [130] = 22, - [131] = 50, - [132] = 132, - [133] = 71, - [134] = 30, - [135] = 22, - [136] = 29, - [137] = 55, - [138] = 28, - [139] = 56, - [140] = 27, - [141] = 57, - [142] = 58, - [143] = 26, - [144] = 59, - [145] = 60, - [146] = 25, - [147] = 20, - [148] = 72, - [149] = 24, - [150] = 21, - [151] = 64, - [152] = 61, - [153] = 31, - [154] = 74, - [155] = 19, - [156] = 72, - [157] = 71, - [158] = 32, - [159] = 19, - [160] = 74, - [161] = 23, - [162] = 24, - [163] = 23, - [164] = 25, - [165] = 73, - [166] = 33, - [167] = 34, - [168] = 35, - [169] = 36, - [170] = 37, - [171] = 38, - [172] = 39, - [173] = 40, - [174] = 41, - [175] = 42, - [176] = 43, - [177] = 44, - [178] = 45, - [179] = 26, - [180] = 21, - [181] = 27, - [182] = 20, - [183] = 28, - [184] = 29, - [185] = 30, - [186] = 64, - [187] = 73, - [188] = 31, - [189] = 32, - [190] = 33, - [191] = 34, - [192] = 55, - [193] = 35, - [194] = 36, - [195] = 37, - [196] = 46, - [197] = 38, - [198] = 39, - [199] = 70, - [200] = 69, - [201] = 56, - [202] = 47, - [203] = 57, - [204] = 58, - [205] = 40, - [206] = 59, - [207] = 41, - [208] = 42, - [209] = 60, - [210] = 43, - [211] = 61, - [212] = 44, - [213] = 45, - [214] = 46, - [215] = 48, - [216] = 49, - [217] = 68, - [218] = 67, + [75] = 19, + [76] = 20, + [77] = 21, + [78] = 22, + [79] = 23, + [80] = 24, + [81] = 25, + [82] = 26, + [83] = 27, + [84] = 28, + [85] = 29, + [86] = 30, + [87] = 31, + [88] = 32, + [89] = 33, + [90] = 34, + [91] = 35, + [92] = 36, + [93] = 37, + [94] = 38, + [95] = 39, + [96] = 40, + [97] = 41, + [98] = 42, + [99] = 43, + [100] = 44, + [101] = 45, + [102] = 46, + [103] = 47, + [104] = 48, + [105] = 49, + [106] = 50, + [107] = 51, + [108] = 52, + [109] = 53, + [110] = 54, + [111] = 55, + [112] = 56, + [113] = 57, + [114] = 58, + [115] = 59, + [116] = 60, + [117] = 61, + [118] = 62, + [119] = 66, + [120] = 64, + [121] = 65, + [122] = 67, + [123] = 68, + [124] = 69, + [125] = 70, + [126] = 71, + [127] = 72, + [128] = 73, + [129] = 74, + [130] = 29, + [131] = 71, + [132] = 72, + [133] = 73, + [134] = 74, + [135] = 19, + [136] = 20, + [137] = 21, + [138] = 23, + [139] = 24, + [140] = 25, + [141] = 26, + [142] = 27, + [143] = 28, + [144] = 29, + [145] = 30, + [146] = 31, + [147] = 32, + [148] = 33, + [149] = 34, + [150] = 35, + [151] = 36, + [152] = 37, + [153] = 38, + [154] = 39, + [155] = 40, + [156] = 41, + [157] = 42, + [158] = 43, + [159] = 44, + [160] = 45, + [161] = 46, + [162] = 47, + [163] = 48, + [164] = 49, + [165] = 165, + [166] = 50, + [167] = 51, + [168] = 52, + [169] = 53, + [170] = 66, + [171] = 54, + [172] = 55, + [173] = 56, + [174] = 57, + [175] = 58, + [176] = 59, + [177] = 60, + [178] = 61, + [179] = 62, + [180] = 18, + [181] = 64, + [182] = 65, + [183] = 67, + [184] = 68, + [185] = 69, + [186] = 70, + [187] = 187, + [188] = 71, + [189] = 72, + [190] = 73, + [191] = 74, + [192] = 19, + [193] = 20, + [194] = 21, + [195] = 22, + [196] = 23, + [197] = 24, + [198] = 25, + [199] = 26, + [200] = 27, + [201] = 28, + [202] = 30, + [203] = 31, + [204] = 32, + [205] = 33, + [206] = 34, + [207] = 35, + [208] = 36, + [209] = 37, + [210] = 38, + [211] = 39, + [212] = 40, + [213] = 41, + [214] = 42, + [215] = 43, + [216] = 44, + [217] = 45, + [218] = 46, [219] = 47, - [220] = 66, - [221] = 48, - [222] = 49, + [220] = 48, + [221] = 49, + [222] = 50, [223] = 51, - [224] = 65, - [225] = 50, - [226] = 52, - [227] = 53, - [228] = 62, - [229] = 18, - [230] = 63, - [231] = 63, - [232] = 62, - [233] = 18, - [234] = 65, - [235] = 53, - [236] = 66, - [237] = 67, - [238] = 68, - [239] = 51, - [240] = 69, - [241] = 70, - [242] = 242, - [243] = 52, + [224] = 52, + [225] = 53, + [226] = 54, + [227] = 55, + [228] = 56, + [229] = 57, + [230] = 58, + [231] = 59, + [232] = 60, + [233] = 61, + [234] = 62, + [235] = 18, + [236] = 64, + [237] = 65, + [238] = 66, + [239] = 67, + [240] = 68, + [241] = 69, + [242] = 70, + [243] = 22, [244] = 244, - [245] = 245, - [246] = 245, - [247] = 244, + [245] = 244, + [246] = 246, + [247] = 246, [248] = 248, [249] = 249, - [250] = 245, - [251] = 248, + [250] = 244, + [251] = 244, [252] = 252, [253] = 253, - [254] = 249, - [255] = 249, - [256] = 252, + [254] = 252, + [255] = 248, + [256] = 253, [257] = 249, - [258] = 244, - [259] = 248, - [260] = 249, - [261] = 252, - [262] = 248, - [263] = 249, - [264] = 249, - [265] = 248, - [266] = 252, - [267] = 249, - [268] = 252, - [269] = 252, - [270] = 249, - [271] = 248, - [272] = 244, - [273] = 248, - [274] = 248, - [275] = 252, - [276] = 252, - [277] = 252, - [278] = 245, + [258] = 249, + [259] = 246, + [260] = 248, + [261] = 253, + [262] = 249, + [263] = 246, + [264] = 248, + [265] = 249, + [266] = 248, + [267] = 253, + [268] = 249, + [269] = 248, + [270] = 253, + [271] = 249, + [272] = 248, + [273] = 253, + [274] = 249, + [275] = 248, + [276] = 253, + [277] = 249, + [278] = 248, [279] = 253, - [280] = 248, + [280] = 249, [281] = 248, - [282] = 252, - [283] = 249, + [282] = 253, + [283] = 253, [284] = 284, - [285] = 285, + [285] = 284, [286] = 286, - [287] = 285, + [287] = 287, [288] = 288, [289] = 289, [290] = 286, - [291] = 253, + [291] = 287, [292] = 288, - [293] = 293, - [294] = 253, + [293] = 289, + [294] = 294, [295] = 295, - [296] = 296, - [297] = 297, - [298] = 295, - [299] = 296, - [300] = 297, - [301] = 293, - [302] = 289, - [303] = 284, - [304] = 304, - [305] = 305, - [306] = 297, - [307] = 289, - [308] = 286, - [309] = 288, - [310] = 297, - [311] = 296, - [312] = 295, - [313] = 305, - [314] = 295, - [315] = 304, - [316] = 293, - [317] = 288, - [318] = 286, - [319] = 305, - [320] = 289, - [321] = 284, - [322] = 293, - [323] = 296, - [324] = 285, - [325] = 285, - [326] = 284, + [296] = 294, + [297] = 295, + [298] = 298, + [299] = 299, + [300] = 252, + [301] = 298, + [302] = 299, + [303] = 252, + [304] = 287, + [305] = 284, + [306] = 295, + [307] = 307, + [308] = 288, + [309] = 289, + [310] = 310, + [311] = 294, + [312] = 310, + [313] = 284, + [314] = 286, + [315] = 287, + [316] = 288, + [317] = 289, + [318] = 307, + [319] = 298, + [320] = 299, + [321] = 294, + [322] = 295, + [323] = 286, + [324] = 310, + [325] = 298, + [326] = 299, [327] = 327, [328] = 328, - [329] = 304, + [329] = 329, [330] = 330, [331] = 331, [332] = 332, [333] = 333, - [334] = 334, + [334] = 307, [335] = 335, [336] = 336, [337] = 337, @@ -1670,107 +1670,107 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [341] = 341, [342] = 342, [343] = 343, - [344] = 344, + [344] = 332, [345] = 345, - [346] = 346, + [346] = 335, [347] = 347, [348] = 348, - [349] = 304, - [350] = 350, - [351] = 351, - [352] = 341, - [353] = 340, - [354] = 344, - [355] = 338, - [356] = 356, - [357] = 328, - [358] = 356, - [359] = 327, - [360] = 343, - [361] = 346, - [362] = 351, - [363] = 350, - [364] = 345, - [365] = 342, - [366] = 335, - [367] = 334, - [368] = 347, - [369] = 333, - [370] = 339, - [371] = 348, - [372] = 337, - [373] = 336, - [374] = 332, - [375] = 331, - [376] = 330, - [377] = 343, - [378] = 378, - [379] = 341, - [380] = 340, - [381] = 338, - [382] = 382, - [383] = 337, - [384] = 336, - [385] = 378, - [386] = 382, - [387] = 356, - [388] = 378, - [389] = 348, - [390] = 347, - [391] = 345, - [392] = 382, - [393] = 378, - [394] = 345, - [395] = 347, - [396] = 344, - [397] = 343, - [398] = 348, - [399] = 327, - [400] = 339, - [401] = 342, - [402] = 350, - [403] = 351, - [404] = 328, - [405] = 378, - [406] = 341, - [407] = 356, - [408] = 340, - [409] = 330, - [410] = 338, - [411] = 344, - [412] = 337, - [413] = 382, - [414] = 336, - [415] = 327, - [416] = 378, - [417] = 346, - [418] = 333, - [419] = 331, - [420] = 346, - [421] = 332, - [422] = 333, - [423] = 382, - [424] = 332, - [425] = 334, - [426] = 331, - [427] = 335, - [428] = 330, - [429] = 378, - [430] = 378, - [431] = 378, - [432] = 382, - [433] = 328, - [434] = 339, - [435] = 382, - [436] = 382, - [437] = 342, - [438] = 335, - [439] = 334, - [440] = 350, - [441] = 378, - [442] = 382, - [443] = 351, - [444] = 382, + [349] = 349, + [350] = 333, + [351] = 345, + [352] = 352, + [353] = 353, + [354] = 307, + [355] = 347, + [356] = 336, + [357] = 337, + [358] = 339, + [359] = 348, + [360] = 338, + [361] = 340, + [362] = 362, + [363] = 363, + [364] = 349, + [365] = 328, + [366] = 329, + [367] = 330, + [368] = 331, + [369] = 327, + [370] = 352, + [371] = 363, + [372] = 353, + [373] = 341, + [374] = 342, + [375] = 343, + [376] = 362, + [377] = 339, + [378] = 362, + [379] = 343, + [380] = 332, + [381] = 345, + [382] = 335, + [383] = 347, + [384] = 352, + [385] = 349, + [386] = 386, + [387] = 330, + [388] = 333, + [389] = 389, + [390] = 386, + [391] = 348, + [392] = 349, + [393] = 333, + [394] = 338, + [395] = 331, + [396] = 327, + [397] = 353, + [398] = 386, + [399] = 386, + [400] = 386, + [401] = 363, + [402] = 389, + [403] = 386, + [404] = 345, + [405] = 363, + [406] = 340, + [407] = 335, + [408] = 338, + [409] = 347, + [410] = 336, + [411] = 337, + [412] = 342, + [413] = 339, + [414] = 389, + [415] = 352, + [416] = 353, + [417] = 386, + [418] = 389, + [419] = 336, + [420] = 341, + [421] = 337, + [422] = 389, + [423] = 328, + [424] = 329, + [425] = 348, + [426] = 389, + [427] = 362, + [428] = 340, + [429] = 330, + [430] = 389, + [431] = 331, + [432] = 327, + [433] = 386, + [434] = 389, + [435] = 341, + [436] = 342, + [437] = 389, + [438] = 343, + [439] = 386, + [440] = 332, + [441] = 389, + [442] = 328, + [443] = 329, + [444] = 386, [445] = 445, [446] = 446, [447] = 447, @@ -1805,574 +1805,574 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [476] = 476, [477] = 477, [478] = 478, - [479] = 453, + [479] = 479, [480] = 480, [481] = 481, [482] = 482, [483] = 483, - [484] = 484, - [485] = 485, - [486] = 458, + [484] = 477, + [485] = 480, + [486] = 455, [487] = 487, [488] = 488, - [489] = 484, + [489] = 456, [490] = 490, - [491] = 457, + [491] = 491, [492] = 492, [493] = 493, [494] = 494, - [495] = 482, + [495] = 495, [496] = 496, - [497] = 456, - [498] = 498, - [499] = 455, - [500] = 454, - [501] = 501, - [502] = 454, - [503] = 498, - [504] = 482, - [505] = 484, - [506] = 487, + [497] = 497, + [498] = 487, + [499] = 452, + [500] = 500, + [501] = 488, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 490, + [506] = 506, [507] = 507, - [508] = 493, - [509] = 501, + [508] = 508, + [509] = 492, [510] = 510, - [511] = 510, - [512] = 512, - [513] = 512, + [511] = 481, + [512] = 482, + [513] = 513, [514] = 514, - [515] = 514, - [516] = 507, + [515] = 483, + [516] = 516, [517] = 517, [518] = 518, [519] = 519, [520] = 520, - [521] = 507, - [522] = 519, + [521] = 521, + [522] = 522, [523] = 523, - [524] = 524, - [525] = 520, - [526] = 523, - [527] = 524, - [528] = 452, - [529] = 452, - [530] = 530, - [531] = 531, - [532] = 530, - [533] = 533, - [534] = 534, - [535] = 518, - [536] = 531, - [537] = 517, - [538] = 496, - [539] = 494, - [540] = 492, - [541] = 490, - [542] = 488, - [543] = 485, - [544] = 533, - [545] = 534, - [546] = 483, - [547] = 534, - [548] = 533, - [549] = 481, - [550] = 480, - [551] = 459, - [552] = 453, - [553] = 531, - [554] = 460, - [555] = 478, - [556] = 530, - [557] = 493, - [558] = 477, - [559] = 452, - [560] = 501, - [561] = 524, - [562] = 523, - [563] = 520, - [564] = 476, - [565] = 510, - [566] = 519, - [567] = 507, - [568] = 512, - [569] = 514, - [570] = 461, + [524] = 453, + [525] = 454, + [526] = 457, + [527] = 458, + [528] = 460, + [529] = 463, + [530] = 465, + [531] = 467, + [532] = 469, + [533] = 475, + [534] = 513, + [535] = 455, + [536] = 456, + [537] = 459, + [538] = 461, + [539] = 462, + [540] = 464, + [541] = 466, + [542] = 468, + [543] = 470, + [544] = 471, + [545] = 472, + [546] = 473, + [547] = 474, + [548] = 476, + [549] = 478, + [550] = 477, + [551] = 480, + [552] = 487, + [553] = 488, + [554] = 490, + [555] = 492, + [556] = 494, + [557] = 495, + [558] = 496, + [559] = 497, + [560] = 452, + [561] = 500, + [562] = 502, + [563] = 503, + [564] = 504, + [565] = 506, + [566] = 508, + [567] = 510, + [568] = 481, + [569] = 482, + [570] = 513, [571] = 514, - [572] = 463, - [573] = 512, - [574] = 510, - [575] = 464, - [576] = 465, - [577] = 501, - [578] = 466, - [579] = 467, - [580] = 475, - [581] = 493, - [582] = 474, - [583] = 468, - [584] = 455, - [585] = 487, - [586] = 484, - [587] = 482, - [588] = 498, - [589] = 454, - [590] = 469, - [591] = 591, - [592] = 470, - [593] = 593, - [594] = 594, - [595] = 455, - [596] = 471, - [597] = 456, - [598] = 598, - [599] = 457, - [600] = 472, - [601] = 458, - [602] = 473, - [603] = 459, - [604] = 472, - [605] = 460, - [606] = 591, - [607] = 593, - [608] = 471, - [609] = 594, - [610] = 598, - [611] = 461, - [612] = 462, - [613] = 463, - [614] = 464, - [615] = 465, - [616] = 466, - [617] = 467, - [618] = 468, - [619] = 469, - [620] = 470, - [621] = 471, - [622] = 472, - [623] = 473, - [624] = 470, - [625] = 487, - [626] = 484, - [627] = 482, - [628] = 498, - [629] = 591, - [630] = 593, - [631] = 474, - [632] = 475, - [633] = 469, - [634] = 594, - [635] = 598, - [636] = 454, - [637] = 468, - [638] = 591, - [639] = 593, - [640] = 594, - [641] = 598, - [642] = 455, - [643] = 476, - [644] = 467, - [645] = 477, - [646] = 591, - [647] = 478, - [648] = 593, + [572] = 483, + [573] = 516, + [574] = 517, + [575] = 518, + [576] = 519, + [577] = 520, + [578] = 521, + [579] = 522, + [580] = 523, + [581] = 453, + [582] = 454, + [583] = 457, + [584] = 458, + [585] = 460, + [586] = 463, + [587] = 465, + [588] = 467, + [589] = 469, + [590] = 475, + [591] = 516, + [592] = 455, + [593] = 456, + [594] = 494, + [595] = 459, + [596] = 461, + [597] = 462, + [598] = 464, + [599] = 466, + [600] = 468, + [601] = 470, + [602] = 471, + [603] = 472, + [604] = 473, + [605] = 474, + [606] = 476, + [607] = 478, + [608] = 477, + [609] = 480, + [610] = 487, + [611] = 488, + [612] = 490, + [613] = 492, + [614] = 494, + [615] = 495, + [616] = 496, + [617] = 497, + [618] = 452, + [619] = 500, + [620] = 502, + [621] = 503, + [622] = 504, + [623] = 506, + [624] = 508, + [625] = 514, + [626] = 510, + [627] = 481, + [628] = 482, + [629] = 513, + [630] = 514, + [631] = 495, + [632] = 496, + [633] = 497, + [634] = 517, + [635] = 483, + [636] = 518, + [637] = 516, + [638] = 500, + [639] = 517, + [640] = 518, + [641] = 519, + [642] = 520, + [643] = 502, + [644] = 519, + [645] = 503, + [646] = 504, + [647] = 521, + [648] = 523, [649] = 453, - [650] = 594, - [651] = 480, - [652] = 598, - [653] = 481, - [654] = 466, - [655] = 483, - [656] = 591, - [657] = 485, - [658] = 593, - [659] = 488, - [660] = 594, - [661] = 490, - [662] = 598, - [663] = 492, - [664] = 456, - [665] = 494, - [666] = 457, - [667] = 496, - [668] = 591, - [669] = 465, - [670] = 593, - [671] = 594, - [672] = 598, - [673] = 459, - [674] = 460, - [675] = 591, - [676] = 593, - [677] = 594, - [678] = 598, - [679] = 461, - [680] = 462, - [681] = 517, - [682] = 518, - [683] = 464, - [684] = 463, - [685] = 461, - [686] = 473, - [687] = 519, - [688] = 520, - [689] = 523, - [690] = 460, - [691] = 463, - [692] = 464, - [693] = 465, - [694] = 466, - [695] = 524, - [696] = 459, - [697] = 452, - [698] = 458, - [699] = 467, - [700] = 591, - [701] = 468, - [702] = 469, - [703] = 593, - [704] = 594, - [705] = 470, - [706] = 474, - [707] = 598, - [708] = 534, - [709] = 533, - [710] = 471, - [711] = 472, - [712] = 473, - [713] = 531, - [714] = 457, - [715] = 475, - [716] = 530, - [717] = 458, - [718] = 456, - [719] = 452, - [720] = 530, - [721] = 524, - [722] = 523, - [723] = 520, - [724] = 455, - [725] = 493, - [726] = 519, - [727] = 507, - [728] = 501, + [650] = 454, + [651] = 457, + [652] = 458, + [653] = 460, + [654] = 463, + [655] = 465, + [656] = 467, + [657] = 469, + [658] = 475, + [659] = 459, + [660] = 506, + [661] = 520, + [662] = 461, + [663] = 508, + [664] = 462, + [665] = 455, + [666] = 456, + [667] = 510, + [668] = 481, + [669] = 482, + [670] = 513, + [671] = 514, + [672] = 459, + [673] = 461, + [674] = 462, + [675] = 464, + [676] = 483, + [677] = 466, + [678] = 468, + [679] = 516, + [680] = 470, + [681] = 471, + [682] = 517, + [683] = 472, + [684] = 473, + [685] = 518, + [686] = 474, + [687] = 476, + [688] = 519, + [689] = 478, + [690] = 520, + [691] = 521, + [692] = 522, + [693] = 477, + [694] = 480, + [695] = 523, + [696] = 453, + [697] = 454, + [698] = 457, + [699] = 458, + [700] = 460, + [701] = 463, + [702] = 465, + [703] = 467, + [704] = 469, + [705] = 475, + [706] = 464, + [707] = 455, + [708] = 456, + [709] = 487, + [710] = 488, + [711] = 490, + [712] = 492, + [713] = 494, + [714] = 495, + [715] = 496, + [716] = 497, + [717] = 452, + [718] = 500, + [719] = 459, + [720] = 502, + [721] = 461, + [722] = 503, + [723] = 504, + [724] = 462, + [725] = 506, + [726] = 464, + [727] = 508, + [728] = 466, [729] = 510, - [730] = 512, - [731] = 514, - [732] = 514, - [733] = 512, - [734] = 510, - [735] = 498, - [736] = 507, - [737] = 501, + [730] = 481, + [731] = 482, + [732] = 513, + [733] = 514, + [734] = 483, + [735] = 516, + [736] = 517, + [737] = 518, [738] = 519, [739] = 520, - [740] = 523, - [741] = 493, - [742] = 524, - [743] = 452, - [744] = 530, - [745] = 487, - [746] = 484, - [747] = 482, - [748] = 498, - [749] = 454, - [750] = 531, - [751] = 533, - [752] = 534, - [753] = 518, - [754] = 517, - [755] = 455, - [756] = 591, - [757] = 456, - [758] = 496, - [759] = 457, - [760] = 494, - [761] = 458, - [762] = 492, - [763] = 459, - [764] = 490, - [765] = 460, - [766] = 488, - [767] = 485, - [768] = 531, - [769] = 483, - [770] = 481, - [771] = 461, - [772] = 462, - [773] = 463, - [774] = 464, - [775] = 465, - [776] = 466, - [777] = 467, - [778] = 468, - [779] = 469, - [780] = 470, - [781] = 471, - [782] = 472, - [783] = 473, - [784] = 533, - [785] = 480, - [786] = 453, - [787] = 478, - [788] = 477, - [789] = 476, - [790] = 475, - [791] = 474, - [792] = 475, - [793] = 474, - [794] = 534, + [740] = 521, + [741] = 523, + [742] = 453, + [743] = 454, + [744] = 457, + [745] = 458, + [746] = 460, + [747] = 463, + [748] = 465, + [749] = 467, + [750] = 469, + [751] = 475, + [752] = 468, + [753] = 455, + [754] = 456, + [755] = 459, + [756] = 461, + [757] = 462, + [758] = 464, + [759] = 466, + [760] = 468, + [761] = 470, + [762] = 471, + [763] = 472, + [764] = 473, + [765] = 474, + [766] = 476, + [767] = 478, + [768] = 477, + [769] = 480, + [770] = 487, + [771] = 488, + [772] = 490, + [773] = 492, + [774] = 494, + [775] = 495, + [776] = 496, + [777] = 497, + [778] = 452, + [779] = 500, + [780] = 502, + [781] = 503, + [782] = 504, + [783] = 506, + [784] = 508, + [785] = 510, + [786] = 481, + [787] = 482, + [788] = 513, + [789] = 514, + [790] = 470, + [791] = 471, + [792] = 472, + [793] = 483, + [794] = 516, [795] = 473, - [796] = 472, - [797] = 471, - [798] = 470, - [799] = 469, - [800] = 468, - [801] = 467, - [802] = 466, - [803] = 476, - [804] = 465, - [805] = 477, - [806] = 464, - [807] = 478, - [808] = 463, - [809] = 487, - [810] = 461, - [811] = 480, - [812] = 454, - [813] = 481, - [814] = 460, - [815] = 483, - [816] = 459, - [817] = 485, - [818] = 458, - [819] = 488, - [820] = 457, - [821] = 490, - [822] = 456, - [823] = 492, - [824] = 455, - [825] = 494, - [826] = 454, - [827] = 496, - [828] = 498, - [829] = 498, - [830] = 482, - [831] = 484, - [832] = 487, - [833] = 493, - [834] = 501, - [835] = 510, - [836] = 512, - [837] = 514, - [838] = 507, - [839] = 519, - [840] = 520, - [841] = 517, - [842] = 518, - [843] = 523, - [844] = 524, - [845] = 452, - [846] = 530, - [847] = 531, - [848] = 533, - [849] = 534, - [850] = 518, - [851] = 517, - [852] = 482, - [853] = 496, - [854] = 494, - [855] = 492, - [856] = 490, - [857] = 488, - [858] = 485, - [859] = 483, - [860] = 481, - [861] = 480, - [862] = 453, - [863] = 478, - [864] = 477, - [865] = 476, - [866] = 484, - [867] = 487, - [868] = 534, - [869] = 533, - [870] = 475, - [871] = 474, - [872] = 474, - [873] = 531, - [874] = 593, - [875] = 594, - [876] = 530, - [877] = 456, - [878] = 473, - [879] = 452, - [880] = 472, - [881] = 524, - [882] = 523, - [883] = 520, - [884] = 493, - [885] = 471, - [886] = 519, - [887] = 507, - [888] = 470, - [889] = 469, - [890] = 468, - [891] = 514, - [892] = 467, - [893] = 512, - [894] = 510, - [895] = 466, - [896] = 465, - [897] = 501, - [898] = 464, - [899] = 463, - [900] = 461, - [901] = 493, - [902] = 476, - [903] = 460, - [904] = 459, - [905] = 487, - [906] = 484, - [907] = 482, - [908] = 498, - [909] = 454, - [910] = 458, - [911] = 518, - [912] = 517, - [913] = 457, - [914] = 456, - [915] = 455, - [916] = 455, - [917] = 456, - [918] = 454, - [919] = 457, - [920] = 498, - [921] = 458, - [922] = 482, - [923] = 459, - [924] = 484, - [925] = 460, - [926] = 487, - [927] = 493, - [928] = 501, - [929] = 475, - [930] = 510, - [931] = 461, - [932] = 463, - [933] = 464, - [934] = 465, - [935] = 466, - [936] = 467, - [937] = 468, - [938] = 469, - [939] = 470, - [940] = 471, - [941] = 472, - [942] = 473, - [943] = 512, - [944] = 514, - [945] = 457, - [946] = 507, - [947] = 519, - [948] = 477, - [949] = 520, - [950] = 474, - [951] = 475, - [952] = 501, - [953] = 496, - [954] = 523, - [955] = 494, - [956] = 524, - [957] = 492, - [958] = 478, - [959] = 490, - [960] = 452, - [961] = 488, - [962] = 476, - [963] = 530, - [964] = 477, - [965] = 485, - [966] = 478, - [967] = 531, - [968] = 453, - [969] = 483, - [970] = 480, - [971] = 476, - [972] = 481, - [973] = 481, - [974] = 483, - [975] = 477, - [976] = 485, - [977] = 480, - [978] = 488, - [979] = 478, - [980] = 490, - [981] = 453, - [982] = 492, - [983] = 533, - [984] = 494, - [985] = 478, - [986] = 496, - [987] = 534, - [988] = 477, - [989] = 453, - [990] = 480, - [991] = 476, - [992] = 481, - [993] = 483, - [994] = 458, - [995] = 485, - [996] = 488, - [997] = 490, - [998] = 492, - [999] = 494, - [1000] = 517, - [1001] = 518, - [1002] = 496, - [1003] = 518, - [1004] = 517, - [1005] = 453, - [1006] = 517, - [1007] = 475, + [796] = 517, + [797] = 518, + [798] = 474, + [799] = 519, + [800] = 520, + [801] = 476, + [802] = 478, + [803] = 521, + [804] = 523, + [805] = 453, + [806] = 454, + [807] = 457, + [808] = 458, + [809] = 460, + [810] = 463, + [811] = 465, + [812] = 467, + [813] = 469, + [814] = 475, + [815] = 455, + [816] = 456, + [817] = 459, + [818] = 461, + [819] = 477, + [820] = 462, + [821] = 480, + [822] = 464, + [823] = 466, + [824] = 468, + [825] = 470, + [826] = 471, + [827] = 472, + [828] = 473, + [829] = 474, + [830] = 476, + [831] = 478, + [832] = 466, + [833] = 477, + [834] = 480, + [835] = 487, + [836] = 488, + [837] = 490, + [838] = 492, + [839] = 487, + [840] = 488, + [841] = 494, + [842] = 495, + [843] = 490, + [844] = 492, + [845] = 496, + [846] = 497, + [847] = 494, + [848] = 495, + [849] = 496, + [850] = 497, + [851] = 452, + [852] = 500, + [853] = 452, + [854] = 500, + [855] = 502, + [856] = 503, + [857] = 504, + [858] = 502, + [859] = 506, + [860] = 503, + [861] = 504, + [862] = 508, + [863] = 510, + [864] = 481, + [865] = 482, + [866] = 513, + [867] = 514, + [868] = 483, + [869] = 516, + [870] = 517, + [871] = 518, + [872] = 519, + [873] = 520, + [874] = 521, + [875] = 523, + [876] = 453, + [877] = 454, + [878] = 457, + [879] = 458, + [880] = 460, + [881] = 463, + [882] = 465, + [883] = 467, + [884] = 469, + [885] = 475, + [886] = 506, + [887] = 455, + [888] = 456, + [889] = 459, + [890] = 461, + [891] = 462, + [892] = 464, + [893] = 466, + [894] = 468, + [895] = 470, + [896] = 471, + [897] = 472, + [898] = 473, + [899] = 474, + [900] = 476, + [901] = 478, + [902] = 477, + [903] = 480, + [904] = 487, + [905] = 488, + [906] = 490, + [907] = 492, + [908] = 494, + [909] = 495, + [910] = 496, + [911] = 497, + [912] = 452, + [913] = 500, + [914] = 502, + [915] = 503, + [916] = 504, + [917] = 506, + [918] = 508, + [919] = 510, + [920] = 481, + [921] = 482, + [922] = 513, + [923] = 514, + [924] = 483, + [925] = 516, + [926] = 517, + [927] = 518, + [928] = 519, + [929] = 520, + [930] = 521, + [931] = 523, + [932] = 453, + [933] = 454, + [934] = 457, + [935] = 458, + [936] = 460, + [937] = 463, + [938] = 465, + [939] = 467, + [940] = 469, + [941] = 475, + [942] = 455, + [943] = 456, + [944] = 459, + [945] = 461, + [946] = 462, + [947] = 464, + [948] = 466, + [949] = 468, + [950] = 470, + [951] = 471, + [952] = 472, + [953] = 473, + [954] = 474, + [955] = 476, + [956] = 478, + [957] = 477, + [958] = 480, + [959] = 487, + [960] = 488, + [961] = 490, + [962] = 492, + [963] = 494, + [964] = 495, + [965] = 496, + [966] = 497, + [967] = 452, + [968] = 500, + [969] = 502, + [970] = 503, + [971] = 504, + [972] = 506, + [973] = 508, + [974] = 508, + [975] = 479, + [976] = 491, + [977] = 493, + [978] = 510, + [979] = 481, + [980] = 507, + [981] = 482, + [982] = 513, + [983] = 514, + [984] = 468, + [985] = 470, + [986] = 471, + [987] = 483, + [988] = 479, + [989] = 491, + [990] = 493, + [991] = 507, + [992] = 516, + [993] = 472, + [994] = 517, + [995] = 479, + [996] = 491, + [997] = 493, + [998] = 507, + [999] = 518, + [1000] = 473, + [1001] = 519, + [1002] = 479, + [1003] = 491, + [1004] = 493, + [1005] = 507, + [1006] = 510, + [1007] = 520, [1008] = 474, - [1009] = 598, - [1010] = 510, - [1011] = 496, - [1012] = 494, - [1013] = 518, - [1014] = 512, - [1015] = 473, - [1016] = 472, - [1017] = 471, - [1018] = 470, - [1019] = 492, - [1020] = 469, - [1021] = 468, - [1022] = 490, - [1023] = 467, - [1024] = 466, - [1025] = 465, - [1026] = 534, - [1027] = 533, - [1028] = 464, - [1029] = 463, - [1030] = 462, - [1031] = 531, - [1032] = 530, - [1033] = 461, - [1034] = 488, - [1035] = 485, - [1036] = 459, - [1037] = 524, - [1038] = 523, - [1039] = 520, - [1040] = 483, - [1041] = 519, - [1042] = 507, - [1043] = 481, - [1044] = 460, - [1045] = 480, - [1046] = 514, + [1009] = 521, + [1010] = 479, + [1011] = 491, + [1012] = 493, + [1013] = 507, + [1014] = 476, + [1015] = 522, + [1016] = 478, + [1017] = 521, + [1018] = 479, + [1019] = 491, + [1020] = 493, + [1021] = 507, + [1022] = 522, + [1023] = 523, + [1024] = 453, + [1025] = 454, + [1026] = 479, + [1027] = 491, + [1028] = 493, + [1029] = 507, + [1030] = 457, + [1031] = 458, + [1032] = 460, + [1033] = 463, + [1034] = 479, + [1035] = 491, + [1036] = 493, + [1037] = 507, + [1038] = 465, + [1039] = 467, + [1040] = 469, + [1041] = 475, + [1042] = 479, + [1043] = 491, + [1044] = 493, + [1045] = 507, + [1046] = 523, [1047] = 1047, [1048] = 1048, [1049] = 1049, @@ -2380,1024 +2380,1024 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1051] = 1051, [1052] = 1052, [1053] = 1053, - [1054] = 1052, - [1055] = 1049, - [1056] = 1048, - [1057] = 1051, - [1058] = 1052, + [1054] = 1047, + [1055] = 1055, + [1056] = 1051, + [1057] = 1053, + [1058] = 1050, [1059] = 1048, - [1060] = 1052, - [1061] = 1048, - [1062] = 1062, + [1060] = 1053, + [1061] = 1050, + [1062] = 1048, [1063] = 1047, - [1064] = 1053, + [1064] = 1051, [1065] = 1053, - [1066] = 1049, - [1067] = 1053, - [1068] = 1052, - [1069] = 1062, - [1070] = 1048, - [1071] = 1052, + [1066] = 1050, + [1067] = 1048, + [1068] = 1047, + [1069] = 1051, + [1070] = 1053, + [1071] = 1050, [1072] = 1048, - [1073] = 1052, - [1074] = 1048, - [1075] = 1052, - [1076] = 1048, - [1077] = 1052, - [1078] = 1048, - [1079] = 1052, - [1080] = 1048, - [1081] = 1053, - [1082] = 1049, + [1073] = 1047, + [1074] = 1051, + [1075] = 1053, + [1076] = 1050, + [1077] = 1048, + [1078] = 1047, + [1079] = 1051, + [1080] = 1053, + [1081] = 1050, + [1082] = 1048, [1083] = 1047, [1084] = 1051, - [1085] = 1062, - [1086] = 1047, - [1087] = 1053, - [1088] = 1049, - [1089] = 1053, - [1090] = 1062, - [1091] = 1049, - [1092] = 1047, - [1093] = 1051, - [1094] = 1049, - [1095] = 1062, - [1096] = 1047, - [1097] = 1062, - [1098] = 1051, - [1099] = 1051, + [1085] = 1053, + [1086] = 1050, + [1087] = 1048, + [1088] = 1047, + [1089] = 1051, + [1090] = 1053, + [1091] = 1050, + [1092] = 1048, + [1093] = 1047, + [1094] = 1051, + [1095] = 1053, + [1096] = 1050, + [1097] = 1048, + [1098] = 1047, + [1099] = 1052, [1100] = 1049, - [1101] = 1053, - [1102] = 1047, - [1103] = 1062, - [1104] = 1051, - [1105] = 1062, - [1106] = 1051, - [1107] = 1047, - [1108] = 1047, - [1109] = 1062, - [1110] = 1051, - [1111] = 1049, - [1112] = 1053, - [1113] = 1047, - [1114] = 1062, - [1115] = 1051, + [1101] = 1052, + [1102] = 1049, + [1103] = 1052, + [1104] = 1049, + [1105] = 1052, + [1106] = 1049, + [1107] = 1052, + [1108] = 1049, + [1109] = 1052, + [1110] = 1049, + [1111] = 1052, + [1112] = 1049, + [1113] = 1052, + [1114] = 1049, + [1115] = 1052, [1116] = 1049, - [1117] = 1053, - [1118] = 244, - [1119] = 245, + [1117] = 1051, + [1118] = 246, + [1119] = 246, [1120] = 244, - [1121] = 245, + [1121] = 246, [1122] = 244, - [1123] = 245, + [1123] = 244, [1124] = 244, - [1125] = 244, - [1126] = 245, - [1127] = 244, - [1128] = 245, - [1129] = 245, - [1130] = 253, - [1131] = 253, - [1132] = 253, - [1133] = 253, - [1134] = 253, - [1135] = 304, - [1136] = 253, - [1137] = 304, - [1138] = 304, - [1139] = 5, - [1140] = 3, - [1141] = 5, - [1142] = 2, - [1143] = 4, - [1144] = 3, - [1145] = 2, - [1146] = 5, - [1147] = 4, - [1148] = 3, - [1149] = 2, - [1150] = 5, - [1151] = 4, - [1152] = 304, - [1153] = 2, - [1154] = 2, - [1155] = 3, - [1156] = 4, - [1157] = 304, - [1158] = 304, + [1125] = 246, + [1126] = 246, + [1127] = 246, + [1128] = 244, + [1129] = 244, + [1130] = 252, + [1131] = 252, + [1132] = 252, + [1133] = 307, + [1134] = 307, + [1135] = 252, + [1136] = 252, + [1137] = 252, + [1138] = 307, + [1139] = 3, + [1140] = 4, + [1141] = 2, + [1142] = 5, + [1143] = 3, + [1144] = 4, + [1145] = 307, + [1146] = 2, + [1147] = 307, + [1148] = 307, + [1149] = 5, + [1150] = 3, + [1151] = 2, + [1152] = 5, + [1153] = 3, + [1154] = 4, + [1155] = 4, + [1156] = 2, + [1157] = 5, + [1158] = 2, [1159] = 5, - [1160] = 4, - [1161] = 2, - [1162] = 3, - [1163] = 3, + [1160] = 3, + [1161] = 4, + [1162] = 2, + [1163] = 5, [1164] = 4, - [1165] = 5, - [1166] = 53, - [1167] = 64, - [1168] = 44, - [1169] = 45, - [1170] = 43, - [1171] = 70, - [1172] = 69, - [1173] = 68, - [1174] = 67, - [1175] = 66, - [1176] = 65, - [1177] = 18, - [1178] = 63, - [1179] = 46, - [1180] = 47, - [1181] = 24, - [1182] = 29, - [1183] = 62, - [1184] = 52, - [1185] = 51, - [1186] = 26, - [1187] = 30, - [1188] = 48, - [1189] = 49, - [1190] = 23, - [1191] = 50, - [1192] = 50, - [1193] = 27, - [1194] = 49, - [1195] = 51, - [1196] = 48, - [1197] = 47, - [1198] = 52, - [1199] = 53, - [1200] = 62, - [1201] = 46, - [1202] = 63, - [1203] = 45, - [1204] = 44, - [1205] = 18, - [1206] = 65, - [1207] = 43, - [1208] = 66, - [1209] = 67, - [1210] = 68, - [1211] = 42, - [1212] = 69, - [1213] = 70, - [1214] = 41, - [1215] = 31, - [1216] = 32, - [1217] = 25, - [1218] = 28, - [1219] = 33, - [1220] = 40, - [1221] = 39, + [1165] = 3, + [1166] = 21, + [1167] = 45, + [1168] = 46, + [1169] = 47, + [1170] = 48, + [1171] = 49, + [1172] = 50, + [1173] = 51, + [1174] = 52, + [1175] = 53, + [1176] = 33, + [1177] = 54, + [1178] = 55, + [1179] = 56, + [1180] = 57, + [1181] = 58, + [1182] = 59, + [1183] = 60, + [1184] = 61, + [1185] = 62, + [1186] = 18, + [1187] = 64, + [1188] = 65, + [1189] = 66, + [1190] = 67, + [1191] = 68, + [1192] = 69, + [1193] = 70, + [1194] = 66, + [1195] = 67, + [1196] = 71, + [1197] = 72, + [1198] = 73, + [1199] = 74, + [1200] = 19, + [1201] = 20, + [1202] = 34, + [1203] = 22, + [1204] = 23, + [1205] = 24, + [1206] = 25, + [1207] = 26, + [1208] = 27, + [1209] = 28, + [1210] = 35, + [1211] = 29, + [1212] = 30, + [1213] = 31, + [1214] = 32, + [1215] = 36, + [1216] = 33, + [1217] = 37, + [1218] = 34, + [1219] = 35, + [1220] = 36, + [1221] = 37, [1222] = 38, - [1223] = 37, - [1224] = 34, - [1225] = 35, - [1226] = 36, - [1227] = 37, - [1228] = 38, - [1229] = 39, - [1230] = 40, - [1231] = 41, - [1232] = 42, - [1233] = 21, - [1234] = 36, - [1235] = 22, - [1236] = 35, - [1237] = 20, - [1238] = 73, + [1223] = 39, + [1224] = 40, + [1225] = 41, + [1226] = 42, + [1227] = 43, + [1228] = 44, + [1229] = 45, + [1230] = 46, + [1231] = 47, + [1232] = 48, + [1233] = 49, + [1234] = 50, + [1235] = 51, + [1236] = 52, + [1237] = 53, + [1238] = 54, [1239] = 55, - [1240] = 34, - [1241] = 33, - [1242] = 32, - [1243] = 56, - [1244] = 57, - [1245] = 58, - [1246] = 59, - [1247] = 60, - [1248] = 61, - [1249] = 31, - [1250] = 30, - [1251] = 29, - [1252] = 28, - [1253] = 27, - [1254] = 26, - [1255] = 25, - [1256] = 24, - [1257] = 23, - [1258] = 64, - [1259] = 22, - [1260] = 74, - [1261] = 19, - [1262] = 72, - [1263] = 71, - [1264] = 21, - [1265] = 20, - [1266] = 73, - [1267] = 55, - [1268] = 56, - [1269] = 57, - [1270] = 58, - [1271] = 59, - [1272] = 60, - [1273] = 61, - [1274] = 64, - [1275] = 74, - [1276] = 19, - [1277] = 72, - [1278] = 71, - [1279] = 70, - [1280] = 69, - [1281] = 68, - [1282] = 67, - [1283] = 66, - [1284] = 65, - [1285] = 18, - [1286] = 63, - [1287] = 62, - [1288] = 53, - [1289] = 52, - [1290] = 51, - [1291] = 50, - [1292] = 49, - [1293] = 48, - [1294] = 47, - [1295] = 46, - [1296] = 45, - [1297] = 44, - [1298] = 43, - [1299] = 42, - [1300] = 41, - [1301] = 40, - [1302] = 39, - [1303] = 38, - [1304] = 37, - [1305] = 36, - [1306] = 35, - [1307] = 34, - [1308] = 33, - [1309] = 32, - [1310] = 31, - [1311] = 30, - [1312] = 29, - [1313] = 28, + [1240] = 56, + [1241] = 57, + [1242] = 58, + [1243] = 59, + [1244] = 60, + [1245] = 61, + [1246] = 62, + [1247] = 18, + [1248] = 64, + [1249] = 65, + [1250] = 38, + [1251] = 39, + [1252] = 40, + [1253] = 41, + [1254] = 44, + [1255] = 43, + [1256] = 44, + [1257] = 45, + [1258] = 46, + [1259] = 47, + [1260] = 48, + [1261] = 49, + [1262] = 50, + [1263] = 68, + [1264] = 51, + [1265] = 52, + [1266] = 53, + [1267] = 54, + [1268] = 69, + [1269] = 55, + [1270] = 56, + [1271] = 57, + [1272] = 58, + [1273] = 59, + [1274] = 60, + [1275] = 71, + [1276] = 61, + [1277] = 62, + [1278] = 18, + [1279] = 64, + [1280] = 65, + [1281] = 70, + [1282] = 72, + [1283] = 73, + [1284] = 74, + [1285] = 19, + [1286] = 20, + [1287] = 21, + [1288] = 22, + [1289] = 23, + [1290] = 66, + [1291] = 67, + [1292] = 68, + [1293] = 69, + [1294] = 70, + [1295] = 24, + [1296] = 25, + [1297] = 26, + [1298] = 27, + [1299] = 28, + [1300] = 29, + [1301] = 71, + [1302] = 30, + [1303] = 72, + [1304] = 73, + [1305] = 74, + [1306] = 19, + [1307] = 20, + [1308] = 21, + [1309] = 22, + [1310] = 23, + [1311] = 24, + [1312] = 25, + [1313] = 26, [1314] = 27, - [1315] = 26, - [1316] = 25, - [1317] = 24, - [1318] = 23, - [1319] = 22, - [1320] = 21, - [1321] = 20, - [1322] = 73, - [1323] = 55, - [1324] = 61, - [1325] = 58, - [1326] = 71, - [1327] = 57, - [1328] = 72, - [1329] = 56, - [1330] = 19, - [1331] = 60, - [1332] = 74, - [1333] = 59, - [1334] = 1334, - [1335] = 1335, - [1336] = 57, - [1337] = 56, - [1338] = 36, - [1339] = 37, - [1340] = 70, - [1341] = 69, - [1342] = 68, - [1343] = 67, - [1344] = 66, - [1345] = 38, - [1346] = 1346, - [1347] = 73, - [1348] = 20, - [1349] = 21, - [1350] = 22, - [1351] = 23, - [1352] = 24, - [1353] = 25, - [1354] = 65, - [1355] = 18, - [1356] = 26, - [1357] = 27, - [1358] = 28, - [1359] = 29, - [1360] = 30, + [1315] = 28, + [1316] = 31, + [1317] = 29, + [1318] = 30, + [1319] = 31, + [1320] = 32, + [1321] = 33, + [1322] = 32, + [1323] = 34, + [1324] = 35, + [1325] = 36, + [1326] = 37, + [1327] = 38, + [1328] = 39, + [1329] = 40, + [1330] = 41, + [1331] = 42, + [1332] = 43, + [1333] = 42, + [1334] = 68, + [1335] = 53, + [1336] = 36, + [1337] = 37, + [1338] = 38, + [1339] = 39, + [1340] = 40, + [1341] = 41, + [1342] = 42, + [1343] = 43, + [1344] = 44, + [1345] = 54, + [1346] = 45, + [1347] = 46, + [1348] = 47, + [1349] = 48, + [1350] = 55, + [1351] = 56, + [1352] = 57, + [1353] = 58, + [1354] = 59, + [1355] = 60, + [1356] = 49, + [1357] = 59, + [1358] = 50, + [1359] = 1359, + [1360] = 52, [1361] = 1361, - [1362] = 1362, - [1363] = 1363, - [1364] = 1364, - [1365] = 63, - [1366] = 62, - [1367] = 53, - [1368] = 1364, - [1369] = 52, - [1370] = 51, - [1371] = 50, - [1372] = 1346, - [1373] = 37, - [1374] = 39, - [1375] = 48, - [1376] = 1362, - [1377] = 1364, - [1378] = 1362, - [1379] = 1364, - [1380] = 58, - [1381] = 47, - [1382] = 1362, - [1383] = 46, - [1384] = 1364, - [1385] = 1362, - [1386] = 40, - [1387] = 1335, - [1388] = 41, - [1389] = 46, - [1390] = 47, - [1391] = 1364, - [1392] = 46, - [1393] = 31, - [1394] = 32, - [1395] = 33, - [1396] = 55, - [1397] = 42, - [1398] = 1398, - [1399] = 70, - [1400] = 43, - [1401] = 44, - [1402] = 69, - [1403] = 68, - [1404] = 67, - [1405] = 66, - [1406] = 65, - [1407] = 18, - [1408] = 63, - [1409] = 62, - [1410] = 53, - [1411] = 52, - [1412] = 51, - [1413] = 50, - [1414] = 49, - [1415] = 45, - [1416] = 34, - [1417] = 1361, - [1418] = 1334, - [1419] = 48, - [1420] = 1362, - [1421] = 1364, - [1422] = 45, - [1423] = 33, - [1424] = 32, - [1425] = 48, - [1426] = 59, - [1427] = 47, - [1428] = 44, - [1429] = 43, - [1430] = 1362, - [1431] = 42, - [1432] = 1364, - [1433] = 41, - [1434] = 40, - [1435] = 39, - [1436] = 38, - [1437] = 1362, - [1438] = 1334, - [1439] = 1364, - [1440] = 1361, - [1441] = 31, - [1442] = 1346, - [1443] = 49, - [1444] = 1398, - [1445] = 71, - [1446] = 72, - [1447] = 1362, - [1448] = 19, - [1449] = 45, - [1450] = 74, - [1451] = 44, - [1452] = 1335, - [1453] = 43, - [1454] = 1363, - [1455] = 1364, - [1456] = 50, - [1457] = 64, - [1458] = 49, - [1459] = 51, - [1460] = 1363, - [1461] = 52, - [1462] = 1334, - [1463] = 1362, - [1464] = 60, + [1362] = 23, + [1363] = 60, + [1364] = 69, + [1365] = 54, + [1366] = 51, + [1367] = 52, + [1368] = 53, + [1369] = 70, + [1370] = 54, + [1371] = 1371, + [1372] = 61, + [1373] = 55, + [1374] = 56, + [1375] = 24, + [1376] = 62, + [1377] = 18, + [1378] = 57, + [1379] = 58, + [1380] = 59, + [1381] = 60, + [1382] = 61, + [1383] = 62, + [1384] = 18, + [1385] = 64, + [1386] = 25, + [1387] = 65, + [1388] = 55, + [1389] = 64, + [1390] = 65, + [1391] = 56, + [1392] = 71, + [1393] = 72, + [1394] = 73, + [1395] = 26, + [1396] = 74, + [1397] = 19, + [1398] = 20, + [1399] = 1399, + [1400] = 21, + [1401] = 22, + [1402] = 1402, + [1403] = 23, + [1404] = 24, + [1405] = 25, + [1406] = 26, + [1407] = 27, + [1408] = 28, + [1409] = 29, + [1410] = 61, + [1411] = 30, + [1412] = 62, + [1413] = 57, + [1414] = 31, + [1415] = 1415, + [1416] = 58, + [1417] = 1417, + [1418] = 32, + [1419] = 33, + [1420] = 27, + [1421] = 71, + [1422] = 28, + [1423] = 29, + [1424] = 72, + [1425] = 30, + [1426] = 73, + [1427] = 74, + [1428] = 19, + [1429] = 31, + [1430] = 20, + [1431] = 32, + [1432] = 21, + [1433] = 33, + [1434] = 66, + [1435] = 22, + [1436] = 23, + [1437] = 67, + [1438] = 66, + [1439] = 34, + [1440] = 24, + [1441] = 35, + [1442] = 25, + [1443] = 68, + [1444] = 26, + [1445] = 1445, + [1446] = 27, + [1447] = 69, + [1448] = 18, + [1449] = 67, + [1450] = 64, + [1451] = 65, + [1452] = 1359, + [1453] = 1371, + [1454] = 1402, + [1455] = 36, + [1456] = 37, + [1457] = 1457, + [1458] = 68, + [1459] = 38, + [1460] = 39, + [1461] = 1399, + [1462] = 40, + [1463] = 69, + [1464] = 41, [1465] = 42, - [1466] = 41, - [1467] = 1335, - [1468] = 1398, - [1469] = 53, - [1470] = 1361, - [1471] = 1334, - [1472] = 1361, - [1473] = 1363, - [1474] = 62, - [1475] = 61, - [1476] = 1335, - [1477] = 63, - [1478] = 1363, - [1479] = 1398, - [1480] = 18, - [1481] = 65, - [1482] = 1398, - [1483] = 67, - [1484] = 1361, - [1485] = 68, - [1486] = 69, - [1487] = 1334, - [1488] = 70, - [1489] = 36, - [1490] = 1363, - [1491] = 40, - [1492] = 39, - [1493] = 1335, - [1494] = 1363, - [1495] = 66, - [1496] = 38, - [1497] = 37, - [1498] = 61, - [1499] = 1335, - [1500] = 36, - [1501] = 60, - [1502] = 35, - [1503] = 34, - [1504] = 33, - [1505] = 1398, - [1506] = 32, - [1507] = 31, - [1508] = 59, - [1509] = 1398, - [1510] = 58, - [1511] = 30, - [1512] = 1361, - [1513] = 1334, - [1514] = 57, - [1515] = 1361, - [1516] = 56, - [1517] = 1363, - [1518] = 29, - [1519] = 1398, - [1520] = 64, - [1521] = 35, - [1522] = 28, - [1523] = 74, - [1524] = 71, - [1525] = 1398, - [1526] = 55, - [1527] = 1361, - [1528] = 1334, - [1529] = 73, - [1530] = 27, - [1531] = 1335, - [1532] = 26, - [1533] = 1363, - [1534] = 72, - [1535] = 30, - [1536] = 20, - [1537] = 29, - [1538] = 19, - [1539] = 28, - [1540] = 74, - [1541] = 27, - [1542] = 19, - [1543] = 26, - [1544] = 1363, - [1545] = 25, - [1546] = 64, - [1547] = 25, - [1548] = 24, - [1549] = 1334, - [1550] = 1361, - [1551] = 23, - [1552] = 22, - [1553] = 21, - [1554] = 20, - [1555] = 73, - [1556] = 55, - [1557] = 21, - [1558] = 24, - [1559] = 1398, - [1560] = 56, - [1561] = 57, - [1562] = 58, - [1563] = 59, - [1564] = 23, - [1565] = 22, - [1566] = 1335, - [1567] = 34, - [1568] = 1334, - [1569] = 72, - [1570] = 60, - [1571] = 35, - [1572] = 61, - [1573] = 1573, - [1574] = 71, - [1575] = 1335, - [1576] = 297, - [1577] = 295, - [1578] = 297, - [1579] = 296, - [1580] = 296, - [1581] = 297, - [1582] = 1582, - [1583] = 288, - [1584] = 295, - [1585] = 286, - [1586] = 296, + [1466] = 35, + [1467] = 28, + [1468] = 43, + [1469] = 70, + [1470] = 44, + [1471] = 1359, + [1472] = 1371, + [1473] = 1402, + [1474] = 1457, + [1475] = 1399, + [1476] = 1359, + [1477] = 1371, + [1478] = 1402, + [1479] = 45, + [1480] = 1457, + [1481] = 46, + [1482] = 1399, + [1483] = 47, + [1484] = 48, + [1485] = 1359, + [1486] = 1371, + [1487] = 1402, + [1488] = 1457, + [1489] = 1399, + [1490] = 1359, + [1491] = 1371, + [1492] = 49, + [1493] = 1402, + [1494] = 1457, + [1495] = 1399, + [1496] = 50, + [1497] = 1359, + [1498] = 1371, + [1499] = 1402, + [1500] = 71, + [1501] = 1457, + [1502] = 1399, + [1503] = 72, + [1504] = 1359, + [1505] = 1371, + [1506] = 1402, + [1507] = 73, + [1508] = 74, + [1509] = 1457, + [1510] = 19, + [1511] = 1399, + [1512] = 20, + [1513] = 1359, + [1514] = 1371, + [1515] = 1402, + [1516] = 34, + [1517] = 1457, + [1518] = 1399, + [1519] = 51, + [1520] = 52, + [1521] = 1359, + [1522] = 1371, + [1523] = 1402, + [1524] = 1457, + [1525] = 1399, + [1526] = 29, + [1527] = 35, + [1528] = 1417, + [1529] = 70, + [1530] = 21, + [1531] = 1415, + [1532] = 30, + [1533] = 53, + [1534] = 22, + [1535] = 66, + [1536] = 1457, + [1537] = 31, + [1538] = 1417, + [1539] = 36, + [1540] = 1415, + [1541] = 32, + [1542] = 37, + [1543] = 38, + [1544] = 1417, + [1545] = 33, + [1546] = 1415, + [1547] = 39, + [1548] = 40, + [1549] = 1417, + [1550] = 41, + [1551] = 1415, + [1552] = 1361, + [1553] = 42, + [1554] = 43, + [1555] = 1417, + [1556] = 1415, + [1557] = 44, + [1558] = 45, + [1559] = 46, + [1560] = 1417, + [1561] = 47, + [1562] = 1415, + [1563] = 48, + [1564] = 1417, + [1565] = 1415, + [1566] = 1417, + [1567] = 1415, + [1568] = 1417, + [1569] = 1415, + [1570] = 49, + [1571] = 50, + [1572] = 67, + [1573] = 34, + [1574] = 51, + [1575] = 1361, + [1576] = 289, + [1577] = 286, + [1578] = 287, + [1579] = 288, + [1580] = 286, + [1581] = 298, + [1582] = 299, + [1583] = 298, + [1584] = 299, + [1585] = 1585, + [1586] = 294, [1587] = 295, - [1588] = 293, - [1589] = 289, - [1590] = 293, - [1591] = 288, - [1592] = 288, - [1593] = 285, - [1594] = 286, - [1595] = 284, - [1596] = 289, - [1597] = 285, - [1598] = 286, - [1599] = 284, - [1600] = 289, - [1601] = 293, - [1602] = 285, - [1603] = 284, - [1604] = 304, - [1605] = 289, + [1588] = 294, + [1589] = 295, + [1590] = 284, + [1591] = 284, + [1592] = 286, + [1593] = 287, + [1594] = 288, + [1595] = 289, + [1596] = 294, + [1597] = 295, + [1598] = 299, + [1599] = 287, + [1600] = 298, + [1601] = 284, + [1602] = 288, + [1603] = 289, + [1604] = 288, + [1605] = 294, [1606] = 295, - [1607] = 295, - [1608] = 1608, - [1609] = 293, - [1610] = 285, - [1611] = 288, - [1612] = 284, - [1613] = 286, - [1614] = 289, - [1615] = 296, - [1616] = 297, - [1617] = 284, - [1618] = 285, - [1619] = 297, - [1620] = 1608, - [1621] = 289, - [1622] = 1608, - [1623] = 296, - [1624] = 293, - [1625] = 288, - [1626] = 295, - [1627] = 293, - [1628] = 296, + [1607] = 286, + [1608] = 286, + [1609] = 307, + [1610] = 287, + [1611] = 289, + [1612] = 298, + [1613] = 298, + [1614] = 299, + [1615] = 299, + [1616] = 284, + [1617] = 298, + [1618] = 299, + [1619] = 286, + [1620] = 287, + [1621] = 284, + [1622] = 294, + [1623] = 295, + [1624] = 288, + [1625] = 289, + [1626] = 287, + [1627] = 1627, + [1628] = 1627, [1629] = 288, - [1630] = 286, - [1631] = 286, - [1632] = 285, - [1633] = 297, - [1634] = 284, - [1635] = 327, - [1636] = 1636, - [1637] = 350, - [1638] = 336, - [1639] = 337, - [1640] = 338, + [1630] = 1627, + [1631] = 295, + [1632] = 289, + [1633] = 284, + [1634] = 294, + [1635] = 353, + [1636] = 337, + [1637] = 340, + [1638] = 363, + [1639] = 328, + [1640] = 329, [1641] = 340, - [1642] = 341, - [1643] = 343, - [1644] = 336, - [1645] = 344, - [1646] = 348, - [1647] = 339, - [1648] = 345, - [1649] = 347, - [1650] = 348, - [1651] = 347, - [1652] = 334, - [1653] = 351, - [1654] = 345, - [1655] = 344, - [1656] = 328, - [1657] = 343, - [1658] = 327, - [1659] = 341, - [1660] = 356, - [1661] = 340, - [1662] = 338, - [1663] = 348, - [1664] = 337, - [1665] = 347, - [1666] = 336, + [1642] = 328, + [1643] = 341, + [1644] = 342, + [1645] = 343, + [1646] = 341, + [1647] = 342, + [1648] = 343, + [1649] = 332, + [1650] = 345, + [1651] = 335, + [1652] = 347, + [1653] = 332, + [1654] = 348, + [1655] = 349, + [1656] = 333, + [1657] = 336, + [1658] = 341, + [1659] = 345, + [1660] = 335, + [1661] = 347, + [1662] = 337, + [1663] = 342, + [1664] = 343, + [1665] = 348, + [1666] = 332, [1667] = 345, - [1668] = 330, - [1669] = 331, - [1670] = 343, - [1671] = 339, - [1672] = 342, - [1673] = 327, - [1674] = 341, - [1675] = 339, - [1676] = 342, - [1677] = 340, - [1678] = 338, - [1679] = 350, - [1680] = 351, - [1681] = 328, - [1682] = 356, - [1683] = 342, - [1684] = 350, - [1685] = 346, - [1686] = 351, - [1687] = 328, - [1688] = 344, - [1689] = 356, - [1690] = 332, - [1691] = 330, - [1692] = 331, - [1693] = 332, - [1694] = 333, - [1695] = 334, - [1696] = 335, + [1668] = 349, + [1669] = 333, + [1670] = 335, + [1671] = 347, + [1672] = 339, + [1673] = 329, + [1674] = 362, + [1675] = 336, + [1676] = 349, + [1677] = 338, + [1678] = 333, + [1679] = 330, + [1680] = 331, + [1681] = 352, + [1682] = 327, + [1683] = 338, + [1684] = 353, + [1685] = 330, + [1686] = 331, + [1687] = 327, + [1688] = 363, + [1689] = 336, + [1690] = 340, + [1691] = 337, + [1692] = 1692, + [1693] = 339, + [1694] = 1694, + [1695] = 362, + [1696] = 352, [1697] = 1697, - [1698] = 333, - [1699] = 335, - [1700] = 335, - [1701] = 334, - [1702] = 346, - [1703] = 337, - [1704] = 333, - [1705] = 1705, - [1706] = 332, + [1698] = 339, + [1699] = 362, + [1700] = 352, + [1701] = 353, + [1702] = 338, + [1703] = 363, + [1704] = 328, + [1705] = 329, + [1706] = 330, [1707] = 331, - [1708] = 330, - [1709] = 346, - [1710] = 327, - [1711] = 338, - [1712] = 344, - [1713] = 339, - [1714] = 345, - [1715] = 1715, - [1716] = 343, - [1717] = 356, - [1718] = 341, - [1719] = 1715, - [1720] = 340, - [1721] = 338, - [1722] = 337, - [1723] = 336, - [1724] = 333, - [1725] = 328, - [1726] = 348, - [1727] = 347, - [1728] = 334, - [1729] = 351, - [1730] = 345, - [1731] = 347, - [1732] = 350, - [1733] = 343, - [1734] = 348, - [1735] = 327, - [1736] = 341, - [1737] = 342, - [1738] = 348, - [1739] = 340, - [1740] = 351, - [1741] = 338, - [1742] = 339, - [1743] = 342, - [1744] = 337, - [1745] = 347, - [1746] = 345, - [1747] = 344, - [1748] = 336, - [1749] = 339, - [1750] = 1715, + [1708] = 327, + [1709] = 348, + [1710] = 353, + [1711] = 362, + [1712] = 341, + [1713] = 328, + [1714] = 329, + [1715] = 340, + [1716] = 338, + [1717] = 336, + [1718] = 362, + [1719] = 337, + [1720] = 363, + [1721] = 329, + [1722] = 341, + [1723] = 342, + [1724] = 343, + [1725] = 332, + [1726] = 352, + [1727] = 345, + [1728] = 335, + [1729] = 347, + [1730] = 353, + [1731] = 363, + [1732] = 352, + [1733] = 330, + [1734] = 330, + [1735] = 339, + [1736] = 353, + [1737] = 362, + [1738] = 352, + [1739] = 331, + [1740] = 331, + [1741] = 348, + [1742] = 338, + [1743] = 348, + [1744] = 327, + [1745] = 349, + [1746] = 327, + [1747] = 337, + [1748] = 345, + [1749] = 333, + [1750] = 338, [1751] = 328, - [1752] = 343, + [1752] = 1752, [1753] = 327, - [1754] = 341, - [1755] = 350, - [1756] = 340, - [1757] = 344, - [1758] = 346, - [1759] = 350, - [1760] = 337, - [1761] = 336, - [1762] = 330, - [1763] = 356, - [1764] = 351, - [1765] = 335, - [1766] = 335, - [1767] = 328, - [1768] = 331, - [1769] = 332, - [1770] = 342, - [1771] = 330, - [1772] = 331, - [1773] = 346, - [1774] = 334, - [1775] = 333, - [1776] = 356, - [1777] = 346, + [1754] = 349, + [1755] = 340, + [1756] = 333, + [1757] = 347, + [1758] = 340, + [1759] = 342, + [1760] = 336, + [1761] = 339, + [1762] = 337, + [1763] = 335, + [1764] = 339, + [1765] = 363, + [1766] = 343, + [1767] = 336, + [1768] = 328, + [1769] = 329, + [1770] = 341, + [1771] = 342, + [1772] = 343, + [1773] = 330, + [1774] = 332, + [1775] = 345, + [1776] = 335, + [1777] = 347, [1778] = 332, - [1779] = 332, + [1779] = 1752, [1780] = 331, - [1781] = 330, - [1782] = 335, - [1783] = 334, - [1784] = 333, + [1781] = 348, + [1782] = 349, + [1783] = 333, + [1784] = 1752, [1785] = 1785, [1786] = 1786, [1787] = 1787, - [1788] = 1787, - [1789] = 1789, - [1790] = 1789, - [1791] = 1787, - [1792] = 1789, - [1793] = 1789, - [1794] = 1789, - [1795] = 1789, - [1796] = 1789, + [1788] = 1788, + [1789] = 1788, + [1790] = 1787, + [1791] = 1788, + [1792] = 1787, + [1793] = 1788, + [1794] = 1787, + [1795] = 1787, + [1796] = 1788, [1797] = 1787, - [1798] = 1789, - [1799] = 1787, - [1800] = 1787, - [1801] = 1789, + [1798] = 1787, + [1799] = 1788, + [1800] = 1788, + [1801] = 1788, [1802] = 1787, [1803] = 1787, [1804] = 1787, - [1805] = 1787, - [1806] = 1789, + [1805] = 1788, + [1806] = 1788, [1807] = 1807, [1808] = 1808, [1809] = 1809, [1810] = 1810, [1811] = 1811, - [1812] = 1812, + [1812] = 1811, [1813] = 1813, - [1814] = 1814, + [1814] = 1813, [1815] = 1815, - [1816] = 1815, + [1816] = 1816, [1817] = 1817, [1818] = 1818, [1819] = 1819, - [1820] = 1807, - [1821] = 1821, - [1822] = 1808, + [1820] = 1808, + [1821] = 1816, + [1822] = 1807, [1823] = 1823, - [1824] = 1810, - [1825] = 1811, - [1826] = 1815, - [1827] = 1813, - [1828] = 1814, - [1829] = 1823, - [1830] = 1807, - [1831] = 1821, - [1832] = 1812, - [1833] = 1808, - [1834] = 1809, - [1835] = 1835, - [1836] = 1818, - [1837] = 1837, - [1838] = 1810, - [1839] = 1811, - [1840] = 1813, - [1841] = 1814, - [1842] = 1811, - [1843] = 1810, - [1844] = 1815, - [1845] = 1845, - [1846] = 1808, - [1847] = 1807, - [1848] = 1821, + [1824] = 1818, + [1825] = 1825, + [1826] = 1826, + [1827] = 1817, + [1828] = 1819, + [1829] = 1825, + [1830] = 1819, + [1831] = 1808, + [1832] = 1811, + [1833] = 1813, + [1834] = 1823, + [1835] = 1816, + [1836] = 1817, + [1837] = 1818, + [1838] = 1809, + [1839] = 1807, + [1840] = 1823, + [1841] = 1811, + [1842] = 1807, + [1843] = 1823, + [1844] = 1811, + [1845] = 1826, + [1846] = 1810, + [1847] = 1826, + [1848] = 1813, [1849] = 1808, - [1850] = 1845, - [1851] = 1808, - [1852] = 1823, - [1853] = 1845, - [1854] = 1835, - [1855] = 1837, - [1856] = 1808, - [1857] = 1837, - [1858] = 1810, - [1859] = 1811, - [1860] = 1815, - [1861] = 1835, - [1862] = 1813, - [1863] = 1814, - [1864] = 1821, - [1865] = 1807, - [1866] = 1818, - [1867] = 1809, - [1868] = 1835, - [1869] = 1807, - [1870] = 1821, - [1871] = 1871, - [1872] = 1837, - [1873] = 1808, - [1874] = 1814, - [1875] = 1813, - [1876] = 1823, - [1877] = 1812, - [1878] = 1809, - [1879] = 1811, - [1880] = 1810, - [1881] = 1811, - [1882] = 1882, - [1883] = 1810, - [1884] = 1813, - [1885] = 1814, - [1886] = 1823, - [1887] = 1887, - [1888] = 1812, + [1850] = 1808, + [1851] = 1811, + [1852] = 1813, + [1853] = 1810, + [1854] = 1809, + [1855] = 1816, + [1856] = 1817, + [1857] = 1808, + [1858] = 1858, + [1859] = 1818, + [1860] = 1811, + [1861] = 1807, + [1862] = 1823, + [1863] = 1813, + [1864] = 1864, + [1865] = 1826, + [1866] = 1809, + [1867] = 1819, + [1868] = 1816, + [1869] = 1811, + [1870] = 1813, + [1871] = 1810, + [1872] = 1816, + [1873] = 1816, + [1874] = 1817, + [1875] = 1817, + [1876] = 1817, + [1877] = 1877, + [1878] = 1817, + [1879] = 1823, + [1880] = 1880, + [1881] = 1826, + [1882] = 1825, + [1883] = 1813, + [1884] = 1819, + [1885] = 1885, + [1886] = 1807, + [1887] = 1823, + [1888] = 1811, [1889] = 1818, - [1890] = 1845, - [1891] = 1807, - [1892] = 1821, - [1893] = 1815, - [1894] = 1808, - [1895] = 1837, - [1896] = 1845, - [1897] = 1845, - [1898] = 1818, - [1899] = 1809, - [1900] = 1812, - [1901] = 1818, - [1902] = 1809, - [1903] = 1835, - [1904] = 1812, - [1905] = 1809, - [1906] = 1821, - [1907] = 1821, - [1908] = 1807, - [1909] = 1837, - [1910] = 1823, - [1911] = 1837, - [1912] = 1815, - [1913] = 1818, - [1914] = 1823, - [1915] = 1815, - [1916] = 1823, - [1917] = 1835, - [1918] = 1807, - [1919] = 1814, - [1920] = 1813, - [1921] = 1813, - [1922] = 1815, - [1923] = 1811, - [1924] = 1810, - [1925] = 1823, - [1926] = 1810, - [1927] = 1845, - [1928] = 1811, - [1929] = 1815, - [1930] = 1808, - [1931] = 1813, - [1932] = 1837, - [1933] = 1821, - [1934] = 1817, - [1935] = 1807, - [1936] = 1835, - [1937] = 1814, - [1938] = 1845, - [1939] = 1823, - [1940] = 1818, - [1941] = 1887, - [1942] = 1809, - [1943] = 1814, - [1944] = 1835, - [1945] = 1814, - [1946] = 1817, + [1890] = 1813, + [1891] = 1891, + [1892] = 1819, + [1893] = 1818, + [1894] = 1826, + [1895] = 1807, + [1896] = 1808, + [1897] = 1816, + [1898] = 1817, + [1899] = 1810, + [1900] = 1900, + [1901] = 1810, + [1902] = 1807, + [1903] = 1818, + [1904] = 1818, + [1905] = 1825, + [1906] = 1807, + [1907] = 1825, + [1908] = 1823, + [1909] = 1810, + [1910] = 1811, + [1911] = 1813, + [1912] = 1826, + [1913] = 1913, + [1914] = 1809, + [1915] = 1810, + [1916] = 1819, + [1917] = 1809, + [1918] = 1819, + [1919] = 1808, + [1920] = 1808, + [1921] = 1823, + [1922] = 1809, + [1923] = 1810, + [1924] = 1816, + [1925] = 1819, + [1926] = 1825, + [1927] = 1825, + [1928] = 1818, + [1929] = 1825, + [1930] = 1864, + [1931] = 1825, + [1932] = 1891, + [1933] = 1826, + [1934] = 1826, + [1935] = 1809, + [1936] = 1864, + [1937] = 1810, + [1938] = 1891, + [1939] = 1819, + [1940] = 1864, + [1941] = 1807, + [1942] = 1891, + [1943] = 1808, + [1944] = 1864, + [1945] = 1823, + [1946] = 1891, [1947] = 1947, - [1948] = 1813, - [1949] = 1837, - [1950] = 1812, - [1951] = 1887, - [1952] = 1817, - [1953] = 1887, - [1954] = 1812, - [1955] = 1817, - [1956] = 1887, - [1957] = 1811, - [1958] = 1817, - [1959] = 1887, - [1960] = 1817, - [1961] = 1887, - [1962] = 1882, - [1963] = 1810, - [1964] = 1871, - [1965] = 1817, - [1966] = 1845, - [1967] = 1887, - [1968] = 1817, - [1969] = 1887, - [1970] = 1882, - [1971] = 1818, - [1972] = 1871, - [1973] = 1809, - [1974] = 1821, - [1975] = 1817, - [1976] = 1882, - [1977] = 1837, - [1978] = 1871, - [1979] = 1812, - [1980] = 1845, - [1981] = 1887, - [1982] = 1882, - [1983] = 1983, - [1984] = 1871, - [1985] = 1985, - [1986] = 1871, - [1987] = 1882, - [1988] = 1882, - [1989] = 1835, - [1990] = 1871, - [1991] = 1871, - [1992] = 1818, - [1993] = 1882, - [1994] = 1882, - [1995] = 1809, - [1996] = 1871, - [1997] = 1835, - [1998] = 1871, - [1999] = 1812, - [2000] = 1882, - [2001] = 2001, + [1948] = 1864, + [1949] = 1891, + [1950] = 1864, + [1951] = 1826, + [1952] = 1891, + [1953] = 1809, + [1954] = 1864, + [1955] = 1818, + [1956] = 1891, + [1957] = 1864, + [1958] = 1816, + [1959] = 1891, + [1960] = 1825, + [1961] = 1864, + [1962] = 1891, + [1963] = 1913, + [1964] = 1809, + [1965] = 1900, + [1966] = 1913, + [1967] = 1900, + [1968] = 1913, + [1969] = 1900, + [1970] = 1913, + [1971] = 1900, + [1972] = 1913, + [1973] = 1900, + [1974] = 1913, + [1975] = 1900, + [1976] = 1913, + [1977] = 1900, + [1978] = 1913, + [1979] = 1900, + [1980] = 1913, + [1981] = 1815, + [1982] = 1900, + [1983] = 1858, + [1984] = 1815, + [1985] = 1858, + [1986] = 1815, + [1987] = 1858, + [1988] = 1815, + [1989] = 1858, + [1990] = 1815, + [1991] = 1858, + [1992] = 1815, + [1993] = 1858, + [1994] = 1815, + [1995] = 1858, + [1996] = 1815, + [1997] = 1858, + [1998] = 1815, + [1999] = 1858, + [2000] = 1817, + [2001] = 307, [2002] = 2002, [2003] = 2003, [2004] = 2004, - [2005] = 2002, + [2005] = 2004, [2006] = 2006, - [2007] = 2004, - [2008] = 2002, - [2009] = 2004, + [2007] = 2007, + [2008] = 2003, + [2009] = 2009, [2010] = 2003, - [2011] = 2011, - [2012] = 2004, - [2013] = 2002, + [2011] = 2009, + [2012] = 2003, + [2013] = 2009, [2014] = 2014, - [2015] = 2004, - [2016] = 2016, + [2015] = 2003, + [2016] = 2009, [2017] = 2004, - [2018] = 304, - [2019] = 2004, + [2018] = 2003, + [2019] = 2009, [2020] = 2003, - [2021] = 2002, - [2022] = 2004, - [2023] = 2002, - [2024] = 2004, - [2025] = 2002, - [2026] = 2002, - [2027] = 2002, - [2028] = 2004, - [2029] = 2002, + [2021] = 2009, + [2022] = 2003, + [2023] = 2009, + [2024] = 2009, + [2025] = 2003, + [2026] = 2009, + [2027] = 2003, + [2028] = 2009, + [2029] = 2029, [2030] = 2030, [2031] = 2031, [2032] = 2032, [2033] = 2033, [2034] = 2034, - [2035] = 2030, - [2036] = 2031, - [2037] = 2034, - [2038] = 2033, - [2039] = 2039, - [2040] = 2034, - [2041] = 2031, + [2035] = 2031, + [2036] = 2036, + [2037] = 2037, + [2038] = 2037, + [2039] = 2033, + [2040] = 2032, + [2041] = 2037, [2042] = 2033, - [2043] = 2043, + [2043] = 2030, [2044] = 2044, - [2045] = 2032, - [2046] = 2030, - [2047] = 2032, + [2045] = 2031, + [2046] = 2032, + [2047] = 2030, [2048] = 2048, [2049] = 2049, - [2050] = 2049, + [2050] = 2048, [2051] = 2049, - [2052] = 2049, - [2053] = 2048, + [2052] = 2048, + [2053] = 2053, [2054] = 2054, - [2055] = 2048, + [2055] = 2049, [2056] = 2049, [2057] = 2049, [2058] = 2048, - [2059] = 2048, - [2060] = 2049, - [2061] = 2049, - [2062] = 2054, - [2063] = 2054, - [2064] = 2064, + [2059] = 2054, + [2060] = 2048, + [2061] = 2048, + [2062] = 2049, + [2063] = 2049, + [2064] = 2048, [2065] = 2048, - [2066] = 2048, + [2066] = 2049, [2067] = 2048, [2068] = 2049, [2069] = 2049, [2070] = 2048, - [2071] = 2048, + [2071] = 2054, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -4461,117 +4461,117 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8] = {.lex_state = 0, .external_lex_state = 4}, [9] = {.lex_state = 0, .external_lex_state = 4}, [10] = {.lex_state = 0, .external_lex_state = 4}, - [11] = {.lex_state = 0, .external_lex_state = 4}, - [12] = {.lex_state = 0, .external_lex_state = 4}, - [13] = {.lex_state = 0, .external_lex_state = 4}, + [11] = {.lex_state = 0, .external_lex_state = 3}, + [12] = {.lex_state = 0, .external_lex_state = 3}, + [13] = {.lex_state = 0, .external_lex_state = 3}, [14] = {.lex_state = 0, .external_lex_state = 3}, - [15] = {.lex_state = 0, .external_lex_state = 3}, - [16] = {.lex_state = 0, .external_lex_state = 3}, - [17] = {.lex_state = 0, .external_lex_state = 3}, + [15] = {.lex_state = 0, .external_lex_state = 4}, + [16] = {.lex_state = 0, .external_lex_state = 4}, + [17] = {.lex_state = 0, .external_lex_state = 4}, [18] = {.lex_state = 0, .external_lex_state = 4}, [19] = {.lex_state = 0, .external_lex_state = 3}, - [20] = {.lex_state = 0, .external_lex_state = 4}, - [21] = {.lex_state = 0, .external_lex_state = 4}, - [22] = {.lex_state = 0, .external_lex_state = 4}, - [23] = {.lex_state = 0, .external_lex_state = 4}, - [24] = {.lex_state = 0, .external_lex_state = 4}, - [25] = {.lex_state = 0, .external_lex_state = 4}, - [26] = {.lex_state = 0, .external_lex_state = 4}, - [27] = {.lex_state = 0, .external_lex_state = 4}, - [28] = {.lex_state = 0, .external_lex_state = 4}, - [29] = {.lex_state = 0, .external_lex_state = 4}, - [30] = {.lex_state = 0, .external_lex_state = 4}, - [31] = {.lex_state = 0, .external_lex_state = 4}, - [32] = {.lex_state = 0, .external_lex_state = 4}, - [33] = {.lex_state = 0, .external_lex_state = 4}, - [34] = {.lex_state = 0, .external_lex_state = 4}, - [35] = {.lex_state = 0, .external_lex_state = 4}, - [36] = {.lex_state = 0, .external_lex_state = 4}, - [37] = {.lex_state = 0, .external_lex_state = 4}, - [38] = {.lex_state = 0, .external_lex_state = 4}, - [39] = {.lex_state = 0, .external_lex_state = 4}, - [40] = {.lex_state = 0, .external_lex_state = 4}, - [41] = {.lex_state = 0, .external_lex_state = 4}, - [42] = {.lex_state = 0, .external_lex_state = 4}, - [43] = {.lex_state = 0, .external_lex_state = 4}, - [44] = {.lex_state = 0, .external_lex_state = 4}, - [45] = {.lex_state = 0, .external_lex_state = 4}, - [46] = {.lex_state = 0, .external_lex_state = 4}, - [47] = {.lex_state = 0, .external_lex_state = 4}, - [48] = {.lex_state = 0, .external_lex_state = 4}, - [49] = {.lex_state = 0, .external_lex_state = 4}, - [50] = {.lex_state = 0, .external_lex_state = 4}, - [51] = {.lex_state = 0, .external_lex_state = 4}, - [52] = {.lex_state = 0, .external_lex_state = 4}, - [53] = {.lex_state = 0, .external_lex_state = 4}, + [20] = {.lex_state = 0, .external_lex_state = 3}, + [21] = {.lex_state = 0, .external_lex_state = 3}, + [22] = {.lex_state = 0, .external_lex_state = 3}, + [23] = {.lex_state = 0, .external_lex_state = 3}, + [24] = {.lex_state = 0, .external_lex_state = 3}, + [25] = {.lex_state = 0, .external_lex_state = 3}, + [26] = {.lex_state = 0, .external_lex_state = 3}, + [27] = {.lex_state = 0, .external_lex_state = 3}, + [28] = {.lex_state = 0, .external_lex_state = 3}, + [29] = {.lex_state = 0, .external_lex_state = 3}, + [30] = {.lex_state = 0, .external_lex_state = 3}, + [31] = {.lex_state = 0, .external_lex_state = 3}, + [32] = {.lex_state = 0, .external_lex_state = 3}, + [33] = {.lex_state = 0, .external_lex_state = 3}, + [34] = {.lex_state = 0, .external_lex_state = 3}, + [35] = {.lex_state = 0, .external_lex_state = 3}, + [36] = {.lex_state = 0, .external_lex_state = 3}, + [37] = {.lex_state = 0, .external_lex_state = 3}, + [38] = {.lex_state = 0, .external_lex_state = 3}, + [39] = {.lex_state = 0, .external_lex_state = 3}, + [40] = {.lex_state = 0, .external_lex_state = 3}, + [41] = {.lex_state = 0, .external_lex_state = 3}, + [42] = {.lex_state = 0, .external_lex_state = 3}, + [43] = {.lex_state = 0, .external_lex_state = 3}, + [44] = {.lex_state = 0, .external_lex_state = 3}, + [45] = {.lex_state = 0, .external_lex_state = 3}, + [46] = {.lex_state = 0, .external_lex_state = 3}, + [47] = {.lex_state = 0, .external_lex_state = 3}, + [48] = {.lex_state = 0, .external_lex_state = 3}, + [49] = {.lex_state = 0, .external_lex_state = 3}, + [50] = {.lex_state = 0, .external_lex_state = 3}, + [51] = {.lex_state = 0, .external_lex_state = 3}, + [52] = {.lex_state = 0, .external_lex_state = 3}, + [53] = {.lex_state = 0, .external_lex_state = 3}, [54] = {.lex_state = 0, .external_lex_state = 3}, - [55] = {.lex_state = 0, .external_lex_state = 4}, - [56] = {.lex_state = 0, .external_lex_state = 4}, - [57] = {.lex_state = 0, .external_lex_state = 4}, - [58] = {.lex_state = 0, .external_lex_state = 4}, - [59] = {.lex_state = 0, .external_lex_state = 4}, - [60] = {.lex_state = 0, .external_lex_state = 4}, - [61] = {.lex_state = 0, .external_lex_state = 4}, - [62] = {.lex_state = 0, .external_lex_state = 4}, - [63] = {.lex_state = 0, .external_lex_state = 4}, - [64] = {.lex_state = 0, .external_lex_state = 4}, - [65] = {.lex_state = 0, .external_lex_state = 4}, + [55] = {.lex_state = 0, .external_lex_state = 3}, + [56] = {.lex_state = 0, .external_lex_state = 3}, + [57] = {.lex_state = 0, .external_lex_state = 3}, + [58] = {.lex_state = 0, .external_lex_state = 3}, + [59] = {.lex_state = 0, .external_lex_state = 3}, + [60] = {.lex_state = 0, .external_lex_state = 3}, + [61] = {.lex_state = 0, .external_lex_state = 3}, + [62] = {.lex_state = 0, .external_lex_state = 3}, + [63] = {.lex_state = 0, .external_lex_state = 3}, + [64] = {.lex_state = 0, .external_lex_state = 3}, + [65] = {.lex_state = 0, .external_lex_state = 3}, [66] = {.lex_state = 0, .external_lex_state = 4}, [67] = {.lex_state = 0, .external_lex_state = 4}, [68] = {.lex_state = 0, .external_lex_state = 4}, [69] = {.lex_state = 0, .external_lex_state = 4}, [70] = {.lex_state = 0, .external_lex_state = 4}, - [71] = {.lex_state = 0, .external_lex_state = 3}, - [72] = {.lex_state = 0, .external_lex_state = 3}, + [71] = {.lex_state = 0, .external_lex_state = 4}, + [72] = {.lex_state = 0, .external_lex_state = 4}, [73] = {.lex_state = 0, .external_lex_state = 4}, [74] = {.lex_state = 0, .external_lex_state = 3}, - [75] = {.lex_state = 0, .external_lex_state = 3}, + [75] = {.lex_state = 0, .external_lex_state = 4}, [76] = {.lex_state = 0, .external_lex_state = 4}, - [77] = {.lex_state = 0, .external_lex_state = 3}, + [77] = {.lex_state = 0, .external_lex_state = 4}, [78] = {.lex_state = 0, .external_lex_state = 4}, [79] = {.lex_state = 0, .external_lex_state = 4}, - [80] = {.lex_state = 0, .external_lex_state = 3}, - [81] = {.lex_state = 0, .external_lex_state = 3}, - [82] = {.lex_state = 0, .external_lex_state = 3}, - [83] = {.lex_state = 0, .external_lex_state = 3}, - [84] = {.lex_state = 0, .external_lex_state = 3}, - [85] = {.lex_state = 0, .external_lex_state = 3}, - [86] = {.lex_state = 0, .external_lex_state = 3}, - [87] = {.lex_state = 0, .external_lex_state = 3}, - [88] = {.lex_state = 0, .external_lex_state = 3}, - [89] = {.lex_state = 0, .external_lex_state = 3}, - [90] = {.lex_state = 0, .external_lex_state = 3}, - [91] = {.lex_state = 0, .external_lex_state = 3}, - [92] = {.lex_state = 0, .external_lex_state = 3}, - [93] = {.lex_state = 0, .external_lex_state = 3}, - [94] = {.lex_state = 0, .external_lex_state = 3}, - [95] = {.lex_state = 0, .external_lex_state = 3}, - [96] = {.lex_state = 0, .external_lex_state = 3}, - [97] = {.lex_state = 0, .external_lex_state = 3}, - [98] = {.lex_state = 0, .external_lex_state = 3}, + [80] = {.lex_state = 0, .external_lex_state = 4}, + [81] = {.lex_state = 0, .external_lex_state = 4}, + [82] = {.lex_state = 0, .external_lex_state = 4}, + [83] = {.lex_state = 0, .external_lex_state = 4}, + [84] = {.lex_state = 0, .external_lex_state = 4}, + [85] = {.lex_state = 0, .external_lex_state = 4}, + [86] = {.lex_state = 0, .external_lex_state = 4}, + [87] = {.lex_state = 0, .external_lex_state = 4}, + [88] = {.lex_state = 0, .external_lex_state = 4}, + [89] = {.lex_state = 0, .external_lex_state = 4}, + [90] = {.lex_state = 0, .external_lex_state = 4}, + [91] = {.lex_state = 0, .external_lex_state = 4}, + [92] = {.lex_state = 0, .external_lex_state = 4}, + [93] = {.lex_state = 0, .external_lex_state = 4}, + [94] = {.lex_state = 0, .external_lex_state = 4}, + [95] = {.lex_state = 0, .external_lex_state = 4}, + [96] = {.lex_state = 0, .external_lex_state = 4}, + [97] = {.lex_state = 0, .external_lex_state = 4}, + [98] = {.lex_state = 0, .external_lex_state = 4}, [99] = {.lex_state = 0, .external_lex_state = 4}, - [100] = {.lex_state = 0, .external_lex_state = 3}, - [101] = {.lex_state = 0, .external_lex_state = 3}, - [102] = {.lex_state = 0, .external_lex_state = 3}, - [103] = {.lex_state = 0, .external_lex_state = 3}, - [104] = {.lex_state = 0, .external_lex_state = 3}, - [105] = {.lex_state = 0, .external_lex_state = 3}, - [106] = {.lex_state = 0, .external_lex_state = 3}, - [107] = {.lex_state = 0, .external_lex_state = 3}, - [108] = {.lex_state = 0, .external_lex_state = 3}, - [109] = {.lex_state = 0, .external_lex_state = 3}, - [110] = {.lex_state = 0, .external_lex_state = 3}, - [111] = {.lex_state = 0, .external_lex_state = 3}, - [112] = {.lex_state = 0, .external_lex_state = 3}, - [113] = {.lex_state = 0, .external_lex_state = 3}, - [114] = {.lex_state = 0, .external_lex_state = 3}, - [115] = {.lex_state = 0, .external_lex_state = 3}, - [116] = {.lex_state = 0, .external_lex_state = 3}, - [117] = {.lex_state = 0, .external_lex_state = 3}, - [118] = {.lex_state = 0, .external_lex_state = 3}, + [100] = {.lex_state = 0, .external_lex_state = 4}, + [101] = {.lex_state = 0, .external_lex_state = 4}, + [102] = {.lex_state = 0, .external_lex_state = 4}, + [103] = {.lex_state = 0, .external_lex_state = 4}, + [104] = {.lex_state = 0, .external_lex_state = 4}, + [105] = {.lex_state = 0, .external_lex_state = 4}, + [106] = {.lex_state = 0, .external_lex_state = 4}, + [107] = {.lex_state = 0, .external_lex_state = 4}, + [108] = {.lex_state = 0, .external_lex_state = 4}, + [109] = {.lex_state = 0, .external_lex_state = 4}, + [110] = {.lex_state = 0, .external_lex_state = 4}, + [111] = {.lex_state = 0, .external_lex_state = 4}, + [112] = {.lex_state = 0, .external_lex_state = 4}, + [113] = {.lex_state = 0, .external_lex_state = 4}, + [114] = {.lex_state = 0, .external_lex_state = 4}, + [115] = {.lex_state = 0, .external_lex_state = 4}, + [116] = {.lex_state = 0, .external_lex_state = 4}, + [117] = {.lex_state = 0, .external_lex_state = 4}, + [118] = {.lex_state = 0, .external_lex_state = 4}, [119] = {.lex_state = 0, .external_lex_state = 3}, - [120] = {.lex_state = 0, .external_lex_state = 3}, - [121] = {.lex_state = 0, .external_lex_state = 3}, + [120] = {.lex_state = 0, .external_lex_state = 4}, + [121] = {.lex_state = 0, .external_lex_state = 4}, [122] = {.lex_state = 0, .external_lex_state = 3}, [123] = {.lex_state = 0, .external_lex_state = 3}, [124] = {.lex_state = 0, .external_lex_state = 3}, @@ -4579,329 +4579,329 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [126] = {.lex_state = 0, .external_lex_state = 3}, [127] = {.lex_state = 0, .external_lex_state = 3}, [128] = {.lex_state = 0, .external_lex_state = 3}, - [129] = {.lex_state = 0, .external_lex_state = 3}, + [129] = {.lex_state = 0, .external_lex_state = 4}, [130] = {.lex_state = 0, .external_lex_state = 5}, - [131] = {.lex_state = 0, .external_lex_state = 5}, - [132] = {.lex_state = 0, .external_lex_state = 5}, - [133] = {.lex_state = 0, .external_lex_state = 5}, - [134] = {.lex_state = 0, .external_lex_state = 5}, + [131] = {.lex_state = 0, .external_lex_state = 6}, + [132] = {.lex_state = 0, .external_lex_state = 6}, + [133] = {.lex_state = 0, .external_lex_state = 6}, + [134] = {.lex_state = 0, .external_lex_state = 6}, [135] = {.lex_state = 0, .external_lex_state = 6}, - [136] = {.lex_state = 0, .external_lex_state = 5}, + [136] = {.lex_state = 0, .external_lex_state = 6}, [137] = {.lex_state = 0, .external_lex_state = 6}, - [138] = {.lex_state = 0, .external_lex_state = 5}, + [138] = {.lex_state = 0, .external_lex_state = 6}, [139] = {.lex_state = 0, .external_lex_state = 6}, - [140] = {.lex_state = 0, .external_lex_state = 5}, + [140] = {.lex_state = 0, .external_lex_state = 6}, [141] = {.lex_state = 0, .external_lex_state = 6}, [142] = {.lex_state = 0, .external_lex_state = 6}, - [143] = {.lex_state = 0, .external_lex_state = 5}, + [143] = {.lex_state = 0, .external_lex_state = 6}, [144] = {.lex_state = 0, .external_lex_state = 6}, [145] = {.lex_state = 0, .external_lex_state = 6}, - [146] = {.lex_state = 0, .external_lex_state = 5}, + [146] = {.lex_state = 0, .external_lex_state = 6}, [147] = {.lex_state = 0, .external_lex_state = 6}, - [148] = {.lex_state = 0, .external_lex_state = 5}, - [149] = {.lex_state = 0, .external_lex_state = 5}, + [148] = {.lex_state = 0, .external_lex_state = 6}, + [149] = {.lex_state = 0, .external_lex_state = 6}, [150] = {.lex_state = 0, .external_lex_state = 6}, [151] = {.lex_state = 0, .external_lex_state = 6}, [152] = {.lex_state = 0, .external_lex_state = 6}, - [153] = {.lex_state = 0, .external_lex_state = 5}, + [153] = {.lex_state = 0, .external_lex_state = 6}, [154] = {.lex_state = 0, .external_lex_state = 6}, [155] = {.lex_state = 0, .external_lex_state = 6}, [156] = {.lex_state = 0, .external_lex_state = 6}, [157] = {.lex_state = 0, .external_lex_state = 6}, - [158] = {.lex_state = 0, .external_lex_state = 5}, - [159] = {.lex_state = 0, .external_lex_state = 5}, - [160] = {.lex_state = 0, .external_lex_state = 5}, + [158] = {.lex_state = 0, .external_lex_state = 6}, + [159] = {.lex_state = 0, .external_lex_state = 6}, + [160] = {.lex_state = 0, .external_lex_state = 6}, [161] = {.lex_state = 0, .external_lex_state = 6}, [162] = {.lex_state = 0, .external_lex_state = 6}, - [163] = {.lex_state = 0, .external_lex_state = 5}, + [163] = {.lex_state = 0, .external_lex_state = 6}, [164] = {.lex_state = 0, .external_lex_state = 6}, - [165] = {.lex_state = 0, .external_lex_state = 6}, - [166] = {.lex_state = 0, .external_lex_state = 5}, - [167] = {.lex_state = 0, .external_lex_state = 5}, - [168] = {.lex_state = 0, .external_lex_state = 5}, - [169] = {.lex_state = 0, .external_lex_state = 5}, + [165] = {.lex_state = 0, .external_lex_state = 5}, + [166] = {.lex_state = 0, .external_lex_state = 6}, + [167] = {.lex_state = 0, .external_lex_state = 6}, + [168] = {.lex_state = 0, .external_lex_state = 6}, + [169] = {.lex_state = 0, .external_lex_state = 6}, [170] = {.lex_state = 0, .external_lex_state = 5}, - [171] = {.lex_state = 0, .external_lex_state = 5}, - [172] = {.lex_state = 0, .external_lex_state = 5}, - [173] = {.lex_state = 0, .external_lex_state = 5}, - [174] = {.lex_state = 0, .external_lex_state = 5}, - [175] = {.lex_state = 0, .external_lex_state = 5}, - [176] = {.lex_state = 0, .external_lex_state = 5}, - [177] = {.lex_state = 0, .external_lex_state = 5}, - [178] = {.lex_state = 0, .external_lex_state = 5}, + [171] = {.lex_state = 0, .external_lex_state = 6}, + [172] = {.lex_state = 0, .external_lex_state = 6}, + [173] = {.lex_state = 0, .external_lex_state = 6}, + [174] = {.lex_state = 0, .external_lex_state = 6}, + [175] = {.lex_state = 0, .external_lex_state = 6}, + [176] = {.lex_state = 0, .external_lex_state = 6}, + [177] = {.lex_state = 0, .external_lex_state = 6}, + [178] = {.lex_state = 0, .external_lex_state = 6}, [179] = {.lex_state = 0, .external_lex_state = 6}, - [180] = {.lex_state = 0, .external_lex_state = 5}, + [180] = {.lex_state = 0, .external_lex_state = 6}, [181] = {.lex_state = 0, .external_lex_state = 6}, - [182] = {.lex_state = 0, .external_lex_state = 5}, - [183] = {.lex_state = 0, .external_lex_state = 6}, - [184] = {.lex_state = 0, .external_lex_state = 6}, - [185] = {.lex_state = 0, .external_lex_state = 6}, + [182] = {.lex_state = 0, .external_lex_state = 6}, + [183] = {.lex_state = 0, .external_lex_state = 5}, + [184] = {.lex_state = 0, .external_lex_state = 5}, + [185] = {.lex_state = 0, .external_lex_state = 5}, [186] = {.lex_state = 0, .external_lex_state = 5}, - [187] = {.lex_state = 0, .external_lex_state = 5}, - [188] = {.lex_state = 0, .external_lex_state = 6}, - [189] = {.lex_state = 0, .external_lex_state = 6}, - [190] = {.lex_state = 0, .external_lex_state = 6}, - [191] = {.lex_state = 0, .external_lex_state = 6}, + [187] = {.lex_state = 0, .external_lex_state = 6}, + [188] = {.lex_state = 0, .external_lex_state = 5}, + [189] = {.lex_state = 0, .external_lex_state = 5}, + [190] = {.lex_state = 0, .external_lex_state = 5}, + [191] = {.lex_state = 0, .external_lex_state = 5}, [192] = {.lex_state = 0, .external_lex_state = 5}, - [193] = {.lex_state = 0, .external_lex_state = 6}, - [194] = {.lex_state = 0, .external_lex_state = 6}, - [195] = {.lex_state = 0, .external_lex_state = 6}, + [193] = {.lex_state = 0, .external_lex_state = 5}, + [194] = {.lex_state = 0, .external_lex_state = 5}, + [195] = {.lex_state = 0, .external_lex_state = 5}, [196] = {.lex_state = 0, .external_lex_state = 5}, - [197] = {.lex_state = 0, .external_lex_state = 6}, - [198] = {.lex_state = 0, .external_lex_state = 6}, - [199] = {.lex_state = 0, .external_lex_state = 6}, - [200] = {.lex_state = 0, .external_lex_state = 6}, + [197] = {.lex_state = 0, .external_lex_state = 5}, + [198] = {.lex_state = 0, .external_lex_state = 5}, + [199] = {.lex_state = 0, .external_lex_state = 5}, + [200] = {.lex_state = 0, .external_lex_state = 5}, [201] = {.lex_state = 0, .external_lex_state = 5}, [202] = {.lex_state = 0, .external_lex_state = 5}, [203] = {.lex_state = 0, .external_lex_state = 5}, [204] = {.lex_state = 0, .external_lex_state = 5}, - [205] = {.lex_state = 0, .external_lex_state = 6}, + [205] = {.lex_state = 0, .external_lex_state = 5}, [206] = {.lex_state = 0, .external_lex_state = 5}, - [207] = {.lex_state = 0, .external_lex_state = 6}, - [208] = {.lex_state = 0, .external_lex_state = 6}, + [207] = {.lex_state = 0, .external_lex_state = 5}, + [208] = {.lex_state = 0, .external_lex_state = 5}, [209] = {.lex_state = 0, .external_lex_state = 5}, - [210] = {.lex_state = 0, .external_lex_state = 6}, + [210] = {.lex_state = 0, .external_lex_state = 5}, [211] = {.lex_state = 0, .external_lex_state = 5}, - [212] = {.lex_state = 0, .external_lex_state = 6}, - [213] = {.lex_state = 0, .external_lex_state = 6}, - [214] = {.lex_state = 0, .external_lex_state = 6}, + [212] = {.lex_state = 0, .external_lex_state = 5}, + [213] = {.lex_state = 0, .external_lex_state = 5}, + [214] = {.lex_state = 0, .external_lex_state = 5}, [215] = {.lex_state = 0, .external_lex_state = 5}, [216] = {.lex_state = 0, .external_lex_state = 5}, - [217] = {.lex_state = 0, .external_lex_state = 6}, - [218] = {.lex_state = 0, .external_lex_state = 6}, - [219] = {.lex_state = 0, .external_lex_state = 6}, - [220] = {.lex_state = 0, .external_lex_state = 6}, - [221] = {.lex_state = 0, .external_lex_state = 6}, - [222] = {.lex_state = 0, .external_lex_state = 6}, + [217] = {.lex_state = 0, .external_lex_state = 5}, + [218] = {.lex_state = 0, .external_lex_state = 5}, + [219] = {.lex_state = 0, .external_lex_state = 5}, + [220] = {.lex_state = 0, .external_lex_state = 5}, + [221] = {.lex_state = 0, .external_lex_state = 5}, + [222] = {.lex_state = 0, .external_lex_state = 5}, [223] = {.lex_state = 0, .external_lex_state = 5}, - [224] = {.lex_state = 0, .external_lex_state = 6}, - [225] = {.lex_state = 0, .external_lex_state = 6}, + [224] = {.lex_state = 0, .external_lex_state = 5}, + [225] = {.lex_state = 0, .external_lex_state = 5}, [226] = {.lex_state = 0, .external_lex_state = 5}, [227] = {.lex_state = 0, .external_lex_state = 5}, [228] = {.lex_state = 0, .external_lex_state = 5}, - [229] = {.lex_state = 0, .external_lex_state = 6}, + [229] = {.lex_state = 0, .external_lex_state = 5}, [230] = {.lex_state = 0, .external_lex_state = 5}, - [231] = {.lex_state = 0, .external_lex_state = 6}, - [232] = {.lex_state = 0, .external_lex_state = 6}, + [231] = {.lex_state = 0, .external_lex_state = 5}, + [232] = {.lex_state = 0, .external_lex_state = 5}, [233] = {.lex_state = 0, .external_lex_state = 5}, [234] = {.lex_state = 0, .external_lex_state = 5}, - [235] = {.lex_state = 0, .external_lex_state = 6}, + [235] = {.lex_state = 0, .external_lex_state = 5}, [236] = {.lex_state = 0, .external_lex_state = 5}, [237] = {.lex_state = 0, .external_lex_state = 5}, - [238] = {.lex_state = 0, .external_lex_state = 5}, + [238] = {.lex_state = 0, .external_lex_state = 6}, [239] = {.lex_state = 0, .external_lex_state = 6}, - [240] = {.lex_state = 0, .external_lex_state = 5}, - [241] = {.lex_state = 0, .external_lex_state = 5}, + [240] = {.lex_state = 0, .external_lex_state = 6}, + [241] = {.lex_state = 0, .external_lex_state = 6}, [242] = {.lex_state = 0, .external_lex_state = 6}, [243] = {.lex_state = 0, .external_lex_state = 6}, [244] = {.lex_state = 0, .external_lex_state = 3}, [245] = {.lex_state = 0, .external_lex_state = 4}, - [246] = {.lex_state = 0, .external_lex_state = 3}, - [247] = {.lex_state = 0, .external_lex_state = 4}, + [246] = {.lex_state = 0, .external_lex_state = 4}, + [247] = {.lex_state = 0, .external_lex_state = 3}, [248] = {.lex_state = 0, .external_lex_state = 7}, [249] = {.lex_state = 0, .external_lex_state = 8}, - [250] = {.lex_state = 0, .external_lex_state = 5}, - [251] = {.lex_state = 0, .external_lex_state = 7}, - [252] = {.lex_state = 0, .external_lex_state = 9}, - [253] = {.lex_state = 0, .external_lex_state = 3}, - [254] = {.lex_state = 0, .external_lex_state = 8}, - [255] = {.lex_state = 0, .external_lex_state = 8}, + [250] = {.lex_state = 0, .external_lex_state = 6}, + [251] = {.lex_state = 0, .external_lex_state = 5}, + [252] = {.lex_state = 0, .external_lex_state = 4}, + [253] = {.lex_state = 0, .external_lex_state = 9}, + [254] = {.lex_state = 0, .external_lex_state = 3}, + [255] = {.lex_state = 0, .external_lex_state = 7}, [256] = {.lex_state = 0, .external_lex_state = 9}, [257] = {.lex_state = 0, .external_lex_state = 8}, - [258] = {.lex_state = 0, .external_lex_state = 5}, - [259] = {.lex_state = 0, .external_lex_state = 7}, - [260] = {.lex_state = 0, .external_lex_state = 8}, + [258] = {.lex_state = 0, .external_lex_state = 8}, + [259] = {.lex_state = 0, .external_lex_state = 6}, + [260] = {.lex_state = 0, .external_lex_state = 7}, [261] = {.lex_state = 0, .external_lex_state = 9}, - [262] = {.lex_state = 0, .external_lex_state = 7}, - [263] = {.lex_state = 0, .external_lex_state = 8}, - [264] = {.lex_state = 0, .external_lex_state = 8}, - [265] = {.lex_state = 0, .external_lex_state = 7}, - [266] = {.lex_state = 0, .external_lex_state = 9}, - [267] = {.lex_state = 0, .external_lex_state = 8}, - [268] = {.lex_state = 0, .external_lex_state = 9}, - [269] = {.lex_state = 0, .external_lex_state = 9}, - [270] = {.lex_state = 0, .external_lex_state = 8}, - [271] = {.lex_state = 0, .external_lex_state = 7}, - [272] = {.lex_state = 0, .external_lex_state = 6}, - [273] = {.lex_state = 0, .external_lex_state = 7}, - [274] = {.lex_state = 0, .external_lex_state = 7}, - [275] = {.lex_state = 0, .external_lex_state = 9}, + [262] = {.lex_state = 0, .external_lex_state = 8}, + [263] = {.lex_state = 0, .external_lex_state = 5}, + [264] = {.lex_state = 0, .external_lex_state = 7}, + [265] = {.lex_state = 0, .external_lex_state = 8}, + [266] = {.lex_state = 0, .external_lex_state = 7}, + [267] = {.lex_state = 0, .external_lex_state = 9}, + [268] = {.lex_state = 0, .external_lex_state = 8}, + [269] = {.lex_state = 0, .external_lex_state = 7}, + [270] = {.lex_state = 0, .external_lex_state = 9}, + [271] = {.lex_state = 0, .external_lex_state = 8}, + [272] = {.lex_state = 0, .external_lex_state = 7}, + [273] = {.lex_state = 0, .external_lex_state = 9}, + [274] = {.lex_state = 0, .external_lex_state = 8}, + [275] = {.lex_state = 0, .external_lex_state = 7}, [276] = {.lex_state = 0, .external_lex_state = 9}, - [277] = {.lex_state = 0, .external_lex_state = 9}, - [278] = {.lex_state = 0, .external_lex_state = 6}, - [279] = {.lex_state = 0, .external_lex_state = 4}, - [280] = {.lex_state = 0, .external_lex_state = 7}, + [277] = {.lex_state = 0, .external_lex_state = 8}, + [278] = {.lex_state = 0, .external_lex_state = 7}, + [279] = {.lex_state = 0, .external_lex_state = 9}, + [280] = {.lex_state = 0, .external_lex_state = 8}, [281] = {.lex_state = 0, .external_lex_state = 7}, [282] = {.lex_state = 0, .external_lex_state = 9}, - [283] = {.lex_state = 0, .external_lex_state = 8}, + [283] = {.lex_state = 0, .external_lex_state = 9}, [284] = {.lex_state = 0, .external_lex_state = 4}, - [285] = {.lex_state = 0, .external_lex_state = 4}, + [285] = {.lex_state = 0, .external_lex_state = 3}, [286] = {.lex_state = 0, .external_lex_state = 3}, [287] = {.lex_state = 0, .external_lex_state = 3}, [288] = {.lex_state = 0, .external_lex_state = 3}, - [289] = {.lex_state = 0, .external_lex_state = 4}, + [289] = {.lex_state = 0, .external_lex_state = 3}, [290] = {.lex_state = 0, .external_lex_state = 4}, - [291] = {.lex_state = 0, .external_lex_state = 6}, + [291] = {.lex_state = 0, .external_lex_state = 4}, [292] = {.lex_state = 0, .external_lex_state = 4}, [293] = {.lex_state = 0, .external_lex_state = 4}, - [294] = {.lex_state = 0, .external_lex_state = 5}, + [294] = {.lex_state = 0, .external_lex_state = 4}, [295] = {.lex_state = 0, .external_lex_state = 4}, [296] = {.lex_state = 0, .external_lex_state = 3}, [297] = {.lex_state = 0, .external_lex_state = 3}, - [298] = {.lex_state = 0, .external_lex_state = 3}, + [298] = {.lex_state = 0, .external_lex_state = 4}, [299] = {.lex_state = 0, .external_lex_state = 4}, - [300] = {.lex_state = 0, .external_lex_state = 4}, + [300] = {.lex_state = 0, .external_lex_state = 5}, [301] = {.lex_state = 0, .external_lex_state = 3}, [302] = {.lex_state = 0, .external_lex_state = 3}, - [303] = {.lex_state = 0, .external_lex_state = 3}, - [304] = {.lex_state = 0, .external_lex_state = 4}, - [305] = {.lex_state = 0, .external_lex_state = 9}, - [306] = {.lex_state = 0, .external_lex_state = 6}, - [307] = {.lex_state = 0, .external_lex_state = 5}, + [303] = {.lex_state = 0, .external_lex_state = 6}, + [304] = {.lex_state = 0, .external_lex_state = 5}, + [305] = {.lex_state = 0, .external_lex_state = 5}, + [306] = {.lex_state = 0, .external_lex_state = 5}, + [307] = {.lex_state = 0, .external_lex_state = 3}, [308] = {.lex_state = 0, .external_lex_state = 5}, [309] = {.lex_state = 0, .external_lex_state = 5}, - [310] = {.lex_state = 0, .external_lex_state = 5}, + [310] = {.lex_state = 0, .external_lex_state = 7}, [311] = {.lex_state = 0, .external_lex_state = 5}, - [312] = {.lex_state = 0, .external_lex_state = 5}, - [313] = {.lex_state = 0, .external_lex_state = 7}, + [312] = {.lex_state = 0, .external_lex_state = 9}, + [313] = {.lex_state = 0, .external_lex_state = 6}, [314] = {.lex_state = 0, .external_lex_state = 6}, - [315] = {.lex_state = 0, .external_lex_state = 3}, + [315] = {.lex_state = 0, .external_lex_state = 6}, [316] = {.lex_state = 0, .external_lex_state = 6}, [317] = {.lex_state = 0, .external_lex_state = 6}, - [318] = {.lex_state = 0, .external_lex_state = 6}, - [319] = {.lex_state = 0, .external_lex_state = 8}, + [318] = {.lex_state = 0, .external_lex_state = 4}, + [319] = {.lex_state = 0, .external_lex_state = 6}, [320] = {.lex_state = 0, .external_lex_state = 6}, - [321] = {.lex_state = 0, .external_lex_state = 5}, - [322] = {.lex_state = 0, .external_lex_state = 5}, - [323] = {.lex_state = 0, .external_lex_state = 6}, - [324] = {.lex_state = 0, .external_lex_state = 6}, + [321] = {.lex_state = 0, .external_lex_state = 6}, + [322] = {.lex_state = 0, .external_lex_state = 6}, + [323] = {.lex_state = 0, .external_lex_state = 5}, + [324] = {.lex_state = 0, .external_lex_state = 8}, [325] = {.lex_state = 0, .external_lex_state = 5}, - [326] = {.lex_state = 0, .external_lex_state = 6}, + [326] = {.lex_state = 0, .external_lex_state = 5}, [327] = {.lex_state = 0, .external_lex_state = 4}, - [328] = {.lex_state = 0, .external_lex_state = 3}, - [329] = {.lex_state = 0, .external_lex_state = 5}, + [328] = {.lex_state = 0, .external_lex_state = 4}, + [329] = {.lex_state = 0, .external_lex_state = 4}, [330] = {.lex_state = 0, .external_lex_state = 4}, [331] = {.lex_state = 0, .external_lex_state = 4}, - [332] = {.lex_state = 0, .external_lex_state = 4}, - [333] = {.lex_state = 0, .external_lex_state = 4}, - [334] = {.lex_state = 0, .external_lex_state = 4}, - [335] = {.lex_state = 0, .external_lex_state = 4}, + [332] = {.lex_state = 0, .external_lex_state = 3}, + [333] = {.lex_state = 0, .external_lex_state = 3}, + [334] = {.lex_state = 0, .external_lex_state = 6}, + [335] = {.lex_state = 0, .external_lex_state = 3}, [336] = {.lex_state = 0, .external_lex_state = 4}, [337] = {.lex_state = 0, .external_lex_state = 4}, [338] = {.lex_state = 0, .external_lex_state = 4}, - [339] = {.lex_state = 0, .external_lex_state = 3}, - [340] = {.lex_state = 0, .external_lex_state = 4}, + [339] = {.lex_state = 0, .external_lex_state = 4}, + [340] = {.lex_state = 0, .external_lex_state = 3}, [341] = {.lex_state = 0, .external_lex_state = 4}, - [342] = {.lex_state = 0, .external_lex_state = 3}, + [342] = {.lex_state = 0, .external_lex_state = 4}, [343] = {.lex_state = 0, .external_lex_state = 4}, - [344] = {.lex_state = 0, .external_lex_state = 3}, + [344] = {.lex_state = 0, .external_lex_state = 4}, [345] = {.lex_state = 0, .external_lex_state = 4}, [346] = {.lex_state = 0, .external_lex_state = 4}, [347] = {.lex_state = 0, .external_lex_state = 4}, [348] = {.lex_state = 0, .external_lex_state = 4}, - [349] = {.lex_state = 0, .external_lex_state = 6}, - [350] = {.lex_state = 0, .external_lex_state = 3}, + [349] = {.lex_state = 0, .external_lex_state = 4}, + [350] = {.lex_state = 0, .external_lex_state = 4}, [351] = {.lex_state = 0, .external_lex_state = 3}, - [352] = {.lex_state = 0, .external_lex_state = 3}, - [353] = {.lex_state = 0, .external_lex_state = 3}, - [354] = {.lex_state = 0, .external_lex_state = 4}, + [352] = {.lex_state = 0, .external_lex_state = 4}, + [353] = {.lex_state = 0, .external_lex_state = 4}, + [354] = {.lex_state = 0, .external_lex_state = 5}, [355] = {.lex_state = 0, .external_lex_state = 3}, - [356] = {.lex_state = 0, .external_lex_state = 4}, - [357] = {.lex_state = 0, .external_lex_state = 4}, + [356] = {.lex_state = 0, .external_lex_state = 3}, + [357] = {.lex_state = 0, .external_lex_state = 3}, [358] = {.lex_state = 0, .external_lex_state = 3}, [359] = {.lex_state = 0, .external_lex_state = 3}, [360] = {.lex_state = 0, .external_lex_state = 3}, - [361] = {.lex_state = 0, .external_lex_state = 3}, - [362] = {.lex_state = 0, .external_lex_state = 4}, - [363] = {.lex_state = 0, .external_lex_state = 4}, + [361] = {.lex_state = 0, .external_lex_state = 4}, + [362] = {.lex_state = 0, .external_lex_state = 3}, + [363] = {.lex_state = 0, .external_lex_state = 3}, [364] = {.lex_state = 0, .external_lex_state = 3}, - [365] = {.lex_state = 0, .external_lex_state = 4}, + [365] = {.lex_state = 0, .external_lex_state = 3}, [366] = {.lex_state = 0, .external_lex_state = 3}, [367] = {.lex_state = 0, .external_lex_state = 3}, [368] = {.lex_state = 0, .external_lex_state = 3}, [369] = {.lex_state = 0, .external_lex_state = 3}, - [370] = {.lex_state = 0, .external_lex_state = 4}, - [371] = {.lex_state = 0, .external_lex_state = 3}, + [370] = {.lex_state = 0, .external_lex_state = 3}, + [371] = {.lex_state = 0, .external_lex_state = 4}, [372] = {.lex_state = 0, .external_lex_state = 3}, [373] = {.lex_state = 0, .external_lex_state = 3}, [374] = {.lex_state = 0, .external_lex_state = 3}, [375] = {.lex_state = 0, .external_lex_state = 3}, - [376] = {.lex_state = 0, .external_lex_state = 3}, - [377] = {.lex_state = 0, .external_lex_state = 6}, - [378] = {.lex_state = 0, .external_lex_state = 10}, - [379] = {.lex_state = 0, .external_lex_state = 6}, - [380] = {.lex_state = 0, .external_lex_state = 6}, - [381] = {.lex_state = 0, .external_lex_state = 6}, - [382] = {.lex_state = 0, .external_lex_state = 10}, - [383] = {.lex_state = 0, .external_lex_state = 6}, - [384] = {.lex_state = 0, .external_lex_state = 6}, - [385] = {.lex_state = 0, .external_lex_state = 10}, + [376] = {.lex_state = 0, .external_lex_state = 4}, + [377] = {.lex_state = 0, .external_lex_state = 5}, + [378] = {.lex_state = 0, .external_lex_state = 5}, + [379] = {.lex_state = 0, .external_lex_state = 5}, + [380] = {.lex_state = 0, .external_lex_state = 5}, + [381] = {.lex_state = 0, .external_lex_state = 5}, + [382] = {.lex_state = 0, .external_lex_state = 5}, + [383] = {.lex_state = 0, .external_lex_state = 5}, + [384] = {.lex_state = 0, .external_lex_state = 5}, + [385] = {.lex_state = 0, .external_lex_state = 6}, [386] = {.lex_state = 0, .external_lex_state = 10}, [387] = {.lex_state = 0, .external_lex_state = 5}, - [388] = {.lex_state = 0, .external_lex_state = 10}, - [389] = {.lex_state = 0, .external_lex_state = 5}, - [390] = {.lex_state = 0, .external_lex_state = 5}, + [388] = {.lex_state = 0, .external_lex_state = 6}, + [389] = {.lex_state = 0, .external_lex_state = 10}, + [390] = {.lex_state = 0, .external_lex_state = 10}, [391] = {.lex_state = 0, .external_lex_state = 5}, - [392] = {.lex_state = 0, .external_lex_state = 10}, - [393] = {.lex_state = 0, .external_lex_state = 10}, + [392] = {.lex_state = 0, .external_lex_state = 5}, + [393] = {.lex_state = 0, .external_lex_state = 5}, [394] = {.lex_state = 0, .external_lex_state = 6}, - [395] = {.lex_state = 0, .external_lex_state = 6}, + [395] = {.lex_state = 0, .external_lex_state = 5}, [396] = {.lex_state = 0, .external_lex_state = 5}, [397] = {.lex_state = 0, .external_lex_state = 5}, - [398] = {.lex_state = 0, .external_lex_state = 6}, - [399] = {.lex_state = 0, .external_lex_state = 5}, - [400] = {.lex_state = 0, .external_lex_state = 6}, - [401] = {.lex_state = 0, .external_lex_state = 6}, - [402] = {.lex_state = 0, .external_lex_state = 6}, - [403] = {.lex_state = 0, .external_lex_state = 6}, + [398] = {.lex_state = 0, .external_lex_state = 10}, + [399] = {.lex_state = 0, .external_lex_state = 10}, + [400] = {.lex_state = 0, .external_lex_state = 10}, + [401] = {.lex_state = 0, .external_lex_state = 5}, + [402] = {.lex_state = 0, .external_lex_state = 10}, + [403] = {.lex_state = 0, .external_lex_state = 10}, [404] = {.lex_state = 0, .external_lex_state = 6}, - [405] = {.lex_state = 0, .external_lex_state = 10}, - [406] = {.lex_state = 0, .external_lex_state = 5}, + [405] = {.lex_state = 0, .external_lex_state = 6}, + [406] = {.lex_state = 0, .external_lex_state = 6}, [407] = {.lex_state = 0, .external_lex_state = 6}, [408] = {.lex_state = 0, .external_lex_state = 5}, - [409] = {.lex_state = 0, .external_lex_state = 5}, - [410] = {.lex_state = 0, .external_lex_state = 5}, + [409] = {.lex_state = 0, .external_lex_state = 6}, + [410] = {.lex_state = 0, .external_lex_state = 6}, [411] = {.lex_state = 0, .external_lex_state = 6}, [412] = {.lex_state = 0, .external_lex_state = 5}, - [413] = {.lex_state = 0, .external_lex_state = 10}, - [414] = {.lex_state = 0, .external_lex_state = 5}, + [413] = {.lex_state = 0, .external_lex_state = 6}, + [414] = {.lex_state = 0, .external_lex_state = 10}, [415] = {.lex_state = 0, .external_lex_state = 6}, - [416] = {.lex_state = 0, .external_lex_state = 10}, - [417] = {.lex_state = 0, .external_lex_state = 5}, - [418] = {.lex_state = 0, .external_lex_state = 6}, + [416] = {.lex_state = 0, .external_lex_state = 6}, + [417] = {.lex_state = 0, .external_lex_state = 10}, + [418] = {.lex_state = 0, .external_lex_state = 10}, [419] = {.lex_state = 0, .external_lex_state = 5}, - [420] = {.lex_state = 0, .external_lex_state = 6}, + [420] = {.lex_state = 0, .external_lex_state = 5}, [421] = {.lex_state = 0, .external_lex_state = 5}, - [422] = {.lex_state = 0, .external_lex_state = 5}, - [423] = {.lex_state = 0, .external_lex_state = 10}, + [422] = {.lex_state = 0, .external_lex_state = 10}, + [423] = {.lex_state = 0, .external_lex_state = 6}, [424] = {.lex_state = 0, .external_lex_state = 6}, - [425] = {.lex_state = 0, .external_lex_state = 5}, - [426] = {.lex_state = 0, .external_lex_state = 6}, - [427] = {.lex_state = 0, .external_lex_state = 5}, - [428] = {.lex_state = 0, .external_lex_state = 6}, - [429] = {.lex_state = 0, .external_lex_state = 10}, + [425] = {.lex_state = 0, .external_lex_state = 6}, + [426] = {.lex_state = 0, .external_lex_state = 10}, + [427] = {.lex_state = 0, .external_lex_state = 6}, + [428] = {.lex_state = 0, .external_lex_state = 5}, + [429] = {.lex_state = 0, .external_lex_state = 6}, [430] = {.lex_state = 0, .external_lex_state = 10}, - [431] = {.lex_state = 0, .external_lex_state = 10}, - [432] = {.lex_state = 0, .external_lex_state = 10}, - [433] = {.lex_state = 0, .external_lex_state = 5}, - [434] = {.lex_state = 0, .external_lex_state = 5}, - [435] = {.lex_state = 0, .external_lex_state = 10}, - [436] = {.lex_state = 0, .external_lex_state = 10}, - [437] = {.lex_state = 0, .external_lex_state = 5}, + [431] = {.lex_state = 0, .external_lex_state = 6}, + [432] = {.lex_state = 0, .external_lex_state = 6}, + [433] = {.lex_state = 0, .external_lex_state = 10}, + [434] = {.lex_state = 0, .external_lex_state = 10}, + [435] = {.lex_state = 0, .external_lex_state = 6}, + [436] = {.lex_state = 0, .external_lex_state = 6}, + [437] = {.lex_state = 0, .external_lex_state = 10}, [438] = {.lex_state = 0, .external_lex_state = 6}, - [439] = {.lex_state = 0, .external_lex_state = 6}, - [440] = {.lex_state = 0, .external_lex_state = 5}, + [439] = {.lex_state = 0, .external_lex_state = 10}, + [440] = {.lex_state = 0, .external_lex_state = 6}, [441] = {.lex_state = 0, .external_lex_state = 10}, - [442] = {.lex_state = 0, .external_lex_state = 10}, + [442] = {.lex_state = 0, .external_lex_state = 5}, [443] = {.lex_state = 0, .external_lex_state = 5}, [444] = {.lex_state = 0, .external_lex_state = 10}, [445] = {.lex_state = 0, .external_lex_state = 10}, [446] = {.lex_state = 0, .external_lex_state = 11}, [447] = {.lex_state = 0, .external_lex_state = 11}, [448] = {.lex_state = 0, .external_lex_state = 11}, - [449] = {.lex_state = 0, .external_lex_state = 9}, - [450] = {.lex_state = 0, .external_lex_state = 8}, - [451] = {.lex_state = 0, .external_lex_state = 7}, + [449] = {.lex_state = 0, .external_lex_state = 7}, + [450] = {.lex_state = 0, .external_lex_state = 9}, + [451] = {.lex_state = 0, .external_lex_state = 8}, [452] = {.lex_state = 0, .external_lex_state = 12}, [453] = {.lex_state = 0, .external_lex_state = 12}, [454] = {.lex_state = 0, .external_lex_state = 12}, @@ -5575,184 +5575,184 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1122] = {.lex_state = 1, .external_lex_state = 16}, [1123] = {.lex_state = 1, .external_lex_state = 14}, [1124] = {.lex_state = 1, .external_lex_state = 17}, - [1125] = {.lex_state = 1, .external_lex_state = 18}, + [1125] = {.lex_state = 1, .external_lex_state = 17}, [1126] = {.lex_state = 1, .external_lex_state = 18}, [1127] = {.lex_state = 1, .external_lex_state = 19}, - [1128] = {.lex_state = 1, .external_lex_state = 19}, - [1129] = {.lex_state = 1, .external_lex_state = 17}, + [1128] = {.lex_state = 1, .external_lex_state = 18}, + [1129] = {.lex_state = 1, .external_lex_state = 19}, [1130] = {.lex_state = 1, .external_lex_state = 20}, [1131] = {.lex_state = 1, .external_lex_state = 21}, [1132] = {.lex_state = 1, .external_lex_state = 22}, - [1133] = {.lex_state = 1, .external_lex_state = 23}, - [1134] = {.lex_state = 1, .external_lex_state = 24}, - [1135] = {.lex_state = 1, .external_lex_state = 14}, - [1136] = {.lex_state = 1, .external_lex_state = 25}, - [1137] = {.lex_state = 1, .external_lex_state = 16}, + [1133] = {.lex_state = 1, .external_lex_state = 14}, + [1134] = {.lex_state = 1, .external_lex_state = 16}, + [1135] = {.lex_state = 1, .external_lex_state = 23}, + [1136] = {.lex_state = 1, .external_lex_state = 24}, + [1137] = {.lex_state = 1, .external_lex_state = 25}, [1138] = {.lex_state = 1, .external_lex_state = 15}, [1139] = {.lex_state = 0, .external_lex_state = 26}, - [1140] = {.lex_state = 0, .external_lex_state = 26}, + [1140] = {.lex_state = 0, .external_lex_state = 27}, [1141] = {.lex_state = 0, .external_lex_state = 27}, - [1142] = {.lex_state = 0, .external_lex_state = 26}, + [1142] = {.lex_state = 0, .external_lex_state = 27}, [1143] = {.lex_state = 0, .external_lex_state = 27}, [1144] = {.lex_state = 0, .external_lex_state = 27}, - [1145] = {.lex_state = 0, .external_lex_state = 27}, + [1145] = {.lex_state = 1, .external_lex_state = 18}, [1146] = {.lex_state = 0, .external_lex_state = 28}, - [1147] = {.lex_state = 0, .external_lex_state = 28}, - [1148] = {.lex_state = 0, .external_lex_state = 28}, + [1147] = {.lex_state = 1, .external_lex_state = 17}, + [1148] = {.lex_state = 1, .external_lex_state = 19}, [1149] = {.lex_state = 0, .external_lex_state = 28}, - [1150] = {.lex_state = 0, .external_lex_state = 26}, + [1150] = {.lex_state = 0, .external_lex_state = 28}, [1151] = {.lex_state = 0, .external_lex_state = 26}, - [1152] = {.lex_state = 1, .external_lex_state = 17}, + [1152] = {.lex_state = 0, .external_lex_state = 26}, [1153] = {.lex_state = 0, .external_lex_state = 26}, - [1154] = {.lex_state = 0, .external_lex_state = 28}, + [1154] = {.lex_state = 0, .external_lex_state = 26}, [1155] = {.lex_state = 0, .external_lex_state = 28}, [1156] = {.lex_state = 0, .external_lex_state = 28}, - [1157] = {.lex_state = 1, .external_lex_state = 19}, - [1158] = {.lex_state = 1, .external_lex_state = 18}, - [1159] = {.lex_state = 0, .external_lex_state = 28}, - [1160] = {.lex_state = 0, .external_lex_state = 26}, - [1161] = {.lex_state = 0, .external_lex_state = 27}, - [1162] = {.lex_state = 0, .external_lex_state = 26}, + [1157] = {.lex_state = 0, .external_lex_state = 28}, + [1158] = {.lex_state = 0, .external_lex_state = 26}, + [1159] = {.lex_state = 0, .external_lex_state = 26}, + [1160] = {.lex_state = 0, .external_lex_state = 28}, + [1161] = {.lex_state = 0, .external_lex_state = 26}, + [1162] = {.lex_state = 0, .external_lex_state = 27}, [1163] = {.lex_state = 0, .external_lex_state = 27}, - [1164] = {.lex_state = 0, .external_lex_state = 27}, + [1164] = {.lex_state = 0, .external_lex_state = 28}, [1165] = {.lex_state = 0, .external_lex_state = 27}, [1166] = {.lex_state = 0, .external_lex_state = 27}, [1167] = {.lex_state = 0, .external_lex_state = 28}, - [1168] = {.lex_state = 0, .external_lex_state = 26}, - [1169] = {.lex_state = 0, .external_lex_state = 26}, - [1170] = {.lex_state = 0, .external_lex_state = 26}, - [1171] = {.lex_state = 0, .external_lex_state = 27}, - [1172] = {.lex_state = 0, .external_lex_state = 27}, - [1173] = {.lex_state = 0, .external_lex_state = 27}, - [1174] = {.lex_state = 0, .external_lex_state = 27}, - [1175] = {.lex_state = 0, .external_lex_state = 27}, - [1176] = {.lex_state = 0, .external_lex_state = 27}, - [1177] = {.lex_state = 0, .external_lex_state = 27}, - [1178] = {.lex_state = 0, .external_lex_state = 27}, - [1179] = {.lex_state = 0, .external_lex_state = 26}, - [1180] = {.lex_state = 0, .external_lex_state = 26}, - [1181] = {.lex_state = 0, .external_lex_state = 26}, - [1182] = {.lex_state = 0, .external_lex_state = 26}, - [1183] = {.lex_state = 0, .external_lex_state = 27}, - [1184] = {.lex_state = 0, .external_lex_state = 27}, - [1185] = {.lex_state = 0, .external_lex_state = 27}, - [1186] = {.lex_state = 0, .external_lex_state = 26}, - [1187] = {.lex_state = 0, .external_lex_state = 26}, - [1188] = {.lex_state = 0, .external_lex_state = 26}, - [1189] = {.lex_state = 0, .external_lex_state = 26}, - [1190] = {.lex_state = 0, .external_lex_state = 26}, - [1191] = {.lex_state = 0, .external_lex_state = 26}, + [1168] = {.lex_state = 0, .external_lex_state = 28}, + [1169] = {.lex_state = 0, .external_lex_state = 28}, + [1170] = {.lex_state = 0, .external_lex_state = 28}, + [1171] = {.lex_state = 0, .external_lex_state = 28}, + [1172] = {.lex_state = 0, .external_lex_state = 28}, + [1173] = {.lex_state = 0, .external_lex_state = 28}, + [1174] = {.lex_state = 0, .external_lex_state = 28}, + [1175] = {.lex_state = 0, .external_lex_state = 28}, + [1176] = {.lex_state = 0, .external_lex_state = 26}, + [1177] = {.lex_state = 0, .external_lex_state = 28}, + [1178] = {.lex_state = 0, .external_lex_state = 28}, + [1179] = {.lex_state = 0, .external_lex_state = 28}, + [1180] = {.lex_state = 0, .external_lex_state = 28}, + [1181] = {.lex_state = 0, .external_lex_state = 28}, + [1182] = {.lex_state = 0, .external_lex_state = 28}, + [1183] = {.lex_state = 0, .external_lex_state = 28}, + [1184] = {.lex_state = 0, .external_lex_state = 28}, + [1185] = {.lex_state = 0, .external_lex_state = 28}, + [1186] = {.lex_state = 0, .external_lex_state = 28}, + [1187] = {.lex_state = 0, .external_lex_state = 28}, + [1188] = {.lex_state = 0, .external_lex_state = 28}, + [1189] = {.lex_state = 0, .external_lex_state = 27}, + [1190] = {.lex_state = 0, .external_lex_state = 27}, + [1191] = {.lex_state = 0, .external_lex_state = 27}, [1192] = {.lex_state = 0, .external_lex_state = 27}, - [1193] = {.lex_state = 0, .external_lex_state = 26}, - [1194] = {.lex_state = 0, .external_lex_state = 27}, + [1193] = {.lex_state = 0, .external_lex_state = 27}, + [1194] = {.lex_state = 0, .external_lex_state = 26}, [1195] = {.lex_state = 0, .external_lex_state = 26}, [1196] = {.lex_state = 0, .external_lex_state = 27}, [1197] = {.lex_state = 0, .external_lex_state = 27}, - [1198] = {.lex_state = 0, .external_lex_state = 26}, - [1199] = {.lex_state = 0, .external_lex_state = 26}, - [1200] = {.lex_state = 0, .external_lex_state = 26}, + [1198] = {.lex_state = 0, .external_lex_state = 27}, + [1199] = {.lex_state = 0, .external_lex_state = 27}, + [1200] = {.lex_state = 0, .external_lex_state = 27}, [1201] = {.lex_state = 0, .external_lex_state = 27}, [1202] = {.lex_state = 0, .external_lex_state = 26}, [1203] = {.lex_state = 0, .external_lex_state = 27}, [1204] = {.lex_state = 0, .external_lex_state = 27}, - [1205] = {.lex_state = 0, .external_lex_state = 26}, - [1206] = {.lex_state = 0, .external_lex_state = 26}, + [1205] = {.lex_state = 0, .external_lex_state = 27}, + [1206] = {.lex_state = 0, .external_lex_state = 27}, [1207] = {.lex_state = 0, .external_lex_state = 27}, - [1208] = {.lex_state = 0, .external_lex_state = 26}, - [1209] = {.lex_state = 0, .external_lex_state = 26}, + [1208] = {.lex_state = 0, .external_lex_state = 27}, + [1209] = {.lex_state = 0, .external_lex_state = 27}, [1210] = {.lex_state = 0, .external_lex_state = 26}, [1211] = {.lex_state = 0, .external_lex_state = 27}, - [1212] = {.lex_state = 0, .external_lex_state = 26}, - [1213] = {.lex_state = 0, .external_lex_state = 26}, + [1212] = {.lex_state = 0, .external_lex_state = 27}, + [1213] = {.lex_state = 0, .external_lex_state = 27}, [1214] = {.lex_state = 0, .external_lex_state = 27}, [1215] = {.lex_state = 0, .external_lex_state = 26}, - [1216] = {.lex_state = 0, .external_lex_state = 26}, + [1216] = {.lex_state = 0, .external_lex_state = 27}, [1217] = {.lex_state = 0, .external_lex_state = 26}, - [1218] = {.lex_state = 0, .external_lex_state = 26}, - [1219] = {.lex_state = 0, .external_lex_state = 26}, + [1218] = {.lex_state = 0, .external_lex_state = 27}, + [1219] = {.lex_state = 0, .external_lex_state = 27}, [1220] = {.lex_state = 0, .external_lex_state = 27}, [1221] = {.lex_state = 0, .external_lex_state = 27}, [1222] = {.lex_state = 0, .external_lex_state = 27}, [1223] = {.lex_state = 0, .external_lex_state = 27}, - [1224] = {.lex_state = 0, .external_lex_state = 26}, - [1225] = {.lex_state = 0, .external_lex_state = 26}, - [1226] = {.lex_state = 0, .external_lex_state = 26}, - [1227] = {.lex_state = 0, .external_lex_state = 26}, - [1228] = {.lex_state = 0, .external_lex_state = 26}, - [1229] = {.lex_state = 0, .external_lex_state = 26}, - [1230] = {.lex_state = 0, .external_lex_state = 26}, - [1231] = {.lex_state = 0, .external_lex_state = 26}, - [1232] = {.lex_state = 0, .external_lex_state = 26}, - [1233] = {.lex_state = 0, .external_lex_state = 26}, + [1224] = {.lex_state = 0, .external_lex_state = 27}, + [1225] = {.lex_state = 0, .external_lex_state = 27}, + [1226] = {.lex_state = 0, .external_lex_state = 27}, + [1227] = {.lex_state = 0, .external_lex_state = 27}, + [1228] = {.lex_state = 0, .external_lex_state = 27}, + [1229] = {.lex_state = 0, .external_lex_state = 27}, + [1230] = {.lex_state = 0, .external_lex_state = 27}, + [1231] = {.lex_state = 0, .external_lex_state = 27}, + [1232] = {.lex_state = 0, .external_lex_state = 27}, + [1233] = {.lex_state = 0, .external_lex_state = 27}, [1234] = {.lex_state = 0, .external_lex_state = 27}, - [1235] = {.lex_state = 0, .external_lex_state = 26}, + [1235] = {.lex_state = 0, .external_lex_state = 27}, [1236] = {.lex_state = 0, .external_lex_state = 27}, - [1237] = {.lex_state = 0, .external_lex_state = 26}, - [1238] = {.lex_state = 0, .external_lex_state = 26}, - [1239] = {.lex_state = 0, .external_lex_state = 26}, + [1237] = {.lex_state = 0, .external_lex_state = 27}, + [1238] = {.lex_state = 0, .external_lex_state = 27}, + [1239] = {.lex_state = 0, .external_lex_state = 27}, [1240] = {.lex_state = 0, .external_lex_state = 27}, [1241] = {.lex_state = 0, .external_lex_state = 27}, [1242] = {.lex_state = 0, .external_lex_state = 27}, - [1243] = {.lex_state = 0, .external_lex_state = 26}, - [1244] = {.lex_state = 0, .external_lex_state = 26}, - [1245] = {.lex_state = 0, .external_lex_state = 26}, - [1246] = {.lex_state = 0, .external_lex_state = 26}, - [1247] = {.lex_state = 0, .external_lex_state = 26}, - [1248] = {.lex_state = 0, .external_lex_state = 26}, + [1243] = {.lex_state = 0, .external_lex_state = 27}, + [1244] = {.lex_state = 0, .external_lex_state = 27}, + [1245] = {.lex_state = 0, .external_lex_state = 27}, + [1246] = {.lex_state = 0, .external_lex_state = 27}, + [1247] = {.lex_state = 0, .external_lex_state = 27}, + [1248] = {.lex_state = 0, .external_lex_state = 27}, [1249] = {.lex_state = 0, .external_lex_state = 27}, - [1250] = {.lex_state = 0, .external_lex_state = 27}, - [1251] = {.lex_state = 0, .external_lex_state = 27}, - [1252] = {.lex_state = 0, .external_lex_state = 27}, - [1253] = {.lex_state = 0, .external_lex_state = 27}, - [1254] = {.lex_state = 0, .external_lex_state = 27}, - [1255] = {.lex_state = 0, .external_lex_state = 27}, - [1256] = {.lex_state = 0, .external_lex_state = 27}, - [1257] = {.lex_state = 0, .external_lex_state = 27}, + [1250] = {.lex_state = 0, .external_lex_state = 26}, + [1251] = {.lex_state = 0, .external_lex_state = 26}, + [1252] = {.lex_state = 0, .external_lex_state = 26}, + [1253] = {.lex_state = 0, .external_lex_state = 26}, + [1254] = {.lex_state = 0, .external_lex_state = 28}, + [1255] = {.lex_state = 0, .external_lex_state = 26}, + [1256] = {.lex_state = 0, .external_lex_state = 26}, + [1257] = {.lex_state = 0, .external_lex_state = 26}, [1258] = {.lex_state = 0, .external_lex_state = 26}, - [1259] = {.lex_state = 0, .external_lex_state = 27}, + [1259] = {.lex_state = 0, .external_lex_state = 26}, [1260] = {.lex_state = 0, .external_lex_state = 26}, [1261] = {.lex_state = 0, .external_lex_state = 26}, [1262] = {.lex_state = 0, .external_lex_state = 26}, [1263] = {.lex_state = 0, .external_lex_state = 26}, - [1264] = {.lex_state = 0, .external_lex_state = 27}, - [1265] = {.lex_state = 0, .external_lex_state = 27}, - [1266] = {.lex_state = 0, .external_lex_state = 27}, - [1267] = {.lex_state = 0, .external_lex_state = 27}, - [1268] = {.lex_state = 0, .external_lex_state = 27}, - [1269] = {.lex_state = 0, .external_lex_state = 27}, - [1270] = {.lex_state = 0, .external_lex_state = 27}, - [1271] = {.lex_state = 0, .external_lex_state = 27}, - [1272] = {.lex_state = 0, .external_lex_state = 27}, - [1273] = {.lex_state = 0, .external_lex_state = 27}, - [1274] = {.lex_state = 0, .external_lex_state = 27}, - [1275] = {.lex_state = 0, .external_lex_state = 27}, - [1276] = {.lex_state = 0, .external_lex_state = 27}, - [1277] = {.lex_state = 0, .external_lex_state = 27}, - [1278] = {.lex_state = 0, .external_lex_state = 27}, - [1279] = {.lex_state = 0, .external_lex_state = 28}, - [1280] = {.lex_state = 0, .external_lex_state = 28}, - [1281] = {.lex_state = 0, .external_lex_state = 28}, - [1282] = {.lex_state = 0, .external_lex_state = 28}, - [1283] = {.lex_state = 0, .external_lex_state = 28}, - [1284] = {.lex_state = 0, .external_lex_state = 28}, - [1285] = {.lex_state = 0, .external_lex_state = 28}, - [1286] = {.lex_state = 0, .external_lex_state = 28}, - [1287] = {.lex_state = 0, .external_lex_state = 28}, - [1288] = {.lex_state = 0, .external_lex_state = 28}, - [1289] = {.lex_state = 0, .external_lex_state = 28}, + [1264] = {.lex_state = 0, .external_lex_state = 26}, + [1265] = {.lex_state = 0, .external_lex_state = 26}, + [1266] = {.lex_state = 0, .external_lex_state = 26}, + [1267] = {.lex_state = 0, .external_lex_state = 26}, + [1268] = {.lex_state = 0, .external_lex_state = 26}, + [1269] = {.lex_state = 0, .external_lex_state = 26}, + [1270] = {.lex_state = 0, .external_lex_state = 26}, + [1271] = {.lex_state = 0, .external_lex_state = 26}, + [1272] = {.lex_state = 0, .external_lex_state = 26}, + [1273] = {.lex_state = 0, .external_lex_state = 26}, + [1274] = {.lex_state = 0, .external_lex_state = 26}, + [1275] = {.lex_state = 0, .external_lex_state = 26}, + [1276] = {.lex_state = 0, .external_lex_state = 26}, + [1277] = {.lex_state = 0, .external_lex_state = 26}, + [1278] = {.lex_state = 0, .external_lex_state = 26}, + [1279] = {.lex_state = 0, .external_lex_state = 26}, + [1280] = {.lex_state = 0, .external_lex_state = 26}, + [1281] = {.lex_state = 0, .external_lex_state = 26}, + [1282] = {.lex_state = 0, .external_lex_state = 26}, + [1283] = {.lex_state = 0, .external_lex_state = 26}, + [1284] = {.lex_state = 0, .external_lex_state = 26}, + [1285] = {.lex_state = 0, .external_lex_state = 26}, + [1286] = {.lex_state = 0, .external_lex_state = 26}, + [1287] = {.lex_state = 0, .external_lex_state = 26}, + [1288] = {.lex_state = 0, .external_lex_state = 26}, + [1289] = {.lex_state = 0, .external_lex_state = 26}, [1290] = {.lex_state = 0, .external_lex_state = 28}, [1291] = {.lex_state = 0, .external_lex_state = 28}, [1292] = {.lex_state = 0, .external_lex_state = 28}, [1293] = {.lex_state = 0, .external_lex_state = 28}, [1294] = {.lex_state = 0, .external_lex_state = 28}, - [1295] = {.lex_state = 0, .external_lex_state = 28}, - [1296] = {.lex_state = 0, .external_lex_state = 28}, - [1297] = {.lex_state = 0, .external_lex_state = 28}, - [1298] = {.lex_state = 0, .external_lex_state = 28}, - [1299] = {.lex_state = 0, .external_lex_state = 28}, - [1300] = {.lex_state = 0, .external_lex_state = 28}, + [1295] = {.lex_state = 0, .external_lex_state = 26}, + [1296] = {.lex_state = 0, .external_lex_state = 26}, + [1297] = {.lex_state = 0, .external_lex_state = 26}, + [1298] = {.lex_state = 0, .external_lex_state = 26}, + [1299] = {.lex_state = 0, .external_lex_state = 26}, + [1300] = {.lex_state = 0, .external_lex_state = 26}, [1301] = {.lex_state = 0, .external_lex_state = 28}, - [1302] = {.lex_state = 0, .external_lex_state = 28}, + [1302] = {.lex_state = 0, .external_lex_state = 26}, [1303] = {.lex_state = 0, .external_lex_state = 28}, [1304] = {.lex_state = 0, .external_lex_state = 28}, [1305] = {.lex_state = 0, .external_lex_state = 28}, @@ -5766,13 +5766,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1313] = {.lex_state = 0, .external_lex_state = 28}, [1314] = {.lex_state = 0, .external_lex_state = 28}, [1315] = {.lex_state = 0, .external_lex_state = 28}, - [1316] = {.lex_state = 0, .external_lex_state = 28}, + [1316] = {.lex_state = 0, .external_lex_state = 26}, [1317] = {.lex_state = 0, .external_lex_state = 28}, [1318] = {.lex_state = 0, .external_lex_state = 28}, [1319] = {.lex_state = 0, .external_lex_state = 28}, [1320] = {.lex_state = 0, .external_lex_state = 28}, [1321] = {.lex_state = 0, .external_lex_state = 28}, - [1322] = {.lex_state = 0, .external_lex_state = 28}, + [1322] = {.lex_state = 0, .external_lex_state = 26}, [1323] = {.lex_state = 0, .external_lex_state = 28}, [1324] = {.lex_state = 0, .external_lex_state = 28}, [1325] = {.lex_state = 0, .external_lex_state = 28}, @@ -5783,51 +5783,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1330] = {.lex_state = 0, .external_lex_state = 28}, [1331] = {.lex_state = 0, .external_lex_state = 28}, [1332] = {.lex_state = 0, .external_lex_state = 28}, - [1333] = {.lex_state = 0, .external_lex_state = 28}, + [1333] = {.lex_state = 0, .external_lex_state = 26}, [1334] = {.lex_state = 0, .external_lex_state = 29}, - [1335] = {.lex_state = 0, .external_lex_state = 29}, + [1335] = {.lex_state = 0, .external_lex_state = 30}, [1336] = {.lex_state = 0, .external_lex_state = 29}, [1337] = {.lex_state = 0, .external_lex_state = 29}, - [1338] = {.lex_state = 0, .external_lex_state = 30}, - [1339] = {.lex_state = 0, .external_lex_state = 30}, + [1338] = {.lex_state = 0, .external_lex_state = 29}, + [1339] = {.lex_state = 0, .external_lex_state = 29}, [1340] = {.lex_state = 0, .external_lex_state = 29}, [1341] = {.lex_state = 0, .external_lex_state = 29}, [1342] = {.lex_state = 0, .external_lex_state = 29}, [1343] = {.lex_state = 0, .external_lex_state = 29}, [1344] = {.lex_state = 0, .external_lex_state = 29}, [1345] = {.lex_state = 0, .external_lex_state = 30}, - [1346] = {.lex_state = 0, .external_lex_state = 31}, + [1346] = {.lex_state = 0, .external_lex_state = 29}, [1347] = {.lex_state = 0, .external_lex_state = 29}, [1348] = {.lex_state = 0, .external_lex_state = 29}, [1349] = {.lex_state = 0, .external_lex_state = 29}, - [1350] = {.lex_state = 0, .external_lex_state = 29}, - [1351] = {.lex_state = 0, .external_lex_state = 29}, - [1352] = {.lex_state = 0, .external_lex_state = 29}, - [1353] = {.lex_state = 0, .external_lex_state = 29}, - [1354] = {.lex_state = 0, .external_lex_state = 29}, - [1355] = {.lex_state = 0, .external_lex_state = 29}, + [1350] = {.lex_state = 0, .external_lex_state = 30}, + [1351] = {.lex_state = 0, .external_lex_state = 30}, + [1352] = {.lex_state = 0, .external_lex_state = 30}, + [1353] = {.lex_state = 0, .external_lex_state = 30}, + [1354] = {.lex_state = 0, .external_lex_state = 30}, + [1355] = {.lex_state = 0, .external_lex_state = 30}, [1356] = {.lex_state = 0, .external_lex_state = 29}, - [1357] = {.lex_state = 0, .external_lex_state = 29}, + [1357] = {.lex_state = 0, .external_lex_state = 31}, [1358] = {.lex_state = 0, .external_lex_state = 29}, - [1359] = {.lex_state = 0, .external_lex_state = 29}, - [1360] = {.lex_state = 0, .external_lex_state = 29}, - [1361] = {.lex_state = 0, .external_lex_state = 29}, - [1362] = {.lex_state = 0, .external_lex_state = 29}, - [1363] = {.lex_state = 0, .external_lex_state = 29}, + [1359] = {.lex_state = 0, .external_lex_state = 30}, + [1360] = {.lex_state = 0, .external_lex_state = 30}, + [1361] = {.lex_state = 0, .external_lex_state = 30}, + [1362] = {.lex_state = 0, .external_lex_state = 30}, + [1363] = {.lex_state = 0, .external_lex_state = 31}, [1364] = {.lex_state = 0, .external_lex_state = 29}, - [1365] = {.lex_state = 0, .external_lex_state = 29}, + [1365] = {.lex_state = 0, .external_lex_state = 31}, [1366] = {.lex_state = 0, .external_lex_state = 29}, [1367] = {.lex_state = 0, .external_lex_state = 29}, [1368] = {.lex_state = 0, .external_lex_state = 29}, [1369] = {.lex_state = 0, .external_lex_state = 29}, [1370] = {.lex_state = 0, .external_lex_state = 29}, - [1371] = {.lex_state = 0, .external_lex_state = 29}, - [1372] = {.lex_state = 0, .external_lex_state = 30}, + [1371] = {.lex_state = 0, .external_lex_state = 30}, + [1372] = {.lex_state = 0, .external_lex_state = 31}, [1373] = {.lex_state = 0, .external_lex_state = 29}, - [1374] = {.lex_state = 0, .external_lex_state = 30}, - [1375] = {.lex_state = 0, .external_lex_state = 29}, - [1376] = {.lex_state = 0, .external_lex_state = 29}, - [1377] = {.lex_state = 0, .external_lex_state = 29}, + [1374] = {.lex_state = 0, .external_lex_state = 29}, + [1375] = {.lex_state = 0, .external_lex_state = 30}, + [1376] = {.lex_state = 0, .external_lex_state = 31}, + [1377] = {.lex_state = 0, .external_lex_state = 31}, [1378] = {.lex_state = 0, .external_lex_state = 29}, [1379] = {.lex_state = 0, .external_lex_state = 29}, [1380] = {.lex_state = 0, .external_lex_state = 29}, @@ -5838,21 +5838,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1385] = {.lex_state = 0, .external_lex_state = 29}, [1386] = {.lex_state = 0, .external_lex_state = 30}, [1387] = {.lex_state = 0, .external_lex_state = 29}, - [1388] = {.lex_state = 0, .external_lex_state = 30}, - [1389] = {.lex_state = 0, .external_lex_state = 30}, - [1390] = {.lex_state = 0, .external_lex_state = 30}, - [1391] = {.lex_state = 0, .external_lex_state = 29}, + [1388] = {.lex_state = 0, .external_lex_state = 31}, + [1389] = {.lex_state = 0, .external_lex_state = 31}, + [1390] = {.lex_state = 0, .external_lex_state = 31}, + [1391] = {.lex_state = 0, .external_lex_state = 31}, [1392] = {.lex_state = 0, .external_lex_state = 31}, - [1393] = {.lex_state = 0, .external_lex_state = 29}, - [1394] = {.lex_state = 0, .external_lex_state = 29}, - [1395] = {.lex_state = 0, .external_lex_state = 29}, - [1396] = {.lex_state = 0, .external_lex_state = 29}, - [1397] = {.lex_state = 0, .external_lex_state = 30}, - [1398] = {.lex_state = 0, .external_lex_state = 29}, - [1399] = {.lex_state = 0, .external_lex_state = 31}, - [1400] = {.lex_state = 0, .external_lex_state = 30}, - [1401] = {.lex_state = 0, .external_lex_state = 30}, - [1402] = {.lex_state = 0, .external_lex_state = 31}, + [1393] = {.lex_state = 0, .external_lex_state = 31}, + [1394] = {.lex_state = 0, .external_lex_state = 31}, + [1395] = {.lex_state = 0, .external_lex_state = 30}, + [1396] = {.lex_state = 0, .external_lex_state = 31}, + [1397] = {.lex_state = 0, .external_lex_state = 31}, + [1398] = {.lex_state = 0, .external_lex_state = 31}, + [1399] = {.lex_state = 0, .external_lex_state = 30}, + [1400] = {.lex_state = 0, .external_lex_state = 31}, + [1401] = {.lex_state = 0, .external_lex_state = 31}, + [1402] = {.lex_state = 0, .external_lex_state = 30}, [1403] = {.lex_state = 0, .external_lex_state = 31}, [1404] = {.lex_state = 0, .external_lex_state = 31}, [1405] = {.lex_state = 0, .external_lex_state = 31}, @@ -5860,380 +5860,380 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1407] = {.lex_state = 0, .external_lex_state = 31}, [1408] = {.lex_state = 0, .external_lex_state = 31}, [1409] = {.lex_state = 0, .external_lex_state = 31}, - [1410] = {.lex_state = 0, .external_lex_state = 31}, + [1410] = {.lex_state = 0, .external_lex_state = 30}, [1411] = {.lex_state = 0, .external_lex_state = 31}, - [1412] = {.lex_state = 0, .external_lex_state = 31}, + [1412] = {.lex_state = 0, .external_lex_state = 30}, [1413] = {.lex_state = 0, .external_lex_state = 31}, [1414] = {.lex_state = 0, .external_lex_state = 31}, [1415] = {.lex_state = 0, .external_lex_state = 30}, - [1416] = {.lex_state = 0, .external_lex_state = 30}, - [1417] = {.lex_state = 0, .external_lex_state = 29}, - [1418] = {.lex_state = 0, .external_lex_state = 29}, + [1416] = {.lex_state = 0, .external_lex_state = 31}, + [1417] = {.lex_state = 0, .external_lex_state = 30}, + [1418] = {.lex_state = 0, .external_lex_state = 31}, [1419] = {.lex_state = 0, .external_lex_state = 31}, - [1420] = {.lex_state = 0, .external_lex_state = 29}, + [1420] = {.lex_state = 0, .external_lex_state = 30}, [1421] = {.lex_state = 0, .external_lex_state = 29}, - [1422] = {.lex_state = 0, .external_lex_state = 29}, + [1422] = {.lex_state = 0, .external_lex_state = 30}, [1423] = {.lex_state = 0, .external_lex_state = 30}, - [1424] = {.lex_state = 0, .external_lex_state = 30}, + [1424] = {.lex_state = 0, .external_lex_state = 29}, [1425] = {.lex_state = 0, .external_lex_state = 30}, [1426] = {.lex_state = 0, .external_lex_state = 29}, - [1427] = {.lex_state = 0, .external_lex_state = 31}, + [1427] = {.lex_state = 0, .external_lex_state = 29}, [1428] = {.lex_state = 0, .external_lex_state = 29}, - [1429] = {.lex_state = 0, .external_lex_state = 29}, + [1429] = {.lex_state = 0, .external_lex_state = 30}, [1430] = {.lex_state = 0, .external_lex_state = 29}, - [1431] = {.lex_state = 0, .external_lex_state = 29}, + [1431] = {.lex_state = 0, .external_lex_state = 30}, [1432] = {.lex_state = 0, .external_lex_state = 29}, - [1433] = {.lex_state = 0, .external_lex_state = 29}, - [1434] = {.lex_state = 0, .external_lex_state = 29}, + [1433] = {.lex_state = 0, .external_lex_state = 30}, + [1434] = {.lex_state = 0, .external_lex_state = 31}, [1435] = {.lex_state = 0, .external_lex_state = 29}, [1436] = {.lex_state = 0, .external_lex_state = 29}, - [1437] = {.lex_state = 0, .external_lex_state = 29}, - [1438] = {.lex_state = 0, .external_lex_state = 29}, - [1439] = {.lex_state = 0, .external_lex_state = 29}, + [1437] = {.lex_state = 0, .external_lex_state = 31}, + [1438] = {.lex_state = 0, .external_lex_state = 30}, + [1439] = {.lex_state = 0, .external_lex_state = 31}, [1440] = {.lex_state = 0, .external_lex_state = 29}, - [1441] = {.lex_state = 0, .external_lex_state = 30}, + [1441] = {.lex_state = 0, .external_lex_state = 31}, [1442] = {.lex_state = 0, .external_lex_state = 29}, - [1443] = {.lex_state = 0, .external_lex_state = 30}, + [1443] = {.lex_state = 0, .external_lex_state = 31}, [1444] = {.lex_state = 0, .external_lex_state = 29}, [1445] = {.lex_state = 0, .external_lex_state = 30}, - [1446] = {.lex_state = 0, .external_lex_state = 30}, - [1447] = {.lex_state = 0, .external_lex_state = 29}, + [1446] = {.lex_state = 0, .external_lex_state = 29}, + [1447] = {.lex_state = 0, .external_lex_state = 31}, [1448] = {.lex_state = 0, .external_lex_state = 30}, - [1449] = {.lex_state = 0, .external_lex_state = 31}, + [1449] = {.lex_state = 0, .external_lex_state = 30}, [1450] = {.lex_state = 0, .external_lex_state = 30}, - [1451] = {.lex_state = 0, .external_lex_state = 31}, - [1452] = {.lex_state = 0, .external_lex_state = 29}, - [1453] = {.lex_state = 0, .external_lex_state = 31}, - [1454] = {.lex_state = 0, .external_lex_state = 29}, - [1455] = {.lex_state = 0, .external_lex_state = 29}, - [1456] = {.lex_state = 0, .external_lex_state = 30}, + [1451] = {.lex_state = 0, .external_lex_state = 30}, + [1452] = {.lex_state = 0, .external_lex_state = 30}, + [1453] = {.lex_state = 0, .external_lex_state = 30}, + [1454] = {.lex_state = 0, .external_lex_state = 30}, + [1455] = {.lex_state = 0, .external_lex_state = 31}, + [1456] = {.lex_state = 0, .external_lex_state = 31}, [1457] = {.lex_state = 0, .external_lex_state = 30}, - [1458] = {.lex_state = 0, .external_lex_state = 29}, - [1459] = {.lex_state = 0, .external_lex_state = 30}, - [1460] = {.lex_state = 0, .external_lex_state = 29}, + [1458] = {.lex_state = 0, .external_lex_state = 30}, + [1459] = {.lex_state = 0, .external_lex_state = 31}, + [1460] = {.lex_state = 0, .external_lex_state = 31}, [1461] = {.lex_state = 0, .external_lex_state = 30}, - [1462] = {.lex_state = 0, .external_lex_state = 29}, - [1463] = {.lex_state = 0, .external_lex_state = 29}, - [1464] = {.lex_state = 0, .external_lex_state = 29}, + [1462] = {.lex_state = 0, .external_lex_state = 31}, + [1463] = {.lex_state = 0, .external_lex_state = 30}, + [1464] = {.lex_state = 0, .external_lex_state = 31}, [1465] = {.lex_state = 0, .external_lex_state = 31}, - [1466] = {.lex_state = 0, .external_lex_state = 31}, + [1466] = {.lex_state = 0, .external_lex_state = 29}, [1467] = {.lex_state = 0, .external_lex_state = 29}, - [1468] = {.lex_state = 0, .external_lex_state = 29}, + [1468] = {.lex_state = 0, .external_lex_state = 31}, [1469] = {.lex_state = 0, .external_lex_state = 30}, - [1470] = {.lex_state = 0, .external_lex_state = 29}, - [1471] = {.lex_state = 0, .external_lex_state = 29}, - [1472] = {.lex_state = 0, .external_lex_state = 29}, - [1473] = {.lex_state = 0, .external_lex_state = 29}, + [1470] = {.lex_state = 0, .external_lex_state = 31}, + [1471] = {.lex_state = 0, .external_lex_state = 30}, + [1472] = {.lex_state = 0, .external_lex_state = 30}, + [1473] = {.lex_state = 0, .external_lex_state = 30}, [1474] = {.lex_state = 0, .external_lex_state = 30}, - [1475] = {.lex_state = 0, .external_lex_state = 29}, - [1476] = {.lex_state = 0, .external_lex_state = 29}, + [1475] = {.lex_state = 0, .external_lex_state = 30}, + [1476] = {.lex_state = 0, .external_lex_state = 30}, [1477] = {.lex_state = 0, .external_lex_state = 30}, - [1478] = {.lex_state = 0, .external_lex_state = 29}, - [1479] = {.lex_state = 0, .external_lex_state = 29}, + [1478] = {.lex_state = 0, .external_lex_state = 30}, + [1479] = {.lex_state = 0, .external_lex_state = 31}, [1480] = {.lex_state = 0, .external_lex_state = 30}, - [1481] = {.lex_state = 0, .external_lex_state = 30}, - [1482] = {.lex_state = 0, .external_lex_state = 29}, - [1483] = {.lex_state = 0, .external_lex_state = 30}, - [1484] = {.lex_state = 0, .external_lex_state = 29}, + [1481] = {.lex_state = 0, .external_lex_state = 31}, + [1482] = {.lex_state = 0, .external_lex_state = 30}, + [1483] = {.lex_state = 0, .external_lex_state = 31}, + [1484] = {.lex_state = 0, .external_lex_state = 31}, [1485] = {.lex_state = 0, .external_lex_state = 30}, [1486] = {.lex_state = 0, .external_lex_state = 30}, - [1487] = {.lex_state = 0, .external_lex_state = 29}, + [1487] = {.lex_state = 0, .external_lex_state = 30}, [1488] = {.lex_state = 0, .external_lex_state = 30}, - [1489] = {.lex_state = 0, .external_lex_state = 29}, - [1490] = {.lex_state = 0, .external_lex_state = 29}, - [1491] = {.lex_state = 0, .external_lex_state = 31}, + [1489] = {.lex_state = 0, .external_lex_state = 30}, + [1490] = {.lex_state = 0, .external_lex_state = 30}, + [1491] = {.lex_state = 0, .external_lex_state = 30}, [1492] = {.lex_state = 0, .external_lex_state = 31}, - [1493] = {.lex_state = 0, .external_lex_state = 29}, - [1494] = {.lex_state = 0, .external_lex_state = 29}, + [1493] = {.lex_state = 0, .external_lex_state = 30}, + [1494] = {.lex_state = 0, .external_lex_state = 30}, [1495] = {.lex_state = 0, .external_lex_state = 30}, [1496] = {.lex_state = 0, .external_lex_state = 31}, - [1497] = {.lex_state = 0, .external_lex_state = 31}, + [1497] = {.lex_state = 0, .external_lex_state = 30}, [1498] = {.lex_state = 0, .external_lex_state = 30}, - [1499] = {.lex_state = 0, .external_lex_state = 29}, - [1500] = {.lex_state = 0, .external_lex_state = 31}, + [1499] = {.lex_state = 0, .external_lex_state = 30}, + [1500] = {.lex_state = 0, .external_lex_state = 30}, [1501] = {.lex_state = 0, .external_lex_state = 30}, - [1502] = {.lex_state = 0, .external_lex_state = 31}, - [1503] = {.lex_state = 0, .external_lex_state = 31}, - [1504] = {.lex_state = 0, .external_lex_state = 31}, - [1505] = {.lex_state = 0, .external_lex_state = 29}, - [1506] = {.lex_state = 0, .external_lex_state = 31}, - [1507] = {.lex_state = 0, .external_lex_state = 31}, + [1502] = {.lex_state = 0, .external_lex_state = 30}, + [1503] = {.lex_state = 0, .external_lex_state = 30}, + [1504] = {.lex_state = 0, .external_lex_state = 30}, + [1505] = {.lex_state = 0, .external_lex_state = 30}, + [1506] = {.lex_state = 0, .external_lex_state = 30}, + [1507] = {.lex_state = 0, .external_lex_state = 30}, [1508] = {.lex_state = 0, .external_lex_state = 30}, - [1509] = {.lex_state = 0, .external_lex_state = 29}, + [1509] = {.lex_state = 0, .external_lex_state = 30}, [1510] = {.lex_state = 0, .external_lex_state = 30}, [1511] = {.lex_state = 0, .external_lex_state = 30}, - [1512] = {.lex_state = 0, .external_lex_state = 29}, - [1513] = {.lex_state = 0, .external_lex_state = 29}, + [1512] = {.lex_state = 0, .external_lex_state = 30}, + [1513] = {.lex_state = 0, .external_lex_state = 30}, [1514] = {.lex_state = 0, .external_lex_state = 30}, - [1515] = {.lex_state = 0, .external_lex_state = 29}, + [1515] = {.lex_state = 0, .external_lex_state = 30}, [1516] = {.lex_state = 0, .external_lex_state = 30}, - [1517] = {.lex_state = 0, .external_lex_state = 29}, + [1517] = {.lex_state = 0, .external_lex_state = 30}, [1518] = {.lex_state = 0, .external_lex_state = 30}, - [1519] = {.lex_state = 0, .external_lex_state = 29}, - [1520] = {.lex_state = 0, .external_lex_state = 29}, + [1519] = {.lex_state = 0, .external_lex_state = 31}, + [1520] = {.lex_state = 0, .external_lex_state = 31}, [1521] = {.lex_state = 0, .external_lex_state = 30}, [1522] = {.lex_state = 0, .external_lex_state = 30}, - [1523] = {.lex_state = 0, .external_lex_state = 29}, - [1524] = {.lex_state = 0, .external_lex_state = 31}, - [1525] = {.lex_state = 0, .external_lex_state = 29}, - [1526] = {.lex_state = 0, .external_lex_state = 30}, - [1527] = {.lex_state = 0, .external_lex_state = 29}, - [1528] = {.lex_state = 0, .external_lex_state = 29}, - [1529] = {.lex_state = 0, .external_lex_state = 30}, + [1523] = {.lex_state = 0, .external_lex_state = 30}, + [1524] = {.lex_state = 0, .external_lex_state = 30}, + [1525] = {.lex_state = 0, .external_lex_state = 30}, + [1526] = {.lex_state = 0, .external_lex_state = 29}, + [1527] = {.lex_state = 0, .external_lex_state = 30}, + [1528] = {.lex_state = 0, .external_lex_state = 30}, + [1529] = {.lex_state = 0, .external_lex_state = 31}, [1530] = {.lex_state = 0, .external_lex_state = 30}, - [1531] = {.lex_state = 0, .external_lex_state = 29}, - [1532] = {.lex_state = 0, .external_lex_state = 30}, - [1533] = {.lex_state = 0, .external_lex_state = 29}, - [1534] = {.lex_state = 0, .external_lex_state = 31}, - [1535] = {.lex_state = 0, .external_lex_state = 31}, + [1531] = {.lex_state = 0, .external_lex_state = 30}, + [1532] = {.lex_state = 0, .external_lex_state = 29}, + [1533] = {.lex_state = 0, .external_lex_state = 31}, + [1534] = {.lex_state = 0, .external_lex_state = 30}, + [1535] = {.lex_state = 0, .external_lex_state = 29}, [1536] = {.lex_state = 0, .external_lex_state = 30}, - [1537] = {.lex_state = 0, .external_lex_state = 31}, - [1538] = {.lex_state = 0, .external_lex_state = 31}, - [1539] = {.lex_state = 0, .external_lex_state = 31}, - [1540] = {.lex_state = 0, .external_lex_state = 31}, - [1541] = {.lex_state = 0, .external_lex_state = 31}, - [1542] = {.lex_state = 0, .external_lex_state = 29}, - [1543] = {.lex_state = 0, .external_lex_state = 31}, - [1544] = {.lex_state = 0, .external_lex_state = 29}, - [1545] = {.lex_state = 0, .external_lex_state = 31}, - [1546] = {.lex_state = 0, .external_lex_state = 31}, + [1537] = {.lex_state = 0, .external_lex_state = 29}, + [1538] = {.lex_state = 0, .external_lex_state = 30}, + [1539] = {.lex_state = 0, .external_lex_state = 30}, + [1540] = {.lex_state = 0, .external_lex_state = 30}, + [1541] = {.lex_state = 0, .external_lex_state = 29}, + [1542] = {.lex_state = 0, .external_lex_state = 30}, + [1543] = {.lex_state = 0, .external_lex_state = 30}, + [1544] = {.lex_state = 0, .external_lex_state = 30}, + [1545] = {.lex_state = 0, .external_lex_state = 29}, + [1546] = {.lex_state = 0, .external_lex_state = 30}, [1547] = {.lex_state = 0, .external_lex_state = 30}, - [1548] = {.lex_state = 0, .external_lex_state = 31}, - [1549] = {.lex_state = 0, .external_lex_state = 29}, - [1550] = {.lex_state = 0, .external_lex_state = 29}, - [1551] = {.lex_state = 0, .external_lex_state = 31}, - [1552] = {.lex_state = 0, .external_lex_state = 31}, - [1553] = {.lex_state = 0, .external_lex_state = 31}, - [1554] = {.lex_state = 0, .external_lex_state = 31}, - [1555] = {.lex_state = 0, .external_lex_state = 31}, - [1556] = {.lex_state = 0, .external_lex_state = 31}, + [1548] = {.lex_state = 0, .external_lex_state = 30}, + [1549] = {.lex_state = 0, .external_lex_state = 30}, + [1550] = {.lex_state = 0, .external_lex_state = 30}, + [1551] = {.lex_state = 0, .external_lex_state = 30}, + [1552] = {.lex_state = 0, .external_lex_state = 29}, + [1553] = {.lex_state = 0, .external_lex_state = 30}, + [1554] = {.lex_state = 0, .external_lex_state = 30}, + [1555] = {.lex_state = 0, .external_lex_state = 30}, + [1556] = {.lex_state = 0, .external_lex_state = 30}, [1557] = {.lex_state = 0, .external_lex_state = 30}, [1558] = {.lex_state = 0, .external_lex_state = 30}, - [1559] = {.lex_state = 0, .external_lex_state = 29}, - [1560] = {.lex_state = 0, .external_lex_state = 31}, - [1561] = {.lex_state = 0, .external_lex_state = 31}, - [1562] = {.lex_state = 0, .external_lex_state = 31}, - [1563] = {.lex_state = 0, .external_lex_state = 31}, + [1559] = {.lex_state = 0, .external_lex_state = 30}, + [1560] = {.lex_state = 0, .external_lex_state = 30}, + [1561] = {.lex_state = 0, .external_lex_state = 30}, + [1562] = {.lex_state = 0, .external_lex_state = 30}, + [1563] = {.lex_state = 0, .external_lex_state = 30}, [1564] = {.lex_state = 0, .external_lex_state = 30}, [1565] = {.lex_state = 0, .external_lex_state = 30}, - [1566] = {.lex_state = 0, .external_lex_state = 29}, - [1567] = {.lex_state = 0, .external_lex_state = 29}, - [1568] = {.lex_state = 0, .external_lex_state = 29}, - [1569] = {.lex_state = 0, .external_lex_state = 29}, - [1570] = {.lex_state = 0, .external_lex_state = 31}, - [1571] = {.lex_state = 0, .external_lex_state = 29}, - [1572] = {.lex_state = 0, .external_lex_state = 31}, + [1566] = {.lex_state = 0, .external_lex_state = 30}, + [1567] = {.lex_state = 0, .external_lex_state = 30}, + [1568] = {.lex_state = 0, .external_lex_state = 30}, + [1569] = {.lex_state = 0, .external_lex_state = 30}, + [1570] = {.lex_state = 0, .external_lex_state = 30}, + [1571] = {.lex_state = 0, .external_lex_state = 30}, + [1572] = {.lex_state = 0, .external_lex_state = 29}, [1573] = {.lex_state = 0, .external_lex_state = 29}, - [1574] = {.lex_state = 0, .external_lex_state = 29}, - [1575] = {.lex_state = 0, .external_lex_state = 29}, + [1574] = {.lex_state = 0, .external_lex_state = 30}, + [1575] = {.lex_state = 0, .external_lex_state = 31}, [1576] = {.lex_state = 0, .external_lex_state = 28}, - [1577] = {.lex_state = 0, .external_lex_state = 26}, - [1578] = {.lex_state = 0, .external_lex_state = 27}, - [1579] = {.lex_state = 0, .external_lex_state = 27}, + [1577] = {.lex_state = 0, .external_lex_state = 28}, + [1578] = {.lex_state = 2, .external_lex_state = 28}, + [1579] = {.lex_state = 0, .external_lex_state = 28}, [1580] = {.lex_state = 0, .external_lex_state = 26}, [1581] = {.lex_state = 0, .external_lex_state = 26}, - [1582] = {.lex_state = 0, .external_lex_state = 10}, - [1583] = {.lex_state = 2, .external_lex_state = 26}, - [1584] = {.lex_state = 0, .external_lex_state = 27}, - [1585] = {.lex_state = 0, .external_lex_state = 26}, - [1586] = {.lex_state = 0, .external_lex_state = 28}, - [1587] = {.lex_state = 0, .external_lex_state = 28}, + [1582] = {.lex_state = 0, .external_lex_state = 26}, + [1583] = {.lex_state = 0, .external_lex_state = 28}, + [1584] = {.lex_state = 0, .external_lex_state = 28}, + [1585] = {.lex_state = 0, .external_lex_state = 10}, + [1586] = {.lex_state = 0, .external_lex_state = 26}, + [1587] = {.lex_state = 0, .external_lex_state = 26}, [1588] = {.lex_state = 0, .external_lex_state = 28}, - [1589] = {.lex_state = 0, .external_lex_state = 26}, - [1590] = {.lex_state = 0, .external_lex_state = 27}, - [1591] = {.lex_state = 2, .external_lex_state = 28}, - [1592] = {.lex_state = 2, .external_lex_state = 27}, - [1593] = {.lex_state = 0, .external_lex_state = 26}, - [1594] = {.lex_state = 0, .external_lex_state = 28}, - [1595] = {.lex_state = 0, .external_lex_state = 26}, - [1596] = {.lex_state = 0, .external_lex_state = 28}, - [1597] = {.lex_state = 0, .external_lex_state = 28}, + [1589] = {.lex_state = 0, .external_lex_state = 28}, + [1590] = {.lex_state = 0, .external_lex_state = 28}, + [1591] = {.lex_state = 0, .external_lex_state = 27}, + [1592] = {.lex_state = 0, .external_lex_state = 27}, + [1593] = {.lex_state = 2, .external_lex_state = 27}, + [1594] = {.lex_state = 0, .external_lex_state = 27}, + [1595] = {.lex_state = 0, .external_lex_state = 27}, + [1596] = {.lex_state = 0, .external_lex_state = 27}, + [1597] = {.lex_state = 0, .external_lex_state = 27}, [1598] = {.lex_state = 0, .external_lex_state = 27}, - [1599] = {.lex_state = 0, .external_lex_state = 27}, + [1599] = {.lex_state = 2, .external_lex_state = 26}, [1600] = {.lex_state = 0, .external_lex_state = 27}, [1601] = {.lex_state = 0, .external_lex_state = 26}, - [1602] = {.lex_state = 0, .external_lex_state = 27}, - [1603] = {.lex_state = 0, .external_lex_state = 28}, - [1604] = {.lex_state = 0, .external_lex_state = 12}, + [1602] = {.lex_state = 0, .external_lex_state = 26}, + [1603] = {.lex_state = 0, .external_lex_state = 26}, + [1604] = {.lex_state = 0, .external_lex_state = 29}, [1605] = {.lex_state = 0, .external_lex_state = 29}, - [1606] = {.lex_state = 0, .external_lex_state = 31}, - [1607] = {.lex_state = 0, .external_lex_state = 30}, - [1608] = {.lex_state = 0, .external_lex_state = 29}, - [1609] = {.lex_state = 0, .external_lex_state = 30}, - [1610] = {.lex_state = 0, .external_lex_state = 31}, - [1611] = {.lex_state = 2, .external_lex_state = 30}, - [1612] = {.lex_state = 0, .external_lex_state = 31}, - [1613] = {.lex_state = 0, .external_lex_state = 30}, + [1606] = {.lex_state = 0, .external_lex_state = 30}, + [1607] = {.lex_state = 0, .external_lex_state = 29}, + [1608] = {.lex_state = 0, .external_lex_state = 31}, + [1609] = {.lex_state = 0, .external_lex_state = 12}, + [1610] = {.lex_state = 2, .external_lex_state = 29}, + [1611] = {.lex_state = 0, .external_lex_state = 31}, + [1612] = {.lex_state = 0, .external_lex_state = 30}, + [1613] = {.lex_state = 0, .external_lex_state = 31}, [1614] = {.lex_state = 0, .external_lex_state = 30}, [1615] = {.lex_state = 0, .external_lex_state = 31}, - [1616] = {.lex_state = 0, .external_lex_state = 31}, - [1617] = {.lex_state = 0, .external_lex_state = 30}, - [1618] = {.lex_state = 0, .external_lex_state = 30}, - [1619] = {.lex_state = 0, .external_lex_state = 29}, - [1620] = {.lex_state = 0, .external_lex_state = 30}, + [1616] = {.lex_state = 0, .external_lex_state = 30}, + [1617] = {.lex_state = 0, .external_lex_state = 29}, + [1618] = {.lex_state = 0, .external_lex_state = 29}, + [1619] = {.lex_state = 0, .external_lex_state = 30}, + [1620] = {.lex_state = 2, .external_lex_state = 30}, [1621] = {.lex_state = 0, .external_lex_state = 31}, [1622] = {.lex_state = 0, .external_lex_state = 31}, - [1623] = {.lex_state = 0, .external_lex_state = 29}, - [1624] = {.lex_state = 0, .external_lex_state = 31}, - [1625] = {.lex_state = 2, .external_lex_state = 31}, - [1626] = {.lex_state = 0, .external_lex_state = 29}, + [1623] = {.lex_state = 0, .external_lex_state = 31}, + [1624] = {.lex_state = 0, .external_lex_state = 30}, + [1625] = {.lex_state = 0, .external_lex_state = 30}, + [1626] = {.lex_state = 2, .external_lex_state = 31}, [1627] = {.lex_state = 0, .external_lex_state = 29}, - [1628] = {.lex_state = 0, .external_lex_state = 30}, - [1629] = {.lex_state = 2, .external_lex_state = 29}, - [1630] = {.lex_state = 0, .external_lex_state = 29}, - [1631] = {.lex_state = 0, .external_lex_state = 31}, + [1628] = {.lex_state = 0, .external_lex_state = 31}, + [1629] = {.lex_state = 0, .external_lex_state = 31}, + [1630] = {.lex_state = 0, .external_lex_state = 30}, + [1631] = {.lex_state = 0, .external_lex_state = 29}, [1632] = {.lex_state = 0, .external_lex_state = 29}, - [1633] = {.lex_state = 0, .external_lex_state = 30}, - [1634] = {.lex_state = 0, .external_lex_state = 29}, - [1635] = {.lex_state = 0, .external_lex_state = 27}, - [1636] = {.lex_state = 0, .external_lex_state = 12}, - [1637] = {.lex_state = 0, .external_lex_state = 26}, + [1633] = {.lex_state = 0, .external_lex_state = 29}, + [1634] = {.lex_state = 0, .external_lex_state = 30}, + [1635] = {.lex_state = 0, .external_lex_state = 28}, + [1636] = {.lex_state = 0, .external_lex_state = 26}, + [1637] = {.lex_state = 0, .external_lex_state = 28}, [1638] = {.lex_state = 0, .external_lex_state = 27}, - [1639] = {.lex_state = 0, .external_lex_state = 27}, - [1640] = {.lex_state = 0, .external_lex_state = 27}, - [1641] = {.lex_state = 0, .external_lex_state = 27}, + [1639] = {.lex_state = 0, .external_lex_state = 26}, + [1640] = {.lex_state = 0, .external_lex_state = 26}, + [1641] = {.lex_state = 0, .external_lex_state = 26}, [1642] = {.lex_state = 0, .external_lex_state = 27}, - [1643] = {.lex_state = 0, .external_lex_state = 27}, + [1643] = {.lex_state = 0, .external_lex_state = 26}, [1644] = {.lex_state = 0, .external_lex_state = 26}, - [1645] = {.lex_state = 0, .external_lex_state = 27}, + [1645] = {.lex_state = 0, .external_lex_state = 26}, [1646] = {.lex_state = 0, .external_lex_state = 28}, - [1647] = {.lex_state = 0, .external_lex_state = 26}, - [1648] = {.lex_state = 0, .external_lex_state = 27}, - [1649] = {.lex_state = 0, .external_lex_state = 27}, - [1650] = {.lex_state = 0, .external_lex_state = 27}, + [1647] = {.lex_state = 0, .external_lex_state = 28}, + [1648] = {.lex_state = 0, .external_lex_state = 28}, + [1649] = {.lex_state = 0, .external_lex_state = 28}, + [1650] = {.lex_state = 0, .external_lex_state = 28}, [1651] = {.lex_state = 0, .external_lex_state = 28}, - [1652] = {.lex_state = 0, .external_lex_state = 26}, + [1652] = {.lex_state = 0, .external_lex_state = 28}, [1653] = {.lex_state = 0, .external_lex_state = 26}, [1654] = {.lex_state = 0, .external_lex_state = 28}, - [1655] = {.lex_state = 0, .external_lex_state = 26}, - [1656] = {.lex_state = 0, .external_lex_state = 26}, + [1655] = {.lex_state = 0, .external_lex_state = 28}, + [1656] = {.lex_state = 0, .external_lex_state = 28}, [1657] = {.lex_state = 0, .external_lex_state = 28}, - [1658] = {.lex_state = 0, .external_lex_state = 28}, - [1659] = {.lex_state = 0, .external_lex_state = 28}, + [1658] = {.lex_state = 0, .external_lex_state = 27}, + [1659] = {.lex_state = 0, .external_lex_state = 26}, [1660] = {.lex_state = 0, .external_lex_state = 26}, - [1661] = {.lex_state = 0, .external_lex_state = 28}, + [1661] = {.lex_state = 0, .external_lex_state = 26}, [1662] = {.lex_state = 0, .external_lex_state = 28}, - [1663] = {.lex_state = 0, .external_lex_state = 26}, - [1664] = {.lex_state = 0, .external_lex_state = 28}, + [1663] = {.lex_state = 0, .external_lex_state = 27}, + [1664] = {.lex_state = 0, .external_lex_state = 27}, [1665] = {.lex_state = 0, .external_lex_state = 26}, - [1666] = {.lex_state = 0, .external_lex_state = 28}, - [1667] = {.lex_state = 0, .external_lex_state = 26}, + [1666] = {.lex_state = 0, .external_lex_state = 27}, + [1667] = {.lex_state = 0, .external_lex_state = 27}, [1668] = {.lex_state = 0, .external_lex_state = 26}, [1669] = {.lex_state = 0, .external_lex_state = 26}, - [1670] = {.lex_state = 0, .external_lex_state = 26}, + [1670] = {.lex_state = 0, .external_lex_state = 27}, [1671] = {.lex_state = 0, .external_lex_state = 27}, [1672] = {.lex_state = 0, .external_lex_state = 26}, - [1673] = {.lex_state = 0, .external_lex_state = 26}, + [1673] = {.lex_state = 0, .external_lex_state = 27}, [1674] = {.lex_state = 0, .external_lex_state = 26}, - [1675] = {.lex_state = 0, .external_lex_state = 28}, - [1676] = {.lex_state = 0, .external_lex_state = 28}, - [1677] = {.lex_state = 0, .external_lex_state = 26}, - [1678] = {.lex_state = 0, .external_lex_state = 26}, - [1679] = {.lex_state = 0, .external_lex_state = 28}, - [1680] = {.lex_state = 0, .external_lex_state = 28}, - [1681] = {.lex_state = 0, .external_lex_state = 28}, - [1682] = {.lex_state = 0, .external_lex_state = 28}, - [1683] = {.lex_state = 0, .external_lex_state = 27}, - [1684] = {.lex_state = 0, .external_lex_state = 27}, - [1685] = {.lex_state = 0, .external_lex_state = 27}, - [1686] = {.lex_state = 0, .external_lex_state = 27}, - [1687] = {.lex_state = 0, .external_lex_state = 27}, - [1688] = {.lex_state = 0, .external_lex_state = 28}, + [1675] = {.lex_state = 0, .external_lex_state = 26}, + [1676] = {.lex_state = 0, .external_lex_state = 27}, + [1677] = {.lex_state = 0, .external_lex_state = 27}, + [1678] = {.lex_state = 0, .external_lex_state = 27}, + [1679] = {.lex_state = 0, .external_lex_state = 27}, + [1680] = {.lex_state = 0, .external_lex_state = 27}, + [1681] = {.lex_state = 0, .external_lex_state = 26}, + [1682] = {.lex_state = 0, .external_lex_state = 27}, + [1683] = {.lex_state = 0, .external_lex_state = 26}, + [1684] = {.lex_state = 0, .external_lex_state = 26}, + [1685] = {.lex_state = 0, .external_lex_state = 26}, + [1686] = {.lex_state = 0, .external_lex_state = 26}, + [1687] = {.lex_state = 0, .external_lex_state = 26}, + [1688] = {.lex_state = 0, .external_lex_state = 26}, [1689] = {.lex_state = 0, .external_lex_state = 27}, - [1690] = {.lex_state = 0, .external_lex_state = 26}, - [1691] = {.lex_state = 0, .external_lex_state = 28}, - [1692] = {.lex_state = 0, .external_lex_state = 28}, + [1690] = {.lex_state = 0, .external_lex_state = 27}, + [1691] = {.lex_state = 0, .external_lex_state = 27}, + [1692] = {.lex_state = 0, .external_lex_state = 12}, [1693] = {.lex_state = 0, .external_lex_state = 28}, - [1694] = {.lex_state = 0, .external_lex_state = 28}, + [1694] = {.lex_state = 0, .external_lex_state = 12}, [1695] = {.lex_state = 0, .external_lex_state = 28}, [1696] = {.lex_state = 0, .external_lex_state = 28}, [1697] = {.lex_state = 0, .external_lex_state = 12}, - [1698] = {.lex_state = 0, .external_lex_state = 26}, - [1699] = {.lex_state = 0, .external_lex_state = 26}, + [1698] = {.lex_state = 0, .external_lex_state = 27}, + [1699] = {.lex_state = 0, .external_lex_state = 27}, [1700] = {.lex_state = 0, .external_lex_state = 27}, [1701] = {.lex_state = 0, .external_lex_state = 27}, [1702] = {.lex_state = 0, .external_lex_state = 28}, - [1703] = {.lex_state = 0, .external_lex_state = 26}, - [1704] = {.lex_state = 0, .external_lex_state = 27}, - [1705] = {.lex_state = 0, .external_lex_state = 12}, - [1706] = {.lex_state = 0, .external_lex_state = 27}, - [1707] = {.lex_state = 0, .external_lex_state = 27}, - [1708] = {.lex_state = 0, .external_lex_state = 27}, - [1709] = {.lex_state = 0, .external_lex_state = 26}, + [1703] = {.lex_state = 0, .external_lex_state = 28}, + [1704] = {.lex_state = 0, .external_lex_state = 28}, + [1705] = {.lex_state = 0, .external_lex_state = 28}, + [1706] = {.lex_state = 0, .external_lex_state = 28}, + [1707] = {.lex_state = 0, .external_lex_state = 28}, + [1708] = {.lex_state = 0, .external_lex_state = 28}, + [1709] = {.lex_state = 0, .external_lex_state = 27}, [1710] = {.lex_state = 0, .external_lex_state = 30}, [1711] = {.lex_state = 0, .external_lex_state = 31}, [1712] = {.lex_state = 0, .external_lex_state = 29}, - [1713] = {.lex_state = 0, .external_lex_state = 29}, + [1713] = {.lex_state = 0, .external_lex_state = 30}, [1714] = {.lex_state = 0, .external_lex_state = 30}, - [1715] = {.lex_state = 0, .external_lex_state = 31}, + [1715] = {.lex_state = 0, .external_lex_state = 29}, [1716] = {.lex_state = 0, .external_lex_state = 30}, - [1717] = {.lex_state = 0, .external_lex_state = 29}, - [1718] = {.lex_state = 0, .external_lex_state = 30}, + [1717] = {.lex_state = 0, .external_lex_state = 30}, + [1718] = {.lex_state = 0, .external_lex_state = 29}, [1719] = {.lex_state = 0, .external_lex_state = 30}, - [1720] = {.lex_state = 0, .external_lex_state = 30}, - [1721] = {.lex_state = 0, .external_lex_state = 30}, - [1722] = {.lex_state = 0, .external_lex_state = 30}, - [1723] = {.lex_state = 0, .external_lex_state = 30}, + [1720] = {.lex_state = 0, .external_lex_state = 31}, + [1721] = {.lex_state = 0, .external_lex_state = 31}, + [1722] = {.lex_state = 0, .external_lex_state = 31}, + [1723] = {.lex_state = 0, .external_lex_state = 31}, [1724] = {.lex_state = 0, .external_lex_state = 31}, - [1725] = {.lex_state = 0, .external_lex_state = 29}, - [1726] = {.lex_state = 0, .external_lex_state = 29}, - [1727] = {.lex_state = 0, .external_lex_state = 29}, + [1725] = {.lex_state = 0, .external_lex_state = 31}, + [1726] = {.lex_state = 0, .external_lex_state = 31}, + [1727] = {.lex_state = 0, .external_lex_state = 31}, [1728] = {.lex_state = 0, .external_lex_state = 31}, - [1729] = {.lex_state = 0, .external_lex_state = 29}, - [1730] = {.lex_state = 0, .external_lex_state = 29}, + [1729] = {.lex_state = 0, .external_lex_state = 31}, + [1730] = {.lex_state = 0, .external_lex_state = 31}, [1731] = {.lex_state = 0, .external_lex_state = 30}, [1732] = {.lex_state = 0, .external_lex_state = 29}, - [1733] = {.lex_state = 0, .external_lex_state = 29}, + [1733] = {.lex_state = 0, .external_lex_state = 31}, [1734] = {.lex_state = 0, .external_lex_state = 30}, - [1735] = {.lex_state = 0, .external_lex_state = 29}, + [1735] = {.lex_state = 0, .external_lex_state = 30}, [1736] = {.lex_state = 0, .external_lex_state = 29}, - [1737] = {.lex_state = 0, .external_lex_state = 29}, - [1738] = {.lex_state = 0, .external_lex_state = 31}, - [1739] = {.lex_state = 0, .external_lex_state = 29}, - [1740] = {.lex_state = 0, .external_lex_state = 31}, + [1737] = {.lex_state = 0, .external_lex_state = 30}, + [1738] = {.lex_state = 0, .external_lex_state = 30}, + [1739] = {.lex_state = 0, .external_lex_state = 31}, + [1740] = {.lex_state = 0, .external_lex_state = 30}, [1741] = {.lex_state = 0, .external_lex_state = 29}, - [1742] = {.lex_state = 0, .external_lex_state = 30}, - [1743] = {.lex_state = 0, .external_lex_state = 30}, + [1742] = {.lex_state = 0, .external_lex_state = 29}, + [1743] = {.lex_state = 0, .external_lex_state = 31}, [1744] = {.lex_state = 0, .external_lex_state = 29}, [1745] = {.lex_state = 0, .external_lex_state = 31}, [1746] = {.lex_state = 0, .external_lex_state = 31}, - [1747] = {.lex_state = 0, .external_lex_state = 30}, + [1747] = {.lex_state = 0, .external_lex_state = 31}, [1748] = {.lex_state = 0, .external_lex_state = 29}, [1749] = {.lex_state = 0, .external_lex_state = 31}, - [1750] = {.lex_state = 0, .external_lex_state = 29}, + [1750] = {.lex_state = 0, .external_lex_state = 31}, [1751] = {.lex_state = 0, .external_lex_state = 31}, - [1752] = {.lex_state = 0, .external_lex_state = 31}, - [1753] = {.lex_state = 0, .external_lex_state = 31}, - [1754] = {.lex_state = 0, .external_lex_state = 31}, + [1752] = {.lex_state = 0, .external_lex_state = 30}, + [1753] = {.lex_state = 0, .external_lex_state = 30}, + [1754] = {.lex_state = 0, .external_lex_state = 29}, [1755] = {.lex_state = 0, .external_lex_state = 30}, - [1756] = {.lex_state = 0, .external_lex_state = 31}, - [1757] = {.lex_state = 0, .external_lex_state = 31}, - [1758] = {.lex_state = 0, .external_lex_state = 30}, - [1759] = {.lex_state = 0, .external_lex_state = 31}, - [1760] = {.lex_state = 0, .external_lex_state = 31}, + [1756] = {.lex_state = 0, .external_lex_state = 29}, + [1757] = {.lex_state = 0, .external_lex_state = 29}, + [1758] = {.lex_state = 0, .external_lex_state = 31}, + [1759] = {.lex_state = 0, .external_lex_state = 29}, + [1760] = {.lex_state = 0, .external_lex_state = 29}, [1761] = {.lex_state = 0, .external_lex_state = 31}, - [1762] = {.lex_state = 0, .external_lex_state = 31}, - [1763] = {.lex_state = 0, .external_lex_state = 31}, - [1764] = {.lex_state = 0, .external_lex_state = 30}, - [1765] = {.lex_state = 0, .external_lex_state = 30}, - [1766] = {.lex_state = 0, .external_lex_state = 31}, - [1767] = {.lex_state = 0, .external_lex_state = 30}, - [1768] = {.lex_state = 0, .external_lex_state = 31}, - [1769] = {.lex_state = 0, .external_lex_state = 31}, - [1770] = {.lex_state = 0, .external_lex_state = 31}, - [1771] = {.lex_state = 0, .external_lex_state = 29}, - [1772] = {.lex_state = 0, .external_lex_state = 29}, + [1762] = {.lex_state = 0, .external_lex_state = 29}, + [1763] = {.lex_state = 0, .external_lex_state = 29}, + [1764] = {.lex_state = 0, .external_lex_state = 29}, + [1765] = {.lex_state = 0, .external_lex_state = 29}, + [1766] = {.lex_state = 0, .external_lex_state = 29}, + [1767] = {.lex_state = 0, .external_lex_state = 31}, + [1768] = {.lex_state = 0, .external_lex_state = 29}, + [1769] = {.lex_state = 0, .external_lex_state = 29}, + [1770] = {.lex_state = 0, .external_lex_state = 30}, + [1771] = {.lex_state = 0, .external_lex_state = 30}, + [1772] = {.lex_state = 0, .external_lex_state = 30}, [1773] = {.lex_state = 0, .external_lex_state = 29}, [1774] = {.lex_state = 0, .external_lex_state = 30}, [1775] = {.lex_state = 0, .external_lex_state = 30}, [1776] = {.lex_state = 0, .external_lex_state = 30}, - [1777] = {.lex_state = 0, .external_lex_state = 31}, + [1777] = {.lex_state = 0, .external_lex_state = 30}, [1778] = {.lex_state = 0, .external_lex_state = 29}, - [1779] = {.lex_state = 0, .external_lex_state = 30}, - [1780] = {.lex_state = 0, .external_lex_state = 30}, + [1779] = {.lex_state = 0, .external_lex_state = 31}, + [1780] = {.lex_state = 0, .external_lex_state = 29}, [1781] = {.lex_state = 0, .external_lex_state = 30}, - [1782] = {.lex_state = 0, .external_lex_state = 29}, - [1783] = {.lex_state = 0, .external_lex_state = 29}, + [1782] = {.lex_state = 0, .external_lex_state = 30}, + [1783] = {.lex_state = 0, .external_lex_state = 30}, [1784] = {.lex_state = 0, .external_lex_state = 29}, [1785] = {.lex_state = 1, .external_lex_state = 32}, [1786] = {.lex_state = 1}, @@ -6258,219 +6258,219 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1805] = {.lex_state = 0, .external_lex_state = 33}, [1806] = {.lex_state = 0, .external_lex_state = 33}, [1807] = {.lex_state = 0, .external_lex_state = 32}, - [1808] = {.lex_state = 0, .external_lex_state = 32}, - [1809] = {.lex_state = 0, .external_lex_state = 34}, - [1810] = {.lex_state = 4}, - [1811] = {.lex_state = 3}, - [1812] = {.lex_state = 0, .external_lex_state = 34}, - [1813] = {.lex_state = 4}, + [1808] = {.lex_state = 0, .external_lex_state = 34}, + [1809] = {.lex_state = 0, .external_lex_state = 35}, + [1810] = {.lex_state = 0, .external_lex_state = 35}, + [1811] = {.lex_state = 4}, + [1812] = {.lex_state = 4}, + [1813] = {.lex_state = 3}, [1814] = {.lex_state = 3}, [1815] = {.lex_state = 0, .external_lex_state = 33}, - [1816] = {.lex_state = 0, .external_lex_state = 33}, - [1817] = {.lex_state = 0, .external_lex_state = 33}, + [1816] = {.lex_state = 4}, + [1817] = {.lex_state = 3}, [1818] = {.lex_state = 0, .external_lex_state = 35}, - [1819] = {.lex_state = 0, .external_lex_state = 32}, - [1820] = {.lex_state = 0, .external_lex_state = 32}, - [1821] = {.lex_state = 0, .external_lex_state = 32}, + [1819] = {.lex_state = 0, .external_lex_state = 34}, + [1820] = {.lex_state = 0, .external_lex_state = 34}, + [1821] = {.lex_state = 4}, [1822] = {.lex_state = 0, .external_lex_state = 32}, - [1823] = {.lex_state = 0, .external_lex_state = 33}, - [1824] = {.lex_state = 4}, - [1825] = {.lex_state = 3}, - [1826] = {.lex_state = 0, .external_lex_state = 33}, - [1827] = {.lex_state = 4}, - [1828] = {.lex_state = 3}, - [1829] = {.lex_state = 0, .external_lex_state = 33}, - [1830] = {.lex_state = 0, .external_lex_state = 32}, - [1831] = {.lex_state = 0, .external_lex_state = 32}, - [1832] = {.lex_state = 0, .external_lex_state = 34}, - [1833] = {.lex_state = 0, .external_lex_state = 32}, - [1834] = {.lex_state = 0, .external_lex_state = 34}, - [1835] = {.lex_state = 0, .external_lex_state = 35}, - [1836] = {.lex_state = 0, .external_lex_state = 35}, - [1837] = {.lex_state = 0, .external_lex_state = 34}, - [1838] = {.lex_state = 4}, - [1839] = {.lex_state = 3}, - [1840] = {.lex_state = 4}, - [1841] = {.lex_state = 3}, - [1842] = {.lex_state = 3}, - [1843] = {.lex_state = 4}, - [1844] = {.lex_state = 0, .external_lex_state = 33}, - [1845] = {.lex_state = 0, .external_lex_state = 35}, - [1846] = {.lex_state = 0, .external_lex_state = 32}, + [1823] = {.lex_state = 0, .external_lex_state = 32}, + [1824] = {.lex_state = 0, .external_lex_state = 35}, + [1825] = {.lex_state = 0, .external_lex_state = 34}, + [1826] = {.lex_state = 0, .external_lex_state = 32}, + [1827] = {.lex_state = 3}, + [1828] = {.lex_state = 0, .external_lex_state = 34}, + [1829] = {.lex_state = 0, .external_lex_state = 34}, + [1830] = {.lex_state = 0, .external_lex_state = 34}, + [1831] = {.lex_state = 0, .external_lex_state = 34}, + [1832] = {.lex_state = 4}, + [1833] = {.lex_state = 3}, + [1834] = {.lex_state = 0, .external_lex_state = 32}, + [1835] = {.lex_state = 4}, + [1836] = {.lex_state = 3}, + [1837] = {.lex_state = 0, .external_lex_state = 35}, + [1838] = {.lex_state = 0, .external_lex_state = 35}, + [1839] = {.lex_state = 0, .external_lex_state = 32}, + [1840] = {.lex_state = 0, .external_lex_state = 32}, + [1841] = {.lex_state = 4}, + [1842] = {.lex_state = 0, .external_lex_state = 32}, + [1843] = {.lex_state = 0, .external_lex_state = 32}, + [1844] = {.lex_state = 4}, + [1845] = {.lex_state = 0, .external_lex_state = 32}, + [1846] = {.lex_state = 0, .external_lex_state = 35}, [1847] = {.lex_state = 0, .external_lex_state = 32}, - [1848] = {.lex_state = 0, .external_lex_state = 32}, - [1849] = {.lex_state = 0, .external_lex_state = 32}, - [1850] = {.lex_state = 0, .external_lex_state = 35}, - [1851] = {.lex_state = 0, .external_lex_state = 32}, - [1852] = {.lex_state = 0, .external_lex_state = 33}, + [1848] = {.lex_state = 3}, + [1849] = {.lex_state = 0, .external_lex_state = 34}, + [1850] = {.lex_state = 0, .external_lex_state = 34}, + [1851] = {.lex_state = 4}, + [1852] = {.lex_state = 3}, [1853] = {.lex_state = 0, .external_lex_state = 35}, [1854] = {.lex_state = 0, .external_lex_state = 35}, - [1855] = {.lex_state = 0, .external_lex_state = 34}, - [1856] = {.lex_state = 0, .external_lex_state = 32}, + [1855] = {.lex_state = 4}, + [1856] = {.lex_state = 3}, [1857] = {.lex_state = 0, .external_lex_state = 34}, - [1858] = {.lex_state = 4}, - [1859] = {.lex_state = 3}, - [1860] = {.lex_state = 0, .external_lex_state = 33}, - [1861] = {.lex_state = 0, .external_lex_state = 35}, - [1862] = {.lex_state = 4}, + [1858] = {.lex_state = 0, .external_lex_state = 33}, + [1859] = {.lex_state = 0, .external_lex_state = 35}, + [1860] = {.lex_state = 4}, + [1861] = {.lex_state = 0, .external_lex_state = 32}, + [1862] = {.lex_state = 0, .external_lex_state = 32}, [1863] = {.lex_state = 3}, - [1864] = {.lex_state = 0, .external_lex_state = 32}, + [1864] = {.lex_state = 0, .external_lex_state = 33}, [1865] = {.lex_state = 0, .external_lex_state = 32}, [1866] = {.lex_state = 0, .external_lex_state = 35}, [1867] = {.lex_state = 0, .external_lex_state = 34}, - [1868] = {.lex_state = 0, .external_lex_state = 35}, - [1869] = {.lex_state = 0, .external_lex_state = 32}, - [1870] = {.lex_state = 0, .external_lex_state = 32}, - [1871] = {.lex_state = 0, .external_lex_state = 33}, - [1872] = {.lex_state = 0, .external_lex_state = 34}, - [1873] = {.lex_state = 0, .external_lex_state = 32}, + [1868] = {.lex_state = 4}, + [1869] = {.lex_state = 4}, + [1870] = {.lex_state = 3}, + [1871] = {.lex_state = 0, .external_lex_state = 35}, + [1872] = {.lex_state = 4}, + [1873] = {.lex_state = 4}, [1874] = {.lex_state = 3}, - [1875] = {.lex_state = 4}, - [1876] = {.lex_state = 0, .external_lex_state = 33}, - [1877] = {.lex_state = 0, .external_lex_state = 34}, - [1878] = {.lex_state = 0, .external_lex_state = 34}, - [1879] = {.lex_state = 3}, + [1875] = {.lex_state = 3}, + [1876] = {.lex_state = 3}, + [1877] = {.lex_state = 0, .external_lex_state = 32}, + [1878] = {.lex_state = 3}, + [1879] = {.lex_state = 0, .external_lex_state = 32}, [1880] = {.lex_state = 4}, - [1881] = {.lex_state = 3}, - [1882] = {.lex_state = 0, .external_lex_state = 33}, - [1883] = {.lex_state = 4}, - [1884] = {.lex_state = 4}, + [1881] = {.lex_state = 0, .external_lex_state = 32}, + [1882] = {.lex_state = 0, .external_lex_state = 34}, + [1883] = {.lex_state = 3}, + [1884] = {.lex_state = 0, .external_lex_state = 34}, [1885] = {.lex_state = 3}, - [1886] = {.lex_state = 0, .external_lex_state = 33}, - [1887] = {.lex_state = 0, .external_lex_state = 33}, - [1888] = {.lex_state = 0, .external_lex_state = 34}, + [1886] = {.lex_state = 0, .external_lex_state = 32}, + [1887] = {.lex_state = 0, .external_lex_state = 32}, + [1888] = {.lex_state = 4}, [1889] = {.lex_state = 0, .external_lex_state = 35}, - [1890] = {.lex_state = 0, .external_lex_state = 35}, - [1891] = {.lex_state = 0, .external_lex_state = 32}, - [1892] = {.lex_state = 0, .external_lex_state = 32}, - [1893] = {.lex_state = 0, .external_lex_state = 33}, + [1890] = {.lex_state = 3}, + [1891] = {.lex_state = 0, .external_lex_state = 33}, + [1892] = {.lex_state = 0, .external_lex_state = 34}, + [1893] = {.lex_state = 0, .external_lex_state = 35}, [1894] = {.lex_state = 0, .external_lex_state = 32}, - [1895] = {.lex_state = 0, .external_lex_state = 34}, - [1896] = {.lex_state = 0, .external_lex_state = 35}, - [1897] = {.lex_state = 0, .external_lex_state = 35}, - [1898] = {.lex_state = 0, .external_lex_state = 35}, - [1899] = {.lex_state = 0, .external_lex_state = 34}, - [1900] = {.lex_state = 0, .external_lex_state = 34}, + [1895] = {.lex_state = 0, .external_lex_state = 32}, + [1896] = {.lex_state = 0, .external_lex_state = 34}, + [1897] = {.lex_state = 4}, + [1898] = {.lex_state = 3}, + [1899] = {.lex_state = 0, .external_lex_state = 35}, + [1900] = {.lex_state = 0, .external_lex_state = 33}, [1901] = {.lex_state = 0, .external_lex_state = 35}, - [1902] = {.lex_state = 0, .external_lex_state = 34}, + [1902] = {.lex_state = 0, .external_lex_state = 32}, [1903] = {.lex_state = 0, .external_lex_state = 35}, - [1904] = {.lex_state = 0, .external_lex_state = 34}, + [1904] = {.lex_state = 0, .external_lex_state = 35}, [1905] = {.lex_state = 0, .external_lex_state = 34}, [1906] = {.lex_state = 0, .external_lex_state = 32}, - [1907] = {.lex_state = 0, .external_lex_state = 32}, + [1907] = {.lex_state = 0, .external_lex_state = 34}, [1908] = {.lex_state = 0, .external_lex_state = 32}, - [1909] = {.lex_state = 0, .external_lex_state = 34}, - [1910] = {.lex_state = 0, .external_lex_state = 33}, - [1911] = {.lex_state = 0, .external_lex_state = 34}, - [1912] = {.lex_state = 0, .external_lex_state = 33}, - [1913] = {.lex_state = 0, .external_lex_state = 35}, - [1914] = {.lex_state = 0, .external_lex_state = 33}, - [1915] = {.lex_state = 0, .external_lex_state = 33}, - [1916] = {.lex_state = 0, .external_lex_state = 33}, + [1909] = {.lex_state = 0, .external_lex_state = 35}, + [1910] = {.lex_state = 4}, + [1911] = {.lex_state = 3}, + [1912] = {.lex_state = 0, .external_lex_state = 32}, + [1913] = {.lex_state = 0, .external_lex_state = 33}, + [1914] = {.lex_state = 0, .external_lex_state = 35}, + [1915] = {.lex_state = 0, .external_lex_state = 35}, + [1916] = {.lex_state = 0, .external_lex_state = 34}, [1917] = {.lex_state = 0, .external_lex_state = 35}, - [1918] = {.lex_state = 0, .external_lex_state = 32}, - [1919] = {.lex_state = 3}, - [1920] = {.lex_state = 4}, - [1921] = {.lex_state = 4}, - [1922] = {.lex_state = 0, .external_lex_state = 33}, - [1923] = {.lex_state = 3}, + [1918] = {.lex_state = 0, .external_lex_state = 34}, + [1919] = {.lex_state = 0, .external_lex_state = 34}, + [1920] = {.lex_state = 0, .external_lex_state = 34}, + [1921] = {.lex_state = 0, .external_lex_state = 32}, + [1922] = {.lex_state = 0, .external_lex_state = 35}, + [1923] = {.lex_state = 0, .external_lex_state = 35}, [1924] = {.lex_state = 4}, - [1925] = {.lex_state = 0, .external_lex_state = 33}, - [1926] = {.lex_state = 4}, - [1927] = {.lex_state = 0, .external_lex_state = 35}, - [1928] = {.lex_state = 3}, - [1929] = {.lex_state = 0, .external_lex_state = 33}, - [1930] = {.lex_state = 0, .external_lex_state = 32}, - [1931] = {.lex_state = 4}, - [1932] = {.lex_state = 0, .external_lex_state = 34}, + [1925] = {.lex_state = 0, .external_lex_state = 34}, + [1926] = {.lex_state = 0, .external_lex_state = 34}, + [1927] = {.lex_state = 0, .external_lex_state = 34}, + [1928] = {.lex_state = 0, .external_lex_state = 35}, + [1929] = {.lex_state = 0, .external_lex_state = 34}, + [1930] = {.lex_state = 0, .external_lex_state = 33}, + [1931] = {.lex_state = 0, .external_lex_state = 34}, + [1932] = {.lex_state = 0, .external_lex_state = 33}, [1933] = {.lex_state = 0, .external_lex_state = 32}, - [1934] = {.lex_state = 0, .external_lex_state = 33}, - [1935] = {.lex_state = 0, .external_lex_state = 32}, - [1936] = {.lex_state = 0, .external_lex_state = 35}, - [1937] = {.lex_state = 3}, - [1938] = {.lex_state = 0, .external_lex_state = 35}, - [1939] = {.lex_state = 0, .external_lex_state = 33}, - [1940] = {.lex_state = 0, .external_lex_state = 35}, - [1941] = {.lex_state = 0, .external_lex_state = 33}, - [1942] = {.lex_state = 0, .external_lex_state = 34}, - [1943] = {.lex_state = 3}, - [1944] = {.lex_state = 0, .external_lex_state = 35}, - [1945] = {.lex_state = 3}, + [1934] = {.lex_state = 0, .external_lex_state = 32}, + [1935] = {.lex_state = 0, .external_lex_state = 35}, + [1936] = {.lex_state = 0, .external_lex_state = 33}, + [1937] = {.lex_state = 0, .external_lex_state = 35}, + [1938] = {.lex_state = 0, .external_lex_state = 33}, + [1939] = {.lex_state = 0, .external_lex_state = 34}, + [1940] = {.lex_state = 0, .external_lex_state = 33}, + [1941] = {.lex_state = 0, .external_lex_state = 32}, + [1942] = {.lex_state = 0, .external_lex_state = 33}, + [1943] = {.lex_state = 0, .external_lex_state = 34}, + [1944] = {.lex_state = 0, .external_lex_state = 33}, + [1945] = {.lex_state = 0, .external_lex_state = 32}, [1946] = {.lex_state = 0, .external_lex_state = 33}, [1947] = {.lex_state = 0, .external_lex_state = 32}, - [1948] = {.lex_state = 4}, - [1949] = {.lex_state = 0, .external_lex_state = 34}, - [1950] = {.lex_state = 0, .external_lex_state = 34}, - [1951] = {.lex_state = 0, .external_lex_state = 33}, + [1948] = {.lex_state = 0, .external_lex_state = 33}, + [1949] = {.lex_state = 0, .external_lex_state = 33}, + [1950] = {.lex_state = 0, .external_lex_state = 33}, + [1951] = {.lex_state = 0, .external_lex_state = 32}, [1952] = {.lex_state = 0, .external_lex_state = 33}, - [1953] = {.lex_state = 0, .external_lex_state = 33}, - [1954] = {.lex_state = 0, .external_lex_state = 34}, - [1955] = {.lex_state = 0, .external_lex_state = 33}, + [1953] = {.lex_state = 0, .external_lex_state = 35}, + [1954] = {.lex_state = 0, .external_lex_state = 33}, + [1955] = {.lex_state = 0, .external_lex_state = 35}, [1956] = {.lex_state = 0, .external_lex_state = 33}, - [1957] = {.lex_state = 3}, - [1958] = {.lex_state = 0, .external_lex_state = 33}, + [1957] = {.lex_state = 0, .external_lex_state = 33}, + [1958] = {.lex_state = 4}, [1959] = {.lex_state = 0, .external_lex_state = 33}, - [1960] = {.lex_state = 0, .external_lex_state = 33}, + [1960] = {.lex_state = 0, .external_lex_state = 34}, [1961] = {.lex_state = 0, .external_lex_state = 33}, [1962] = {.lex_state = 0, .external_lex_state = 33}, - [1963] = {.lex_state = 4}, - [1964] = {.lex_state = 0, .external_lex_state = 33}, + [1963] = {.lex_state = 0, .external_lex_state = 33}, + [1964] = {.lex_state = 0, .external_lex_state = 35}, [1965] = {.lex_state = 0, .external_lex_state = 33}, - [1966] = {.lex_state = 0, .external_lex_state = 35}, + [1966] = {.lex_state = 0, .external_lex_state = 33}, [1967] = {.lex_state = 0, .external_lex_state = 33}, [1968] = {.lex_state = 0, .external_lex_state = 33}, [1969] = {.lex_state = 0, .external_lex_state = 33}, [1970] = {.lex_state = 0, .external_lex_state = 33}, - [1971] = {.lex_state = 0, .external_lex_state = 35}, + [1971] = {.lex_state = 0, .external_lex_state = 33}, [1972] = {.lex_state = 0, .external_lex_state = 33}, - [1973] = {.lex_state = 0, .external_lex_state = 34}, - [1974] = {.lex_state = 0, .external_lex_state = 32}, + [1973] = {.lex_state = 0, .external_lex_state = 33}, + [1974] = {.lex_state = 0, .external_lex_state = 33}, [1975] = {.lex_state = 0, .external_lex_state = 33}, [1976] = {.lex_state = 0, .external_lex_state = 33}, - [1977] = {.lex_state = 0, .external_lex_state = 34}, + [1977] = {.lex_state = 0, .external_lex_state = 33}, [1978] = {.lex_state = 0, .external_lex_state = 33}, - [1979] = {.lex_state = 0, .external_lex_state = 34}, - [1980] = {.lex_state = 0, .external_lex_state = 35}, + [1979] = {.lex_state = 0, .external_lex_state = 33}, + [1980] = {.lex_state = 0, .external_lex_state = 33}, [1981] = {.lex_state = 0, .external_lex_state = 33}, [1982] = {.lex_state = 0, .external_lex_state = 33}, - [1983] = {.lex_state = 4}, + [1983] = {.lex_state = 0, .external_lex_state = 33}, [1984] = {.lex_state = 0, .external_lex_state = 33}, - [1985] = {.lex_state = 3}, + [1985] = {.lex_state = 0, .external_lex_state = 33}, [1986] = {.lex_state = 0, .external_lex_state = 33}, [1987] = {.lex_state = 0, .external_lex_state = 33}, [1988] = {.lex_state = 0, .external_lex_state = 33}, - [1989] = {.lex_state = 0, .external_lex_state = 35}, + [1989] = {.lex_state = 0, .external_lex_state = 33}, [1990] = {.lex_state = 0, .external_lex_state = 33}, [1991] = {.lex_state = 0, .external_lex_state = 33}, - [1992] = {.lex_state = 0, .external_lex_state = 35}, + [1992] = {.lex_state = 0, .external_lex_state = 33}, [1993] = {.lex_state = 0, .external_lex_state = 33}, [1994] = {.lex_state = 0, .external_lex_state = 33}, - [1995] = {.lex_state = 0, .external_lex_state = 34}, + [1995] = {.lex_state = 0, .external_lex_state = 33}, [1996] = {.lex_state = 0, .external_lex_state = 33}, - [1997] = {.lex_state = 0, .external_lex_state = 35}, + [1997] = {.lex_state = 0, .external_lex_state = 33}, [1998] = {.lex_state = 0, .external_lex_state = 33}, - [1999] = {.lex_state = 0, .external_lex_state = 34}, - [2000] = {.lex_state = 0, .external_lex_state = 33}, - [2001] = {.lex_state = 3}, - [2002] = {.lex_state = 1}, - [2003] = {.lex_state = 0, .external_lex_state = 35}, - [2004] = {.lex_state = 1}, - [2005] = {.lex_state = 1}, + [1999] = {.lex_state = 0, .external_lex_state = 33}, + [2000] = {.lex_state = 3}, + [2001] = {.lex_state = 0, .external_lex_state = 33}, + [2002] = {.lex_state = 0, .external_lex_state = 32}, + [2003] = {.lex_state = 1}, + [2004] = {.lex_state = 0, .external_lex_state = 32}, + [2005] = {.lex_state = 0, .external_lex_state = 34}, [2006] = {.lex_state = 0, .external_lex_state = 32}, - [2007] = {.lex_state = 1}, + [2007] = {.lex_state = 3}, [2008] = {.lex_state = 1}, [2009] = {.lex_state = 1}, - [2010] = {.lex_state = 0, .external_lex_state = 32}, - [2011] = {.lex_state = 0, .external_lex_state = 32}, + [2010] = {.lex_state = 1}, + [2011] = {.lex_state = 1}, [2012] = {.lex_state = 1}, [2013] = {.lex_state = 1}, [2014] = {.lex_state = 4}, [2015] = {.lex_state = 1}, - [2016] = {.lex_state = 0, .external_lex_state = 32}, - [2017] = {.lex_state = 1}, - [2018] = {.lex_state = 0, .external_lex_state = 33}, + [2016] = {.lex_state = 1}, + [2017] = {.lex_state = 0, .external_lex_state = 35}, + [2018] = {.lex_state = 1}, [2019] = {.lex_state = 1}, - [2020] = {.lex_state = 0, .external_lex_state = 34}, + [2020] = {.lex_state = 1}, [2021] = {.lex_state = 1}, [2022] = {.lex_state = 1}, [2023] = {.lex_state = 1}, @@ -6479,49 +6479,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2026] = {.lex_state = 1}, [2027] = {.lex_state = 1}, [2028] = {.lex_state = 1}, - [2029] = {.lex_state = 1}, - [2030] = {.lex_state = 0, .external_lex_state = 34}, - [2031] = {.lex_state = 0, .external_lex_state = 34}, + [2029] = {.lex_state = 0, .external_lex_state = 32}, + [2030] = {.lex_state = 0, .external_lex_state = 32}, + [2031] = {.lex_state = 0, .external_lex_state = 32}, [2032] = {.lex_state = 0, .external_lex_state = 35}, [2033] = {.lex_state = 0, .external_lex_state = 34}, - [2034] = {.lex_state = 0, .external_lex_state = 34}, - [2035] = {.lex_state = 0, .external_lex_state = 32}, + [2034] = {.lex_state = 0, .external_lex_state = 32}, + [2035] = {.lex_state = 0, .external_lex_state = 34}, [2036] = {.lex_state = 0, .external_lex_state = 32}, [2037] = {.lex_state = 0, .external_lex_state = 32}, - [2038] = {.lex_state = 0, .external_lex_state = 32}, + [2038] = {.lex_state = 0, .external_lex_state = 34}, [2039] = {.lex_state = 0, .external_lex_state = 32}, - [2040] = {.lex_state = 0, .external_lex_state = 35}, + [2040] = {.lex_state = 0, .external_lex_state = 34}, [2041] = {.lex_state = 0, .external_lex_state = 35}, [2042] = {.lex_state = 0, .external_lex_state = 35}, - [2043] = {.lex_state = 0, .external_lex_state = 32}, + [2043] = {.lex_state = 0, .external_lex_state = 35}, [2044] = {.lex_state = 0, .external_lex_state = 32}, - [2045] = {.lex_state = 0, .external_lex_state = 32}, - [2046] = {.lex_state = 0, .external_lex_state = 35}, + [2045] = {.lex_state = 0, .external_lex_state = 35}, + [2046] = {.lex_state = 0, .external_lex_state = 32}, [2047] = {.lex_state = 0, .external_lex_state = 34}, [2048] = {.lex_state = 2}, [2049] = {.lex_state = 2}, [2050] = {.lex_state = 2}, [2051] = {.lex_state = 2}, [2052] = {.lex_state = 2}, - [2053] = {.lex_state = 2}, + [2053] = {.lex_state = 0}, [2054] = {.lex_state = 0}, [2055] = {.lex_state = 2}, [2056] = {.lex_state = 2}, [2057] = {.lex_state = 2}, [2058] = {.lex_state = 2}, - [2059] = {.lex_state = 2}, + [2059] = {.lex_state = 0}, [2060] = {.lex_state = 2}, [2061] = {.lex_state = 2}, - [2062] = {.lex_state = 0}, - [2063] = {.lex_state = 0}, - [2064] = {.lex_state = 0}, + [2062] = {.lex_state = 2}, + [2063] = {.lex_state = 2}, + [2064] = {.lex_state = 2}, [2065] = {.lex_state = 2}, [2066] = {.lex_state = 2}, [2067] = {.lex_state = 2}, [2068] = {.lex_state = 2}, [2069] = {.lex_state = 2}, [2070] = {.lex_state = 2}, - [2071] = {.lex_state = 2}, + [2071] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -6606,29 +6606,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(2064), + [sym_program] = STATE(2053), [sym_comment] = ACTIONS(3), [sym__start] = ACTIONS(5), }, [2] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__else] = STATE(553), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(7), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_function] = ACTIONS(7), + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__else] = STATE(505), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(7), + [sym_identifier] = ACTIONS(9), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_function] = ACTIONS(9), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(7), - [anon_sym_for] = ACTIONS(7), - [anon_sym_while] = ACTIONS(7), - [anon_sym_repeat] = ACTIONS(7), - [anon_sym_QMARK] = ACTIONS(9), + [anon_sym_if] = ACTIONS(9), + [anon_sym_for] = ACTIONS(9), + [anon_sym_while] = ACTIONS(9), + [anon_sym_repeat] = ACTIONS(9), + [anon_sym_QMARK] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(9), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -6655,55 +6656,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(9), - [sym__number_literal] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(9), - [sym_dots] = ACTIONS(7), - [sym_dot_dot_i] = ACTIONS(7), - [sym_return] = ACTIONS(7), - [sym_next] = ACTIONS(7), - [sym_break] = ACTIONS(7), - [sym_true] = ACTIONS(7), - [sym_false] = ACTIONS(7), - [sym_null] = ACTIONS(7), - [sym_inf] = ACTIONS(7), - [sym_nan] = ACTIONS(7), - [anon_sym_NA] = ACTIONS(7), - [anon_sym_NA_integer_] = ACTIONS(7), - [anon_sym_NA_real_] = ACTIONS(7), - [anon_sym_NA_complex_] = ACTIONS(7), - [anon_sym_NA_character_] = ACTIONS(7), + [sym__hex_literal] = ACTIONS(7), + [sym__number_literal] = ACTIONS(9), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [sym_dots] = ACTIONS(9), + [sym_dot_dot_i] = ACTIONS(9), + [sym_return] = ACTIONS(9), + [sym_next] = ACTIONS(9), + [sym_break] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_null] = ACTIONS(9), + [sym_inf] = ACTIONS(9), + [sym_nan] = ACTIONS(9), + [anon_sym_NA] = ACTIONS(9), + [anon_sym_NA_integer_] = ACTIONS(9), + [anon_sym_NA_real_] = ACTIONS(9), + [anon_sym_NA_complex_] = ACTIONS(9), + [anon_sym_NA_character_] = ACTIONS(9), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(9), - [sym__semicolon] = ACTIONS(9), - [sym__raw_string_literal] = ACTIONS(9), + [sym__newline] = ACTIONS(7), + [sym__semicolon] = ACTIONS(7), + [sym__raw_string_literal] = ACTIONS(7), [sym__external_else] = ACTIONS(49), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(9), - [sym__external_close_brace] = ACTIONS(9), + [sym__external_open_brace] = ACTIONS(7), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, [3] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__else] = STATE(562), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(57), - [anon_sym_BSLASH] = ACTIONS(59), - [anon_sym_function] = ACTIONS(57), + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__else] = STATE(633), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(57), + [sym_identifier] = ACTIONS(59), + [anon_sym_BSLASH] = ACTIONS(57), + [anon_sym_function] = ACTIONS(59), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(57), - [anon_sym_for] = ACTIONS(57), - [anon_sym_while] = ACTIONS(57), - [anon_sym_repeat] = ACTIONS(57), - [anon_sym_QMARK] = ACTIONS(59), + [anon_sym_if] = ACTIONS(59), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(59), + [anon_sym_repeat] = ACTIONS(59), + [anon_sym_QMARK] = ACTIONS(57), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -6730,55 +6731,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(59), - [sym__number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(59), - [sym_dots] = ACTIONS(57), - [sym_dot_dot_i] = ACTIONS(57), - [sym_return] = ACTIONS(57), - [sym_next] = ACTIONS(57), - [sym_break] = ACTIONS(57), - [sym_true] = ACTIONS(57), - [sym_false] = ACTIONS(57), - [sym_null] = ACTIONS(57), - [sym_inf] = ACTIONS(57), - [sym_nan] = ACTIONS(57), - [anon_sym_NA] = ACTIONS(57), - [anon_sym_NA_integer_] = ACTIONS(57), - [anon_sym_NA_real_] = ACTIONS(57), - [anon_sym_NA_complex_] = ACTIONS(57), - [anon_sym_NA_character_] = ACTIONS(57), + [sym__hex_literal] = ACTIONS(57), + [sym__number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(57), + [sym_dots] = ACTIONS(59), + [sym_dot_dot_i] = ACTIONS(59), + [sym_return] = ACTIONS(59), + [sym_next] = ACTIONS(59), + [sym_break] = ACTIONS(59), + [sym_true] = ACTIONS(59), + [sym_false] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [sym_inf] = ACTIONS(59), + [sym_nan] = ACTIONS(59), + [anon_sym_NA] = ACTIONS(59), + [anon_sym_NA_integer_] = ACTIONS(59), + [anon_sym_NA_real_] = ACTIONS(59), + [anon_sym_NA_complex_] = ACTIONS(59), + [anon_sym_NA_character_] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(59), - [sym__semicolon] = ACTIONS(59), - [sym__raw_string_literal] = ACTIONS(59), + [sym__newline] = ACTIONS(57), + [sym__semicolon] = ACTIONS(57), + [sym__raw_string_literal] = ACTIONS(57), [sym__external_else] = ACTIONS(61), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(59), - [sym__external_close_brace] = ACTIONS(59), + [sym__external_open_brace] = ACTIONS(57), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, [4] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__else] = STATE(563), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(63), - [anon_sym_BSLASH] = ACTIONS(65), - [anon_sym_function] = ACTIONS(63), + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__else] = STATE(646), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(63), + [sym_identifier] = ACTIONS(65), + [anon_sym_BSLASH] = ACTIONS(63), + [anon_sym_function] = ACTIONS(65), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(63), - [anon_sym_for] = ACTIONS(63), - [anon_sym_while] = ACTIONS(63), - [anon_sym_repeat] = ACTIONS(63), - [anon_sym_QMARK] = ACTIONS(65), + [anon_sym_if] = ACTIONS(65), + [anon_sym_for] = ACTIONS(65), + [anon_sym_while] = ACTIONS(65), + [anon_sym_repeat] = ACTIONS(65), + [anon_sym_QMARK] = ACTIONS(63), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(63), + [anon_sym_BANG] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -6805,55 +6806,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(65), - [sym__number_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(65), - [sym_dots] = ACTIONS(63), - [sym_dot_dot_i] = ACTIONS(63), - [sym_return] = ACTIONS(63), - [sym_next] = ACTIONS(63), - [sym_break] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_null] = ACTIONS(63), - [sym_inf] = ACTIONS(63), - [sym_nan] = ACTIONS(63), - [anon_sym_NA] = ACTIONS(63), - [anon_sym_NA_integer_] = ACTIONS(63), - [anon_sym_NA_real_] = ACTIONS(63), - [anon_sym_NA_complex_] = ACTIONS(63), - [anon_sym_NA_character_] = ACTIONS(63), + [sym__hex_literal] = ACTIONS(63), + [sym__number_literal] = ACTIONS(65), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(63), + [sym_dots] = ACTIONS(65), + [sym_dot_dot_i] = ACTIONS(65), + [sym_return] = ACTIONS(65), + [sym_next] = ACTIONS(65), + [sym_break] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_null] = ACTIONS(65), + [sym_inf] = ACTIONS(65), + [sym_nan] = ACTIONS(65), + [anon_sym_NA] = ACTIONS(65), + [anon_sym_NA_integer_] = ACTIONS(65), + [anon_sym_NA_real_] = ACTIONS(65), + [anon_sym_NA_complex_] = ACTIONS(65), + [anon_sym_NA_character_] = ACTIONS(65), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(65), - [sym__semicolon] = ACTIONS(65), - [sym__raw_string_literal] = ACTIONS(65), + [sym__newline] = ACTIONS(63), + [sym__semicolon] = ACTIONS(63), + [sym__raw_string_literal] = ACTIONS(63), [sym__external_else] = ACTIONS(67), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(65), - [sym__external_close_brace] = ACTIONS(65), + [sym__external_open_brace] = ACTIONS(63), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, [5] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__else] = STATE(574), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(69), - [anon_sym_BSLASH] = ACTIONS(71), - [anon_sym_function] = ACTIONS(69), + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__else] = STATE(632), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(69), + [sym_identifier] = ACTIONS(71), + [anon_sym_BSLASH] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(69), - [anon_sym_for] = ACTIONS(69), - [anon_sym_while] = ACTIONS(69), - [anon_sym_repeat] = ACTIONS(69), - [anon_sym_QMARK] = ACTIONS(71), + [anon_sym_if] = ACTIONS(71), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(71), + [anon_sym_QMARK] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -6880,56 +6881,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(71), - [sym__number_literal] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_dots] = ACTIONS(69), - [sym_dot_dot_i] = ACTIONS(69), - [sym_return] = ACTIONS(69), - [sym_next] = ACTIONS(69), - [sym_break] = ACTIONS(69), - [sym_true] = ACTIONS(69), - [sym_false] = ACTIONS(69), - [sym_null] = ACTIONS(69), - [sym_inf] = ACTIONS(69), - [sym_nan] = ACTIONS(69), - [anon_sym_NA] = ACTIONS(69), - [anon_sym_NA_integer_] = ACTIONS(69), - [anon_sym_NA_real_] = ACTIONS(69), - [anon_sym_NA_complex_] = ACTIONS(69), - [anon_sym_NA_character_] = ACTIONS(69), + [sym__hex_literal] = ACTIONS(69), + [sym__number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_dots] = ACTIONS(71), + [sym_dot_dot_i] = ACTIONS(71), + [sym_return] = ACTIONS(71), + [sym_next] = ACTIONS(71), + [sym_break] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_null] = ACTIONS(71), + [sym_inf] = ACTIONS(71), + [sym_nan] = ACTIONS(71), + [anon_sym_NA] = ACTIONS(71), + [anon_sym_NA_integer_] = ACTIONS(71), + [anon_sym_NA_real_] = ACTIONS(71), + [anon_sym_NA_complex_] = ACTIONS(71), + [anon_sym_NA_character_] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(71), - [sym__semicolon] = ACTIONS(71), - [sym__raw_string_literal] = ACTIONS(71), + [sym__newline] = ACTIONS(69), + [sym__semicolon] = ACTIONS(69), + [sym__raw_string_literal] = ACTIONS(69), [sym__external_else] = ACTIONS(73), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(71), - [sym__external_close_brace] = ACTIONS(71), + [sym__external_open_brace] = ACTIONS(69), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, [6] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__else] = STATE(768), - [sym__open_parenthesis] = STATE(257), + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__else] = STATE(490), + [sym__open_parenthesis] = STATE(275), [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(9), - [sym_identifier] = ACTIONS(7), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_function] = ACTIONS(7), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(9), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_function] = ACTIONS(9), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(7), - [anon_sym_for] = ACTIONS(7), - [anon_sym_while] = ACTIONS(7), - [anon_sym_repeat] = ACTIONS(7), - [anon_sym_QMARK] = ACTIONS(9), + [anon_sym_if] = ACTIONS(9), + [anon_sym_for] = ACTIONS(9), + [anon_sym_while] = ACTIONS(9), + [anon_sym_repeat] = ACTIONS(9), + [anon_sym_QMARK] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(9), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -6956,55 +6955,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(9), - [sym__number_literal] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(9), - [sym_dots] = ACTIONS(7), - [sym_dot_dot_i] = ACTIONS(7), - [sym_return] = ACTIONS(7), - [sym_next] = ACTIONS(7), - [sym_break] = ACTIONS(7), - [sym_true] = ACTIONS(7), - [sym_false] = ACTIONS(7), - [sym_null] = ACTIONS(7), - [sym_inf] = ACTIONS(7), - [sym_nan] = ACTIONS(7), - [anon_sym_NA] = ACTIONS(7), - [anon_sym_NA_integer_] = ACTIONS(7), - [anon_sym_NA_real_] = ACTIONS(7), - [anon_sym_NA_complex_] = ACTIONS(7), - [anon_sym_NA_character_] = ACTIONS(7), + [sym__hex_literal] = ACTIONS(7), + [sym__number_literal] = ACTIONS(9), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [sym_dots] = ACTIONS(9), + [sym_dot_dot_i] = ACTIONS(9), + [sym_return] = ACTIONS(9), + [sym_next] = ACTIONS(9), + [sym_break] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_null] = ACTIONS(9), + [sym_inf] = ACTIONS(9), + [sym_nan] = ACTIONS(9), + [anon_sym_NA] = ACTIONS(9), + [anon_sym_NA_integer_] = ACTIONS(9), + [anon_sym_NA_real_] = ACTIONS(9), + [anon_sym_NA_complex_] = ACTIONS(9), + [anon_sym_NA_character_] = ACTIONS(9), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(9), - [sym__semicolon] = ACTIONS(9), - [sym__raw_string_literal] = ACTIONS(9), + [sym__newline] = ACTIONS(7), + [sym__semicolon] = ACTIONS(7), + [sym__raw_string_literal] = ACTIONS(7), [sym__external_else] = ACTIONS(113), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(9), + [sym__external_open_brace] = ACTIONS(7), + [sym__external_close_brace] = ACTIONS(7), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, [7] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__else] = STATE(689), - [sym__open_parenthesis] = STATE(257), + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__else] = STATE(496), + [sym__open_parenthesis] = STATE(275), [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(59), - [sym_identifier] = ACTIONS(57), - [anon_sym_BSLASH] = ACTIONS(59), - [anon_sym_function] = ACTIONS(57), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(71), + [anon_sym_BSLASH] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(57), - [anon_sym_for] = ACTIONS(57), - [anon_sym_while] = ACTIONS(57), - [anon_sym_repeat] = ACTIONS(57), - [anon_sym_QMARK] = ACTIONS(59), + [anon_sym_if] = ACTIONS(71), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(71), + [anon_sym_QMARK] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -7031,55 +7030,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(59), - [sym__number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(59), - [sym_dots] = ACTIONS(57), - [sym_dot_dot_i] = ACTIONS(57), - [sym_return] = ACTIONS(57), - [sym_next] = ACTIONS(57), - [sym_break] = ACTIONS(57), - [sym_true] = ACTIONS(57), - [sym_false] = ACTIONS(57), - [sym_null] = ACTIONS(57), - [sym_inf] = ACTIONS(57), - [sym_nan] = ACTIONS(57), - [anon_sym_NA] = ACTIONS(57), - [anon_sym_NA_integer_] = ACTIONS(57), - [anon_sym_NA_real_] = ACTIONS(57), - [anon_sym_NA_complex_] = ACTIONS(57), - [anon_sym_NA_character_] = ACTIONS(57), + [sym__hex_literal] = ACTIONS(69), + [sym__number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_dots] = ACTIONS(71), + [sym_dot_dot_i] = ACTIONS(71), + [sym_return] = ACTIONS(71), + [sym_next] = ACTIONS(71), + [sym_break] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_null] = ACTIONS(71), + [sym_inf] = ACTIONS(71), + [sym_nan] = ACTIONS(71), + [anon_sym_NA] = ACTIONS(71), + [anon_sym_NA_integer_] = ACTIONS(71), + [anon_sym_NA_real_] = ACTIONS(71), + [anon_sym_NA_complex_] = ACTIONS(71), + [anon_sym_NA_character_] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(59), - [sym__semicolon] = ACTIONS(59), - [sym__raw_string_literal] = ACTIONS(59), + [sym__newline] = ACTIONS(69), + [sym__semicolon] = ACTIONS(69), + [sym__raw_string_literal] = ACTIONS(69), [sym__external_else] = ACTIONS(121), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(59), + [sym__external_open_brace] = ACTIONS(69), + [sym__external_close_brace] = ACTIONS(69), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, [8] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__else] = STATE(688), - [sym__open_parenthesis] = STATE(257), + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__else] = STATE(497), + [sym__open_parenthesis] = STATE(275), [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(65), - [sym_identifier] = ACTIONS(63), - [anon_sym_BSLASH] = ACTIONS(65), - [anon_sym_function] = ACTIONS(63), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(59), + [anon_sym_BSLASH] = ACTIONS(57), + [anon_sym_function] = ACTIONS(59), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(63), - [anon_sym_for] = ACTIONS(63), - [anon_sym_while] = ACTIONS(63), - [anon_sym_repeat] = ACTIONS(63), - [anon_sym_QMARK] = ACTIONS(65), + [anon_sym_if] = ACTIONS(59), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(59), + [anon_sym_repeat] = ACTIONS(59), + [anon_sym_QMARK] = ACTIONS(57), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(63), + [anon_sym_BANG] = ACTIONS(59), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -7106,55 +7105,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(65), - [sym__number_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(65), - [sym_dots] = ACTIONS(63), - [sym_dot_dot_i] = ACTIONS(63), - [sym_return] = ACTIONS(63), - [sym_next] = ACTIONS(63), - [sym_break] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_null] = ACTIONS(63), - [sym_inf] = ACTIONS(63), - [sym_nan] = ACTIONS(63), - [anon_sym_NA] = ACTIONS(63), - [anon_sym_NA_integer_] = ACTIONS(63), - [anon_sym_NA_real_] = ACTIONS(63), - [anon_sym_NA_complex_] = ACTIONS(63), - [anon_sym_NA_character_] = ACTIONS(63), + [sym__hex_literal] = ACTIONS(57), + [sym__number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(57), + [sym_dots] = ACTIONS(59), + [sym_dot_dot_i] = ACTIONS(59), + [sym_return] = ACTIONS(59), + [sym_next] = ACTIONS(59), + [sym_break] = ACTIONS(59), + [sym_true] = ACTIONS(59), + [sym_false] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [sym_inf] = ACTIONS(59), + [sym_nan] = ACTIONS(59), + [anon_sym_NA] = ACTIONS(59), + [anon_sym_NA_integer_] = ACTIONS(59), + [anon_sym_NA_real_] = ACTIONS(59), + [anon_sym_NA_complex_] = ACTIONS(59), + [anon_sym_NA_character_] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(65), - [sym__semicolon] = ACTIONS(65), - [sym__raw_string_literal] = ACTIONS(65), + [sym__newline] = ACTIONS(57), + [sym__semicolon] = ACTIONS(57), + [sym__raw_string_literal] = ACTIONS(57), [sym__external_else] = ACTIONS(123), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(65), + [sym__external_open_brace] = ACTIONS(57), + [sym__external_close_brace] = ACTIONS(57), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, [9] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__else] = STATE(565), - [sym__open_parenthesis] = STATE(257), + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__else] = STATE(504), + [sym__open_parenthesis] = STATE(275), [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(71), - [sym_identifier] = ACTIONS(69), - [anon_sym_BSLASH] = ACTIONS(71), - [anon_sym_function] = ACTIONS(69), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(65), + [anon_sym_BSLASH] = ACTIONS(63), + [anon_sym_function] = ACTIONS(65), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(69), - [anon_sym_for] = ACTIONS(69), - [anon_sym_while] = ACTIONS(69), - [anon_sym_repeat] = ACTIONS(69), - [anon_sym_QMARK] = ACTIONS(71), + [anon_sym_if] = ACTIONS(65), + [anon_sym_for] = ACTIONS(65), + [anon_sym_while] = ACTIONS(65), + [anon_sym_repeat] = ACTIONS(65), + [anon_sym_QMARK] = ACTIONS(63), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -7181,55 +7180,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(71), - [sym__number_literal] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_dots] = ACTIONS(69), - [sym_dot_dot_i] = ACTIONS(69), - [sym_return] = ACTIONS(69), - [sym_next] = ACTIONS(69), - [sym_break] = ACTIONS(69), - [sym_true] = ACTIONS(69), - [sym_false] = ACTIONS(69), - [sym_null] = ACTIONS(69), - [sym_inf] = ACTIONS(69), - [sym_nan] = ACTIONS(69), - [anon_sym_NA] = ACTIONS(69), - [anon_sym_NA_integer_] = ACTIONS(69), - [anon_sym_NA_real_] = ACTIONS(69), - [anon_sym_NA_complex_] = ACTIONS(69), - [anon_sym_NA_character_] = ACTIONS(69), + [sym__hex_literal] = ACTIONS(63), + [sym__number_literal] = ACTIONS(65), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(63), + [sym_dots] = ACTIONS(65), + [sym_dot_dot_i] = ACTIONS(65), + [sym_return] = ACTIONS(65), + [sym_next] = ACTIONS(65), + [sym_break] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_null] = ACTIONS(65), + [sym_inf] = ACTIONS(65), + [sym_nan] = ACTIONS(65), + [anon_sym_NA] = ACTIONS(65), + [anon_sym_NA_integer_] = ACTIONS(65), + [anon_sym_NA_real_] = ACTIONS(65), + [anon_sym_NA_complex_] = ACTIONS(65), + [anon_sym_NA_character_] = ACTIONS(65), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(71), - [sym__semicolon] = ACTIONS(71), - [sym__raw_string_literal] = ACTIONS(71), + [sym__newline] = ACTIONS(63), + [sym__semicolon] = ACTIONS(63), + [sym__raw_string_literal] = ACTIONS(63), [sym__external_else] = ACTIONS(125), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(71), + [sym__external_open_brace] = ACTIONS(63), + [sym__external_close_brace] = ACTIONS(63), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, [10] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__else] = STATE(1031), - [sym__open_parenthesis] = STATE(257), + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__else] = STATE(857), + [sym__open_parenthesis] = STATE(275), [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(9), - [sym_identifier] = ACTIONS(7), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_function] = ACTIONS(7), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(65), + [anon_sym_BSLASH] = ACTIONS(63), + [anon_sym_function] = ACTIONS(65), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(7), - [anon_sym_for] = ACTIONS(7), - [anon_sym_while] = ACTIONS(7), - [anon_sym_repeat] = ACTIONS(7), - [anon_sym_QMARK] = ACTIONS(9), + [anon_sym_if] = ACTIONS(65), + [anon_sym_for] = ACTIONS(65), + [anon_sym_while] = ACTIONS(65), + [anon_sym_repeat] = ACTIONS(65), + [anon_sym_QMARK] = ACTIONS(63), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -7256,55 +7255,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(9), - [sym__number_literal] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(9), - [sym_dots] = ACTIONS(7), - [sym_dot_dot_i] = ACTIONS(7), - [sym_return] = ACTIONS(7), - [sym_next] = ACTIONS(7), - [sym_break] = ACTIONS(7), - [sym_true] = ACTIONS(7), - [sym_false] = ACTIONS(7), - [sym_null] = ACTIONS(7), - [sym_inf] = ACTIONS(7), - [sym_nan] = ACTIONS(7), - [anon_sym_NA] = ACTIONS(7), - [anon_sym_NA_integer_] = ACTIONS(7), - [anon_sym_NA_real_] = ACTIONS(7), - [anon_sym_NA_complex_] = ACTIONS(7), - [anon_sym_NA_character_] = ACTIONS(7), + [sym__hex_literal] = ACTIONS(63), + [sym__number_literal] = ACTIONS(65), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(63), + [sym_dots] = ACTIONS(65), + [sym_dot_dot_i] = ACTIONS(65), + [sym_return] = ACTIONS(65), + [sym_next] = ACTIONS(65), + [sym_break] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_null] = ACTIONS(65), + [sym_inf] = ACTIONS(65), + [sym_nan] = ACTIONS(65), + [anon_sym_NA] = ACTIONS(65), + [anon_sym_NA_integer_] = ACTIONS(65), + [anon_sym_NA_real_] = ACTIONS(65), + [anon_sym_NA_complex_] = ACTIONS(65), + [anon_sym_NA_character_] = ACTIONS(65), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(9), - [sym__semicolon] = ACTIONS(9), - [sym__raw_string_literal] = ACTIONS(9), + [sym__newline] = ACTIONS(63), + [sym__semicolon] = ACTIONS(63), + [sym__raw_string_literal] = ACTIONS(63), [sym__external_else] = ACTIONS(127), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(9), + [sym__external_open_brace] = ACTIONS(63), + [sym__external_close_brace] = ACTIONS(63), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, [11] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__else] = STATE(1038), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__else] = STATE(711), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(7), + [sym_identifier] = ACTIONS(9), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_function] = ACTIONS(9), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(9), + [anon_sym_for] = ACTIONS(9), + [anon_sym_while] = ACTIONS(9), + [anon_sym_repeat] = ACTIONS(9), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(9), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(7), + [sym__number_literal] = ACTIONS(9), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [sym_dots] = ACTIONS(9), + [sym_dot_dot_i] = ACTIONS(9), + [sym_return] = ACTIONS(9), + [sym_next] = ACTIONS(9), + [sym_break] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_null] = ACTIONS(9), + [sym_inf] = ACTIONS(9), + [sym_nan] = ACTIONS(9), + [anon_sym_NA] = ACTIONS(9), + [anon_sym_NA_integer_] = ACTIONS(9), + [anon_sym_NA_real_] = ACTIONS(9), + [anon_sym_NA_complex_] = ACTIONS(9), + [anon_sym_NA_character_] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(7), + [sym__semicolon] = ACTIONS(7), + [sym__raw_string_literal] = ACTIONS(7), + [sym__external_else] = ACTIONS(129), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(7), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [12] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__else] = STATE(715), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(69), + [sym_identifier] = ACTIONS(71), + [anon_sym_BSLASH] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(71), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(71), + [anon_sym_QMARK] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(69), + [sym__number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_dots] = ACTIONS(71), + [sym_dot_dot_i] = ACTIONS(71), + [sym_return] = ACTIONS(71), + [sym_next] = ACTIONS(71), + [sym_break] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_null] = ACTIONS(71), + [sym_inf] = ACTIONS(71), + [sym_nan] = ACTIONS(71), + [anon_sym_NA] = ACTIONS(71), + [anon_sym_NA_integer_] = ACTIONS(71), + [anon_sym_NA_real_] = ACTIONS(71), + [anon_sym_NA_complex_] = ACTIONS(71), + [anon_sym_NA_character_] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(69), + [sym__semicolon] = ACTIONS(69), + [sym__raw_string_literal] = ACTIONS(69), + [sym__external_else] = ACTIONS(131), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(69), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [13] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__else] = STATE(716), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(57), + [sym_identifier] = ACTIONS(59), + [anon_sym_BSLASH] = ACTIONS(57), + [anon_sym_function] = ACTIONS(59), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(59), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(59), + [anon_sym_repeat] = ACTIONS(59), + [anon_sym_QMARK] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(57), + [sym__number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(57), + [sym_dots] = ACTIONS(59), + [sym_dot_dot_i] = ACTIONS(59), + [sym_return] = ACTIONS(59), + [sym_next] = ACTIONS(59), + [sym_break] = ACTIONS(59), + [sym_true] = ACTIONS(59), + [sym_false] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [sym_inf] = ACTIONS(59), + [sym_nan] = ACTIONS(59), + [anon_sym_NA] = ACTIONS(59), + [anon_sym_NA_integer_] = ACTIONS(59), + [anon_sym_NA_real_] = ACTIONS(59), + [anon_sym_NA_complex_] = ACTIONS(59), + [anon_sym_NA_character_] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(57), + [sym__semicolon] = ACTIONS(57), + [sym__raw_string_literal] = ACTIONS(57), + [sym__external_else] = ACTIONS(133), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(57), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [14] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__else] = STATE(723), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(59), - [sym_identifier] = ACTIONS(57), - [anon_sym_BSLASH] = ACTIONS(59), - [anon_sym_function] = ACTIONS(57), + [ts_builtin_sym_end] = ACTIONS(63), + [sym_identifier] = ACTIONS(65), + [anon_sym_BSLASH] = ACTIONS(63), + [anon_sym_function] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(65), + [anon_sym_for] = ACTIONS(65), + [anon_sym_while] = ACTIONS(65), + [anon_sym_repeat] = ACTIONS(65), + [anon_sym_QMARK] = ACTIONS(63), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(63), + [sym__number_literal] = ACTIONS(65), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(63), + [sym_dots] = ACTIONS(65), + [sym_dot_dot_i] = ACTIONS(65), + [sym_return] = ACTIONS(65), + [sym_next] = ACTIONS(65), + [sym_break] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_null] = ACTIONS(65), + [sym_inf] = ACTIONS(65), + [sym_nan] = ACTIONS(65), + [anon_sym_NA] = ACTIONS(65), + [anon_sym_NA_integer_] = ACTIONS(65), + [anon_sym_NA_real_] = ACTIONS(65), + [anon_sym_NA_complex_] = ACTIONS(65), + [anon_sym_NA_character_] = ACTIONS(65), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(63), + [sym__semicolon] = ACTIONS(63), + [sym__raw_string_literal] = ACTIONS(63), + [sym__external_else] = ACTIONS(135), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(63), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [15] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__else] = STATE(843), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(9), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_function] = ACTIONS(9), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(57), - [anon_sym_for] = ACTIONS(57), - [anon_sym_while] = ACTIONS(57), - [anon_sym_repeat] = ACTIONS(57), - [anon_sym_QMARK] = ACTIONS(59), + [anon_sym_if] = ACTIONS(9), + [anon_sym_for] = ACTIONS(9), + [anon_sym_while] = ACTIONS(9), + [anon_sym_repeat] = ACTIONS(9), + [anon_sym_QMARK] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(9), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -7331,55 +7630,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(59), - [sym__number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(59), - [sym_dots] = ACTIONS(57), - [sym_dot_dot_i] = ACTIONS(57), - [sym_return] = ACTIONS(57), - [sym_next] = ACTIONS(57), - [sym_break] = ACTIONS(57), - [sym_true] = ACTIONS(57), - [sym_false] = ACTIONS(57), - [sym_null] = ACTIONS(57), - [sym_inf] = ACTIONS(57), - [sym_nan] = ACTIONS(57), - [anon_sym_NA] = ACTIONS(57), - [anon_sym_NA_integer_] = ACTIONS(57), - [anon_sym_NA_real_] = ACTIONS(57), - [anon_sym_NA_complex_] = ACTIONS(57), - [anon_sym_NA_character_] = ACTIONS(57), + [sym__hex_literal] = ACTIONS(7), + [sym__number_literal] = ACTIONS(9), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [sym_dots] = ACTIONS(9), + [sym_dot_dot_i] = ACTIONS(9), + [sym_return] = ACTIONS(9), + [sym_next] = ACTIONS(9), + [sym_break] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_null] = ACTIONS(9), + [sym_inf] = ACTIONS(9), + [sym_nan] = ACTIONS(9), + [anon_sym_NA] = ACTIONS(9), + [anon_sym_NA_integer_] = ACTIONS(9), + [anon_sym_NA_real_] = ACTIONS(9), + [anon_sym_NA_complex_] = ACTIONS(9), + [anon_sym_NA_character_] = ACTIONS(9), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(59), - [sym__semicolon] = ACTIONS(59), - [sym__raw_string_literal] = ACTIONS(59), - [sym__external_else] = ACTIONS(129), + [sym__newline] = ACTIONS(7), + [sym__semicolon] = ACTIONS(7), + [sym__raw_string_literal] = ACTIONS(7), + [sym__external_else] = ACTIONS(137), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(59), + [sym__external_open_brace] = ACTIONS(7), + [sym__external_close_brace] = ACTIONS(7), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, - [12] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__else] = STATE(1039), - [sym__open_parenthesis] = STATE(257), + [16] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__else] = STATE(849), + [sym__open_parenthesis] = STATE(275), [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(65), - [sym_identifier] = ACTIONS(63), - [anon_sym_BSLASH] = ACTIONS(65), - [anon_sym_function] = ACTIONS(63), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(71), + [anon_sym_BSLASH] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(63), - [anon_sym_for] = ACTIONS(63), - [anon_sym_while] = ACTIONS(63), - [anon_sym_repeat] = ACTIONS(63), - [anon_sym_QMARK] = ACTIONS(65), + [anon_sym_if] = ACTIONS(71), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(71), + [anon_sym_QMARK] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(63), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -7406,55 +7705,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(65), - [sym__number_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(65), - [sym_dots] = ACTIONS(63), - [sym_dot_dot_i] = ACTIONS(63), - [sym_return] = ACTIONS(63), - [sym_next] = ACTIONS(63), - [sym_break] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_null] = ACTIONS(63), - [sym_inf] = ACTIONS(63), - [sym_nan] = ACTIONS(63), - [anon_sym_NA] = ACTIONS(63), - [anon_sym_NA_integer_] = ACTIONS(63), - [anon_sym_NA_real_] = ACTIONS(63), - [anon_sym_NA_complex_] = ACTIONS(63), - [anon_sym_NA_character_] = ACTIONS(63), + [sym__hex_literal] = ACTIONS(69), + [sym__number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_dots] = ACTIONS(71), + [sym_dot_dot_i] = ACTIONS(71), + [sym_return] = ACTIONS(71), + [sym_next] = ACTIONS(71), + [sym_break] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_null] = ACTIONS(71), + [sym_inf] = ACTIONS(71), + [sym_nan] = ACTIONS(71), + [anon_sym_NA] = ACTIONS(71), + [anon_sym_NA_integer_] = ACTIONS(71), + [anon_sym_NA_real_] = ACTIONS(71), + [anon_sym_NA_complex_] = ACTIONS(71), + [anon_sym_NA_character_] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(65), - [sym__semicolon] = ACTIONS(65), - [sym__raw_string_literal] = ACTIONS(65), - [sym__external_else] = ACTIONS(131), + [sym__newline] = ACTIONS(69), + [sym__semicolon] = ACTIONS(69), + [sym__raw_string_literal] = ACTIONS(69), + [sym__external_else] = ACTIONS(139), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(65), + [sym__external_open_brace] = ACTIONS(69), + [sym__external_close_brace] = ACTIONS(69), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, - [13] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__else] = STATE(1010), - [sym__open_parenthesis] = STATE(257), + [17] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__else] = STATE(850), + [sym__open_parenthesis] = STATE(275), [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(71), - [sym_identifier] = ACTIONS(69), - [anon_sym_BSLASH] = ACTIONS(71), - [anon_sym_function] = ACTIONS(69), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(59), + [anon_sym_BSLASH] = ACTIONS(57), + [anon_sym_function] = ACTIONS(59), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(69), - [anon_sym_for] = ACTIONS(69), - [anon_sym_while] = ACTIONS(69), - [anon_sym_repeat] = ACTIONS(69), - [anon_sym_QMARK] = ACTIONS(71), + [anon_sym_if] = ACTIONS(59), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(59), + [anon_sym_repeat] = ACTIONS(59), + [anon_sym_QMARK] = ACTIONS(57), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(59), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -7481,65 +7780,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(71), - [sym__number_literal] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_dots] = ACTIONS(69), - [sym_dot_dot_i] = ACTIONS(69), - [sym_return] = ACTIONS(69), - [sym_next] = ACTIONS(69), - [sym_break] = ACTIONS(69), - [sym_true] = ACTIONS(69), - [sym_false] = ACTIONS(69), - [sym_null] = ACTIONS(69), - [sym_inf] = ACTIONS(69), - [sym_nan] = ACTIONS(69), - [anon_sym_NA] = ACTIONS(69), - [anon_sym_NA_integer_] = ACTIONS(69), - [anon_sym_NA_real_] = ACTIONS(69), - [anon_sym_NA_complex_] = ACTIONS(69), - [anon_sym_NA_character_] = ACTIONS(69), + [sym__hex_literal] = ACTIONS(57), + [sym__number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(57), + [sym_dots] = ACTIONS(59), + [sym_dot_dot_i] = ACTIONS(59), + [sym_return] = ACTIONS(59), + [sym_next] = ACTIONS(59), + [sym_break] = ACTIONS(59), + [sym_true] = ACTIONS(59), + [sym_false] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [sym_inf] = ACTIONS(59), + [sym_nan] = ACTIONS(59), + [anon_sym_NA] = ACTIONS(59), + [anon_sym_NA_integer_] = ACTIONS(59), + [anon_sym_NA_real_] = ACTIONS(59), + [anon_sym_NA_complex_] = ACTIONS(59), + [anon_sym_NA_character_] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(71), - [sym__semicolon] = ACTIONS(71), - [sym__raw_string_literal] = ACTIONS(71), - [sym__external_else] = ACTIONS(133), + [sym__newline] = ACTIONS(57), + [sym__semicolon] = ACTIONS(57), + [sym__raw_string_literal] = ACTIONS(57), + [sym__external_else] = ACTIONS(141), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(71), + [sym__external_open_brace] = ACTIONS(57), + [sym__external_close_brace] = ACTIONS(57), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, - [14] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__else] = STATE(967), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(7), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_function] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(7), - [anon_sym_for] = ACTIONS(7), - [anon_sym_while] = ACTIONS(7), - [anon_sym_repeat] = ACTIONS(7), - [anon_sym_QMARK] = ACTIONS(9), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(7), + [18] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(143), + [anon_sym_BSLASH] = ACTIONS(145), + [anon_sym_function] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(143), + [anon_sym_for] = ACTIONS(143), + [anon_sym_while] = ACTIONS(143), + [anon_sym_repeat] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(145), + [sym__number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_dots] = ACTIONS(143), + [sym_dot_dot_i] = ACTIONS(143), + [sym_return] = ACTIONS(143), + [sym_next] = ACTIONS(143), + [sym_break] = ACTIONS(143), + [sym_true] = ACTIONS(143), + [sym_false] = ACTIONS(143), + [sym_null] = ACTIONS(143), + [sym_inf] = ACTIONS(143), + [sym_nan] = ACTIONS(143), + [anon_sym_NA] = ACTIONS(143), + [anon_sym_NA_integer_] = ACTIONS(143), + [anon_sym_NA_real_] = ACTIONS(143), + [anon_sym_NA_complex_] = ACTIONS(143), + [anon_sym_NA_character_] = ACTIONS(143), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(145), + [sym__semicolon] = ACTIONS(145), + [sym__raw_string_literal] = ACTIONS(145), + [sym__external_else] = ACTIONS(145), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(145), + [sym__external_close_brace] = ACTIONS(145), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [19] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(147), + [sym_identifier] = ACTIONS(149), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(149), + [anon_sym_while] = ACTIONS(149), + [anon_sym_repeat] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(149), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT_DASH] = ACTIONS(147), + [anon_sym_LT_LT_DASH] = ACTIONS(147), + [anon_sym_COLON_EQ] = ACTIONS(147), + [anon_sym_DASH_GT] = ACTIONS(149), + [anon_sym_DASH_GT_GT] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(149), + [anon_sym_PIPE_PIPE] = ACTIONS(147), + [anon_sym_AMP_AMP] = ACTIONS(147), [anon_sym_LT] = ACTIONS(33), [anon_sym_LT_EQ] = ACTIONS(35), [anon_sym_GT] = ACTIONS(33), @@ -7555,135 +7929,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(9), - [sym__number_literal] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(9), - [sym_dots] = ACTIONS(7), - [sym_dot_dot_i] = ACTIONS(7), - [sym_return] = ACTIONS(7), - [sym_next] = ACTIONS(7), - [sym_break] = ACTIONS(7), - [sym_true] = ACTIONS(7), - [sym_false] = ACTIONS(7), - [sym_null] = ACTIONS(7), - [sym_inf] = ACTIONS(7), - [sym_nan] = ACTIONS(7), - [anon_sym_NA] = ACTIONS(7), - [anon_sym_NA_integer_] = ACTIONS(7), - [anon_sym_NA_real_] = ACTIONS(7), - [anon_sym_NA_complex_] = ACTIONS(7), - [anon_sym_NA_character_] = ACTIONS(7), + [sym__hex_literal] = ACTIONS(147), + [sym__number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym_dots] = ACTIONS(149), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(149), + [sym_next] = ACTIONS(149), + [sym_break] = ACTIONS(149), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [sym_null] = ACTIONS(149), + [sym_inf] = ACTIONS(149), + [sym_nan] = ACTIONS(149), + [anon_sym_NA] = ACTIONS(149), + [anon_sym_NA_integer_] = ACTIONS(149), + [anon_sym_NA_real_] = ACTIONS(149), + [anon_sym_NA_complex_] = ACTIONS(149), + [anon_sym_NA_character_] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(9), - [sym__semicolon] = ACTIONS(9), - [sym__raw_string_literal] = ACTIONS(9), - [sym__external_else] = ACTIONS(135), + [sym__newline] = ACTIONS(147), + [sym__semicolon] = ACTIONS(147), + [sym__raw_string_literal] = ACTIONS(147), + [sym__external_else] = ACTIONS(147), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(9), - [sym__external_close_brace] = ACTIONS(9), + [sym__external_open_brace] = ACTIONS(147), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [15] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__else] = STATE(954), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(57), - [anon_sym_BSLASH] = ACTIONS(59), - [anon_sym_function] = ACTIONS(57), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(57), - [anon_sym_for] = ACTIONS(57), - [anon_sym_while] = ACTIONS(57), - [anon_sym_repeat] = ACTIONS(57), - [anon_sym_QMARK] = ACTIONS(59), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), + [20] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(147), + [sym_identifier] = ACTIONS(149), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(149), + [anon_sym_while] = ACTIONS(149), + [anon_sym_repeat] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_LT_DASH] = ACTIONS(147), + [anon_sym_LT_LT_DASH] = ACTIONS(147), + [anon_sym_COLON_EQ] = ACTIONS(147), + [anon_sym_DASH_GT] = ACTIONS(149), + [anon_sym_DASH_GT_GT] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(149), + [anon_sym_PIPE_PIPE] = ACTIONS(147), + [anon_sym_AMP_AMP] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), [anon_sym_STAR_STAR] = ACTIONS(41), [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), + [aux_sym_binary_operator_token1] = ACTIONS(147), + [anon_sym_PIPE_GT] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(149), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(59), - [sym__number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(59), - [sym_dots] = ACTIONS(57), - [sym_dot_dot_i] = ACTIONS(57), - [sym_return] = ACTIONS(57), - [sym_next] = ACTIONS(57), - [sym_break] = ACTIONS(57), - [sym_true] = ACTIONS(57), - [sym_false] = ACTIONS(57), - [sym_null] = ACTIONS(57), - [sym_inf] = ACTIONS(57), - [sym_nan] = ACTIONS(57), - [anon_sym_NA] = ACTIONS(57), - [anon_sym_NA_integer_] = ACTIONS(57), - [anon_sym_NA_real_] = ACTIONS(57), - [anon_sym_NA_complex_] = ACTIONS(57), - [anon_sym_NA_character_] = ACTIONS(57), + [sym__hex_literal] = ACTIONS(147), + [sym__number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym_dots] = ACTIONS(149), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(149), + [sym_next] = ACTIONS(149), + [sym_break] = ACTIONS(149), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [sym_null] = ACTIONS(149), + [sym_inf] = ACTIONS(149), + [sym_nan] = ACTIONS(149), + [anon_sym_NA] = ACTIONS(149), + [anon_sym_NA_integer_] = ACTIONS(149), + [anon_sym_NA_real_] = ACTIONS(149), + [anon_sym_NA_complex_] = ACTIONS(149), + [anon_sym_NA_character_] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(59), - [sym__semicolon] = ACTIONS(59), - [sym__raw_string_literal] = ACTIONS(59), - [sym__external_else] = ACTIONS(137), + [sym__newline] = ACTIONS(147), + [sym__semicolon] = ACTIONS(147), + [sym__raw_string_literal] = ACTIONS(147), + [sym__external_else] = ACTIONS(147), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(59), - [sym__external_close_brace] = ACTIONS(59), + [sym__external_open_brace] = ACTIONS(147), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [16] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__else] = STATE(949), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(63), - [anon_sym_BSLASH] = ACTIONS(65), - [anon_sym_function] = ACTIONS(63), + [21] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(63), - [anon_sym_for] = ACTIONS(63), - [anon_sym_while] = ACTIONS(63), - [anon_sym_repeat] = ACTIONS(63), - [anon_sym_QMARK] = ACTIONS(65), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(63), + [anon_sym_BANG] = ACTIONS(153), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), [anon_sym_DASH_GT] = ACTIONS(21), [anon_sym_DASH_GT_GT] = ACTIONS(23), [anon_sym_PIPE] = ACTIONS(25), @@ -7705,55 +8077,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(65), - [sym__number_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(65), - [sym_dots] = ACTIONS(63), - [sym_dot_dot_i] = ACTIONS(63), - [sym_return] = ACTIONS(63), - [sym_next] = ACTIONS(63), - [sym_break] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_null] = ACTIONS(63), - [sym_inf] = ACTIONS(63), - [sym_nan] = ACTIONS(63), - [anon_sym_NA] = ACTIONS(63), - [anon_sym_NA_integer_] = ACTIONS(63), - [anon_sym_NA_real_] = ACTIONS(63), - [anon_sym_NA_complex_] = ACTIONS(63), - [anon_sym_NA_character_] = ACTIONS(63), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(65), - [sym__semicolon] = ACTIONS(65), - [sym__raw_string_literal] = ACTIONS(65), - [sym__external_else] = ACTIONS(139), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(65), - [sym__external_close_brace] = ACTIONS(65), + [sym__external_open_brace] = ACTIONS(151), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [17] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__else] = STATE(930), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(69), - [anon_sym_BSLASH] = ACTIONS(71), - [anon_sym_function] = ACTIONS(69), + [22] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(69), - [anon_sym_for] = ACTIONS(69), - [anon_sym_while] = ACTIONS(69), - [anon_sym_repeat] = ACTIONS(69), - [anon_sym_QMARK] = ACTIONS(71), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(153), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -7780,135 +8151,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(71), - [sym__number_literal] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_dots] = ACTIONS(69), - [sym_dot_dot_i] = ACTIONS(69), - [sym_return] = ACTIONS(69), - [sym_next] = ACTIONS(69), - [sym_break] = ACTIONS(69), - [sym_true] = ACTIONS(69), - [sym_false] = ACTIONS(69), - [sym_null] = ACTIONS(69), - [sym_inf] = ACTIONS(69), - [sym_nan] = ACTIONS(69), - [anon_sym_NA] = ACTIONS(69), - [anon_sym_NA_integer_] = ACTIONS(69), - [anon_sym_NA_real_] = ACTIONS(69), - [anon_sym_NA_complex_] = ACTIONS(69), - [anon_sym_NA_character_] = ACTIONS(69), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(71), - [sym__semicolon] = ACTIONS(71), - [sym__raw_string_literal] = ACTIONS(71), - [sym__external_else] = ACTIONS(141), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(71), - [sym__external_close_brace] = ACTIONS(71), + [sym__external_open_brace] = ACTIONS(151), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [18] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [23] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(143), - [sym_identifier] = ACTIONS(145), - [anon_sym_BSLASH] = ACTIONS(143), - [anon_sym_function] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(145), - [anon_sym_for] = ACTIONS(145), - [anon_sym_while] = ACTIONS(145), - [anon_sym_repeat] = ACTIONS(145), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(143), - [sym__number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(143), - [sym_dots] = ACTIONS(145), - [sym_dot_dot_i] = ACTIONS(145), - [sym_return] = ACTIONS(145), - [sym_next] = ACTIONS(145), - [sym_break] = ACTIONS(145), - [sym_true] = ACTIONS(145), - [sym_false] = ACTIONS(145), - [sym_null] = ACTIONS(145), - [sym_inf] = ACTIONS(145), - [sym_nan] = ACTIONS(145), - [anon_sym_NA] = ACTIONS(145), - [anon_sym_NA_integer_] = ACTIONS(145), - [anon_sym_NA_real_] = ACTIONS(145), - [anon_sym_NA_complex_] = ACTIONS(145), - [anon_sym_NA_character_] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(143), - [sym__semicolon] = ACTIONS(143), - [sym__raw_string_literal] = ACTIONS(143), - [sym__external_else] = ACTIONS(143), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(143), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [19] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(147), - [anon_sym_BSLASH] = ACTIONS(149), - [anon_sym_function] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_if] = ACTIONS(147), - [anon_sym_for] = ACTIONS(147), - [anon_sym_while] = ACTIONS(147), - [anon_sym_repeat] = ACTIONS(147), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(147), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(149), - [anon_sym_LT_LT_DASH] = ACTIONS(149), - [anon_sym_COLON_EQ] = ACTIONS(149), - [anon_sym_DASH_GT] = ACTIONS(147), - [anon_sym_DASH_GT_GT] = ACTIONS(149), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), [anon_sym_PIPE] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(27), [anon_sym_PIPE_PIPE] = ACTIONS(29), @@ -7928,81 +8225,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(149), - [sym__number_literal] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_dots] = ACTIONS(147), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(147), - [sym_next] = ACTIONS(147), - [sym_break] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_inf] = ACTIONS(147), - [sym_nan] = ACTIONS(147), - [anon_sym_NA] = ACTIONS(147), - [anon_sym_NA_integer_] = ACTIONS(147), - [anon_sym_NA_real_] = ACTIONS(147), - [anon_sym_NA_complex_] = ACTIONS(147), - [anon_sym_NA_character_] = ACTIONS(147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(149), - [sym__semicolon] = ACTIONS(149), - [sym__raw_string_literal] = ACTIONS(149), - [sym__external_else] = ACTIONS(149), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(149), - [sym__external_close_brace] = ACTIONS(149), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), - }, - [20] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8027,17 +8249,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [21] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [24] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), @@ -8068,15 +8290,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8101,56 +8323,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [22] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [25] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(153), [anon_sym_for] = ACTIONS(153), [anon_sym_while] = ACTIONS(153), [anon_sym_repeat] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8175,17 +8397,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [23] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [26] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), @@ -8197,34 +8419,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(153), [anon_sym_repeat] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), [anon_sym_DASH_GT] = ACTIONS(153), [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8249,17 +8471,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [24] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [27] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), @@ -8273,32 +8495,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), [anon_sym_DASH_GT] = ACTIONS(153), [anon_sym_DASH_GT_GT] = ACTIONS(151), [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(91), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8323,17 +8545,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [25] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [28] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), @@ -8347,8 +8569,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), @@ -8358,21 +8580,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(153), [anon_sym_PIPE_PIPE] = ACTIONS(151), [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8397,17 +8619,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [26] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [29] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), @@ -8421,8 +8643,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), @@ -8438,15 +8660,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8471,17 +8693,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [27] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [30] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), @@ -8514,13 +8736,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8545,17 +8767,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [28] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [31] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), @@ -8588,13 +8810,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), [anon_sym_COLON] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8619,17 +8841,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [29] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [32] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), @@ -8662,13 +8884,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8693,17 +8915,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [30] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [33] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), @@ -8736,13 +8958,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), [anon_sym_COLON] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -8767,56 +8989,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [31] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [34] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(155), [sym_identifier] = ACTIONS(157), [anon_sym_BSLASH] = ACTIONS(155), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(157), [anon_sym_for] = ACTIONS(157), [anon_sym_while] = ACTIONS(157), [anon_sym_repeat] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(155), [sym__number_literal] = ACTIONS(157), [anon_sym_SQUOTE] = ACTIONS(155), @@ -8841,56 +9063,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(155), [sym__raw_string_literal] = ACTIONS(155), [sym__external_else] = ACTIONS(155), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(155), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [32] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [35] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(159), [sym_identifier] = ACTIONS(161), [anon_sym_BSLASH] = ACTIONS(159), [anon_sym_function] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(161), [anon_sym_for] = ACTIONS(161), [anon_sym_while] = ACTIONS(161), [anon_sym_repeat] = ACTIONS(161), [anon_sym_QMARK] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(159), [sym__number_literal] = ACTIONS(161), [anon_sym_SQUOTE] = ACTIONS(159), @@ -8915,56 +9137,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(159), [sym__raw_string_literal] = ACTIONS(159), [sym__external_else] = ACTIONS(159), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(159), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [33] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [36] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -8989,56 +9211,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [34] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [37] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9063,17 +9285,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [35] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [38] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), @@ -9087,32 +9309,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9137,17 +9359,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [36] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [39] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), @@ -9178,15 +9400,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(163), [anon_sym_EQ_EQ] = ACTIONS(163), [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9211,56 +9433,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [37] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [40] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9285,17 +9507,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [38] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [41] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), @@ -9307,34 +9529,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9359,17 +9581,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [39] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [42] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), @@ -9383,32 +9605,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(91), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9433,17 +9655,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [40] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [43] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), @@ -9457,8 +9679,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), @@ -9468,21 +9690,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9507,17 +9729,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [41] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [44] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), @@ -9531,8 +9753,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), @@ -9548,15 +9770,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(163), [anon_sym_EQ_EQ] = ACTIONS(163), [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9581,17 +9803,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [42] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [45] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), @@ -9624,13 +9846,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9655,17 +9877,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [43] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [46] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), @@ -9698,13 +9920,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), [aux_sym_binary_operator_token1] = ACTIONS(163), [anon_sym_PIPE_GT] = ACTIONS(163), [anon_sym_COLON] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9729,17 +9951,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [44] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [47] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), @@ -9772,13 +9994,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), [aux_sym_binary_operator_token1] = ACTIONS(163), [anon_sym_PIPE_GT] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9803,17 +10025,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [45] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [48] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), @@ -9846,13 +10068,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), [aux_sym_binary_operator_token1] = ACTIONS(163), [anon_sym_PIPE_GT] = ACTIONS(163), [anon_sym_COLON] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -9877,56 +10099,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [46] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [49] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(167), [sym_identifier] = ACTIONS(169), [anon_sym_BSLASH] = ACTIONS(167), [anon_sym_function] = ACTIONS(169), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(169), [anon_sym_for] = ACTIONS(169), [anon_sym_while] = ACTIONS(169), [anon_sym_repeat] = ACTIONS(169), [anon_sym_QMARK] = ACTIONS(167), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(167), [sym__number_literal] = ACTIONS(169), [anon_sym_SQUOTE] = ACTIONS(167), @@ -9951,56 +10173,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(167), [sym__raw_string_literal] = ACTIONS(167), [sym__external_else] = ACTIONS(167), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(167), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [47] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [50] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(171), [sym_identifier] = ACTIONS(173), [anon_sym_BSLASH] = ACTIONS(171), [anon_sym_function] = ACTIONS(173), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(173), [anon_sym_for] = ACTIONS(173), [anon_sym_while] = ACTIONS(173), [anon_sym_repeat] = ACTIONS(173), [anon_sym_QMARK] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(171), [sym__number_literal] = ACTIONS(173), [anon_sym_SQUOTE] = ACTIONS(171), @@ -10025,56 +10247,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(171), [sym__raw_string_literal] = ACTIONS(171), [sym__external_else] = ACTIONS(171), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(171), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [48] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [51] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(175), [sym_identifier] = ACTIONS(177), [anon_sym_BSLASH] = ACTIONS(175), [anon_sym_function] = ACTIONS(177), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(177), [anon_sym_for] = ACTIONS(177), [anon_sym_while] = ACTIONS(177), [anon_sym_repeat] = ACTIONS(177), [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(175), [sym__number_literal] = ACTIONS(177), [anon_sym_SQUOTE] = ACTIONS(175), @@ -10099,56 +10321,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(175), [sym__raw_string_literal] = ACTIONS(175), [sym__external_else] = ACTIONS(175), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(175), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [49] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [52] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(179), [sym_identifier] = ACTIONS(181), [anon_sym_BSLASH] = ACTIONS(179), [anon_sym_function] = ACTIONS(181), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(181), [anon_sym_for] = ACTIONS(181), [anon_sym_while] = ACTIONS(181), [anon_sym_repeat] = ACTIONS(181), [anon_sym_QMARK] = ACTIONS(179), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(181), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(179), [sym__number_literal] = ACTIONS(181), [anon_sym_SQUOTE] = ACTIONS(179), @@ -10173,56 +10395,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(179), [sym__raw_string_literal] = ACTIONS(179), [sym__external_else] = ACTIONS(179), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(179), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [50] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [53] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(183), [sym_identifier] = ACTIONS(185), [anon_sym_BSLASH] = ACTIONS(183), [anon_sym_function] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(185), [anon_sym_for] = ACTIONS(185), [anon_sym_while] = ACTIONS(185), [anon_sym_repeat] = ACTIONS(185), [anon_sym_QMARK] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(183), [sym__number_literal] = ACTIONS(185), [anon_sym_SQUOTE] = ACTIONS(183), @@ -10247,56 +10469,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(183), [sym__raw_string_literal] = ACTIONS(183), [sym__external_else] = ACTIONS(183), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(183), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [51] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [54] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(187), [sym_identifier] = ACTIONS(189), [anon_sym_BSLASH] = ACTIONS(187), [anon_sym_function] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(189), [anon_sym_for] = ACTIONS(189), [anon_sym_while] = ACTIONS(189), [anon_sym_repeat] = ACTIONS(189), [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(187), [sym__number_literal] = ACTIONS(189), [anon_sym_SQUOTE] = ACTIONS(187), @@ -10321,56 +10543,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(187), [sym__raw_string_literal] = ACTIONS(187), [sym__external_else] = ACTIONS(187), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(187), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [52] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [55] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(191), [sym_identifier] = ACTIONS(193), [anon_sym_BSLASH] = ACTIONS(191), [anon_sym_function] = ACTIONS(193), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(193), [anon_sym_for] = ACTIONS(193), [anon_sym_while] = ACTIONS(193), [anon_sym_repeat] = ACTIONS(193), [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(193), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(191), [sym__number_literal] = ACTIONS(193), [anon_sym_SQUOTE] = ACTIONS(191), @@ -10395,56 +10617,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(191), [sym__raw_string_literal] = ACTIONS(191), [sym__external_else] = ACTIONS(191), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(191), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [53] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [56] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(195), [sym_identifier] = ACTIONS(197), [anon_sym_BSLASH] = ACTIONS(195), [anon_sym_function] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(197), [anon_sym_for] = ACTIONS(197), [anon_sym_while] = ACTIONS(197), [anon_sym_repeat] = ACTIONS(197), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(195), [sym__number_literal] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(195), @@ -10469,500 +10691,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(195), [sym__raw_string_literal] = ACTIONS(195), [sym__external_else] = ACTIONS(195), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(195), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [54] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), + [57] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(199), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), [anon_sym_STAR_STAR] = ACTIONS(41), [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(163), - [anon_sym_PIPE_GT] = ACTIONS(163), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(165), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(201), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_else] = ACTIONS(199), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_brace] = ACTIONS(199), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [55] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [56] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(199), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_LT_DASH] = ACTIONS(199), - [anon_sym_LT_LT_DASH] = ACTIONS(199), - [anon_sym_COLON_EQ] = ACTIONS(199), - [anon_sym_DASH_GT] = ACTIONS(201), - [anon_sym_DASH_GT_GT] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(201), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(199), - [anon_sym_PIPE_GT] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(201), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_else] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [57] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(199), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(199), - [anon_sym_LT_LT_DASH] = ACTIONS(199), - [anon_sym_COLON_EQ] = ACTIONS(199), - [anon_sym_DASH_GT] = ACTIONS(201), - [anon_sym_DASH_GT_GT] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(201), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(201), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_else] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, [58] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(199), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(199), - [anon_sym_LT_LT_DASH] = ACTIONS(199), - [anon_sym_COLON_EQ] = ACTIONS(199), - [anon_sym_DASH_GT] = ACTIONS(201), - [anon_sym_DASH_GT_GT] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(201), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_else] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [59] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(199), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(201), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_else] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [60] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(203), [sym_identifier] = ACTIONS(205), [anon_sym_BSLASH] = ACTIONS(203), [anon_sym_function] = ACTIONS(205), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(205), [anon_sym_for] = ACTIONS(205), [anon_sym_while] = ACTIONS(205), [anon_sym_repeat] = ACTIONS(205), [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(203), [sym__number_literal] = ACTIONS(205), [anon_sym_SQUOTE] = ACTIONS(203), @@ -10987,56 +10839,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(203), [sym__raw_string_literal] = ACTIONS(203), [sym__external_else] = ACTIONS(203), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(203), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [61] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [59] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(207), [sym_identifier] = ACTIONS(209), [anon_sym_BSLASH] = ACTIONS(207), [anon_sym_function] = ACTIONS(209), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(209), [anon_sym_for] = ACTIONS(209), [anon_sym_while] = ACTIONS(209), [anon_sym_repeat] = ACTIONS(209), [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(207), [sym__number_literal] = ACTIONS(209), [anon_sym_SQUOTE] = ACTIONS(207), @@ -11061,56 +10913,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(207), [sym__raw_string_literal] = ACTIONS(207), [sym__external_else] = ACTIONS(207), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(207), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [62] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [60] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(211), [sym_identifier] = ACTIONS(213), [anon_sym_BSLASH] = ACTIONS(211), [anon_sym_function] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(213), [anon_sym_for] = ACTIONS(213), [anon_sym_while] = ACTIONS(213), [anon_sym_repeat] = ACTIONS(213), [anon_sym_QMARK] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(211), [sym__number_literal] = ACTIONS(213), [anon_sym_SQUOTE] = ACTIONS(211), @@ -11135,56 +10987,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(211), [sym__raw_string_literal] = ACTIONS(211), [sym__external_else] = ACTIONS(211), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(211), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [63] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [61] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(215), [sym_identifier] = ACTIONS(217), [anon_sym_BSLASH] = ACTIONS(215), [anon_sym_function] = ACTIONS(217), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(217), [anon_sym_for] = ACTIONS(217), [anon_sym_while] = ACTIONS(217), [anon_sym_repeat] = ACTIONS(217), [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(217), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(215), [sym__number_literal] = ACTIONS(217), [anon_sym_SQUOTE] = ACTIONS(215), @@ -11209,130 +11061,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(215), [sym__raw_string_literal] = ACTIONS(215), [sym__external_else] = ACTIONS(215), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(215), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), - }, - [64] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(149), - [sym_identifier] = ACTIONS(147), - [anon_sym_BSLASH] = ACTIONS(149), - [anon_sym_function] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_if] = ACTIONS(147), - [anon_sym_for] = ACTIONS(147), - [anon_sym_while] = ACTIONS(147), - [anon_sym_repeat] = ACTIONS(147), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_LT_DASH] = ACTIONS(149), - [anon_sym_LT_LT_DASH] = ACTIONS(149), - [anon_sym_COLON_EQ] = ACTIONS(149), - [anon_sym_DASH_GT] = ACTIONS(147), - [anon_sym_DASH_GT_GT] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(149), - [anon_sym_AMP_AMP] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(149), - [anon_sym_PIPE_GT] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(149), - [sym__number_literal] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_dots] = ACTIONS(147), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(147), - [sym_next] = ACTIONS(147), - [sym_break] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_inf] = ACTIONS(147), - [sym_nan] = ACTIONS(147), - [anon_sym_NA] = ACTIONS(147), - [anon_sym_NA_integer_] = ACTIONS(147), - [anon_sym_NA_real_] = ACTIONS(147), - [anon_sym_NA_complex_] = ACTIONS(147), - [anon_sym_NA_character_] = ACTIONS(147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(149), - [sym__semicolon] = ACTIONS(149), - [sym__raw_string_literal] = ACTIONS(149), - [sym__external_else] = ACTIONS(149), - [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(149), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [65] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [62] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(219), [sym_identifier] = ACTIONS(221), [anon_sym_BSLASH] = ACTIONS(219), [anon_sym_function] = ACTIONS(221), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(221), [anon_sym_for] = ACTIONS(221), [anon_sym_while] = ACTIONS(221), [anon_sym_repeat] = ACTIONS(221), [anon_sym_QMARK] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(221), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(219), [sym__number_literal] = ACTIONS(221), [anon_sym_SQUOTE] = ACTIONS(219), @@ -11357,56 +11135,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(219), [sym__raw_string_literal] = ACTIONS(219), [sym__external_else] = ACTIONS(219), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(219), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [66] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [63] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(145), + [sym_identifier] = ACTIONS(143), + [anon_sym_BSLASH] = ACTIONS(145), + [anon_sym_function] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(143), + [anon_sym_for] = ACTIONS(143), + [anon_sym_while] = ACTIONS(143), + [anon_sym_repeat] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), + [sym__hex_literal] = ACTIONS(145), + [sym__number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_dots] = ACTIONS(143), + [sym_dot_dot_i] = ACTIONS(143), + [sym_return] = ACTIONS(143), + [sym_next] = ACTIONS(143), + [sym_break] = ACTIONS(143), + [sym_true] = ACTIONS(143), + [sym_false] = ACTIONS(143), + [sym_null] = ACTIONS(143), + [sym_inf] = ACTIONS(143), + [sym_nan] = ACTIONS(143), + [anon_sym_NA] = ACTIONS(143), + [anon_sym_NA_integer_] = ACTIONS(143), + [anon_sym_NA_real_] = ACTIONS(143), + [anon_sym_NA_complex_] = ACTIONS(143), + [anon_sym_NA_character_] = ACTIONS(143), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(145), + [sym__semicolon] = ACTIONS(145), + [sym__raw_string_literal] = ACTIONS(145), + [sym__external_else] = ACTIONS(145), + [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_brace] = ACTIONS(145), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), + }, + [64] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(223), [sym_identifier] = ACTIONS(225), [anon_sym_BSLASH] = ACTIONS(223), [anon_sym_function] = ACTIONS(225), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(225), [anon_sym_for] = ACTIONS(225), [anon_sym_while] = ACTIONS(225), [anon_sym_repeat] = ACTIONS(225), [anon_sym_QMARK] = ACTIONS(223), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(223), [sym__number_literal] = ACTIONS(225), [anon_sym_SQUOTE] = ACTIONS(223), @@ -11431,56 +11283,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(223), [sym__raw_string_literal] = ACTIONS(223), [sym__external_else] = ACTIONS(223), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(223), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [67] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), - [sym__open_bracket] = STATE(276), + [65] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), [sym__open_bracket2] = STATE(271), [ts_builtin_sym_end] = ACTIONS(227), [sym_identifier] = ACTIONS(229), [anon_sym_BSLASH] = ACTIONS(227), [anon_sym_function] = ACTIONS(229), - [anon_sym_EQ] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(11), [anon_sym_if] = ACTIONS(229), [anon_sym_for] = ACTIONS(229), [anon_sym_while] = ACTIONS(229), [anon_sym_repeat] = ACTIONS(229), [anon_sym_QMARK] = ACTIONS(227), - [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(13), [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), - [anon_sym_PIPE] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(91), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [anon_sym_EQ_EQ] = ACTIONS(99), - [anon_sym_BANG_EQ] = ACTIONS(99), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_CARET] = ACTIONS(105), - [aux_sym_binary_operator_token1] = ACTIONS(107), - [anon_sym_PIPE_GT] = ACTIONS(107), - [anon_sym_COLON] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(33), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(33), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(41), + [anon_sym_CARET] = ACTIONS(41), + [aux_sym_binary_operator_token1] = ACTIONS(43), + [anon_sym_PIPE_GT] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(45), + [anon_sym_DOLLAR] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(47), [sym__hex_literal] = ACTIONS(227), [sym__number_literal] = ACTIONS(229), [anon_sym_SQUOTE] = ACTIONS(227), @@ -11505,30 +11357,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(227), [sym__raw_string_literal] = ACTIONS(227), [sym__external_else] = ACTIONS(227), - [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_parenthesis] = ACTIONS(51), [sym__external_open_brace] = ACTIONS(227), - [sym__external_open_bracket] = ACTIONS(117), - [sym__external_open_bracket2] = ACTIONS(119), + [sym__external_open_bracket] = ACTIONS(53), + [sym__external_open_bracket2] = ACTIONS(55), }, - [68] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), + [66] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(231), - [sym_identifier] = ACTIONS(233), - [anon_sym_BSLASH] = ACTIONS(231), - [anon_sym_function] = ACTIONS(233), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(231), + [anon_sym_BSLASH] = ACTIONS(233), + [anon_sym_function] = ACTIONS(231), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(233), - [anon_sym_for] = ACTIONS(233), - [anon_sym_while] = ACTIONS(233), - [anon_sym_repeat] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(231), + [anon_sym_if] = ACTIONS(231), + [anon_sym_for] = ACTIONS(231), + [anon_sym_while] = ACTIONS(231), + [anon_sym_repeat] = ACTIONS(231), + [anon_sym_QMARK] = ACTIONS(233), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(233), + [anon_sym_BANG] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -11555,54 +11406,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(231), - [sym__number_literal] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_dots] = ACTIONS(233), - [sym_dot_dot_i] = ACTIONS(233), - [sym_return] = ACTIONS(233), - [sym_next] = ACTIONS(233), - [sym_break] = ACTIONS(233), - [sym_true] = ACTIONS(233), - [sym_false] = ACTIONS(233), - [sym_null] = ACTIONS(233), - [sym_inf] = ACTIONS(233), - [sym_nan] = ACTIONS(233), - [anon_sym_NA] = ACTIONS(233), - [anon_sym_NA_integer_] = ACTIONS(233), - [anon_sym_NA_real_] = ACTIONS(233), - [anon_sym_NA_complex_] = ACTIONS(233), - [anon_sym_NA_character_] = ACTIONS(233), + [sym__hex_literal] = ACTIONS(233), + [sym__number_literal] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym_dots] = ACTIONS(231), + [sym_dot_dot_i] = ACTIONS(231), + [sym_return] = ACTIONS(231), + [sym_next] = ACTIONS(231), + [sym_break] = ACTIONS(231), + [sym_true] = ACTIONS(231), + [sym_false] = ACTIONS(231), + [sym_null] = ACTIONS(231), + [sym_inf] = ACTIONS(231), + [sym_nan] = ACTIONS(231), + [anon_sym_NA] = ACTIONS(231), + [anon_sym_NA_integer_] = ACTIONS(231), + [anon_sym_NA_real_] = ACTIONS(231), + [anon_sym_NA_complex_] = ACTIONS(231), + [anon_sym_NA_character_] = ACTIONS(231), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(231), - [sym__semicolon] = ACTIONS(231), - [sym__raw_string_literal] = ACTIONS(231), - [sym__external_else] = ACTIONS(231), + [sym__newline] = ACTIONS(233), + [sym__semicolon] = ACTIONS(233), + [sym__raw_string_literal] = ACTIONS(233), + [sym__external_else] = ACTIONS(233), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(231), + [sym__external_open_brace] = ACTIONS(233), + [sym__external_close_brace] = ACTIONS(233), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, - [69] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), + [67] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(235), - [sym_identifier] = ACTIONS(237), - [anon_sym_BSLASH] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(235), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(237), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_repeat] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_repeat] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(237), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(237), + [anon_sym_BANG] = ACTIONS(235), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -11629,54 +11480,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(235), - [sym__number_literal] = ACTIONS(237), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_dots] = ACTIONS(237), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(237), - [sym_next] = ACTIONS(237), - [sym_break] = ACTIONS(237), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [sym_null] = ACTIONS(237), - [sym_inf] = ACTIONS(237), - [sym_nan] = ACTIONS(237), - [anon_sym_NA] = ACTIONS(237), - [anon_sym_NA_integer_] = ACTIONS(237), - [anon_sym_NA_real_] = ACTIONS(237), - [anon_sym_NA_complex_] = ACTIONS(237), - [anon_sym_NA_character_] = ACTIONS(237), + [sym__hex_literal] = ACTIONS(237), + [sym__number_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym_dots] = ACTIONS(235), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(235), + [sym_next] = ACTIONS(235), + [sym_break] = ACTIONS(235), + [sym_true] = ACTIONS(235), + [sym_false] = ACTIONS(235), + [sym_null] = ACTIONS(235), + [sym_inf] = ACTIONS(235), + [sym_nan] = ACTIONS(235), + [anon_sym_NA] = ACTIONS(235), + [anon_sym_NA_integer_] = ACTIONS(235), + [anon_sym_NA_real_] = ACTIONS(235), + [anon_sym_NA_complex_] = ACTIONS(235), + [anon_sym_NA_character_] = ACTIONS(235), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + [sym__semicolon] = ACTIONS(237), + [sym__raw_string_literal] = ACTIONS(237), + [sym__external_else] = ACTIONS(237), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(237), + [sym__external_close_brace] = ACTIONS(237), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [68] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(235), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_repeat] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(237), + [anon_sym_BANG] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(237), + [anon_sym_LT_LT_DASH] = ACTIONS(237), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DASH_GT_GT] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(237), + [sym__number_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym_dots] = ACTIONS(235), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(235), + [sym_next] = ACTIONS(235), + [sym_break] = ACTIONS(235), + [sym_true] = ACTIONS(235), + [sym_false] = ACTIONS(235), + [sym_null] = ACTIONS(235), + [sym_inf] = ACTIONS(235), + [sym_nan] = ACTIONS(235), + [anon_sym_NA] = ACTIONS(235), + [anon_sym_NA_integer_] = ACTIONS(235), + [anon_sym_NA_real_] = ACTIONS(235), + [anon_sym_NA_complex_] = ACTIONS(235), + [anon_sym_NA_character_] = ACTIONS(235), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + [sym__semicolon] = ACTIONS(237), + [sym__raw_string_literal] = ACTIONS(237), + [sym__external_else] = ACTIONS(237), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(237), + [sym__external_close_brace] = ACTIONS(237), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [69] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(235), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_repeat] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(237), + [anon_sym_BANG] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(237), + [anon_sym_LT_LT_DASH] = ACTIONS(237), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DASH_GT_GT] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(237), + [sym__number_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym_dots] = ACTIONS(235), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(235), + [sym_next] = ACTIONS(235), + [sym_break] = ACTIONS(235), + [sym_true] = ACTIONS(235), + [sym_false] = ACTIONS(235), + [sym_null] = ACTIONS(235), + [sym_inf] = ACTIONS(235), + [sym_nan] = ACTIONS(235), + [anon_sym_NA] = ACTIONS(235), + [anon_sym_NA_integer_] = ACTIONS(235), + [anon_sym_NA_real_] = ACTIONS(235), + [anon_sym_NA_complex_] = ACTIONS(235), + [anon_sym_NA_character_] = ACTIONS(235), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(235), - [sym__semicolon] = ACTIONS(235), - [sym__raw_string_literal] = ACTIONS(235), - [sym__external_else] = ACTIONS(235), + [sym__newline] = ACTIONS(237), + [sym__semicolon] = ACTIONS(237), + [sym__raw_string_literal] = ACTIONS(237), + [sym__external_else] = ACTIONS(237), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(235), + [sym__external_open_brace] = ACTIONS(237), + [sym__external_close_brace] = ACTIONS(237), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, [70] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(239), - [sym_identifier] = ACTIONS(241), - [anon_sym_BSLASH] = ACTIONS(239), - [anon_sym_function] = ACTIONS(241), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(235), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_repeat] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(237), + [anon_sym_BANG] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(237), + [anon_sym_LT_LT_DASH] = ACTIONS(237), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DASH_GT_GT] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(237), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(237), + [anon_sym_PIPE_GT] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(237), + [sym__number_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym_dots] = ACTIONS(235), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(235), + [sym_next] = ACTIONS(235), + [sym_break] = ACTIONS(235), + [sym_true] = ACTIONS(235), + [sym_false] = ACTIONS(235), + [sym_null] = ACTIONS(235), + [sym_inf] = ACTIONS(235), + [sym_nan] = ACTIONS(235), + [anon_sym_NA] = ACTIONS(235), + [anon_sym_NA_integer_] = ACTIONS(235), + [anon_sym_NA_real_] = ACTIONS(235), + [anon_sym_NA_complex_] = ACTIONS(235), + [anon_sym_NA_character_] = ACTIONS(235), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + [sym__semicolon] = ACTIONS(237), + [sym__raw_string_literal] = ACTIONS(237), + [sym__external_else] = ACTIONS(237), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(237), + [sym__external_close_brace] = ACTIONS(237), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [71] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(239), + [anon_sym_BSLASH] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(241), - [anon_sym_for] = ACTIONS(241), - [anon_sym_while] = ACTIONS(241), - [anon_sym_repeat] = ACTIONS(241), - [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_repeat] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(241), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(241), + [anon_sym_BANG] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -11703,79 +11776,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(239), - [sym__number_literal] = ACTIONS(241), - [anon_sym_SQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE] = ACTIONS(239), - [sym_dots] = ACTIONS(241), - [sym_dot_dot_i] = ACTIONS(241), - [sym_return] = ACTIONS(241), - [sym_next] = ACTIONS(241), - [sym_break] = ACTIONS(241), - [sym_true] = ACTIONS(241), - [sym_false] = ACTIONS(241), - [sym_null] = ACTIONS(241), - [sym_inf] = ACTIONS(241), - [sym_nan] = ACTIONS(241), - [anon_sym_NA] = ACTIONS(241), - [anon_sym_NA_integer_] = ACTIONS(241), - [anon_sym_NA_real_] = ACTIONS(241), - [anon_sym_NA_complex_] = ACTIONS(241), - [anon_sym_NA_character_] = ACTIONS(241), + [sym__hex_literal] = ACTIONS(241), + [sym__number_literal] = ACTIONS(239), + [anon_sym_SQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(241), + [sym_dots] = ACTIONS(239), + [sym_dot_dot_i] = ACTIONS(239), + [sym_return] = ACTIONS(239), + [sym_next] = ACTIONS(239), + [sym_break] = ACTIONS(239), + [sym_true] = ACTIONS(239), + [sym_false] = ACTIONS(239), + [sym_null] = ACTIONS(239), + [sym_inf] = ACTIONS(239), + [sym_nan] = ACTIONS(239), + [anon_sym_NA] = ACTIONS(239), + [anon_sym_NA_integer_] = ACTIONS(239), + [anon_sym_NA_real_] = ACTIONS(239), + [anon_sym_NA_complex_] = ACTIONS(239), + [anon_sym_NA_character_] = ACTIONS(239), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(239), - [sym__semicolon] = ACTIONS(239), - [sym__raw_string_literal] = ACTIONS(239), - [sym__external_else] = ACTIONS(239), + [sym__newline] = ACTIONS(241), + [sym__semicolon] = ACTIONS(241), + [sym__raw_string_literal] = ACTIONS(241), + [sym__external_else] = ACTIONS(241), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(239), + [sym__external_open_brace] = ACTIONS(241), + [sym__external_close_brace] = ACTIONS(241), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, - [71] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [72] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), [sym_identifier] = ACTIONS(243), [anon_sym_BSLASH] = ACTIONS(245), [anon_sym_function] = ACTIONS(243), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(243), [anon_sym_for] = ACTIONS(243), [anon_sym_while] = ACTIONS(243), [anon_sym_repeat] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(245), [sym__number_literal] = ACTIONS(243), [anon_sym_SQUOTE] = ACTIONS(245), @@ -11800,105 +11874,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(245), [sym__raw_string_literal] = ACTIONS(245), [sym__external_else] = ACTIONS(245), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(245), [sym__external_close_brace] = ACTIONS(245), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), - }, - [72] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(147), - [anon_sym_BSLASH] = ACTIONS(149), - [anon_sym_function] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(147), - [anon_sym_for] = ACTIONS(147), - [anon_sym_while] = ACTIONS(147), - [anon_sym_repeat] = ACTIONS(147), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(149), - [sym__number_literal] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_dots] = ACTIONS(147), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(147), - [sym_next] = ACTIONS(147), - [sym_break] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_inf] = ACTIONS(147), - [sym_nan] = ACTIONS(147), - [anon_sym_NA] = ACTIONS(147), - [anon_sym_NA_integer_] = ACTIONS(147), - [anon_sym_NA_real_] = ACTIONS(147), - [anon_sym_NA_complex_] = ACTIONS(147), - [anon_sym_NA_character_] = ACTIONS(147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(149), - [sym__semicolon] = ACTIONS(149), - [sym__raw_string_literal] = ACTIONS(149), - [sym__external_else] = ACTIONS(149), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(149), - [sym__external_close_brace] = ACTIONS(149), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, [73] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(149), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(149), + [anon_sym_while] = ACTIONS(149), + [anon_sym_repeat] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(147), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(149), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -11925,64 +11924,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), + [sym__hex_literal] = ACTIONS(147), + [sym__number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym_dots] = ACTIONS(149), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(149), + [sym_next] = ACTIONS(149), + [sym_break] = ACTIONS(149), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [sym_null] = ACTIONS(149), + [sym_inf] = ACTIONS(149), + [sym_nan] = ACTIONS(149), + [anon_sym_NA] = ACTIONS(149), + [anon_sym_NA_integer_] = ACTIONS(149), + [anon_sym_NA_real_] = ACTIONS(149), + [anon_sym_NA_complex_] = ACTIONS(149), + [anon_sym_NA_character_] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), + [sym__newline] = ACTIONS(147), + [sym__semicolon] = ACTIONS(147), + [sym__raw_string_literal] = ACTIONS(147), + [sym__external_else] = ACTIONS(147), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_brace] = ACTIONS(147), + [sym__external_close_brace] = ACTIONS(147), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, [74] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(147), - [anon_sym_BSLASH] = ACTIONS(149), - [anon_sym_function] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_if] = ACTIONS(147), - [anon_sym_for] = ACTIONS(147), - [anon_sym_while] = ACTIONS(147), - [anon_sym_repeat] = ACTIONS(147), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(147), + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(147), + [sym_identifier] = ACTIONS(149), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(149), + [anon_sym_while] = ACTIONS(149), + [anon_sym_repeat] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(149), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(149), - [anon_sym_LT_LT_DASH] = ACTIONS(149), - [anon_sym_COLON_EQ] = ACTIONS(149), - [anon_sym_DASH_GT] = ACTIONS(147), - [anon_sym_DASH_GT_GT] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(149), - [anon_sym_AMP_AMP] = ACTIONS(149), + [anon_sym_LT_DASH] = ACTIONS(147), + [anon_sym_LT_LT_DASH] = ACTIONS(147), + [anon_sym_COLON_EQ] = ACTIONS(147), + [anon_sym_DASH_GT] = ACTIONS(149), + [anon_sym_DASH_GT_GT] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE_PIPE] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(31), [anon_sym_LT] = ACTIONS(33), [anon_sym_LT_EQ] = ACTIONS(35), [anon_sym_GT] = ACTIONS(33), @@ -11998,140 +11999,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(149), - [sym__number_literal] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_dots] = ACTIONS(147), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(147), - [sym_next] = ACTIONS(147), - [sym_break] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_inf] = ACTIONS(147), - [sym_nan] = ACTIONS(147), - [anon_sym_NA] = ACTIONS(147), - [anon_sym_NA_integer_] = ACTIONS(147), - [anon_sym_NA_real_] = ACTIONS(147), - [anon_sym_NA_complex_] = ACTIONS(147), - [anon_sym_NA_character_] = ACTIONS(147), + [sym__hex_literal] = ACTIONS(147), + [sym__number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym_dots] = ACTIONS(149), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(149), + [sym_next] = ACTIONS(149), + [sym_break] = ACTIONS(149), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [sym_null] = ACTIONS(149), + [sym_inf] = ACTIONS(149), + [sym_nan] = ACTIONS(149), + [anon_sym_NA] = ACTIONS(149), + [anon_sym_NA_integer_] = ACTIONS(149), + [anon_sym_NA_real_] = ACTIONS(149), + [anon_sym_NA_complex_] = ACTIONS(149), + [anon_sym_NA_character_] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(149), - [sym__semicolon] = ACTIONS(149), - [sym__raw_string_literal] = ACTIONS(149), - [sym__external_else] = ACTIONS(149), + [sym__newline] = ACTIONS(147), + [sym__semicolon] = ACTIONS(147), + [sym__raw_string_literal] = ACTIONS(147), + [sym__external_else] = ACTIONS(147), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(149), - [sym__external_close_brace] = ACTIONS(149), + [sym__external_open_brace] = ACTIONS(147), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, [75] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(147), - [anon_sym_BSLASH] = ACTIONS(149), - [anon_sym_function] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_if] = ACTIONS(147), - [anon_sym_for] = ACTIONS(147), - [anon_sym_while] = ACTIONS(147), - [anon_sym_repeat] = ACTIONS(147), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_LT_DASH] = ACTIONS(149), - [anon_sym_LT_LT_DASH] = ACTIONS(149), - [anon_sym_COLON_EQ] = ACTIONS(149), - [anon_sym_DASH_GT] = ACTIONS(147), - [anon_sym_DASH_GT_GT] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(149), - [anon_sym_AMP_AMP] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(149), - [anon_sym_PIPE_GT] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(149), - [sym__number_literal] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_dots] = ACTIONS(147), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(147), - [sym_next] = ACTIONS(147), - [sym_break] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_inf] = ACTIONS(147), - [sym_nan] = ACTIONS(147), - [anon_sym_NA] = ACTIONS(147), - [anon_sym_NA_integer_] = ACTIONS(147), - [anon_sym_NA_real_] = ACTIONS(147), - [anon_sym_NA_complex_] = ACTIONS(147), - [anon_sym_NA_character_] = ACTIONS(147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(149), - [sym__semicolon] = ACTIONS(149), - [sym__raw_string_literal] = ACTIONS(149), - [sym__external_else] = ACTIONS(149), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(149), - [sym__external_close_brace] = ACTIONS(149), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), - }, - [76] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(149), - [sym_identifier] = ACTIONS(147), - [anon_sym_BSLASH] = ACTIONS(149), - [anon_sym_function] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_if] = ACTIONS(147), - [anon_sym_for] = ACTIONS(147), - [anon_sym_while] = ACTIONS(147), - [anon_sym_repeat] = ACTIONS(147), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(147), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(149), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(149), + [anon_sym_while] = ACTIONS(149), + [anon_sym_repeat] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(149), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(149), - [anon_sym_LT_LT_DASH] = ACTIONS(149), - [anon_sym_COLON_EQ] = ACTIONS(149), - [anon_sym_DASH_GT] = ACTIONS(147), - [anon_sym_DASH_GT_GT] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(149), - [anon_sym_AMP_AMP] = ACTIONS(149), + [anon_sym_LT_DASH] = ACTIONS(147), + [anon_sym_LT_LT_DASH] = ACTIONS(147), + [anon_sym_COLON_EQ] = ACTIONS(147), + [anon_sym_DASH_GT] = ACTIONS(149), + [anon_sym_DASH_GT_GT] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(149), + [anon_sym_PIPE_PIPE] = ACTIONS(147), + [anon_sym_AMP_AMP] = ACTIONS(147), [anon_sym_LT] = ACTIONS(97), [anon_sym_LT_EQ] = ACTIONS(99), [anon_sym_GT] = ACTIONS(97), @@ -12147,135 +12072,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(149), - [sym__number_literal] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_dots] = ACTIONS(147), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(147), - [sym_next] = ACTIONS(147), - [sym_break] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_inf] = ACTIONS(147), - [sym_nan] = ACTIONS(147), - [anon_sym_NA] = ACTIONS(147), - [anon_sym_NA_integer_] = ACTIONS(147), - [anon_sym_NA_real_] = ACTIONS(147), - [anon_sym_NA_complex_] = ACTIONS(147), - [anon_sym_NA_character_] = ACTIONS(147), + [sym__hex_literal] = ACTIONS(147), + [sym__number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym_dots] = ACTIONS(149), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(149), + [sym_next] = ACTIONS(149), + [sym_break] = ACTIONS(149), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [sym_null] = ACTIONS(149), + [sym_inf] = ACTIONS(149), + [sym_nan] = ACTIONS(149), + [anon_sym_NA] = ACTIONS(149), + [anon_sym_NA_integer_] = ACTIONS(149), + [anon_sym_NA_real_] = ACTIONS(149), + [anon_sym_NA_complex_] = ACTIONS(149), + [anon_sym_NA_character_] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(149), - [sym__semicolon] = ACTIONS(149), - [sym__raw_string_literal] = ACTIONS(149), - [sym__external_else] = ACTIONS(149), + [sym__newline] = ACTIONS(147), + [sym__semicolon] = ACTIONS(147), + [sym__raw_string_literal] = ACTIONS(147), + [sym__external_else] = ACTIONS(147), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(149), + [sym__external_open_brace] = ACTIONS(147), + [sym__external_close_brace] = ACTIONS(147), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, - [77] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(207), - [anon_sym_function] = ACTIONS(209), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(209), - [anon_sym_for] = ACTIONS(209), - [anon_sym_while] = ACTIONS(209), - [anon_sym_repeat] = ACTIONS(209), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(207), - [sym__number_literal] = ACTIONS(209), - [anon_sym_SQUOTE] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(207), - [sym_dots] = ACTIONS(209), - [sym_dot_dot_i] = ACTIONS(209), - [sym_return] = ACTIONS(209), - [sym_next] = ACTIONS(209), - [sym_break] = ACTIONS(209), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_null] = ACTIONS(209), - [sym_inf] = ACTIONS(209), - [sym_nan] = ACTIONS(209), - [anon_sym_NA] = ACTIONS(209), - [anon_sym_NA_integer_] = ACTIONS(209), - [anon_sym_NA_real_] = ACTIONS(209), - [anon_sym_NA_complex_] = ACTIONS(209), - [anon_sym_NA_character_] = ACTIONS(209), + [76] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(149), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(149), + [anon_sym_while] = ACTIONS(149), + [anon_sym_repeat] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_LT_DASH] = ACTIONS(147), + [anon_sym_LT_LT_DASH] = ACTIONS(147), + [anon_sym_COLON_EQ] = ACTIONS(147), + [anon_sym_DASH_GT] = ACTIONS(149), + [anon_sym_DASH_GT_GT] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(149), + [anon_sym_PIPE_PIPE] = ACTIONS(147), + [anon_sym_AMP_AMP] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(147), + [anon_sym_PIPE_GT] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(147), + [sym__number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym_dots] = ACTIONS(149), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(149), + [sym_next] = ACTIONS(149), + [sym_break] = ACTIONS(149), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [sym_null] = ACTIONS(149), + [sym_inf] = ACTIONS(149), + [sym_nan] = ACTIONS(149), + [anon_sym_NA] = ACTIONS(149), + [anon_sym_NA_integer_] = ACTIONS(149), + [anon_sym_NA_real_] = ACTIONS(149), + [anon_sym_NA_complex_] = ACTIONS(149), + [anon_sym_NA_character_] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(207), - [sym__semicolon] = ACTIONS(207), - [sym__raw_string_literal] = ACTIONS(207), - [sym__external_else] = ACTIONS(207), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(207), - [sym__external_close_brace] = ACTIONS(207), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__newline] = ACTIONS(147), + [sym__semicolon] = ACTIONS(147), + [sym__raw_string_literal] = ACTIONS(147), + [sym__external_else] = ACTIONS(147), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(147), + [sym__external_close_brace] = ACTIONS(147), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [78] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), + [77] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(149), - [sym_identifier] = ACTIONS(147), - [anon_sym_BSLASH] = ACTIONS(149), - [anon_sym_function] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_if] = ACTIONS(147), - [anon_sym_for] = ACTIONS(147), - [anon_sym_while] = ACTIONS(147), - [anon_sym_repeat] = ACTIONS(147), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(147), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(153), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(149), - [anon_sym_LT_LT_DASH] = ACTIONS(149), - [anon_sym_COLON_EQ] = ACTIONS(149), - [anon_sym_DASH_GT] = ACTIONS(147), - [anon_sym_DASH_GT_GT] = ACTIONS(149), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), [anon_sym_PIPE] = ACTIONS(89), [anon_sym_AMP] = ACTIONS(91), [anon_sym_PIPE_PIPE] = ACTIONS(93), @@ -12295,54 +12220,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(149), - [sym__number_literal] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_dots] = ACTIONS(147), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(147), - [sym_next] = ACTIONS(147), - [sym_break] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_inf] = ACTIONS(147), - [sym_nan] = ACTIONS(147), - [anon_sym_NA] = ACTIONS(147), - [anon_sym_NA_integer_] = ACTIONS(147), - [anon_sym_NA_real_] = ACTIONS(147), - [anon_sym_NA_complex_] = ACTIONS(147), - [anon_sym_NA_character_] = ACTIONS(147), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(149), - [sym__semicolon] = ACTIONS(149), - [sym__raw_string_literal] = ACTIONS(149), - [sym__external_else] = ACTIONS(149), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(149), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, - [79] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), + [78] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(149), - [sym_identifier] = ACTIONS(147), - [anon_sym_BSLASH] = ACTIONS(149), - [anon_sym_function] = ACTIONS(147), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(147), - [anon_sym_for] = ACTIONS(147), - [anon_sym_while] = ACTIONS(147), - [anon_sym_repeat] = ACTIONS(147), - [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(153), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), [anon_sym_LT_DASH] = ACTIONS(83), @@ -12369,523 +12294,2966 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(149), - [sym__number_literal] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_dots] = ACTIONS(147), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(147), - [sym_next] = ACTIONS(147), - [sym_break] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_inf] = ACTIONS(147), - [sym_nan] = ACTIONS(147), - [anon_sym_NA] = ACTIONS(147), - [anon_sym_NA_integer_] = ACTIONS(147), - [anon_sym_NA_real_] = ACTIONS(147), - [anon_sym_NA_complex_] = ACTIONS(147), - [anon_sym_NA_character_] = ACTIONS(147), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [79] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(149), - [sym__semicolon] = ACTIONS(149), - [sym__raw_string_literal] = ACTIONS(149), - [sym__external_else] = ACTIONS(149), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(149), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, [80] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(205), - [anon_sym_for] = ACTIONS(205), - [anon_sym_while] = ACTIONS(205), - [anon_sym_repeat] = ACTIONS(205), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(203), - [sym__number_literal] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE] = ACTIONS(203), - [sym_dots] = ACTIONS(205), - [sym_dot_dot_i] = ACTIONS(205), - [sym_return] = ACTIONS(205), - [sym_next] = ACTIONS(205), - [sym_break] = ACTIONS(205), - [sym_true] = ACTIONS(205), - [sym_false] = ACTIONS(205), - [sym_null] = ACTIONS(205), - [sym_inf] = ACTIONS(205), - [sym_nan] = ACTIONS(205), - [anon_sym_NA] = ACTIONS(205), - [anon_sym_NA_integer_] = ACTIONS(205), - [anon_sym_NA_real_] = ACTIONS(205), - [anon_sym_NA_complex_] = ACTIONS(205), - [anon_sym_NA_character_] = ACTIONS(205), + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(203), - [sym__semicolon] = ACTIONS(203), - [sym__raw_string_literal] = ACTIONS(203), - [sym__external_else] = ACTIONS(203), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(203), - [sym__external_close_brace] = ACTIONS(203), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, [81] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(241), - [anon_sym_BSLASH] = ACTIONS(239), - [anon_sym_function] = ACTIONS(241), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(241), - [anon_sym_for] = ACTIONS(241), - [anon_sym_while] = ACTIONS(241), - [anon_sym_repeat] = ACTIONS(241), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(239), - [sym__number_literal] = ACTIONS(241), - [anon_sym_SQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE] = ACTIONS(239), - [sym_dots] = ACTIONS(241), - [sym_dot_dot_i] = ACTIONS(241), - [sym_return] = ACTIONS(241), - [sym_next] = ACTIONS(241), - [sym_break] = ACTIONS(241), - [sym_true] = ACTIONS(241), - [sym_false] = ACTIONS(241), - [sym_null] = ACTIONS(241), - [sym_inf] = ACTIONS(241), - [sym_nan] = ACTIONS(241), - [anon_sym_NA] = ACTIONS(241), - [anon_sym_NA_integer_] = ACTIONS(241), - [anon_sym_NA_real_] = ACTIONS(241), - [anon_sym_NA_complex_] = ACTIONS(241), - [anon_sym_NA_character_] = ACTIONS(241), + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(239), - [sym__semicolon] = ACTIONS(239), - [sym__raw_string_literal] = ACTIONS(239), - [sym__external_else] = ACTIONS(239), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(239), - [sym__external_close_brace] = ACTIONS(239), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, [82] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(237), - [anon_sym_BSLASH] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(237), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_repeat] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(235), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(235), - [sym__number_literal] = ACTIONS(237), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_dots] = ACTIONS(237), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(237), - [sym_next] = ACTIONS(237), - [sym_break] = ACTIONS(237), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [sym_null] = ACTIONS(237), - [sym_inf] = ACTIONS(237), - [sym_nan] = ACTIONS(237), - [anon_sym_NA] = ACTIONS(237), - [anon_sym_NA_integer_] = ACTIONS(237), - [anon_sym_NA_real_] = ACTIONS(237), - [anon_sym_NA_complex_] = ACTIONS(237), - [anon_sym_NA_character_] = ACTIONS(237), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(235), - [sym__semicolon] = ACTIONS(235), - [sym__raw_string_literal] = ACTIONS(235), - [sym__external_else] = ACTIONS(235), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(235), - [sym__external_close_brace] = ACTIONS(235), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), - }, - [83] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(233), - [anon_sym_BSLASH] = ACTIONS(231), - [anon_sym_function] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(233), - [anon_sym_for] = ACTIONS(233), - [anon_sym_while] = ACTIONS(233), - [anon_sym_repeat] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(231), - [sym__number_literal] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_dots] = ACTIONS(233), - [sym_dot_dot_i] = ACTIONS(233), - [sym_return] = ACTIONS(233), - [sym_next] = ACTIONS(233), - [sym_break] = ACTIONS(233), - [sym_true] = ACTIONS(233), - [sym_false] = ACTIONS(233), - [sym_null] = ACTIONS(233), - [sym_inf] = ACTIONS(233), - [sym_nan] = ACTIONS(233), - [anon_sym_NA] = ACTIONS(233), - [anon_sym_NA_integer_] = ACTIONS(233), - [anon_sym_NA_real_] = ACTIONS(233), - [anon_sym_NA_complex_] = ACTIONS(233), - [anon_sym_NA_character_] = ACTIONS(233), + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(231), - [sym__semicolon] = ACTIONS(231), - [sym__raw_string_literal] = ACTIONS(231), - [sym__external_else] = ACTIONS(231), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(231), - [sym__external_close_brace] = ACTIONS(231), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [83] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, [84] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(229), - [anon_sym_BSLASH] = ACTIONS(227), - [anon_sym_function] = ACTIONS(229), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(229), - [anon_sym_for] = ACTIONS(229), - [anon_sym_while] = ACTIONS(229), - [anon_sym_repeat] = ACTIONS(229), - [anon_sym_QMARK] = ACTIONS(227), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(227), - [sym__number_literal] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(227), - [sym_dots] = ACTIONS(229), - [sym_dot_dot_i] = ACTIONS(229), - [sym_return] = ACTIONS(229), - [sym_next] = ACTIONS(229), - [sym_break] = ACTIONS(229), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [sym_null] = ACTIONS(229), - [sym_inf] = ACTIONS(229), - [sym_nan] = ACTIONS(229), - [anon_sym_NA] = ACTIONS(229), - [anon_sym_NA_integer_] = ACTIONS(229), - [anon_sym_NA_real_] = ACTIONS(229), - [anon_sym_NA_complex_] = ACTIONS(229), - [anon_sym_NA_character_] = ACTIONS(229), + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [85] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [86] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [87] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(151), + [anon_sym_PIPE_GT] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [88] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(151), + [anon_sym_PIPE_GT] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [89] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(151), + [anon_sym_PIPE_GT] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_else] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [90] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(157), + [anon_sym_BSLASH] = ACTIONS(155), + [anon_sym_function] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(157), + [anon_sym_for] = ACTIONS(157), + [anon_sym_while] = ACTIONS(157), + [anon_sym_repeat] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(155), + [sym__number_literal] = ACTIONS(157), + [anon_sym_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(155), + [sym_dots] = ACTIONS(157), + [sym_dot_dot_i] = ACTIONS(157), + [sym_return] = ACTIONS(157), + [sym_next] = ACTIONS(157), + [sym_break] = ACTIONS(157), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [sym_null] = ACTIONS(157), + [sym_inf] = ACTIONS(157), + [sym_nan] = ACTIONS(157), + [anon_sym_NA] = ACTIONS(157), + [anon_sym_NA_integer_] = ACTIONS(157), + [anon_sym_NA_real_] = ACTIONS(157), + [anon_sym_NA_complex_] = ACTIONS(157), + [anon_sym_NA_character_] = ACTIONS(157), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(155), + [sym__semicolon] = ACTIONS(155), + [sym__raw_string_literal] = ACTIONS(155), + [sym__external_else] = ACTIONS(155), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(155), + [sym__external_close_brace] = ACTIONS(155), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [91] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(161), + [anon_sym_BSLASH] = ACTIONS(159), + [anon_sym_function] = ACTIONS(161), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(161), + [anon_sym_for] = ACTIONS(161), + [anon_sym_while] = ACTIONS(161), + [anon_sym_repeat] = ACTIONS(161), + [anon_sym_QMARK] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(159), + [sym__number_literal] = ACTIONS(161), + [anon_sym_SQUOTE] = ACTIONS(159), + [anon_sym_DQUOTE] = ACTIONS(159), + [sym_dots] = ACTIONS(161), + [sym_dot_dot_i] = ACTIONS(161), + [sym_return] = ACTIONS(161), + [sym_next] = ACTIONS(161), + [sym_break] = ACTIONS(161), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [sym_null] = ACTIONS(161), + [sym_inf] = ACTIONS(161), + [sym_nan] = ACTIONS(161), + [anon_sym_NA] = ACTIONS(161), + [anon_sym_NA_integer_] = ACTIONS(161), + [anon_sym_NA_real_] = ACTIONS(161), + [anon_sym_NA_complex_] = ACTIONS(161), + [anon_sym_NA_character_] = ACTIONS(161), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(159), + [sym__semicolon] = ACTIONS(159), + [sym__raw_string_literal] = ACTIONS(159), + [sym__external_else] = ACTIONS(159), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(159), + [sym__external_close_brace] = ACTIONS(159), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [92] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(165), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [93] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(165), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [94] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(165), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [95] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(165), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [96] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(165), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [97] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(165), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [98] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(165), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [99] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(165), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [100] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(165), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [101] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(165), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [102] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(163), + [anon_sym_PIPE_GT] = ACTIONS(163), + [anon_sym_COLON] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(165), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [103] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(163), + [anon_sym_PIPE_GT] = ACTIONS(163), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(165), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [104] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(163), + [anon_sym_PIPE_GT] = ACTIONS(163), + [anon_sym_COLON] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(165), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_else] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [105] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(169), + [anon_sym_BSLASH] = ACTIONS(167), + [anon_sym_function] = ACTIONS(169), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(169), + [anon_sym_for] = ACTIONS(169), + [anon_sym_while] = ACTIONS(169), + [anon_sym_repeat] = ACTIONS(169), + [anon_sym_QMARK] = ACTIONS(167), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(167), + [sym__number_literal] = ACTIONS(169), + [anon_sym_SQUOTE] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(167), + [sym_dots] = ACTIONS(169), + [sym_dot_dot_i] = ACTIONS(169), + [sym_return] = ACTIONS(169), + [sym_next] = ACTIONS(169), + [sym_break] = ACTIONS(169), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [sym_null] = ACTIONS(169), + [sym_inf] = ACTIONS(169), + [sym_nan] = ACTIONS(169), + [anon_sym_NA] = ACTIONS(169), + [anon_sym_NA_integer_] = ACTIONS(169), + [anon_sym_NA_real_] = ACTIONS(169), + [anon_sym_NA_complex_] = ACTIONS(169), + [anon_sym_NA_character_] = ACTIONS(169), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(167), + [sym__semicolon] = ACTIONS(167), + [sym__raw_string_literal] = ACTIONS(167), + [sym__external_else] = ACTIONS(167), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(167), + [sym__external_close_brace] = ACTIONS(167), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [106] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(173), + [anon_sym_BSLASH] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(173), + [anon_sym_for] = ACTIONS(173), + [anon_sym_while] = ACTIONS(173), + [anon_sym_repeat] = ACTIONS(173), + [anon_sym_QMARK] = ACTIONS(171), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(171), + [sym__number_literal] = ACTIONS(173), + [anon_sym_SQUOTE] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(171), + [sym_dots] = ACTIONS(173), + [sym_dot_dot_i] = ACTIONS(173), + [sym_return] = ACTIONS(173), + [sym_next] = ACTIONS(173), + [sym_break] = ACTIONS(173), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [sym_null] = ACTIONS(173), + [sym_inf] = ACTIONS(173), + [sym_nan] = ACTIONS(173), + [anon_sym_NA] = ACTIONS(173), + [anon_sym_NA_integer_] = ACTIONS(173), + [anon_sym_NA_real_] = ACTIONS(173), + [anon_sym_NA_complex_] = ACTIONS(173), + [anon_sym_NA_character_] = ACTIONS(173), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(171), + [sym__semicolon] = ACTIONS(171), + [sym__raw_string_literal] = ACTIONS(171), + [sym__external_else] = ACTIONS(171), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(171), + [sym__external_close_brace] = ACTIONS(171), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [107] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(177), + [anon_sym_BSLASH] = ACTIONS(175), + [anon_sym_function] = ACTIONS(177), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(177), + [anon_sym_for] = ACTIONS(177), + [anon_sym_while] = ACTIONS(177), + [anon_sym_repeat] = ACTIONS(177), + [anon_sym_QMARK] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(175), + [sym__number_literal] = ACTIONS(177), + [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(175), + [sym_dots] = ACTIONS(177), + [sym_dot_dot_i] = ACTIONS(177), + [sym_return] = ACTIONS(177), + [sym_next] = ACTIONS(177), + [sym_break] = ACTIONS(177), + [sym_true] = ACTIONS(177), + [sym_false] = ACTIONS(177), + [sym_null] = ACTIONS(177), + [sym_inf] = ACTIONS(177), + [sym_nan] = ACTIONS(177), + [anon_sym_NA] = ACTIONS(177), + [anon_sym_NA_integer_] = ACTIONS(177), + [anon_sym_NA_real_] = ACTIONS(177), + [anon_sym_NA_complex_] = ACTIONS(177), + [anon_sym_NA_character_] = ACTIONS(177), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(175), + [sym__semicolon] = ACTIONS(175), + [sym__raw_string_literal] = ACTIONS(175), + [sym__external_else] = ACTIONS(175), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(175), + [sym__external_close_brace] = ACTIONS(175), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [108] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(181), + [anon_sym_BSLASH] = ACTIONS(179), + [anon_sym_function] = ACTIONS(181), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(181), + [anon_sym_for] = ACTIONS(181), + [anon_sym_while] = ACTIONS(181), + [anon_sym_repeat] = ACTIONS(181), + [anon_sym_QMARK] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(179), + [sym__number_literal] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(179), + [sym_dots] = ACTIONS(181), + [sym_dot_dot_i] = ACTIONS(181), + [sym_return] = ACTIONS(181), + [sym_next] = ACTIONS(181), + [sym_break] = ACTIONS(181), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_inf] = ACTIONS(181), + [sym_nan] = ACTIONS(181), + [anon_sym_NA] = ACTIONS(181), + [anon_sym_NA_integer_] = ACTIONS(181), + [anon_sym_NA_real_] = ACTIONS(181), + [anon_sym_NA_complex_] = ACTIONS(181), + [anon_sym_NA_character_] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(179), + [sym__semicolon] = ACTIONS(179), + [sym__raw_string_literal] = ACTIONS(179), + [sym__external_else] = ACTIONS(179), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(179), + [sym__external_close_brace] = ACTIONS(179), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [109] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(185), + [anon_sym_BSLASH] = ACTIONS(183), + [anon_sym_function] = ACTIONS(185), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(185), + [anon_sym_for] = ACTIONS(185), + [anon_sym_while] = ACTIONS(185), + [anon_sym_repeat] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(183), + [sym__number_literal] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(183), + [sym_dots] = ACTIONS(185), + [sym_dot_dot_i] = ACTIONS(185), + [sym_return] = ACTIONS(185), + [sym_next] = ACTIONS(185), + [sym_break] = ACTIONS(185), + [sym_true] = ACTIONS(185), + [sym_false] = ACTIONS(185), + [sym_null] = ACTIONS(185), + [sym_inf] = ACTIONS(185), + [sym_nan] = ACTIONS(185), + [anon_sym_NA] = ACTIONS(185), + [anon_sym_NA_integer_] = ACTIONS(185), + [anon_sym_NA_real_] = ACTIONS(185), + [anon_sym_NA_complex_] = ACTIONS(185), + [anon_sym_NA_character_] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(183), + [sym__semicolon] = ACTIONS(183), + [sym__raw_string_literal] = ACTIONS(183), + [sym__external_else] = ACTIONS(183), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(183), + [sym__external_close_brace] = ACTIONS(183), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [110] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(189), + [anon_sym_BSLASH] = ACTIONS(187), + [anon_sym_function] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(189), + [anon_sym_for] = ACTIONS(189), + [anon_sym_while] = ACTIONS(189), + [anon_sym_repeat] = ACTIONS(189), + [anon_sym_QMARK] = ACTIONS(187), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(187), + [sym__number_literal] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym_dots] = ACTIONS(189), + [sym_dot_dot_i] = ACTIONS(189), + [sym_return] = ACTIONS(189), + [sym_next] = ACTIONS(189), + [sym_break] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_inf] = ACTIONS(189), + [sym_nan] = ACTIONS(189), + [anon_sym_NA] = ACTIONS(189), + [anon_sym_NA_integer_] = ACTIONS(189), + [anon_sym_NA_real_] = ACTIONS(189), + [anon_sym_NA_complex_] = ACTIONS(189), + [anon_sym_NA_character_] = ACTIONS(189), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(187), + [sym__semicolon] = ACTIONS(187), + [sym__raw_string_literal] = ACTIONS(187), + [sym__external_else] = ACTIONS(187), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(187), + [sym__external_close_brace] = ACTIONS(187), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [111] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(193), + [anon_sym_BSLASH] = ACTIONS(191), + [anon_sym_function] = ACTIONS(193), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(193), + [anon_sym_for] = ACTIONS(193), + [anon_sym_while] = ACTIONS(193), + [anon_sym_repeat] = ACTIONS(193), + [anon_sym_QMARK] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(191), + [sym__number_literal] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(191), + [sym_dots] = ACTIONS(193), + [sym_dot_dot_i] = ACTIONS(193), + [sym_return] = ACTIONS(193), + [sym_next] = ACTIONS(193), + [sym_break] = ACTIONS(193), + [sym_true] = ACTIONS(193), + [sym_false] = ACTIONS(193), + [sym_null] = ACTIONS(193), + [sym_inf] = ACTIONS(193), + [sym_nan] = ACTIONS(193), + [anon_sym_NA] = ACTIONS(193), + [anon_sym_NA_integer_] = ACTIONS(193), + [anon_sym_NA_real_] = ACTIONS(193), + [anon_sym_NA_complex_] = ACTIONS(193), + [anon_sym_NA_character_] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(191), + [sym__semicolon] = ACTIONS(191), + [sym__raw_string_literal] = ACTIONS(191), + [sym__external_else] = ACTIONS(191), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(191), + [sym__external_close_brace] = ACTIONS(191), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [112] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(197), + [anon_sym_BSLASH] = ACTIONS(195), + [anon_sym_function] = ACTIONS(197), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(197), + [anon_sym_for] = ACTIONS(197), + [anon_sym_while] = ACTIONS(197), + [anon_sym_repeat] = ACTIONS(197), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(195), + [sym__number_literal] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [sym_dots] = ACTIONS(197), + [sym_dot_dot_i] = ACTIONS(197), + [sym_return] = ACTIONS(197), + [sym_next] = ACTIONS(197), + [sym_break] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_inf] = ACTIONS(197), + [sym_nan] = ACTIONS(197), + [anon_sym_NA] = ACTIONS(197), + [anon_sym_NA_integer_] = ACTIONS(197), + [anon_sym_NA_real_] = ACTIONS(197), + [anon_sym_NA_complex_] = ACTIONS(197), + [anon_sym_NA_character_] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(195), + [sym__semicolon] = ACTIONS(195), + [sym__raw_string_literal] = ACTIONS(195), + [sym__external_else] = ACTIONS(195), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(195), + [sym__external_close_brace] = ACTIONS(195), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [113] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(201), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_else] = ACTIONS(199), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_close_brace] = ACTIONS(199), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [114] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(203), + [anon_sym_function] = ACTIONS(205), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(205), + [anon_sym_for] = ACTIONS(205), + [anon_sym_while] = ACTIONS(205), + [anon_sym_repeat] = ACTIONS(205), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(203), + [sym__number_literal] = ACTIONS(205), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE] = ACTIONS(203), + [sym_dots] = ACTIONS(205), + [sym_dot_dot_i] = ACTIONS(205), + [sym_return] = ACTIONS(205), + [sym_next] = ACTIONS(205), + [sym_break] = ACTIONS(205), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [sym_null] = ACTIONS(205), + [sym_inf] = ACTIONS(205), + [sym_nan] = ACTIONS(205), + [anon_sym_NA] = ACTIONS(205), + [anon_sym_NA_integer_] = ACTIONS(205), + [anon_sym_NA_real_] = ACTIONS(205), + [anon_sym_NA_complex_] = ACTIONS(205), + [anon_sym_NA_character_] = ACTIONS(205), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(203), + [sym__semicolon] = ACTIONS(203), + [sym__raw_string_literal] = ACTIONS(203), + [sym__external_else] = ACTIONS(203), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(203), + [sym__external_close_brace] = ACTIONS(203), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [115] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(207), + [anon_sym_function] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(209), + [anon_sym_for] = ACTIONS(209), + [anon_sym_while] = ACTIONS(209), + [anon_sym_repeat] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(207), + [sym__number_literal] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(207), + [sym_dots] = ACTIONS(209), + [sym_dot_dot_i] = ACTIONS(209), + [sym_return] = ACTIONS(209), + [sym_next] = ACTIONS(209), + [sym_break] = ACTIONS(209), + [sym_true] = ACTIONS(209), + [sym_false] = ACTIONS(209), + [sym_null] = ACTIONS(209), + [sym_inf] = ACTIONS(209), + [sym_nan] = ACTIONS(209), + [anon_sym_NA] = ACTIONS(209), + [anon_sym_NA_integer_] = ACTIONS(209), + [anon_sym_NA_real_] = ACTIONS(209), + [anon_sym_NA_complex_] = ACTIONS(209), + [anon_sym_NA_character_] = ACTIONS(209), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(207), + [sym__semicolon] = ACTIONS(207), + [sym__raw_string_literal] = ACTIONS(207), + [sym__external_else] = ACTIONS(207), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(207), + [sym__external_close_brace] = ACTIONS(207), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [116] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(211), + [anon_sym_function] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(213), + [anon_sym_for] = ACTIONS(213), + [anon_sym_while] = ACTIONS(213), + [anon_sym_repeat] = ACTIONS(213), + [anon_sym_QMARK] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(211), + [sym__number_literal] = ACTIONS(213), + [anon_sym_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [sym_dots] = ACTIONS(213), + [sym_dot_dot_i] = ACTIONS(213), + [sym_return] = ACTIONS(213), + [sym_next] = ACTIONS(213), + [sym_break] = ACTIONS(213), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [sym_null] = ACTIONS(213), + [sym_inf] = ACTIONS(213), + [sym_nan] = ACTIONS(213), + [anon_sym_NA] = ACTIONS(213), + [anon_sym_NA_integer_] = ACTIONS(213), + [anon_sym_NA_real_] = ACTIONS(213), + [anon_sym_NA_complex_] = ACTIONS(213), + [anon_sym_NA_character_] = ACTIONS(213), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), - [sym__semicolon] = ACTIONS(227), - [sym__raw_string_literal] = ACTIONS(227), - [sym__external_else] = ACTIONS(227), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(227), - [sym__external_close_brace] = ACTIONS(227), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__newline] = ACTIONS(211), + [sym__semicolon] = ACTIONS(211), + [sym__raw_string_literal] = ACTIONS(211), + [sym__external_else] = ACTIONS(211), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(211), + [sym__external_close_brace] = ACTIONS(211), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [85] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(225), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_function] = ACTIONS(225), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(225), - [anon_sym_for] = ACTIONS(225), - [anon_sym_while] = ACTIONS(225), - [anon_sym_repeat] = ACTIONS(225), - [anon_sym_QMARK] = ACTIONS(223), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(223), - [sym__number_literal] = ACTIONS(225), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_dots] = ACTIONS(225), - [sym_dot_dot_i] = ACTIONS(225), - [sym_return] = ACTIONS(225), - [sym_next] = ACTIONS(225), - [sym_break] = ACTIONS(225), - [sym_true] = ACTIONS(225), - [sym_false] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [sym_inf] = ACTIONS(225), - [sym_nan] = ACTIONS(225), - [anon_sym_NA] = ACTIONS(225), - [anon_sym_NA_integer_] = ACTIONS(225), - [anon_sym_NA_real_] = ACTIONS(225), - [anon_sym_NA_complex_] = ACTIONS(225), - [anon_sym_NA_character_] = ACTIONS(225), + [117] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(217), + [anon_sym_BSLASH] = ACTIONS(215), + [anon_sym_function] = ACTIONS(217), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(217), + [anon_sym_while] = ACTIONS(217), + [anon_sym_repeat] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(215), + [sym__number_literal] = ACTIONS(217), + [anon_sym_SQUOTE] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(215), + [sym_dots] = ACTIONS(217), + [sym_dot_dot_i] = ACTIONS(217), + [sym_return] = ACTIONS(217), + [sym_next] = ACTIONS(217), + [sym_break] = ACTIONS(217), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [sym_null] = ACTIONS(217), + [sym_inf] = ACTIONS(217), + [sym_nan] = ACTIONS(217), + [anon_sym_NA] = ACTIONS(217), + [anon_sym_NA_integer_] = ACTIONS(217), + [anon_sym_NA_real_] = ACTIONS(217), + [anon_sym_NA_complex_] = ACTIONS(217), + [anon_sym_NA_character_] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(223), - [sym__semicolon] = ACTIONS(223), - [sym__raw_string_literal] = ACTIONS(223), - [sym__external_else] = ACTIONS(223), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(223), - [sym__external_close_brace] = ACTIONS(223), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__newline] = ACTIONS(215), + [sym__semicolon] = ACTIONS(215), + [sym__raw_string_literal] = ACTIONS(215), + [sym__external_else] = ACTIONS(215), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(215), + [sym__external_close_brace] = ACTIONS(215), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [86] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [118] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), [sym_identifier] = ACTIONS(221), [anon_sym_BSLASH] = ACTIONS(219), [anon_sym_function] = ACTIONS(221), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(75), [anon_sym_if] = ACTIONS(221), [anon_sym_for] = ACTIONS(221), [anon_sym_while] = ACTIONS(221), [anon_sym_repeat] = ACTIONS(221), [anon_sym_QMARK] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(77), [anon_sym_BANG] = ACTIONS(221), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), [sym__hex_literal] = ACTIONS(219), [sym__number_literal] = ACTIONS(221), [anon_sym_SQUOTE] = ACTIONS(219), @@ -12910,30 +15278,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(219), [sym__raw_string_literal] = ACTIONS(219), [sym__external_else] = ACTIONS(219), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(115), [sym__external_open_brace] = ACTIONS(219), [sym__external_close_brace] = ACTIONS(219), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [87] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(145), - [anon_sym_BSLASH] = ACTIONS(143), - [anon_sym_function] = ACTIONS(145), + [119] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(233), + [sym_identifier] = ACTIONS(231), + [anon_sym_BSLASH] = ACTIONS(233), + [anon_sym_function] = ACTIONS(231), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(145), - [anon_sym_for] = ACTIONS(145), - [anon_sym_while] = ACTIONS(145), - [anon_sym_repeat] = ACTIONS(145), - [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_if] = ACTIONS(231), + [anon_sym_for] = ACTIONS(231), + [anon_sym_while] = ACTIONS(231), + [anon_sym_repeat] = ACTIONS(231), + [anon_sym_QMARK] = ACTIONS(233), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -12960,202 +15329,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(143), - [sym__number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(143), - [sym_dots] = ACTIONS(145), - [sym_dot_dot_i] = ACTIONS(145), - [sym_return] = ACTIONS(145), - [sym_next] = ACTIONS(145), - [sym_break] = ACTIONS(145), - [sym_true] = ACTIONS(145), - [sym_false] = ACTIONS(145), - [sym_null] = ACTIONS(145), - [sym_inf] = ACTIONS(145), - [sym_nan] = ACTIONS(145), - [anon_sym_NA] = ACTIONS(145), - [anon_sym_NA_integer_] = ACTIONS(145), - [anon_sym_NA_real_] = ACTIONS(145), - [anon_sym_NA_complex_] = ACTIONS(145), - [anon_sym_NA_character_] = ACTIONS(145), + [sym__hex_literal] = ACTIONS(233), + [sym__number_literal] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym_dots] = ACTIONS(231), + [sym_dot_dot_i] = ACTIONS(231), + [sym_return] = ACTIONS(231), + [sym_next] = ACTIONS(231), + [sym_break] = ACTIONS(231), + [sym_true] = ACTIONS(231), + [sym_false] = ACTIONS(231), + [sym_null] = ACTIONS(231), + [sym_inf] = ACTIONS(231), + [sym_nan] = ACTIONS(231), + [anon_sym_NA] = ACTIONS(231), + [anon_sym_NA_integer_] = ACTIONS(231), + [anon_sym_NA_real_] = ACTIONS(231), + [anon_sym_NA_complex_] = ACTIONS(231), + [anon_sym_NA_character_] = ACTIONS(231), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(143), - [sym__semicolon] = ACTIONS(143), - [sym__raw_string_literal] = ACTIONS(143), - [sym__external_else] = ACTIONS(143), + [sym__newline] = ACTIONS(233), + [sym__semicolon] = ACTIONS(233), + [sym__raw_string_literal] = ACTIONS(233), + [sym__external_else] = ACTIONS(233), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(143), - [sym__external_close_brace] = ACTIONS(143), + [sym__external_open_brace] = ACTIONS(233), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [88] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(215), - [anon_sym_function] = ACTIONS(217), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(217), - [anon_sym_for] = ACTIONS(217), - [anon_sym_while] = ACTIONS(217), - [anon_sym_repeat] = ACTIONS(217), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(215), - [sym__number_literal] = ACTIONS(217), - [anon_sym_SQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym_dots] = ACTIONS(217), - [sym_dot_dot_i] = ACTIONS(217), - [sym_return] = ACTIONS(217), - [sym_next] = ACTIONS(217), - [sym_break] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_inf] = ACTIONS(217), - [sym_nan] = ACTIONS(217), - [anon_sym_NA] = ACTIONS(217), - [anon_sym_NA_integer_] = ACTIONS(217), - [anon_sym_NA_real_] = ACTIONS(217), - [anon_sym_NA_complex_] = ACTIONS(217), - [anon_sym_NA_character_] = ACTIONS(217), + [120] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(223), + [anon_sym_function] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(225), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_repeat] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(223), + [sym__number_literal] = ACTIONS(225), + [anon_sym_SQUOTE] = ACTIONS(223), + [anon_sym_DQUOTE] = ACTIONS(223), + [sym_dots] = ACTIONS(225), + [sym_dot_dot_i] = ACTIONS(225), + [sym_return] = ACTIONS(225), + [sym_next] = ACTIONS(225), + [sym_break] = ACTIONS(225), + [sym_true] = ACTIONS(225), + [sym_false] = ACTIONS(225), + [sym_null] = ACTIONS(225), + [sym_inf] = ACTIONS(225), + [sym_nan] = ACTIONS(225), + [anon_sym_NA] = ACTIONS(225), + [anon_sym_NA_integer_] = ACTIONS(225), + [anon_sym_NA_real_] = ACTIONS(225), + [anon_sym_NA_complex_] = ACTIONS(225), + [anon_sym_NA_character_] = ACTIONS(225), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(215), - [sym__semicolon] = ACTIONS(215), - [sym__raw_string_literal] = ACTIONS(215), - [sym__external_else] = ACTIONS(215), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(215), - [sym__external_close_brace] = ACTIONS(215), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__newline] = ACTIONS(223), + [sym__semicolon] = ACTIONS(223), + [sym__raw_string_literal] = ACTIONS(223), + [sym__external_else] = ACTIONS(223), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(223), + [sym__external_close_brace] = ACTIONS(223), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), }, - [89] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(211), - [anon_sym_function] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(213), - [anon_sym_for] = ACTIONS(213), - [anon_sym_while] = ACTIONS(213), - [anon_sym_repeat] = ACTIONS(213), - [anon_sym_QMARK] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(211), - [sym__number_literal] = ACTIONS(213), - [anon_sym_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [sym_dots] = ACTIONS(213), - [sym_dot_dot_i] = ACTIONS(213), - [sym_return] = ACTIONS(213), - [sym_next] = ACTIONS(213), - [sym_break] = ACTIONS(213), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [sym_null] = ACTIONS(213), - [sym_inf] = ACTIONS(213), - [sym_nan] = ACTIONS(213), - [anon_sym_NA] = ACTIONS(213), - [anon_sym_NA_integer_] = ACTIONS(213), - [anon_sym_NA_real_] = ACTIONS(213), - [anon_sym_NA_complex_] = ACTIONS(213), - [anon_sym_NA_character_] = ACTIONS(213), + [121] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), + [sym__open_bracket] = STATE(276), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(229), + [anon_sym_BSLASH] = ACTIONS(227), + [anon_sym_function] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(229), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_repeat] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(83), + [anon_sym_LT_LT_DASH] = ACTIONS(83), + [anon_sym_COLON_EQ] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(99), + [anon_sym_EQ_EQ] = ACTIONS(99), + [anon_sym_BANG_EQ] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_CARET] = ACTIONS(105), + [aux_sym_binary_operator_token1] = ACTIONS(107), + [anon_sym_PIPE_GT] = ACTIONS(107), + [anon_sym_COLON] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_AT] = ACTIONS(111), + [sym__hex_literal] = ACTIONS(227), + [sym__number_literal] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [sym_dots] = ACTIONS(229), + [sym_dot_dot_i] = ACTIONS(229), + [sym_return] = ACTIONS(229), + [sym_next] = ACTIONS(229), + [sym_break] = ACTIONS(229), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [sym_null] = ACTIONS(229), + [sym_inf] = ACTIONS(229), + [sym_nan] = ACTIONS(229), + [anon_sym_NA] = ACTIONS(229), + [anon_sym_NA_integer_] = ACTIONS(229), + [anon_sym_NA_real_] = ACTIONS(229), + [anon_sym_NA_complex_] = ACTIONS(229), + [anon_sym_NA_character_] = ACTIONS(229), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(211), - [sym__semicolon] = ACTIONS(211), - [sym__raw_string_literal] = ACTIONS(211), - [sym__external_else] = ACTIONS(211), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(211), - [sym__external_close_brace] = ACTIONS(211), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), - }, - [90] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(197), - [anon_sym_BSLASH] = ACTIONS(195), - [anon_sym_function] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(197), - [anon_sym_for] = ACTIONS(197), - [anon_sym_while] = ACTIONS(197), - [anon_sym_repeat] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(195), + [sym__newline] = ACTIONS(227), + [sym__semicolon] = ACTIONS(227), + [sym__raw_string_literal] = ACTIONS(227), + [sym__external_else] = ACTIONS(227), + [sym__external_open_parenthesis] = ACTIONS(115), + [sym__external_open_brace] = ACTIONS(227), + [sym__external_close_brace] = ACTIONS(227), + [sym__external_open_bracket] = ACTIONS(117), + [sym__external_open_bracket2] = ACTIONS(119), + }, + [122] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(237), + [sym_identifier] = ACTIONS(235), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(235), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_repeat] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(237), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(235), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -13182,61 +15551,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(195), - [sym__number_literal] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(195), - [sym_dots] = ACTIONS(197), - [sym_dot_dot_i] = ACTIONS(197), - [sym_return] = ACTIONS(197), - [sym_next] = ACTIONS(197), - [sym_break] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_inf] = ACTIONS(197), - [sym_nan] = ACTIONS(197), - [anon_sym_NA] = ACTIONS(197), - [anon_sym_NA_integer_] = ACTIONS(197), - [anon_sym_NA_real_] = ACTIONS(197), - [anon_sym_NA_complex_] = ACTIONS(197), - [anon_sym_NA_character_] = ACTIONS(197), + [sym__hex_literal] = ACTIONS(237), + [sym__number_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym_dots] = ACTIONS(235), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(235), + [sym_next] = ACTIONS(235), + [sym_break] = ACTIONS(235), + [sym_true] = ACTIONS(235), + [sym_false] = ACTIONS(235), + [sym_null] = ACTIONS(235), + [sym_inf] = ACTIONS(235), + [sym_nan] = ACTIONS(235), + [anon_sym_NA] = ACTIONS(235), + [anon_sym_NA_integer_] = ACTIONS(235), + [anon_sym_NA_real_] = ACTIONS(235), + [anon_sym_NA_complex_] = ACTIONS(235), + [anon_sym_NA_character_] = ACTIONS(235), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(195), - [sym__semicolon] = ACTIONS(195), - [sym__raw_string_literal] = ACTIONS(195), - [sym__external_else] = ACTIONS(195), + [sym__newline] = ACTIONS(237), + [sym__semicolon] = ACTIONS(237), + [sym__raw_string_literal] = ACTIONS(237), + [sym__external_else] = ACTIONS(237), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(195), - [sym__external_close_brace] = ACTIONS(195), + [sym__external_open_brace] = ACTIONS(237), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [91] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(193), - [anon_sym_BSLASH] = ACTIONS(191), - [anon_sym_function] = ACTIONS(193), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(193), - [anon_sym_for] = ACTIONS(193), - [anon_sym_while] = ACTIONS(193), - [anon_sym_repeat] = ACTIONS(193), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(193), + [123] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(237), + [sym_identifier] = ACTIONS(235), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_repeat] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(237), + [anon_sym_BANG] = ACTIONS(235), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), + [anon_sym_LT_DASH] = ACTIONS(237), + [anon_sym_LT_LT_DASH] = ACTIONS(237), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DASH_GT_GT] = ACTIONS(237), [anon_sym_PIPE] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(27), [anon_sym_PIPE_PIPE] = ACTIONS(29), @@ -13256,65 +15625,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(191), - [sym__number_literal] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(191), - [sym_dots] = ACTIONS(193), - [sym_dot_dot_i] = ACTIONS(193), - [sym_return] = ACTIONS(193), - [sym_next] = ACTIONS(193), - [sym_break] = ACTIONS(193), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_inf] = ACTIONS(193), - [sym_nan] = ACTIONS(193), - [anon_sym_NA] = ACTIONS(193), - [anon_sym_NA_integer_] = ACTIONS(193), - [anon_sym_NA_real_] = ACTIONS(193), - [anon_sym_NA_complex_] = ACTIONS(193), - [anon_sym_NA_character_] = ACTIONS(193), + [sym__hex_literal] = ACTIONS(237), + [sym__number_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym_dots] = ACTIONS(235), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(235), + [sym_next] = ACTIONS(235), + [sym_break] = ACTIONS(235), + [sym_true] = ACTIONS(235), + [sym_false] = ACTIONS(235), + [sym_null] = ACTIONS(235), + [sym_inf] = ACTIONS(235), + [sym_nan] = ACTIONS(235), + [anon_sym_NA] = ACTIONS(235), + [anon_sym_NA_integer_] = ACTIONS(235), + [anon_sym_NA_real_] = ACTIONS(235), + [anon_sym_NA_complex_] = ACTIONS(235), + [anon_sym_NA_character_] = ACTIONS(235), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(191), - [sym__semicolon] = ACTIONS(191), - [sym__raw_string_literal] = ACTIONS(191), - [sym__external_else] = ACTIONS(191), + [sym__newline] = ACTIONS(237), + [sym__semicolon] = ACTIONS(237), + [sym__raw_string_literal] = ACTIONS(237), + [sym__external_else] = ACTIONS(237), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(191), - [sym__external_close_brace] = ACTIONS(191), + [sym__external_open_brace] = ACTIONS(237), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [92] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(189), - [anon_sym_BSLASH] = ACTIONS(187), - [anon_sym_function] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(189), - [anon_sym_for] = ACTIONS(189), - [anon_sym_while] = ACTIONS(189), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(189), + [124] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(237), + [sym_identifier] = ACTIONS(235), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_repeat] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(237), + [anon_sym_BANG] = ACTIONS(235), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), + [anon_sym_LT_DASH] = ACTIONS(237), + [anon_sym_LT_LT_DASH] = ACTIONS(237), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DASH_GT_GT] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), [anon_sym_LT] = ACTIONS(33), [anon_sym_LT_EQ] = ACTIONS(35), [anon_sym_GT] = ACTIONS(33), @@ -13330,128 +15699,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(187), - [sym__number_literal] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(187), - [sym_dots] = ACTIONS(189), - [sym_dot_dot_i] = ACTIONS(189), - [sym_return] = ACTIONS(189), - [sym_next] = ACTIONS(189), - [sym_break] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_inf] = ACTIONS(189), - [sym_nan] = ACTIONS(189), - [anon_sym_NA] = ACTIONS(189), - [anon_sym_NA_integer_] = ACTIONS(189), - [anon_sym_NA_real_] = ACTIONS(189), - [anon_sym_NA_complex_] = ACTIONS(189), - [anon_sym_NA_character_] = ACTIONS(189), + [sym__hex_literal] = ACTIONS(237), + [sym__number_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym_dots] = ACTIONS(235), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(235), + [sym_next] = ACTIONS(235), + [sym_break] = ACTIONS(235), + [sym_true] = ACTIONS(235), + [sym_false] = ACTIONS(235), + [sym_null] = ACTIONS(235), + [sym_inf] = ACTIONS(235), + [sym_nan] = ACTIONS(235), + [anon_sym_NA] = ACTIONS(235), + [anon_sym_NA_integer_] = ACTIONS(235), + [anon_sym_NA_real_] = ACTIONS(235), + [anon_sym_NA_complex_] = ACTIONS(235), + [anon_sym_NA_character_] = ACTIONS(235), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(187), - [sym__semicolon] = ACTIONS(187), - [sym__raw_string_literal] = ACTIONS(187), - [sym__external_else] = ACTIONS(187), + [sym__newline] = ACTIONS(237), + [sym__semicolon] = ACTIONS(237), + [sym__raw_string_literal] = ACTIONS(237), + [sym__external_else] = ACTIONS(237), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(187), - [sym__external_close_brace] = ACTIONS(187), + [sym__external_open_brace] = ACTIONS(237), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [93] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(185), - [anon_sym_BSLASH] = ACTIONS(183), - [anon_sym_function] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(185), - [anon_sym_for] = ACTIONS(185), - [anon_sym_while] = ACTIONS(185), - [anon_sym_repeat] = ACTIONS(185), - [anon_sym_QMARK] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), + [125] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(237), + [sym_identifier] = ACTIONS(235), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_repeat] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(237), + [anon_sym_BANG] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(237), + [anon_sym_LT_LT_DASH] = ACTIONS(237), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DASH_GT_GT] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(237), [anon_sym_STAR_STAR] = ACTIONS(41), [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), + [aux_sym_binary_operator_token1] = ACTIONS(237), + [anon_sym_PIPE_GT] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(183), - [sym__number_literal] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_DQUOTE] = ACTIONS(183), - [sym_dots] = ACTIONS(185), - [sym_dot_dot_i] = ACTIONS(185), - [sym_return] = ACTIONS(185), - [sym_next] = ACTIONS(185), - [sym_break] = ACTIONS(185), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_inf] = ACTIONS(185), - [sym_nan] = ACTIONS(185), - [anon_sym_NA] = ACTIONS(185), - [anon_sym_NA_integer_] = ACTIONS(185), - [anon_sym_NA_real_] = ACTIONS(185), - [anon_sym_NA_complex_] = ACTIONS(185), - [anon_sym_NA_character_] = ACTIONS(185), + [sym__hex_literal] = ACTIONS(237), + [sym__number_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym_dots] = ACTIONS(235), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(235), + [sym_next] = ACTIONS(235), + [sym_break] = ACTIONS(235), + [sym_true] = ACTIONS(235), + [sym_false] = ACTIONS(235), + [sym_null] = ACTIONS(235), + [sym_inf] = ACTIONS(235), + [sym_nan] = ACTIONS(235), + [anon_sym_NA] = ACTIONS(235), + [anon_sym_NA_integer_] = ACTIONS(235), + [anon_sym_NA_real_] = ACTIONS(235), + [anon_sym_NA_complex_] = ACTIONS(235), + [anon_sym_NA_character_] = ACTIONS(235), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(183), - [sym__semicolon] = ACTIONS(183), - [sym__raw_string_literal] = ACTIONS(183), - [sym__external_else] = ACTIONS(183), + [sym__newline] = ACTIONS(237), + [sym__semicolon] = ACTIONS(237), + [sym__raw_string_literal] = ACTIONS(237), + [sym__external_else] = ACTIONS(237), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(183), - [sym__external_close_brace] = ACTIONS(183), + [sym__external_open_brace] = ACTIONS(237), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [94] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(181), - [anon_sym_BSLASH] = ACTIONS(179), - [anon_sym_function] = ACTIONS(181), + [126] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(241), + [sym_identifier] = ACTIONS(239), + [anon_sym_BSLASH] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(181), - [anon_sym_for] = ACTIONS(181), - [anon_sym_while] = ACTIONS(181), - [anon_sym_repeat] = ACTIONS(181), - [anon_sym_QMARK] = ACTIONS(179), + [anon_sym_if] = ACTIONS(239), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_repeat] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(241), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -13478,54 +15847,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(179), - [sym__number_literal] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(179), - [sym_dots] = ACTIONS(181), - [sym_dot_dot_i] = ACTIONS(181), - [sym_return] = ACTIONS(181), - [sym_next] = ACTIONS(181), - [sym_break] = ACTIONS(181), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_inf] = ACTIONS(181), - [sym_nan] = ACTIONS(181), - [anon_sym_NA] = ACTIONS(181), - [anon_sym_NA_integer_] = ACTIONS(181), - [anon_sym_NA_real_] = ACTIONS(181), - [anon_sym_NA_complex_] = ACTIONS(181), - [anon_sym_NA_character_] = ACTIONS(181), + [sym__hex_literal] = ACTIONS(241), + [sym__number_literal] = ACTIONS(239), + [anon_sym_SQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(241), + [sym_dots] = ACTIONS(239), + [sym_dot_dot_i] = ACTIONS(239), + [sym_return] = ACTIONS(239), + [sym_next] = ACTIONS(239), + [sym_break] = ACTIONS(239), + [sym_true] = ACTIONS(239), + [sym_false] = ACTIONS(239), + [sym_null] = ACTIONS(239), + [sym_inf] = ACTIONS(239), + [sym_nan] = ACTIONS(239), + [anon_sym_NA] = ACTIONS(239), + [anon_sym_NA_integer_] = ACTIONS(239), + [anon_sym_NA_real_] = ACTIONS(239), + [anon_sym_NA_complex_] = ACTIONS(239), + [anon_sym_NA_character_] = ACTIONS(239), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(179), - [sym__semicolon] = ACTIONS(179), - [sym__raw_string_literal] = ACTIONS(179), - [sym__external_else] = ACTIONS(179), + [sym__newline] = ACTIONS(241), + [sym__semicolon] = ACTIONS(241), + [sym__raw_string_literal] = ACTIONS(241), + [sym__external_else] = ACTIONS(241), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(179), - [sym__external_close_brace] = ACTIONS(179), + [sym__external_open_brace] = ACTIONS(241), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [95] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), + [127] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(245), + [sym_identifier] = ACTIONS(243), + [anon_sym_BSLASH] = ACTIONS(245), + [anon_sym_function] = ACTIONS(243), [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_if] = ACTIONS(243), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(243), + [anon_sym_repeat] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(245), [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(201), + [anon_sym_BANG] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), [anon_sym_LT_DASH] = ACTIONS(19), @@ -13552,61 +15921,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(201), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), + [sym__hex_literal] = ACTIONS(245), + [sym__number_literal] = ACTIONS(243), + [anon_sym_SQUOTE] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(245), + [sym_dots] = ACTIONS(243), + [sym_dot_dot_i] = ACTIONS(243), + [sym_return] = ACTIONS(243), + [sym_next] = ACTIONS(243), + [sym_break] = ACTIONS(243), + [sym_true] = ACTIONS(243), + [sym_false] = ACTIONS(243), + [sym_null] = ACTIONS(243), + [sym_inf] = ACTIONS(243), + [sym_nan] = ACTIONS(243), + [anon_sym_NA] = ACTIONS(243), + [anon_sym_NA_integer_] = ACTIONS(243), + [anon_sym_NA_real_] = ACTIONS(243), + [anon_sym_NA_complex_] = ACTIONS(243), + [anon_sym_NA_character_] = ACTIONS(243), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_else] = ACTIONS(199), + [sym__newline] = ACTIONS(245), + [sym__semicolon] = ACTIONS(245), + [sym__raw_string_literal] = ACTIONS(245), + [sym__external_else] = ACTIONS(245), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_close_brace] = ACTIONS(199), + [sym__external_open_brace] = ACTIONS(245), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [96] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(201), + [128] = { + [sym_call_arguments] = STATE(358), + [sym_subset_arguments] = STATE(362), + [sym_subset2_arguments] = STATE(370), + [sym__open_parenthesis] = STATE(269), + [sym__open_bracket] = STATE(270), + [sym__open_bracket2] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(147), + [sym_identifier] = ACTIONS(149), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(11), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(149), + [anon_sym_while] = ACTIONS(149), + [anon_sym_repeat] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(149), [anon_sym_PLUS] = ACTIONS(15), [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(199), - [anon_sym_LT_LT_DASH] = ACTIONS(199), - [anon_sym_COLON_EQ] = ACTIONS(199), - [anon_sym_DASH_GT] = ACTIONS(201), - [anon_sym_DASH_GT_GT] = ACTIONS(199), + [anon_sym_LT_DASH] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(19), + [anon_sym_COLON_EQ] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(21), + [anon_sym_DASH_GT_GT] = ACTIONS(23), [anon_sym_PIPE] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(27), [anon_sym_PIPE_PIPE] = ACTIONS(29), @@ -13626,210 +15995,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(45), [anon_sym_DOLLAR] = ACTIONS(47), [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(201), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_else] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_close_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), - }, - [97] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(199), - [anon_sym_LT_LT_DASH] = ACTIONS(199), - [anon_sym_COLON_EQ] = ACTIONS(199), - [anon_sym_DASH_GT] = ACTIONS(201), - [anon_sym_DASH_GT_GT] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(201), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(201), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_else] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_close_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), - }, - [98] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_LT_DASH] = ACTIONS(199), - [anon_sym_LT_LT_DASH] = ACTIONS(199), - [anon_sym_COLON_EQ] = ACTIONS(199), - [anon_sym_DASH_GT] = ACTIONS(201), - [anon_sym_DASH_GT_GT] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(201), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(199), - [anon_sym_PIPE_GT] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(201), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), + [sym__hex_literal] = ACTIONS(147), + [sym__number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym_dots] = ACTIONS(149), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(149), + [sym_next] = ACTIONS(149), + [sym_break] = ACTIONS(149), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [sym_null] = ACTIONS(149), + [sym_inf] = ACTIONS(149), + [sym_nan] = ACTIONS(149), + [anon_sym_NA] = ACTIONS(149), + [anon_sym_NA_integer_] = ACTIONS(149), + [anon_sym_NA_real_] = ACTIONS(149), + [anon_sym_NA_complex_] = ACTIONS(149), + [anon_sym_NA_character_] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_else] = ACTIONS(199), + [sym__newline] = ACTIONS(147), + [sym__semicolon] = ACTIONS(147), + [sym__raw_string_literal] = ACTIONS(147), + [sym__external_else] = ACTIONS(147), [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_close_brace] = ACTIONS(199), + [sym__external_open_brace] = ACTIONS(147), [sym__external_open_bracket] = ACTIONS(53), [sym__external_open_bracket2] = ACTIONS(55), }, - [99] = { - [sym_call_arguments] = STATE(333), - [sym_subset_arguments] = STATE(332), - [sym_subset2_arguments] = STATE(331), - [sym__open_parenthesis] = STATE(257), + [129] = { + [sym_call_arguments] = STATE(339), + [sym_subset_arguments] = STATE(376), + [sym_subset2_arguments] = STATE(352), + [sym__open_parenthesis] = STATE(275), [sym__open_bracket] = STATE(276), - [sym__open_bracket2] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(245), - [sym_identifier] = ACTIONS(243), - [anon_sym_BSLASH] = ACTIONS(245), - [anon_sym_function] = ACTIONS(243), - [anon_sym_EQ] = ACTIONS(75), - [anon_sym_if] = ACTIONS(243), - [anon_sym_for] = ACTIONS(243), - [anon_sym_while] = ACTIONS(243), - [anon_sym_repeat] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(243), + [sym__open_bracket2] = STATE(277), + [sym_identifier] = ACTIONS(149), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(149), + [anon_sym_while] = ACTIONS(149), + [anon_sym_repeat] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(149), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT_DASH] = ACTIONS(83), - [anon_sym_LT_LT_DASH] = ACTIONS(83), - [anon_sym_COLON_EQ] = ACTIONS(83), - [anon_sym_DASH_GT] = ACTIONS(85), - [anon_sym_DASH_GT_GT] = ACTIONS(87), + [anon_sym_LT_DASH] = ACTIONS(147), + [anon_sym_LT_LT_DASH] = ACTIONS(147), + [anon_sym_COLON_EQ] = ACTIONS(147), + [anon_sym_DASH_GT] = ACTIONS(149), + [anon_sym_DASH_GT_GT] = ACTIONS(147), [anon_sym_PIPE] = ACTIONS(89), [anon_sym_AMP] = ACTIONS(91), [anon_sym_PIPE_PIPE] = ACTIONS(93), @@ -13849,79 +16068,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(109), [anon_sym_DOLLAR] = ACTIONS(111), [anon_sym_AT] = ACTIONS(111), - [sym__hex_literal] = ACTIONS(245), - [sym__number_literal] = ACTIONS(243), - [anon_sym_SQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [sym_dots] = ACTIONS(243), - [sym_dot_dot_i] = ACTIONS(243), - [sym_return] = ACTIONS(243), - [sym_next] = ACTIONS(243), - [sym_break] = ACTIONS(243), - [sym_true] = ACTIONS(243), - [sym_false] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [sym_inf] = ACTIONS(243), - [sym_nan] = ACTIONS(243), - [anon_sym_NA] = ACTIONS(243), - [anon_sym_NA_integer_] = ACTIONS(243), - [anon_sym_NA_real_] = ACTIONS(243), - [anon_sym_NA_complex_] = ACTIONS(243), - [anon_sym_NA_character_] = ACTIONS(243), + [sym__hex_literal] = ACTIONS(147), + [sym__number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym_dots] = ACTIONS(149), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(149), + [sym_next] = ACTIONS(149), + [sym_break] = ACTIONS(149), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [sym_null] = ACTIONS(149), + [sym_inf] = ACTIONS(149), + [sym_nan] = ACTIONS(149), + [anon_sym_NA] = ACTIONS(149), + [anon_sym_NA_integer_] = ACTIONS(149), + [anon_sym_NA_real_] = ACTIONS(149), + [anon_sym_NA_complex_] = ACTIONS(149), + [anon_sym_NA_character_] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(245), - [sym__semicolon] = ACTIONS(245), - [sym__raw_string_literal] = ACTIONS(245), - [sym__external_else] = ACTIONS(245), + [sym__newline] = ACTIONS(147), + [sym__semicolon] = ACTIONS(147), + [sym__raw_string_literal] = ACTIONS(147), + [sym__external_else] = ACTIONS(147), [sym__external_open_parenthesis] = ACTIONS(115), - [sym__external_open_brace] = ACTIONS(245), + [sym__external_open_brace] = ACTIONS(147), + [sym__external_close_brace] = ACTIONS(147), [sym__external_open_bracket] = ACTIONS(117), [sym__external_open_bracket2] = ACTIONS(119), }, - [100] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [130] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(153), [anon_sym_if] = ACTIONS(153), [anon_sym_for] = ACTIONS(153), [anon_sym_while] = ACTIONS(153), [anon_sym_repeat] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -13945,131 +16166,493 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [101] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(177), - [anon_sym_BSLASH] = ACTIONS(175), - [anon_sym_function] = ACTIONS(177), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(177), - [anon_sym_for] = ACTIONS(177), - [anon_sym_while] = ACTIONS(177), - [anon_sym_repeat] = ACTIONS(177), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(175), - [sym__number_literal] = ACTIONS(177), - [anon_sym_SQUOTE] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(175), - [sym_dots] = ACTIONS(177), - [sym_dot_dot_i] = ACTIONS(177), - [sym_return] = ACTIONS(177), - [sym_next] = ACTIONS(177), - [sym_break] = ACTIONS(177), - [sym_true] = ACTIONS(177), - [sym_false] = ACTIONS(177), - [sym_null] = ACTIONS(177), - [sym_inf] = ACTIONS(177), - [sym_nan] = ACTIONS(177), - [anon_sym_NA] = ACTIONS(177), - [anon_sym_NA_integer_] = ACTIONS(177), - [anon_sym_NA_real_] = ACTIONS(177), - [anon_sym_NA_complex_] = ACTIONS(177), - [anon_sym_NA_character_] = ACTIONS(177), + [131] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(239), + [anon_sym_BSLASH] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(239), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_repeat] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(241), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(241), + [sym__number_literal] = ACTIONS(239), + [anon_sym_SQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(241), + [sym_dots] = ACTIONS(239), + [sym_dot_dot_i] = ACTIONS(239), + [sym_return] = ACTIONS(239), + [sym_next] = ACTIONS(239), + [sym_break] = ACTIONS(239), + [sym_true] = ACTIONS(239), + [sym_false] = ACTIONS(239), + [sym_null] = ACTIONS(239), + [sym_inf] = ACTIONS(239), + [sym_nan] = ACTIONS(239), + [anon_sym_NA] = ACTIONS(239), + [anon_sym_NA_integer_] = ACTIONS(239), + [anon_sym_NA_real_] = ACTIONS(239), + [anon_sym_NA_complex_] = ACTIONS(239), + [anon_sym_NA_character_] = ACTIONS(239), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(175), - [sym__semicolon] = ACTIONS(175), - [sym__raw_string_literal] = ACTIONS(175), - [sym__external_else] = ACTIONS(175), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(175), - [sym__external_close_brace] = ACTIONS(175), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__newline] = ACTIONS(241), + [sym__semicolon] = ACTIONS(241), + [sym__raw_string_literal] = ACTIONS(241), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(241), + [sym__external_close_brace] = ACTIONS(241), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [102] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [132] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(243), + [anon_sym_BSLASH] = ACTIONS(245), + [anon_sym_function] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(243), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(243), + [anon_sym_repeat] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(245), + [sym__number_literal] = ACTIONS(243), + [anon_sym_SQUOTE] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(245), + [sym_dots] = ACTIONS(243), + [sym_dot_dot_i] = ACTIONS(243), + [sym_return] = ACTIONS(243), + [sym_next] = ACTIONS(243), + [sym_break] = ACTIONS(243), + [sym_true] = ACTIONS(243), + [sym_false] = ACTIONS(243), + [sym_null] = ACTIONS(243), + [sym_inf] = ACTIONS(243), + [sym_nan] = ACTIONS(243), + [anon_sym_NA] = ACTIONS(243), + [anon_sym_NA_integer_] = ACTIONS(243), + [anon_sym_NA_real_] = ACTIONS(243), + [anon_sym_NA_complex_] = ACTIONS(243), + [anon_sym_NA_character_] = ACTIONS(243), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(245), + [sym__semicolon] = ACTIONS(245), + [sym__raw_string_literal] = ACTIONS(245), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(245), + [sym__external_close_brace] = ACTIONS(245), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), + }, + [133] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(149), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(149), + [anon_sym_while] = ACTIONS(149), + [anon_sym_repeat] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(147), + [sym__number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym_dots] = ACTIONS(149), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(149), + [sym_next] = ACTIONS(149), + [sym_break] = ACTIONS(149), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [sym_null] = ACTIONS(149), + [sym_inf] = ACTIONS(149), + [sym_nan] = ACTIONS(149), + [anon_sym_NA] = ACTIONS(149), + [anon_sym_NA_integer_] = ACTIONS(149), + [anon_sym_NA_real_] = ACTIONS(149), + [anon_sym_NA_complex_] = ACTIONS(149), + [anon_sym_NA_character_] = ACTIONS(149), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(147), + [sym__semicolon] = ACTIONS(147), + [sym__raw_string_literal] = ACTIONS(147), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(147), + [sym__external_close_brace] = ACTIONS(147), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), + }, + [134] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(149), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(149), + [anon_sym_while] = ACTIONS(149), + [anon_sym_repeat] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(147), + [anon_sym_LT_LT_DASH] = ACTIONS(147), + [anon_sym_COLON_EQ] = ACTIONS(147), + [anon_sym_DASH_GT] = ACTIONS(149), + [anon_sym_DASH_GT_GT] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(147), + [sym__number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym_dots] = ACTIONS(149), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(149), + [sym_next] = ACTIONS(149), + [sym_break] = ACTIONS(149), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [sym_null] = ACTIONS(149), + [sym_inf] = ACTIONS(149), + [sym_nan] = ACTIONS(149), + [anon_sym_NA] = ACTIONS(149), + [anon_sym_NA_integer_] = ACTIONS(149), + [anon_sym_NA_real_] = ACTIONS(149), + [anon_sym_NA_complex_] = ACTIONS(149), + [anon_sym_NA_character_] = ACTIONS(149), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(147), + [sym__semicolon] = ACTIONS(147), + [sym__raw_string_literal] = ACTIONS(147), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(147), + [sym__external_close_brace] = ACTIONS(147), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), + }, + [135] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(149), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(149), + [anon_sym_while] = ACTIONS(149), + [anon_sym_repeat] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(147), + [anon_sym_LT_LT_DASH] = ACTIONS(147), + [anon_sym_COLON_EQ] = ACTIONS(147), + [anon_sym_DASH_GT] = ACTIONS(149), + [anon_sym_DASH_GT_GT] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(149), + [anon_sym_PIPE_PIPE] = ACTIONS(147), + [anon_sym_AMP_AMP] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(147), + [sym__number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym_dots] = ACTIONS(149), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(149), + [sym_next] = ACTIONS(149), + [sym_break] = ACTIONS(149), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [sym_null] = ACTIONS(149), + [sym_inf] = ACTIONS(149), + [sym_nan] = ACTIONS(149), + [anon_sym_NA] = ACTIONS(149), + [anon_sym_NA_integer_] = ACTIONS(149), + [anon_sym_NA_real_] = ACTIONS(149), + [anon_sym_NA_complex_] = ACTIONS(149), + [anon_sym_NA_character_] = ACTIONS(149), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(147), + [sym__semicolon] = ACTIONS(147), + [sym__raw_string_literal] = ACTIONS(147), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(147), + [sym__external_close_brace] = ACTIONS(147), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), + }, + [136] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(149), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(149), + [anon_sym_while] = ACTIONS(149), + [anon_sym_repeat] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_LT_DASH] = ACTIONS(147), + [anon_sym_LT_LT_DASH] = ACTIONS(147), + [anon_sym_COLON_EQ] = ACTIONS(147), + [anon_sym_DASH_GT] = ACTIONS(149), + [anon_sym_DASH_GT_GT] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(149), + [anon_sym_PIPE_PIPE] = ACTIONS(147), + [anon_sym_AMP_AMP] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(147), + [anon_sym_PIPE_GT] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(147), + [sym__number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym_dots] = ACTIONS(149), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(149), + [sym_next] = ACTIONS(149), + [sym_break] = ACTIONS(149), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [sym_null] = ACTIONS(149), + [sym_inf] = ACTIONS(149), + [sym_nan] = ACTIONS(149), + [anon_sym_NA] = ACTIONS(149), + [anon_sym_NA_integer_] = ACTIONS(149), + [anon_sym_NA_real_] = ACTIONS(149), + [anon_sym_NA_complex_] = ACTIONS(149), + [anon_sym_NA_character_] = ACTIONS(149), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(147), + [sym__semicolon] = ACTIONS(147), + [sym__raw_string_literal] = ACTIONS(147), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(147), + [sym__external_close_brace] = ACTIONS(147), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), + }, + [137] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(269), [anon_sym_if] = ACTIONS(153), [anon_sym_for] = ACTIONS(153), [anon_sym_while] = ACTIONS(153), [anon_sym_repeat] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(271), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -14093,20 +16676,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [103] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [138] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -14118,32 +16700,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), [anon_sym_DASH_GT] = ACTIONS(153), [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -14167,20 +16749,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [104] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [139] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -14209,15 +16790,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -14241,57 +16822,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [105] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [140] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(269), [anon_sym_if] = ACTIONS(153), [anon_sym_for] = ACTIONS(153), [anon_sym_while] = ACTIONS(153), [anon_sym_repeat] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(271), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -14315,20 +16895,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [106] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [141] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -14338,34 +16917,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(153), [anon_sym_repeat] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(271), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), [anon_sym_DASH_GT] = ACTIONS(153), [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -14389,20 +16968,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [107] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [142] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -14414,32 +16992,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), [anon_sym_DASH_GT] = ACTIONS(153), [anon_sym_DASH_GT_GT] = ACTIONS(151), [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(285), [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -14463,20 +17041,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [108] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [143] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -14488,8 +17065,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), @@ -14499,21 +17076,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(153), [anon_sym_PIPE_PIPE] = ACTIONS(151), [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -14537,20 +17114,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [109] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [144] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -14562,8 +17138,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), @@ -14579,15 +17155,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -14611,94 +17187,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), - }, - [110] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(173), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_function] = ACTIONS(173), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(173), - [anon_sym_for] = ACTIONS(173), - [anon_sym_while] = ACTIONS(173), - [anon_sym_repeat] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(171), - [sym__number_literal] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym_dots] = ACTIONS(173), - [sym_dot_dot_i] = ACTIONS(173), - [sym_return] = ACTIONS(173), - [sym_next] = ACTIONS(173), - [sym_break] = ACTIONS(173), - [sym_true] = ACTIONS(173), - [sym_false] = ACTIONS(173), - [sym_null] = ACTIONS(173), - [sym_inf] = ACTIONS(173), - [sym_nan] = ACTIONS(173), - [anon_sym_NA] = ACTIONS(173), - [anon_sym_NA_integer_] = ACTIONS(173), - [anon_sym_NA_real_] = ACTIONS(173), - [anon_sym_NA_complex_] = ACTIONS(173), - [anon_sym_NA_character_] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(171), - [sym__semicolon] = ACTIONS(171), - [sym__raw_string_literal] = ACTIONS(171), - [sym__external_else] = ACTIONS(171), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(171), - [sym__external_close_brace] = ACTIONS(171), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [111] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [145] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -14729,13 +17230,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -14759,94 +17260,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), - }, - [112] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(167), - [anon_sym_function] = ACTIONS(169), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_if] = ACTIONS(169), - [anon_sym_for] = ACTIONS(169), - [anon_sym_while] = ACTIONS(169), - [anon_sym_repeat] = ACTIONS(169), - [anon_sym_QMARK] = ACTIONS(167), - [anon_sym_TILDE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(167), - [sym__number_literal] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(167), - [sym_dots] = ACTIONS(169), - [sym_dot_dot_i] = ACTIONS(169), - [sym_return] = ACTIONS(169), - [sym_next] = ACTIONS(169), - [sym_break] = ACTIONS(169), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [sym_null] = ACTIONS(169), - [sym_inf] = ACTIONS(169), - [sym_nan] = ACTIONS(169), - [anon_sym_NA] = ACTIONS(169), - [anon_sym_NA_integer_] = ACTIONS(169), - [anon_sym_NA_real_] = ACTIONS(169), - [anon_sym_NA_complex_] = ACTIONS(169), - [anon_sym_NA_character_] = ACTIONS(169), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(167), - [sym__semicolon] = ACTIONS(167), - [sym__raw_string_literal] = ACTIONS(167), - [sym__external_else] = ACTIONS(167), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(167), - [sym__external_close_brace] = ACTIONS(167), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [113] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [146] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -14877,13 +17303,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), [anon_sym_COLON] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -14907,20 +17333,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [114] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [147] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -14951,13 +17376,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -14981,20 +17406,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [115] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [148] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -15025,13 +17449,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), [anon_sym_COLON] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -15055,57 +17479,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_else] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(151), [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [116] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [149] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(157), [anon_sym_BSLASH] = ACTIONS(155), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(269), [anon_sym_if] = ACTIONS(157), [anon_sym_for] = ACTIONS(157), [anon_sym_while] = ACTIONS(157), [anon_sym_repeat] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(271), [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(155), [sym__number_literal] = ACTIONS(157), [anon_sym_SQUOTE] = ACTIONS(155), @@ -15129,57 +17552,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(155), [sym__semicolon] = ACTIONS(155), [sym__raw_string_literal] = ACTIONS(155), - [sym__external_else] = ACTIONS(155), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(155), [sym__external_close_brace] = ACTIONS(155), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [117] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [150] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(161), [anon_sym_BSLASH] = ACTIONS(159), [anon_sym_function] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(269), [anon_sym_if] = ACTIONS(161), [anon_sym_for] = ACTIONS(161), [anon_sym_while] = ACTIONS(161), [anon_sym_repeat] = ACTIONS(161), [anon_sym_QMARK] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(271), [anon_sym_BANG] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(159), [sym__number_literal] = ACTIONS(161), [anon_sym_SQUOTE] = ACTIONS(159), @@ -15203,57 +17625,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(159), [sym__semicolon] = ACTIONS(159), [sym__raw_string_literal] = ACTIONS(159), - [sym__external_else] = ACTIONS(159), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(159), [sym__external_close_brace] = ACTIONS(159), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [118] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [151] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(269), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(271), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -15277,57 +17698,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [119] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [152] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(269), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(271), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -15351,20 +17771,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [120] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [153] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -15376,32 +17795,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -15425,20 +17844,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [121] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [154] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -15467,15 +17885,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(163), [anon_sym_EQ_EQ] = ACTIONS(163), [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -15499,57 +17917,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [122] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [155] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(269), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(271), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_LT_DASH] = ACTIONS(19), - [anon_sym_LT_LT_DASH] = ACTIONS(19), - [anon_sym_COLON_EQ] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(21), - [anon_sym_DASH_GT_GT] = ACTIONS(23), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -15573,20 +17990,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [123] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [156] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -15596,34 +18012,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(271), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_PIPE_PIPE] = ACTIONS(29), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -15647,20 +18063,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [124] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [157] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -15672,32 +18087,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(285), [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -15721,20 +18136,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [125] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [158] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -15746,8 +18160,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), @@ -15757,21 +18171,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -15795,20 +18209,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [126] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [159] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -15820,8 +18233,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), @@ -15837,15 +18250,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(163), [anon_sym_EQ_EQ] = ACTIONS(163), [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -15869,20 +18282,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [127] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [160] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -15913,13 +18325,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(43), - [anon_sym_PIPE_GT] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(45), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -15943,20 +18355,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [128] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), + [161] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -15987,13 +18398,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), [aux_sym_binary_operator_token1] = ACTIONS(163), [anon_sym_PIPE_GT] = ACTIONS(163), [anon_sym_COLON] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -16017,205 +18428,567 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(163), [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), + }, + [162] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(163), + [anon_sym_PIPE_GT] = ACTIONS(163), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(165), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), + }, + [163] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(165), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_function] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_if] = ACTIONS(165), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(165), + [anon_sym_repeat] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_COLON_EQ] = ACTIONS(163), + [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_DASH_GT_GT] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_GT_EQ] = ACTIONS(163), + [anon_sym_EQ_EQ] = ACTIONS(163), + [anon_sym_BANG_EQ] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(163), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(163), + [anon_sym_PIPE_GT] = ACTIONS(163), + [anon_sym_COLON] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(163), + [sym__number_literal] = ACTIONS(165), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(163), + [sym_dots] = ACTIONS(165), + [sym_dot_dot_i] = ACTIONS(165), + [sym_return] = ACTIONS(165), + [sym_next] = ACTIONS(165), + [sym_break] = ACTIONS(165), + [sym_true] = ACTIONS(165), + [sym_false] = ACTIONS(165), + [sym_null] = ACTIONS(165), + [sym_inf] = ACTIONS(165), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_close_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), + }, + [164] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(169), + [anon_sym_BSLASH] = ACTIONS(167), + [anon_sym_function] = ACTIONS(169), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(169), + [anon_sym_for] = ACTIONS(169), + [anon_sym_while] = ACTIONS(169), + [anon_sym_repeat] = ACTIONS(169), + [anon_sym_QMARK] = ACTIONS(167), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(167), + [sym__number_literal] = ACTIONS(169), + [anon_sym_SQUOTE] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(167), + [sym_dots] = ACTIONS(169), + [sym_dot_dot_i] = ACTIONS(169), + [sym_return] = ACTIONS(169), + [sym_next] = ACTIONS(169), + [sym_break] = ACTIONS(169), + [sym_true] = ACTIONS(169), + [sym_false] = ACTIONS(169), + [sym_null] = ACTIONS(169), + [sym_inf] = ACTIONS(169), + [sym_nan] = ACTIONS(169), + [anon_sym_NA] = ACTIONS(169), + [anon_sym_NA_integer_] = ACTIONS(169), + [anon_sym_NA_real_] = ACTIONS(169), + [anon_sym_NA_complex_] = ACTIONS(169), + [anon_sym_NA_character_] = ACTIONS(169), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(167), + [sym__semicolon] = ACTIONS(167), + [sym__raw_string_literal] = ACTIONS(167), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(167), + [sym__external_close_brace] = ACTIONS(167), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), + }, + [165] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(313), + [sym_identifier] = ACTIONS(315), + [anon_sym_BSLASH] = ACTIONS(313), + [anon_sym_function] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_if] = ACTIONS(315), + [anon_sym_for] = ACTIONS(315), + [anon_sym_while] = ACTIONS(315), + [anon_sym_repeat] = ACTIONS(315), + [anon_sym_QMARK] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(313), + [sym__number_literal] = ACTIONS(315), + [anon_sym_SQUOTE] = ACTIONS(313), + [anon_sym_DQUOTE] = ACTIONS(313), + [sym_dots] = ACTIONS(315), + [sym_dot_dot_i] = ACTIONS(315), + [sym_return] = ACTIONS(315), + [sym_next] = ACTIONS(315), + [sym_break] = ACTIONS(315), + [sym_true] = ACTIONS(315), + [sym_false] = ACTIONS(315), + [sym_null] = ACTIONS(315), + [sym_inf] = ACTIONS(315), + [sym_nan] = ACTIONS(315), + [anon_sym_NA] = ACTIONS(315), + [anon_sym_NA_integer_] = ACTIONS(315), + [anon_sym_NA_real_] = ACTIONS(315), + [anon_sym_NA_complex_] = ACTIONS(315), + [anon_sym_NA_character_] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(313), + [sym__semicolon] = ACTIONS(313), + [sym__raw_string_literal] = ACTIONS(313), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(313), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), + }, + [166] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(173), + [anon_sym_BSLASH] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(173), + [anon_sym_for] = ACTIONS(173), + [anon_sym_while] = ACTIONS(173), + [anon_sym_repeat] = ACTIONS(173), + [anon_sym_QMARK] = ACTIONS(171), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(171), + [sym__number_literal] = ACTIONS(173), + [anon_sym_SQUOTE] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(171), + [sym_dots] = ACTIONS(173), + [sym_dot_dot_i] = ACTIONS(173), + [sym_return] = ACTIONS(173), + [sym_next] = ACTIONS(173), + [sym_break] = ACTIONS(173), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [sym_null] = ACTIONS(173), + [sym_inf] = ACTIONS(173), + [sym_nan] = ACTIONS(173), + [anon_sym_NA] = ACTIONS(173), + [anon_sym_NA_integer_] = ACTIONS(173), + [anon_sym_NA_real_] = ACTIONS(173), + [anon_sym_NA_complex_] = ACTIONS(173), + [anon_sym_NA_character_] = ACTIONS(173), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(171), + [sym__semicolon] = ACTIONS(171), + [sym__raw_string_literal] = ACTIONS(171), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(171), + [sym__external_close_brace] = ACTIONS(171), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [129] = { - [sym_call_arguments] = STATE(369), - [sym_subset_arguments] = STATE(374), - [sym_subset2_arguments] = STATE(375), - [sym__open_parenthesis] = STATE(249), - [sym__open_bracket] = STATE(282), - [sym__open_bracket2] = STATE(281), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(41), - [anon_sym_CARET] = ACTIONS(41), - [aux_sym_binary_operator_token1] = ACTIONS(163), - [anon_sym_PIPE_GT] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(47), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(165), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), + [167] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(177), + [anon_sym_BSLASH] = ACTIONS(175), + [anon_sym_function] = ACTIONS(177), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(177), + [anon_sym_for] = ACTIONS(177), + [anon_sym_while] = ACTIONS(177), + [anon_sym_repeat] = ACTIONS(177), + [anon_sym_QMARK] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(175), + [sym__number_literal] = ACTIONS(177), + [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(175), + [sym_dots] = ACTIONS(177), + [sym_dot_dot_i] = ACTIONS(177), + [sym_return] = ACTIONS(177), + [sym_next] = ACTIONS(177), + [sym_break] = ACTIONS(177), + [sym_true] = ACTIONS(177), + [sym_false] = ACTIONS(177), + [sym_null] = ACTIONS(177), + [sym_inf] = ACTIONS(177), + [sym_nan] = ACTIONS(177), + [anon_sym_NA] = ACTIONS(177), + [anon_sym_NA_integer_] = ACTIONS(177), + [anon_sym_NA_real_] = ACTIONS(177), + [anon_sym_NA_complex_] = ACTIONS(177), + [anon_sym_NA_character_] = ACTIONS(177), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_else] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(51), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(53), - [sym__external_open_bracket2] = ACTIONS(55), + [sym__newline] = ACTIONS(175), + [sym__semicolon] = ACTIONS(175), + [sym__raw_string_literal] = ACTIONS(175), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(175), + [sym__external_close_brace] = ACTIONS(175), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [130] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), + [168] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(181), + [anon_sym_BSLASH] = ACTIONS(179), + [anon_sym_function] = ACTIONS(181), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(181), + [anon_sym_for] = ACTIONS(181), + [anon_sym_while] = ACTIONS(181), + [anon_sym_repeat] = ACTIONS(181), + [anon_sym_QMARK] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(179), + [sym__number_literal] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(179), + [sym_dots] = ACTIONS(181), + [sym_dot_dot_i] = ACTIONS(181), + [sym_return] = ACTIONS(181), + [sym_next] = ACTIONS(181), + [sym_break] = ACTIONS(181), + [sym_true] = ACTIONS(181), + [sym_false] = ACTIONS(181), + [sym_null] = ACTIONS(181), + [sym_inf] = ACTIONS(181), + [sym_nan] = ACTIONS(181), + [anon_sym_NA] = ACTIONS(181), + [anon_sym_NA_integer_] = ACTIONS(181), + [anon_sym_NA_real_] = ACTIONS(181), + [anon_sym_NA_complex_] = ACTIONS(181), + [anon_sym_NA_character_] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(179), + [sym__semicolon] = ACTIONS(179), + [sym__raw_string_literal] = ACTIONS(179), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(179), + [sym__external_close_brace] = ACTIONS(179), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [131] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(183), + [169] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(185), [anon_sym_BSLASH] = ACTIONS(183), [anon_sym_function] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(269), [anon_sym_if] = ACTIONS(185), [anon_sym_for] = ACTIONS(185), [anon_sym_while] = ACTIONS(185), [anon_sym_repeat] = ACTIONS(185), [anon_sym_QMARK] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(271), [anon_sym_BANG] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(183), [sym__number_literal] = ACTIONS(185), [anon_sym_SQUOTE] = ACTIONS(183), @@ -16239,931 +19012,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(183), [sym__semicolon] = ACTIONS(183), [sym__raw_string_literal] = ACTIONS(183), - [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(183), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [132] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(291), - [sym_identifier] = ACTIONS(293), - [anon_sym_BSLASH] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(293), - [anon_sym_for] = ACTIONS(293), - [anon_sym_while] = ACTIONS(293), - [anon_sym_repeat] = ACTIONS(293), - [anon_sym_QMARK] = ACTIONS(295), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(291), - [sym__number_literal] = ACTIONS(293), - [anon_sym_SQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_dots] = ACTIONS(293), - [sym_dot_dot_i] = ACTIONS(293), - [sym_return] = ACTIONS(293), - [sym_next] = ACTIONS(293), - [sym_break] = ACTIONS(293), - [sym_true] = ACTIONS(293), - [sym_false] = ACTIONS(293), - [sym_null] = ACTIONS(293), - [sym_inf] = ACTIONS(293), - [sym_nan] = ACTIONS(293), - [anon_sym_NA] = ACTIONS(293), - [anon_sym_NA_integer_] = ACTIONS(293), - [anon_sym_NA_real_] = ACTIONS(293), - [anon_sym_NA_complex_] = ACTIONS(293), - [anon_sym_NA_character_] = ACTIONS(293), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(291), - [sym__semicolon] = ACTIONS(291), - [sym__raw_string_literal] = ACTIONS(291), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(291), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [133] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(245), - [sym_identifier] = ACTIONS(243), - [anon_sym_BSLASH] = ACTIONS(245), - [anon_sym_function] = ACTIONS(243), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(243), - [anon_sym_for] = ACTIONS(243), - [anon_sym_while] = ACTIONS(243), - [anon_sym_repeat] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(245), - [sym__number_literal] = ACTIONS(243), - [anon_sym_SQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [sym_dots] = ACTIONS(243), - [sym_dot_dot_i] = ACTIONS(243), - [sym_return] = ACTIONS(243), - [sym_next] = ACTIONS(243), - [sym_break] = ACTIONS(243), - [sym_true] = ACTIONS(243), - [sym_false] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [sym_inf] = ACTIONS(243), - [sym_nan] = ACTIONS(243), - [anon_sym_NA] = ACTIONS(243), - [anon_sym_NA_integer_] = ACTIONS(243), - [anon_sym_NA_real_] = ACTIONS(243), - [anon_sym_NA_complex_] = ACTIONS(243), - [anon_sym_NA_character_] = ACTIONS(243), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(245), - [sym__semicolon] = ACTIONS(245), - [sym__raw_string_literal] = ACTIONS(245), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(245), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [134] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ] = ACTIONS(151), - [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(151), - [anon_sym_PIPE_GT] = ACTIONS(151), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [135] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [136] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ] = ACTIONS(151), - [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(151), - [anon_sym_PIPE_GT] = ACTIONS(151), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [137] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [138] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ] = ACTIONS(151), - [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(151), - [anon_sym_PIPE_GT] = ACTIONS(151), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [139] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_LT_DASH] = ACTIONS(199), - [anon_sym_LT_LT_DASH] = ACTIONS(199), - [anon_sym_COLON_EQ] = ACTIONS(199), - [anon_sym_DASH_GT] = ACTIONS(201), - [anon_sym_DASH_GT_GT] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(201), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(199), - [anon_sym_PIPE_GT] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(201), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_close_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_close_brace] = ACTIONS(183), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [140] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ] = ACTIONS(151), - [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), + [170] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(233), + [sym_identifier] = ACTIONS(231), + [anon_sym_BSLASH] = ACTIONS(233), + [anon_sym_function] = ACTIONS(231), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_if] = ACTIONS(231), + [anon_sym_for] = ACTIONS(231), + [anon_sym_while] = ACTIONS(231), + [anon_sym_repeat] = ACTIONS(231), + [anon_sym_QMARK] = ACTIONS(233), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(233), + [sym__number_literal] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym_dots] = ACTIONS(231), + [sym_dot_dot_i] = ACTIONS(231), + [sym_return] = ACTIONS(231), + [sym_next] = ACTIONS(231), + [sym_break] = ACTIONS(231), + [sym_true] = ACTIONS(231), + [sym_false] = ACTIONS(231), + [sym_null] = ACTIONS(231), + [sym_inf] = ACTIONS(231), + [sym_nan] = ACTIONS(231), + [anon_sym_NA] = ACTIONS(231), + [anon_sym_NA_integer_] = ACTIONS(231), + [anon_sym_NA_real_] = ACTIONS(231), + [anon_sym_NA_complex_] = ACTIONS(231), + [anon_sym_NA_character_] = ACTIONS(231), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(233), + [sym__semicolon] = ACTIONS(233), + [sym__raw_string_literal] = ACTIONS(233), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(233), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [141] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(199), - [anon_sym_LT_LT_DASH] = ACTIONS(199), - [anon_sym_COLON_EQ] = ACTIONS(199), - [anon_sym_DASH_GT] = ACTIONS(201), - [anon_sym_DASH_GT_GT] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(201), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(201), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), + [171] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(189), + [anon_sym_BSLASH] = ACTIONS(187), + [anon_sym_function] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(189), + [anon_sym_for] = ACTIONS(189), + [anon_sym_while] = ACTIONS(189), + [anon_sym_repeat] = ACTIONS(189), + [anon_sym_QMARK] = ACTIONS(187), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(187), + [sym__number_literal] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym_dots] = ACTIONS(189), + [sym_dot_dot_i] = ACTIONS(189), + [sym_return] = ACTIONS(189), + [sym_next] = ACTIONS(189), + [sym_break] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_inf] = ACTIONS(189), + [sym_nan] = ACTIONS(189), + [anon_sym_NA] = ACTIONS(189), + [anon_sym_NA_integer_] = ACTIONS(189), + [anon_sym_NA_real_] = ACTIONS(189), + [anon_sym_NA_complex_] = ACTIONS(189), + [anon_sym_NA_character_] = ACTIONS(189), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_close_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__newline] = ACTIONS(187), + [sym__semicolon] = ACTIONS(187), + [sym__raw_string_literal] = ACTIONS(187), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(187), + [sym__external_close_brace] = ACTIONS(187), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [142] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(199), - [anon_sym_LT_LT_DASH] = ACTIONS(199), - [anon_sym_COLON_EQ] = ACTIONS(199), - [anon_sym_DASH_GT] = ACTIONS(201), - [anon_sym_DASH_GT_GT] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(201), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), + [172] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(193), + [anon_sym_BSLASH] = ACTIONS(191), + [anon_sym_function] = ACTIONS(193), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(193), + [anon_sym_for] = ACTIONS(193), + [anon_sym_while] = ACTIONS(193), + [anon_sym_repeat] = ACTIONS(193), + [anon_sym_QMARK] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(191), + [sym__number_literal] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(191), + [sym_dots] = ACTIONS(193), + [sym_dot_dot_i] = ACTIONS(193), + [sym_return] = ACTIONS(193), + [sym_next] = ACTIONS(193), + [sym_break] = ACTIONS(193), + [sym_true] = ACTIONS(193), + [sym_false] = ACTIONS(193), + [sym_null] = ACTIONS(193), + [sym_inf] = ACTIONS(193), + [sym_nan] = ACTIONS(193), + [anon_sym_NA] = ACTIONS(193), + [anon_sym_NA_integer_] = ACTIONS(193), + [anon_sym_NA_real_] = ACTIONS(193), + [anon_sym_NA_complex_] = ACTIONS(193), + [anon_sym_NA_character_] = ACTIONS(193), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_close_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__newline] = ACTIONS(191), + [sym__semicolon] = ACTIONS(191), + [sym__raw_string_literal] = ACTIONS(191), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(191), + [sym__external_close_brace] = ACTIONS(191), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [143] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ] = ACTIONS(151), - [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), + [173] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(197), + [anon_sym_BSLASH] = ACTIONS(195), + [anon_sym_function] = ACTIONS(197), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(197), + [anon_sym_for] = ACTIONS(197), + [anon_sym_while] = ACTIONS(197), + [anon_sym_repeat] = ACTIONS(197), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(195), + [sym__number_literal] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(195), + [sym_dots] = ACTIONS(197), + [sym_dot_dot_i] = ACTIONS(197), + [sym_return] = ACTIONS(197), + [sym_next] = ACTIONS(197), + [sym_break] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_inf] = ACTIONS(197), + [sym_nan] = ACTIONS(197), + [anon_sym_NA] = ACTIONS(197), + [anon_sym_NA_integer_] = ACTIONS(197), + [anon_sym_NA_real_] = ACTIONS(197), + [anon_sym_NA_complex_] = ACTIONS(197), + [anon_sym_NA_character_] = ACTIONS(197), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(195), + [sym__semicolon] = ACTIONS(195), + [sym__raw_string_literal] = ACTIONS(195), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(195), + [sym__external_close_brace] = ACTIONS(195), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [144] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [174] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(201), [anon_sym_BSLASH] = ACTIONS(199), [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(269), [anon_sym_if] = ACTIONS(201), [anon_sym_for] = ACTIONS(201), [anon_sym_while] = ACTIONS(201), [anon_sym_repeat] = ACTIONS(201), [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_TILDE] = ACTIONS(271), [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(199), [sym__number_literal] = ACTIONS(201), [anon_sym_SQUOTE] = ACTIONS(199), @@ -17179,575 +19369,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inf] = ACTIONS(201), [sym_nan] = ACTIONS(201), [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_close_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [145] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(205), - [anon_sym_for] = ACTIONS(205), - [anon_sym_while] = ACTIONS(205), - [anon_sym_repeat] = ACTIONS(205), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(203), - [sym__number_literal] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE] = ACTIONS(203), - [sym_dots] = ACTIONS(205), - [sym_dot_dot_i] = ACTIONS(205), - [sym_return] = ACTIONS(205), - [sym_next] = ACTIONS(205), - [sym_break] = ACTIONS(205), - [sym_true] = ACTIONS(205), - [sym_false] = ACTIONS(205), - [sym_null] = ACTIONS(205), - [sym_inf] = ACTIONS(205), - [sym_nan] = ACTIONS(205), - [anon_sym_NA] = ACTIONS(205), - [anon_sym_NA_integer_] = ACTIONS(205), - [anon_sym_NA_real_] = ACTIONS(205), - [anon_sym_NA_complex_] = ACTIONS(205), - [anon_sym_NA_character_] = ACTIONS(205), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(203), - [sym__semicolon] = ACTIONS(203), - [sym__raw_string_literal] = ACTIONS(203), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(203), - [sym__external_close_brace] = ACTIONS(203), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [146] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [147] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [148] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(149), - [sym_identifier] = ACTIONS(147), - [anon_sym_BSLASH] = ACTIONS(149), - [anon_sym_function] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(147), - [anon_sym_for] = ACTIONS(147), - [anon_sym_while] = ACTIONS(147), - [anon_sym_repeat] = ACTIONS(147), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(149), - [sym__number_literal] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_dots] = ACTIONS(147), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(147), - [sym_next] = ACTIONS(147), - [sym_break] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_inf] = ACTIONS(147), - [sym_nan] = ACTIONS(147), - [anon_sym_NA] = ACTIONS(147), - [anon_sym_NA_integer_] = ACTIONS(147), - [anon_sym_NA_real_] = ACTIONS(147), - [anon_sym_NA_complex_] = ACTIONS(147), - [anon_sym_NA_character_] = ACTIONS(147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(149), - [sym__semicolon] = ACTIONS(149), - [sym__raw_string_literal] = ACTIONS(149), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(149), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [149] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [150] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ] = ACTIONS(151), - [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_close_brace] = ACTIONS(199), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [151] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(147), - [anon_sym_BSLASH] = ACTIONS(149), - [anon_sym_function] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_if] = ACTIONS(147), - [anon_sym_for] = ACTIONS(147), - [anon_sym_while] = ACTIONS(147), - [anon_sym_repeat] = ACTIONS(147), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_LT_DASH] = ACTIONS(149), - [anon_sym_LT_LT_DASH] = ACTIONS(149), - [anon_sym_COLON_EQ] = ACTIONS(149), - [anon_sym_DASH_GT] = ACTIONS(147), - [anon_sym_DASH_GT_GT] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(149), - [anon_sym_AMP_AMP] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(149), - [anon_sym_PIPE_GT] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(149), - [sym__number_literal] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_dots] = ACTIONS(147), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(147), - [sym_next] = ACTIONS(147), - [sym_break] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_inf] = ACTIONS(147), - [sym_nan] = ACTIONS(147), - [anon_sym_NA] = ACTIONS(147), - [anon_sym_NA_integer_] = ACTIONS(147), - [anon_sym_NA_real_] = ACTIONS(147), - [anon_sym_NA_complex_] = ACTIONS(147), - [anon_sym_NA_character_] = ACTIONS(147), + [175] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(203), + [anon_sym_function] = ACTIONS(205), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(205), + [anon_sym_for] = ACTIONS(205), + [anon_sym_while] = ACTIONS(205), + [anon_sym_repeat] = ACTIONS(205), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(203), + [sym__number_literal] = ACTIONS(205), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE] = ACTIONS(203), + [sym_dots] = ACTIONS(205), + [sym_dot_dot_i] = ACTIONS(205), + [sym_return] = ACTIONS(205), + [sym_next] = ACTIONS(205), + [sym_break] = ACTIONS(205), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [sym_null] = ACTIONS(205), + [sym_inf] = ACTIONS(205), + [sym_nan] = ACTIONS(205), + [anon_sym_NA] = ACTIONS(205), + [anon_sym_NA_integer_] = ACTIONS(205), + [anon_sym_NA_real_] = ACTIONS(205), + [anon_sym_NA_complex_] = ACTIONS(205), + [anon_sym_NA_character_] = ACTIONS(205), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(149), - [sym__semicolon] = ACTIONS(149), - [sym__raw_string_literal] = ACTIONS(149), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(149), - [sym__external_close_brace] = ACTIONS(149), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__newline] = ACTIONS(203), + [sym__semicolon] = ACTIONS(203), + [sym__raw_string_literal] = ACTIONS(203), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(203), + [sym__external_close_brace] = ACTIONS(203), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [152] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [176] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), [sym_identifier] = ACTIONS(209), [anon_sym_BSLASH] = ACTIONS(207), [anon_sym_function] = ACTIONS(209), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(269), [anon_sym_if] = ACTIONS(209), [anon_sym_for] = ACTIONS(209), [anon_sym_while] = ACTIONS(209), [anon_sym_repeat] = ACTIONS(209), [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_TILDE] = ACTIONS(271), [anon_sym_BANG] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), [sym__hex_literal] = ACTIONS(207), [sym__number_literal] = ACTIONS(209), [anon_sym_SQUOTE] = ACTIONS(207), @@ -17771,1917 +19523,1407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(207), [sym__semicolon] = ACTIONS(207), [sym__raw_string_literal] = ACTIONS(207), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(307), [sym__external_open_brace] = ACTIONS(207), [sym__external_close_brace] = ACTIONS(207), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [153] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(155), - [sym_identifier] = ACTIONS(157), - [anon_sym_BSLASH] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(157), - [anon_sym_for] = ACTIONS(157), - [anon_sym_while] = ACTIONS(157), - [anon_sym_repeat] = ACTIONS(157), - [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(155), - [sym__number_literal] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(155), - [sym_dots] = ACTIONS(157), - [sym_dot_dot_i] = ACTIONS(157), - [sym_return] = ACTIONS(157), - [sym_next] = ACTIONS(157), - [sym_break] = ACTIONS(157), - [sym_true] = ACTIONS(157), - [sym_false] = ACTIONS(157), - [sym_null] = ACTIONS(157), - [sym_inf] = ACTIONS(157), - [sym_nan] = ACTIONS(157), - [anon_sym_NA] = ACTIONS(157), - [anon_sym_NA_integer_] = ACTIONS(157), - [anon_sym_NA_real_] = ACTIONS(157), - [anon_sym_NA_complex_] = ACTIONS(157), - [anon_sym_NA_character_] = ACTIONS(157), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(155), - [sym__semicolon] = ACTIONS(155), - [sym__raw_string_literal] = ACTIONS(155), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(155), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [154] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(147), - [anon_sym_BSLASH] = ACTIONS(149), - [anon_sym_function] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_if] = ACTIONS(147), - [anon_sym_for] = ACTIONS(147), - [anon_sym_while] = ACTIONS(147), - [anon_sym_repeat] = ACTIONS(147), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(149), - [anon_sym_LT_LT_DASH] = ACTIONS(149), - [anon_sym_COLON_EQ] = ACTIONS(149), - [anon_sym_DASH_GT] = ACTIONS(147), - [anon_sym_DASH_GT_GT] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(149), - [anon_sym_AMP_AMP] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(149), - [sym__number_literal] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_dots] = ACTIONS(147), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(147), - [sym_next] = ACTIONS(147), - [sym_break] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_inf] = ACTIONS(147), - [sym_nan] = ACTIONS(147), - [anon_sym_NA] = ACTIONS(147), - [anon_sym_NA_integer_] = ACTIONS(147), - [anon_sym_NA_real_] = ACTIONS(147), - [anon_sym_NA_complex_] = ACTIONS(147), - [anon_sym_NA_character_] = ACTIONS(147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(149), - [sym__semicolon] = ACTIONS(149), - [sym__raw_string_literal] = ACTIONS(149), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(149), - [sym__external_close_brace] = ACTIONS(149), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [155] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(147), - [anon_sym_BSLASH] = ACTIONS(149), - [anon_sym_function] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_if] = ACTIONS(147), - [anon_sym_for] = ACTIONS(147), - [anon_sym_while] = ACTIONS(147), - [anon_sym_repeat] = ACTIONS(147), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(149), - [anon_sym_LT_LT_DASH] = ACTIONS(149), - [anon_sym_COLON_EQ] = ACTIONS(149), - [anon_sym_DASH_GT] = ACTIONS(147), - [anon_sym_DASH_GT_GT] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(149), - [sym__number_literal] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_dots] = ACTIONS(147), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(147), - [sym_next] = ACTIONS(147), - [sym_break] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_inf] = ACTIONS(147), - [sym_nan] = ACTIONS(147), - [anon_sym_NA] = ACTIONS(147), - [anon_sym_NA_integer_] = ACTIONS(147), - [anon_sym_NA_real_] = ACTIONS(147), - [anon_sym_NA_complex_] = ACTIONS(147), - [anon_sym_NA_character_] = ACTIONS(147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(149), - [sym__semicolon] = ACTIONS(149), - [sym__raw_string_literal] = ACTIONS(149), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(149), - [sym__external_close_brace] = ACTIONS(149), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [156] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(147), - [anon_sym_BSLASH] = ACTIONS(149), - [anon_sym_function] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(147), - [anon_sym_for] = ACTIONS(147), - [anon_sym_while] = ACTIONS(147), - [anon_sym_repeat] = ACTIONS(147), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(149), - [sym__number_literal] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_dots] = ACTIONS(147), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(147), - [sym_next] = ACTIONS(147), - [sym_break] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_inf] = ACTIONS(147), - [sym_nan] = ACTIONS(147), - [anon_sym_NA] = ACTIONS(147), - [anon_sym_NA_integer_] = ACTIONS(147), - [anon_sym_NA_real_] = ACTIONS(147), - [anon_sym_NA_complex_] = ACTIONS(147), - [anon_sym_NA_character_] = ACTIONS(147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(149), - [sym__semicolon] = ACTIONS(149), - [sym__raw_string_literal] = ACTIONS(149), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(149), - [sym__external_close_brace] = ACTIONS(149), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [157] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(243), - [anon_sym_BSLASH] = ACTIONS(245), - [anon_sym_function] = ACTIONS(243), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(243), - [anon_sym_for] = ACTIONS(243), - [anon_sym_while] = ACTIONS(243), - [anon_sym_repeat] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(245), - [sym__number_literal] = ACTIONS(243), - [anon_sym_SQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [sym_dots] = ACTIONS(243), - [sym_dot_dot_i] = ACTIONS(243), - [sym_return] = ACTIONS(243), - [sym_next] = ACTIONS(243), - [sym_break] = ACTIONS(243), - [sym_true] = ACTIONS(243), - [sym_false] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [sym_inf] = ACTIONS(243), - [sym_nan] = ACTIONS(243), - [anon_sym_NA] = ACTIONS(243), - [anon_sym_NA_integer_] = ACTIONS(243), - [anon_sym_NA_real_] = ACTIONS(243), - [anon_sym_NA_complex_] = ACTIONS(243), - [anon_sym_NA_character_] = ACTIONS(243), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(245), - [sym__semicolon] = ACTIONS(245), - [sym__raw_string_literal] = ACTIONS(245), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(245), - [sym__external_close_brace] = ACTIONS(245), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [158] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(159), - [sym_identifier] = ACTIONS(161), - [anon_sym_BSLASH] = ACTIONS(159), - [anon_sym_function] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(161), - [anon_sym_for] = ACTIONS(161), - [anon_sym_while] = ACTIONS(161), - [anon_sym_repeat] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(159), - [sym__number_literal] = ACTIONS(161), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(159), - [sym_dots] = ACTIONS(161), - [sym_dot_dot_i] = ACTIONS(161), - [sym_return] = ACTIONS(161), - [sym_next] = ACTIONS(161), - [sym_break] = ACTIONS(161), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_inf] = ACTIONS(161), - [sym_nan] = ACTIONS(161), - [anon_sym_NA] = ACTIONS(161), - [anon_sym_NA_integer_] = ACTIONS(161), - [anon_sym_NA_real_] = ACTIONS(161), - [anon_sym_NA_complex_] = ACTIONS(161), - [anon_sym_NA_character_] = ACTIONS(161), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(159), - [sym__semicolon] = ACTIONS(159), - [sym__raw_string_literal] = ACTIONS(159), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(159), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [159] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(149), - [sym_identifier] = ACTIONS(147), - [anon_sym_BSLASH] = ACTIONS(149), - [anon_sym_function] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_if] = ACTIONS(147), - [anon_sym_for] = ACTIONS(147), - [anon_sym_while] = ACTIONS(147), - [anon_sym_repeat] = ACTIONS(147), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(149), - [anon_sym_LT_LT_DASH] = ACTIONS(149), - [anon_sym_COLON_EQ] = ACTIONS(149), - [anon_sym_DASH_GT] = ACTIONS(147), - [anon_sym_DASH_GT_GT] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(149), - [sym__number_literal] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_dots] = ACTIONS(147), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(147), - [sym_next] = ACTIONS(147), - [sym_break] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_inf] = ACTIONS(147), - [sym_nan] = ACTIONS(147), - [anon_sym_NA] = ACTIONS(147), - [anon_sym_NA_integer_] = ACTIONS(147), - [anon_sym_NA_real_] = ACTIONS(147), - [anon_sym_NA_complex_] = ACTIONS(147), - [anon_sym_NA_character_] = ACTIONS(147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(149), - [sym__semicolon] = ACTIONS(149), - [sym__raw_string_literal] = ACTIONS(149), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(149), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [160] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(149), - [sym_identifier] = ACTIONS(147), - [anon_sym_BSLASH] = ACTIONS(149), - [anon_sym_function] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_if] = ACTIONS(147), - [anon_sym_for] = ACTIONS(147), - [anon_sym_while] = ACTIONS(147), - [anon_sym_repeat] = ACTIONS(147), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(149), - [anon_sym_LT_LT_DASH] = ACTIONS(149), - [anon_sym_COLON_EQ] = ACTIONS(149), - [anon_sym_DASH_GT] = ACTIONS(147), - [anon_sym_DASH_GT_GT] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(149), - [anon_sym_AMP_AMP] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(149), - [sym__number_literal] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_dots] = ACTIONS(147), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(147), - [sym_next] = ACTIONS(147), - [sym_break] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_inf] = ACTIONS(147), - [sym_nan] = ACTIONS(147), - [anon_sym_NA] = ACTIONS(147), - [anon_sym_NA_integer_] = ACTIONS(147), - [anon_sym_NA_real_] = ACTIONS(147), - [anon_sym_NA_complex_] = ACTIONS(147), - [anon_sym_NA_character_] = ACTIONS(147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(149), - [sym__semicolon] = ACTIONS(149), - [sym__raw_string_literal] = ACTIONS(149), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(149), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [161] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [162] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [163] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), + [177] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(211), + [anon_sym_function] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(213), + [anon_sym_for] = ACTIONS(213), + [anon_sym_while] = ACTIONS(213), + [anon_sym_repeat] = ACTIONS(213), + [anon_sym_QMARK] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(211), + [sym__number_literal] = ACTIONS(213), + [anon_sym_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [sym_dots] = ACTIONS(213), + [sym_dot_dot_i] = ACTIONS(213), + [sym_return] = ACTIONS(213), + [sym_next] = ACTIONS(213), + [sym_break] = ACTIONS(213), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [sym_null] = ACTIONS(213), + [sym_inf] = ACTIONS(213), + [sym_nan] = ACTIONS(213), + [anon_sym_NA] = ACTIONS(213), + [anon_sym_NA_integer_] = ACTIONS(213), + [anon_sym_NA_real_] = ACTIONS(213), + [anon_sym_NA_complex_] = ACTIONS(213), + [anon_sym_NA_character_] = ACTIONS(213), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(211), + [sym__semicolon] = ACTIONS(211), + [sym__raw_string_literal] = ACTIONS(211), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(211), + [sym__external_close_brace] = ACTIONS(211), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [164] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(153), - [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), + [178] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(217), + [anon_sym_BSLASH] = ACTIONS(215), + [anon_sym_function] = ACTIONS(217), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(217), + [anon_sym_while] = ACTIONS(217), + [anon_sym_repeat] = ACTIONS(217), + [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(215), + [sym__number_literal] = ACTIONS(217), + [anon_sym_SQUOTE] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(215), + [sym_dots] = ACTIONS(217), + [sym_dot_dot_i] = ACTIONS(217), + [sym_return] = ACTIONS(217), + [sym_next] = ACTIONS(217), + [sym_break] = ACTIONS(217), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [sym_null] = ACTIONS(217), + [sym_inf] = ACTIONS(217), + [sym_nan] = ACTIONS(217), + [anon_sym_NA] = ACTIONS(217), + [anon_sym_NA_integer_] = ACTIONS(217), + [anon_sym_NA_real_] = ACTIONS(217), + [anon_sym_NA_complex_] = ACTIONS(217), + [anon_sym_NA_character_] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__newline] = ACTIONS(215), + [sym__semicolon] = ACTIONS(215), + [sym__raw_string_literal] = ACTIONS(215), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(215), + [sym__external_close_brace] = ACTIONS(215), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [165] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), + [179] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(221), + [anon_sym_BSLASH] = ACTIONS(219), + [anon_sym_function] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(221), + [anon_sym_for] = ACTIONS(221), + [anon_sym_while] = ACTIONS(221), + [anon_sym_repeat] = ACTIONS(221), + [anon_sym_QMARK] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(219), + [sym__number_literal] = ACTIONS(221), + [anon_sym_SQUOTE] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(219), + [sym_dots] = ACTIONS(221), + [sym_dot_dot_i] = ACTIONS(221), + [sym_return] = ACTIONS(221), + [sym_next] = ACTIONS(221), + [sym_break] = ACTIONS(221), + [sym_true] = ACTIONS(221), + [sym_false] = ACTIONS(221), + [sym_null] = ACTIONS(221), + [sym_inf] = ACTIONS(221), + [sym_nan] = ACTIONS(221), + [anon_sym_NA] = ACTIONS(221), + [anon_sym_NA_integer_] = ACTIONS(221), + [anon_sym_NA_real_] = ACTIONS(221), + [anon_sym_NA_complex_] = ACTIONS(221), + [anon_sym_NA_character_] = ACTIONS(221), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [166] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(163), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(165), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), + [sym__newline] = ACTIONS(219), + [sym__semicolon] = ACTIONS(219), + [sym__raw_string_literal] = ACTIONS(219), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(219), + [sym__external_close_brace] = ACTIONS(219), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), + }, + [180] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(143), + [anon_sym_BSLASH] = ACTIONS(145), + [anon_sym_function] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(143), + [anon_sym_for] = ACTIONS(143), + [anon_sym_while] = ACTIONS(143), + [anon_sym_repeat] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(145), + [sym__number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_dots] = ACTIONS(143), + [sym_dot_dot_i] = ACTIONS(143), + [sym_return] = ACTIONS(143), + [sym_next] = ACTIONS(143), + [sym_break] = ACTIONS(143), + [sym_true] = ACTIONS(143), + [sym_false] = ACTIONS(143), + [sym_null] = ACTIONS(143), + [sym_inf] = ACTIONS(143), + [sym_nan] = ACTIONS(143), + [anon_sym_NA] = ACTIONS(143), + [anon_sym_NA_integer_] = ACTIONS(143), + [anon_sym_NA_real_] = ACTIONS(143), + [anon_sym_NA_complex_] = ACTIONS(143), + [anon_sym_NA_character_] = ACTIONS(143), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(145), + [sym__semicolon] = ACTIONS(145), + [sym__raw_string_literal] = ACTIONS(145), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(145), + [sym__external_close_brace] = ACTIONS(145), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [167] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(163), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(165), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), + [181] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(223), + [anon_sym_function] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(225), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_repeat] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(223), + [sym__number_literal] = ACTIONS(225), + [anon_sym_SQUOTE] = ACTIONS(223), + [anon_sym_DQUOTE] = ACTIONS(223), + [sym_dots] = ACTIONS(225), + [sym_dot_dot_i] = ACTIONS(225), + [sym_return] = ACTIONS(225), + [sym_next] = ACTIONS(225), + [sym_break] = ACTIONS(225), + [sym_true] = ACTIONS(225), + [sym_false] = ACTIONS(225), + [sym_null] = ACTIONS(225), + [sym_inf] = ACTIONS(225), + [sym_nan] = ACTIONS(225), + [anon_sym_NA] = ACTIONS(225), + [anon_sym_NA_integer_] = ACTIONS(225), + [anon_sym_NA_real_] = ACTIONS(225), + [anon_sym_NA_complex_] = ACTIONS(225), + [anon_sym_NA_character_] = ACTIONS(225), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(223), + [sym__semicolon] = ACTIONS(223), + [sym__raw_string_literal] = ACTIONS(223), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(223), + [sym__external_close_brace] = ACTIONS(223), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [168] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(163), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(165), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), + [182] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(229), + [anon_sym_BSLASH] = ACTIONS(227), + [anon_sym_function] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(229), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_repeat] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(227), + [sym__number_literal] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [sym_dots] = ACTIONS(229), + [sym_dot_dot_i] = ACTIONS(229), + [sym_return] = ACTIONS(229), + [sym_next] = ACTIONS(229), + [sym_break] = ACTIONS(229), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [sym_null] = ACTIONS(229), + [sym_inf] = ACTIONS(229), + [sym_nan] = ACTIONS(229), + [anon_sym_NA] = ACTIONS(229), + [anon_sym_NA_integer_] = ACTIONS(229), + [anon_sym_NA_real_] = ACTIONS(229), + [anon_sym_NA_complex_] = ACTIONS(229), + [anon_sym_NA_character_] = ACTIONS(229), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(227), + [sym__semicolon] = ACTIONS(227), + [sym__raw_string_literal] = ACTIONS(227), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(227), + [sym__external_close_brace] = ACTIONS(227), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [169] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(163), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(165), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), + [183] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(237), + [sym_identifier] = ACTIONS(235), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_if] = ACTIONS(235), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_repeat] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(237), + [sym__number_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym_dots] = ACTIONS(235), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(235), + [sym_next] = ACTIONS(235), + [sym_break] = ACTIONS(235), + [sym_true] = ACTIONS(235), + [sym_false] = ACTIONS(235), + [sym_null] = ACTIONS(235), + [sym_inf] = ACTIONS(235), + [sym_nan] = ACTIONS(235), + [anon_sym_NA] = ACTIONS(235), + [anon_sym_NA_integer_] = ACTIONS(235), + [anon_sym_NA_real_] = ACTIONS(235), + [anon_sym_NA_complex_] = ACTIONS(235), + [anon_sym_NA_character_] = ACTIONS(235), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(237), + [sym__semicolon] = ACTIONS(237), + [sym__raw_string_literal] = ACTIONS(237), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(237), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [170] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(163), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(165), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), + [184] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(237), + [sym_identifier] = ACTIONS(235), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_repeat] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(237), + [anon_sym_BANG] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(237), + [anon_sym_LT_LT_DASH] = ACTIONS(237), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DASH_GT_GT] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(237), + [sym__number_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym_dots] = ACTIONS(235), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(235), + [sym_next] = ACTIONS(235), + [sym_break] = ACTIONS(235), + [sym_true] = ACTIONS(235), + [sym_false] = ACTIONS(235), + [sym_null] = ACTIONS(235), + [sym_inf] = ACTIONS(235), + [sym_nan] = ACTIONS(235), + [anon_sym_NA] = ACTIONS(235), + [anon_sym_NA_integer_] = ACTIONS(235), + [anon_sym_NA_real_] = ACTIONS(235), + [anon_sym_NA_complex_] = ACTIONS(235), + [anon_sym_NA_character_] = ACTIONS(235), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(237), + [sym__semicolon] = ACTIONS(237), + [sym__raw_string_literal] = ACTIONS(237), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(237), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [171] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(163), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(165), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), + [185] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(237), + [sym_identifier] = ACTIONS(235), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_repeat] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(237), + [anon_sym_BANG] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(237), + [anon_sym_LT_LT_DASH] = ACTIONS(237), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DASH_GT_GT] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(237), + [sym__number_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym_dots] = ACTIONS(235), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(235), + [sym_next] = ACTIONS(235), + [sym_break] = ACTIONS(235), + [sym_true] = ACTIONS(235), + [sym_false] = ACTIONS(235), + [sym_null] = ACTIONS(235), + [sym_inf] = ACTIONS(235), + [sym_nan] = ACTIONS(235), + [anon_sym_NA] = ACTIONS(235), + [anon_sym_NA_integer_] = ACTIONS(235), + [anon_sym_NA_real_] = ACTIONS(235), + [anon_sym_NA_complex_] = ACTIONS(235), + [anon_sym_NA_character_] = ACTIONS(235), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(237), + [sym__semicolon] = ACTIONS(237), + [sym__raw_string_literal] = ACTIONS(237), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(237), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [172] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(163), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(165), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), + [186] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(237), + [sym_identifier] = ACTIONS(235), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_repeat] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(237), + [anon_sym_BANG] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(237), + [anon_sym_LT_LT_DASH] = ACTIONS(237), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DASH_GT_GT] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(237), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(237), + [anon_sym_PIPE_GT] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(237), + [sym__number_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym_dots] = ACTIONS(235), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(235), + [sym_next] = ACTIONS(235), + [sym_break] = ACTIONS(235), + [sym_true] = ACTIONS(235), + [sym_false] = ACTIONS(235), + [sym_null] = ACTIONS(235), + [sym_inf] = ACTIONS(235), + [sym_nan] = ACTIONS(235), + [anon_sym_NA] = ACTIONS(235), + [anon_sym_NA_integer_] = ACTIONS(235), + [anon_sym_NA_real_] = ACTIONS(235), + [anon_sym_NA_complex_] = ACTIONS(235), + [anon_sym_NA_character_] = ACTIONS(235), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(237), + [sym__semicolon] = ACTIONS(237), + [sym__raw_string_literal] = ACTIONS(237), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(237), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [173] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(163), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(165), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), + [187] = { + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(341), + [anon_sym_BSLASH] = ACTIONS(343), + [anon_sym_function] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(341), + [anon_sym_for] = ACTIONS(341), + [anon_sym_while] = ACTIONS(341), + [anon_sym_repeat] = ACTIONS(341), + [anon_sym_QMARK] = ACTIONS(345), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(343), + [sym__number_literal] = ACTIONS(341), + [anon_sym_SQUOTE] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [sym_dots] = ACTIONS(341), + [sym_dot_dot_i] = ACTIONS(341), + [sym_return] = ACTIONS(341), + [sym_next] = ACTIONS(341), + [sym_break] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_null] = ACTIONS(341), + [sym_inf] = ACTIONS(341), + [sym_nan] = ACTIONS(341), + [anon_sym_NA] = ACTIONS(341), + [anon_sym_NA_integer_] = ACTIONS(341), + [anon_sym_NA_real_] = ACTIONS(341), + [anon_sym_NA_complex_] = ACTIONS(341), + [anon_sym_NA_character_] = ACTIONS(341), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(343), + [sym__semicolon] = ACTIONS(343), + [sym__raw_string_literal] = ACTIONS(343), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(343), + [sym__external_close_brace] = ACTIONS(343), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, - [174] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(163), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(165), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), + [188] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(241), + [sym_identifier] = ACTIONS(239), + [anon_sym_BSLASH] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_if] = ACTIONS(239), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_repeat] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(241), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(241), + [sym__number_literal] = ACTIONS(239), + [anon_sym_SQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(241), + [sym_dots] = ACTIONS(239), + [sym_dot_dot_i] = ACTIONS(239), + [sym_return] = ACTIONS(239), + [sym_next] = ACTIONS(239), + [sym_break] = ACTIONS(239), + [sym_true] = ACTIONS(239), + [sym_false] = ACTIONS(239), + [sym_null] = ACTIONS(239), + [sym_inf] = ACTIONS(239), + [sym_nan] = ACTIONS(239), + [anon_sym_NA] = ACTIONS(239), + [anon_sym_NA_integer_] = ACTIONS(239), + [anon_sym_NA_real_] = ACTIONS(239), + [anon_sym_NA_complex_] = ACTIONS(239), + [anon_sym_NA_character_] = ACTIONS(239), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(241), + [sym__semicolon] = ACTIONS(241), + [sym__raw_string_literal] = ACTIONS(241), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(241), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [175] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(163), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(165), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), + [189] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(245), + [sym_identifier] = ACTIONS(243), + [anon_sym_BSLASH] = ACTIONS(245), + [anon_sym_function] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_if] = ACTIONS(243), + [anon_sym_for] = ACTIONS(243), + [anon_sym_while] = ACTIONS(243), + [anon_sym_repeat] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(245), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(245), + [sym__number_literal] = ACTIONS(243), + [anon_sym_SQUOTE] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(245), + [sym_dots] = ACTIONS(243), + [sym_dot_dot_i] = ACTIONS(243), + [sym_return] = ACTIONS(243), + [sym_next] = ACTIONS(243), + [sym_break] = ACTIONS(243), + [sym_true] = ACTIONS(243), + [sym_false] = ACTIONS(243), + [sym_null] = ACTIONS(243), + [sym_inf] = ACTIONS(243), + [sym_nan] = ACTIONS(243), + [anon_sym_NA] = ACTIONS(243), + [anon_sym_NA_integer_] = ACTIONS(243), + [anon_sym_NA_real_] = ACTIONS(243), + [anon_sym_NA_complex_] = ACTIONS(243), + [anon_sym_NA_character_] = ACTIONS(243), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(245), + [sym__semicolon] = ACTIONS(245), + [sym__raw_string_literal] = ACTIONS(245), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(245), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [176] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(163), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(163), - [anon_sym_PIPE_GT] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(165), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), + [190] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(147), + [sym_identifier] = ACTIONS(149), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(149), + [anon_sym_while] = ACTIONS(149), + [anon_sym_repeat] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(147), + [sym__number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym_dots] = ACTIONS(149), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(149), + [sym_next] = ACTIONS(149), + [sym_break] = ACTIONS(149), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [sym_null] = ACTIONS(149), + [sym_inf] = ACTIONS(149), + [sym_nan] = ACTIONS(149), + [anon_sym_NA] = ACTIONS(149), + [anon_sym_NA_integer_] = ACTIONS(149), + [anon_sym_NA_real_] = ACTIONS(149), + [anon_sym_NA_complex_] = ACTIONS(149), + [anon_sym_NA_character_] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(147), + [sym__semicolon] = ACTIONS(147), + [sym__raw_string_literal] = ACTIONS(147), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(147), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [177] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(163), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(163), - [anon_sym_PIPE_GT] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(165), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), + [191] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(147), + [sym_identifier] = ACTIONS(149), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(149), + [anon_sym_while] = ACTIONS(149), + [anon_sym_repeat] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(147), + [anon_sym_LT_LT_DASH] = ACTIONS(147), + [anon_sym_COLON_EQ] = ACTIONS(147), + [anon_sym_DASH_GT] = ACTIONS(149), + [anon_sym_DASH_GT_GT] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(147), + [sym__number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym_dots] = ACTIONS(149), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(149), + [sym_next] = ACTIONS(149), + [sym_break] = ACTIONS(149), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [sym_null] = ACTIONS(149), + [sym_inf] = ACTIONS(149), + [sym_nan] = ACTIONS(149), + [anon_sym_NA] = ACTIONS(149), + [anon_sym_NA_integer_] = ACTIONS(149), + [anon_sym_NA_real_] = ACTIONS(149), + [anon_sym_NA_complex_] = ACTIONS(149), + [anon_sym_NA_character_] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(147), + [sym__semicolon] = ACTIONS(147), + [sym__raw_string_literal] = ACTIONS(147), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(147), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [178] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(163), - [sym_identifier] = ACTIONS(165), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_if] = ACTIONS(165), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(165), - [anon_sym_repeat] = ACTIONS(165), - [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_LT_DASH] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(163), - [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(163), - [anon_sym_EQ_EQ] = ACTIONS(163), - [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(163), - [anon_sym_PIPE_GT] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(163), - [sym__number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_dots] = ACTIONS(165), - [sym_dot_dot_i] = ACTIONS(165), - [sym_return] = ACTIONS(165), - [sym_next] = ACTIONS(165), - [sym_break] = ACTIONS(165), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [sym_null] = ACTIONS(165), - [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), + [192] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(147), + [sym_identifier] = ACTIONS(149), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(149), + [anon_sym_while] = ACTIONS(149), + [anon_sym_repeat] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(147), + [anon_sym_LT_LT_DASH] = ACTIONS(147), + [anon_sym_COLON_EQ] = ACTIONS(147), + [anon_sym_DASH_GT] = ACTIONS(149), + [anon_sym_DASH_GT_GT] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(149), + [anon_sym_PIPE_PIPE] = ACTIONS(147), + [anon_sym_AMP_AMP] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(147), + [sym__number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym_dots] = ACTIONS(149), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(149), + [sym_next] = ACTIONS(149), + [sym_break] = ACTIONS(149), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [sym_null] = ACTIONS(149), + [sym_inf] = ACTIONS(149), + [sym_nan] = ACTIONS(149), + [anon_sym_NA] = ACTIONS(149), + [anon_sym_NA_integer_] = ACTIONS(149), + [anon_sym_NA_real_] = ACTIONS(149), + [anon_sym_NA_complex_] = ACTIONS(149), + [anon_sym_NA_character_] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(147), + [sym__semicolon] = ACTIONS(147), + [sym__raw_string_literal] = ACTIONS(147), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(147), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [179] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [193] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(147), + [sym_identifier] = ACTIONS(149), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(149), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(149), + [anon_sym_while] = ACTIONS(149), + [anon_sym_repeat] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_LT_DASH] = ACTIONS(147), + [anon_sym_LT_LT_DASH] = ACTIONS(147), + [anon_sym_COLON_EQ] = ACTIONS(147), + [anon_sym_DASH_GT] = ACTIONS(149), + [anon_sym_DASH_GT_GT] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(149), + [anon_sym_PIPE_PIPE] = ACTIONS(147), + [anon_sym_AMP_AMP] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(147), + [anon_sym_PIPE_GT] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(147), + [sym__number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(147), + [sym_dots] = ACTIONS(149), + [sym_dot_dot_i] = ACTIONS(149), + [sym_return] = ACTIONS(149), + [sym_next] = ACTIONS(149), + [sym_break] = ACTIONS(149), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), + [sym_null] = ACTIONS(149), + [sym_inf] = ACTIONS(149), + [sym_nan] = ACTIONS(149), + [anon_sym_NA] = ACTIONS(149), + [anon_sym_NA_integer_] = ACTIONS(149), + [anon_sym_NA_real_] = ACTIONS(149), + [anon_sym_NA_complex_] = ACTIONS(149), + [anon_sym_NA_character_] = ACTIONS(149), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(147), + [sym__semicolon] = ACTIONS(147), + [sym__raw_string_literal] = ACTIONS(147), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(147), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), + }, + [194] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), + }, + [195] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), + }, + [196] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -19693,32 +20935,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), [anon_sym_DASH_GT] = ACTIONS(153), [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ] = ACTIONS(151), - [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -19742,19 +20984,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [180] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), + [197] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), @@ -19784,15 +21025,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -19816,18 +21057,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [181] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [198] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), + }, + [199] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(151), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), + }, + [200] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -19839,32 +21227,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), [anon_sym_DASH_GT] = ACTIONS(153), [anon_sym_DASH_GT_GT] = ACTIONS(151), [anon_sym_PIPE] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(331), [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ] = ACTIONS(151), - [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -19888,19 +21276,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [182] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), + [201] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), @@ -19913,32 +21300,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), [anon_sym_LT_DASH] = ACTIONS(151), [anon_sym_LT_LT_DASH] = ACTIONS(151), [anon_sym_COLON_EQ] = ACTIONS(151), [anon_sym_DASH_GT] = ACTIONS(153), [anon_sym_DASH_GT_GT] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -19962,18 +21349,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [183] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [202] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -20004,13 +21392,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(151), - [anon_sym_PIPE_GT] = ACTIONS(151), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -20034,19 +21422,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [184] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [203] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -20077,13 +21465,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -20107,19 +21495,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [185] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [204] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), @@ -20150,13 +21538,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(153), [anon_sym_SLASH] = ACTIONS(151), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), [aux_sym_binary_operator_token1] = ACTIONS(151), [anon_sym_PIPE_GT] = ACTIONS(151), - [anon_sym_COLON] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -20180,130 +21568,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(151), - [sym__external_close_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [186] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(149), - [sym_identifier] = ACTIONS(147), - [anon_sym_BSLASH] = ACTIONS(149), - [anon_sym_function] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_if] = ACTIONS(147), - [anon_sym_for] = ACTIONS(147), - [anon_sym_while] = ACTIONS(147), - [anon_sym_repeat] = ACTIONS(147), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_LT_DASH] = ACTIONS(149), - [anon_sym_LT_LT_DASH] = ACTIONS(149), - [anon_sym_COLON_EQ] = ACTIONS(149), - [anon_sym_DASH_GT] = ACTIONS(147), - [anon_sym_DASH_GT_GT] = ACTIONS(149), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(149), - [anon_sym_AMP_AMP] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(149), - [anon_sym_PIPE_GT] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(149), - [sym__number_literal] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(149), - [sym_dots] = ACTIONS(147), - [sym_dot_dot_i] = ACTIONS(147), - [sym_return] = ACTIONS(147), - [sym_next] = ACTIONS(147), - [sym_break] = ACTIONS(147), - [sym_true] = ACTIONS(147), - [sym_false] = ACTIONS(147), - [sym_null] = ACTIONS(147), - [sym_inf] = ACTIONS(147), - [sym_nan] = ACTIONS(147), - [anon_sym_NA] = ACTIONS(147), - [anon_sym_NA_integer_] = ACTIONS(147), - [anon_sym_NA_real_] = ACTIONS(147), - [anon_sym_NA_complex_] = ACTIONS(147), - [anon_sym_NA_character_] = ACTIONS(147), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(149), - [sym__semicolon] = ACTIONS(149), - [sym__raw_string_literal] = ACTIONS(149), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(149), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [187] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), + [205] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(153), [anon_sym_BSLASH] = ACTIONS(151), [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(153), [anon_sym_if] = ACTIONS(153), [anon_sym_for] = ACTIONS(153), [anon_sym_while] = ACTIONS(153), [anon_sym_repeat] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_COLON_EQ] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(153), + [anon_sym_DASH_GT_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(151), + [anon_sym_PIPE_GT] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(151), [sym__number_literal] = ACTIONS(153), [anon_sym_SQUOTE] = ACTIONS(151), @@ -20327,55 +21641,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(151), [sym__semicolon] = ACTIONS(151), [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [188] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [206] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(155), [sym_identifier] = ACTIONS(157), [anon_sym_BSLASH] = ACTIONS(155), [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(157), [anon_sym_for] = ACTIONS(157), [anon_sym_while] = ACTIONS(157), [anon_sym_repeat] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(155), - [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(155), [sym__number_literal] = ACTIONS(157), [anon_sym_SQUOTE] = ACTIONS(155), @@ -20399,56 +21714,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(155), [sym__semicolon] = ACTIONS(155), [sym__raw_string_literal] = ACTIONS(155), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(155), - [sym__external_close_brace] = ACTIONS(155), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [189] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [207] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(159), [sym_identifier] = ACTIONS(161), [anon_sym_BSLASH] = ACTIONS(159), [anon_sym_function] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(161), [anon_sym_for] = ACTIONS(161), [anon_sym_while] = ACTIONS(161), [anon_sym_repeat] = ACTIONS(161), [anon_sym_QMARK] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(159), [sym__number_literal] = ACTIONS(161), [anon_sym_SQUOTE] = ACTIONS(159), @@ -20472,56 +21787,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(159), [sym__semicolon] = ACTIONS(159), [sym__raw_string_literal] = ACTIONS(159), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(159), - [sym__external_close_brace] = ACTIONS(159), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [190] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [208] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -20545,56 +21860,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [191] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [209] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -20608,102 +21923,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(165), [sym_null] = ACTIONS(165), [sym_inf] = ACTIONS(165), - [sym_nan] = ACTIONS(165), - [anon_sym_NA] = ACTIONS(165), - [anon_sym_NA_integer_] = ACTIONS(165), - [anon_sym_NA_real_] = ACTIONS(165), - [anon_sym_NA_complex_] = ACTIONS(165), - [anon_sym_NA_character_] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(163), - [sym__semicolon] = ACTIONS(163), - [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [192] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(151), - [sym_identifier] = ACTIONS(153), - [anon_sym_BSLASH] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(153), - [anon_sym_while] = ACTIONS(153), - [anon_sym_repeat] = ACTIONS(153), - [anon_sym_QMARK] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(151), - [anon_sym_LT_LT_DASH] = ACTIONS(151), - [anon_sym_COLON_EQ] = ACTIONS(151), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(151), - [sym__number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(151), - [sym_dots] = ACTIONS(153), - [sym_dot_dot_i] = ACTIONS(153), - [sym_return] = ACTIONS(153), - [sym_next] = ACTIONS(153), - [sym_break] = ACTIONS(153), - [sym_true] = ACTIONS(153), - [sym_false] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [sym_inf] = ACTIONS(153), - [sym_nan] = ACTIONS(153), - [anon_sym_NA] = ACTIONS(153), - [anon_sym_NA_integer_] = ACTIONS(153), - [anon_sym_NA_real_] = ACTIONS(153), - [anon_sym_NA_complex_] = ACTIONS(153), - [anon_sym_NA_character_] = ACTIONS(153), + [sym_nan] = ACTIONS(165), + [anon_sym_NA] = ACTIONS(165), + [anon_sym_NA_integer_] = ACTIONS(165), + [anon_sym_NA_real_] = ACTIONS(165), + [anon_sym_NA_complex_] = ACTIONS(165), + [anon_sym_NA_character_] = ACTIONS(165), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), - [sym__semicolon] = ACTIONS(151), - [sym__raw_string_literal] = ACTIONS(151), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(151), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(163), + [sym__semicolon] = ACTIONS(163), + [sym__raw_string_literal] = ACTIONS(163), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(163), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [193] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [210] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -20715,32 +21957,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -20764,19 +22006,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [194] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [211] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -20805,15 +22047,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(163), [anon_sym_EQ_EQ] = ACTIONS(163), [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -20837,56 +22079,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [195] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [212] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(165), [anon_sym_for] = ACTIONS(165), [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -20910,92 +22152,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [196] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(167), - [sym_identifier] = ACTIONS(169), - [anon_sym_BSLASH] = ACTIONS(167), - [anon_sym_function] = ACTIONS(169), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(169), - [anon_sym_for] = ACTIONS(169), - [anon_sym_while] = ACTIONS(169), - [anon_sym_repeat] = ACTIONS(169), - [anon_sym_QMARK] = ACTIONS(167), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(167), - [sym__number_literal] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(167), - [sym_dots] = ACTIONS(169), - [sym_dot_dot_i] = ACTIONS(169), - [sym_return] = ACTIONS(169), - [sym_next] = ACTIONS(169), - [sym_break] = ACTIONS(169), - [sym_true] = ACTIONS(169), - [sym_false] = ACTIONS(169), - [sym_null] = ACTIONS(169), - [sym_inf] = ACTIONS(169), - [sym_nan] = ACTIONS(169), - [anon_sym_NA] = ACTIONS(169), - [anon_sym_NA_integer_] = ACTIONS(169), - [anon_sym_NA_real_] = ACTIONS(169), - [anon_sym_NA_complex_] = ACTIONS(169), - [anon_sym_NA_character_] = ACTIONS(169), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(167), - [sym__semicolon] = ACTIONS(167), - [sym__raw_string_literal] = ACTIONS(167), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(167), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [197] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [213] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -21005,34 +22174,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(165), [anon_sym_repeat] = ACTIONS(165), [anon_sym_QMARK] = ACTIONS(163), - [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -21056,19 +22225,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [198] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [214] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -21080,32 +22249,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), [anon_sym_DASH_GT] = ACTIONS(165), [anon_sym_DASH_GT_GT] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(331), [anon_sym_PIPE_PIPE] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -21129,457 +22298,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [199] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(241), - [anon_sym_BSLASH] = ACTIONS(239), - [anon_sym_function] = ACTIONS(241), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(241), - [anon_sym_for] = ACTIONS(241), - [anon_sym_while] = ACTIONS(241), - [anon_sym_repeat] = ACTIONS(241), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(239), - [sym__number_literal] = ACTIONS(241), - [anon_sym_SQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE] = ACTIONS(239), - [sym_dots] = ACTIONS(241), - [sym_dot_dot_i] = ACTIONS(241), - [sym_return] = ACTIONS(241), - [sym_next] = ACTIONS(241), - [sym_break] = ACTIONS(241), - [sym_true] = ACTIONS(241), - [sym_false] = ACTIONS(241), - [sym_null] = ACTIONS(241), - [sym_inf] = ACTIONS(241), - [sym_nan] = ACTIONS(241), - [anon_sym_NA] = ACTIONS(241), - [anon_sym_NA_integer_] = ACTIONS(241), - [anon_sym_NA_real_] = ACTIONS(241), - [anon_sym_NA_complex_] = ACTIONS(241), - [anon_sym_NA_character_] = ACTIONS(241), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(239), - [sym__semicolon] = ACTIONS(239), - [sym__raw_string_literal] = ACTIONS(239), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(239), - [sym__external_close_brace] = ACTIONS(239), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [200] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(237), - [anon_sym_BSLASH] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(237), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_repeat] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(235), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(235), - [sym__number_literal] = ACTIONS(237), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_dots] = ACTIONS(237), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(237), - [sym_next] = ACTIONS(237), - [sym_break] = ACTIONS(237), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [sym_null] = ACTIONS(237), - [sym_inf] = ACTIONS(237), - [sym_nan] = ACTIONS(237), - [anon_sym_NA] = ACTIONS(237), - [anon_sym_NA_integer_] = ACTIONS(237), - [anon_sym_NA_real_] = ACTIONS(237), - [anon_sym_NA_complex_] = ACTIONS(237), - [anon_sym_NA_character_] = ACTIONS(237), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(235), - [sym__semicolon] = ACTIONS(235), - [sym__raw_string_literal] = ACTIONS(235), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(235), - [sym__external_close_brace] = ACTIONS(235), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [201] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(199), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_LT_DASH] = ACTIONS(199), - [anon_sym_LT_LT_DASH] = ACTIONS(199), - [anon_sym_COLON_EQ] = ACTIONS(199), - [anon_sym_DASH_GT] = ACTIONS(201), - [anon_sym_DASH_GT_GT] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(201), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(199), - [anon_sym_EQ_EQ] = ACTIONS(199), - [anon_sym_BANG_EQ] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(199), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(199), - [anon_sym_PIPE_GT] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(201), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [202] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(171), - [sym_identifier] = ACTIONS(173), - [anon_sym_BSLASH] = ACTIONS(171), - [anon_sym_function] = ACTIONS(173), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(173), - [anon_sym_for] = ACTIONS(173), - [anon_sym_while] = ACTIONS(173), - [anon_sym_repeat] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(171), - [sym__number_literal] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym_dots] = ACTIONS(173), - [sym_dot_dot_i] = ACTIONS(173), - [sym_return] = ACTIONS(173), - [sym_next] = ACTIONS(173), - [sym_break] = ACTIONS(173), - [sym_true] = ACTIONS(173), - [sym_false] = ACTIONS(173), - [sym_null] = ACTIONS(173), - [sym_inf] = ACTIONS(173), - [sym_nan] = ACTIONS(173), - [anon_sym_NA] = ACTIONS(173), - [anon_sym_NA_integer_] = ACTIONS(173), - [anon_sym_NA_real_] = ACTIONS(173), - [anon_sym_NA_complex_] = ACTIONS(173), - [anon_sym_NA_character_] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(171), - [sym__semicolon] = ACTIONS(171), - [sym__raw_string_literal] = ACTIONS(171), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(171), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [203] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(199), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(199), - [anon_sym_LT_LT_DASH] = ACTIONS(199), - [anon_sym_COLON_EQ] = ACTIONS(199), - [anon_sym_DASH_GT] = ACTIONS(201), - [anon_sym_DASH_GT_GT] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(201), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(201), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [204] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(199), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(199), - [anon_sym_LT_LT_DASH] = ACTIONS(199), - [anon_sym_COLON_EQ] = ACTIONS(199), - [anon_sym_DASH_GT] = ACTIONS(201), - [anon_sym_DASH_GT_GT] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(201), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [205] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [215] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -21591,8 +22322,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), @@ -21602,21 +22333,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(165), [anon_sym_PIPE_PIPE] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -21640,92 +22371,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [206] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(199), - [sym_identifier] = ACTIONS(201), - [anon_sym_BSLASH] = ACTIONS(199), - [anon_sym_function] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(201), - [anon_sym_for] = ACTIONS(201), - [anon_sym_while] = ACTIONS(201), - [anon_sym_repeat] = ACTIONS(201), - [anon_sym_QMARK] = ACTIONS(199), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(199), - [sym__number_literal] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym_dots] = ACTIONS(201), - [sym_dot_dot_i] = ACTIONS(201), - [sym_return] = ACTIONS(201), - [sym_next] = ACTIONS(201), - [sym_break] = ACTIONS(201), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_inf] = ACTIONS(201), - [sym_nan] = ACTIONS(201), - [anon_sym_NA] = ACTIONS(201), - [anon_sym_NA_integer_] = ACTIONS(201), - [anon_sym_NA_real_] = ACTIONS(201), - [anon_sym_NA_complex_] = ACTIONS(201), - [anon_sym_NA_character_] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - [sym__semicolon] = ACTIONS(199), - [sym__raw_string_literal] = ACTIONS(199), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(199), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [207] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [216] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -21737,8 +22395,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(163), [anon_sym_TILDE] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), [anon_sym_LT_DASH] = ACTIONS(163), [anon_sym_LT_LT_DASH] = ACTIONS(163), [anon_sym_COLON_EQ] = ACTIONS(163), @@ -21754,15 +22412,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(163), [anon_sym_EQ_EQ] = ACTIONS(163), [anon_sym_BANG_EQ] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -21786,19 +22444,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [208] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [217] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -21829,13 +22487,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -21859,92 +22517,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [209] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(203), - [sym_identifier] = ACTIONS(205), - [anon_sym_BSLASH] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(205), - [anon_sym_for] = ACTIONS(205), - [anon_sym_while] = ACTIONS(205), - [anon_sym_repeat] = ACTIONS(205), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(203), - [sym__number_literal] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE] = ACTIONS(203), - [sym_dots] = ACTIONS(205), - [sym_dot_dot_i] = ACTIONS(205), - [sym_return] = ACTIONS(205), - [sym_next] = ACTIONS(205), - [sym_break] = ACTIONS(205), - [sym_true] = ACTIONS(205), - [sym_false] = ACTIONS(205), - [sym_null] = ACTIONS(205), - [sym_inf] = ACTIONS(205), - [sym_nan] = ACTIONS(205), - [anon_sym_NA] = ACTIONS(205), - [anon_sym_NA_integer_] = ACTIONS(205), - [anon_sym_NA_real_] = ACTIONS(205), - [anon_sym_NA_complex_] = ACTIONS(205), - [anon_sym_NA_character_] = ACTIONS(205), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(203), - [sym__semicolon] = ACTIONS(203), - [sym__raw_string_literal] = ACTIONS(203), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(203), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [210] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [218] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -21975,13 +22560,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), [aux_sym_binary_operator_token1] = ACTIONS(163), [anon_sym_PIPE_GT] = ACTIONS(163), [anon_sym_COLON] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -22005,92 +22590,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [211] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(207), - [sym_identifier] = ACTIONS(209), - [anon_sym_BSLASH] = ACTIONS(207), - [anon_sym_function] = ACTIONS(209), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(209), - [anon_sym_for] = ACTIONS(209), - [anon_sym_while] = ACTIONS(209), - [anon_sym_repeat] = ACTIONS(209), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(207), - [sym__number_literal] = ACTIONS(209), - [anon_sym_SQUOTE] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(207), - [sym_dots] = ACTIONS(209), - [sym_dot_dot_i] = ACTIONS(209), - [sym_return] = ACTIONS(209), - [sym_next] = ACTIONS(209), - [sym_break] = ACTIONS(209), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_null] = ACTIONS(209), - [sym_inf] = ACTIONS(209), - [sym_nan] = ACTIONS(209), - [anon_sym_NA] = ACTIONS(209), - [anon_sym_NA_integer_] = ACTIONS(209), - [anon_sym_NA_real_] = ACTIONS(209), - [anon_sym_NA_complex_] = ACTIONS(209), - [anon_sym_NA_character_] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(207), - [sym__semicolon] = ACTIONS(207), - [sym__raw_string_literal] = ACTIONS(207), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(207), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [212] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [219] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -22121,13 +22633,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), [aux_sym_binary_operator_token1] = ACTIONS(163), [anon_sym_PIPE_GT] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -22151,19 +22663,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [213] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [220] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(163), [sym_identifier] = ACTIONS(165), [anon_sym_BSLASH] = ACTIONS(163), [anon_sym_function] = ACTIONS(165), @@ -22194,13 +22706,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), [aux_sym_binary_operator_token1] = ACTIONS(163), [anon_sym_PIPE_GT] = ACTIONS(163), [anon_sym_COLON] = ACTIONS(165), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(163), [sym__number_literal] = ACTIONS(165), [anon_sym_SQUOTE] = ACTIONS(163), @@ -22224,56 +22736,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(163), [sym__semicolon] = ACTIONS(163), [sym__raw_string_literal] = ACTIONS(163), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(163), - [sym__external_close_brace] = ACTIONS(163), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [214] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [221] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(167), [sym_identifier] = ACTIONS(169), [anon_sym_BSLASH] = ACTIONS(167), [anon_sym_function] = ACTIONS(169), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(169), [anon_sym_for] = ACTIONS(169), [anon_sym_while] = ACTIONS(169), [anon_sym_repeat] = ACTIONS(169), [anon_sym_QMARK] = ACTIONS(167), - [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(167), [sym__number_literal] = ACTIONS(169), [anon_sym_SQUOTE] = ACTIONS(167), @@ -22297,348 +22809,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(167), [sym__semicolon] = ACTIONS(167), [sym__raw_string_literal] = ACTIONS(167), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(167), - [sym__external_close_brace] = ACTIONS(167), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [215] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(175), - [sym_identifier] = ACTIONS(177), - [anon_sym_BSLASH] = ACTIONS(175), - [anon_sym_function] = ACTIONS(177), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(177), - [anon_sym_for] = ACTIONS(177), - [anon_sym_while] = ACTIONS(177), - [anon_sym_repeat] = ACTIONS(177), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(175), - [sym__number_literal] = ACTIONS(177), - [anon_sym_SQUOTE] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(175), - [sym_dots] = ACTIONS(177), - [sym_dot_dot_i] = ACTIONS(177), - [sym_return] = ACTIONS(177), - [sym_next] = ACTIONS(177), - [sym_break] = ACTIONS(177), - [sym_true] = ACTIONS(177), - [sym_false] = ACTIONS(177), - [sym_null] = ACTIONS(177), - [sym_inf] = ACTIONS(177), - [sym_nan] = ACTIONS(177), - [anon_sym_NA] = ACTIONS(177), - [anon_sym_NA_integer_] = ACTIONS(177), - [anon_sym_NA_real_] = ACTIONS(177), - [anon_sym_NA_complex_] = ACTIONS(177), - [anon_sym_NA_character_] = ACTIONS(177), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(175), - [sym__semicolon] = ACTIONS(175), - [sym__raw_string_literal] = ACTIONS(175), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(175), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [216] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(179), - [sym_identifier] = ACTIONS(181), - [anon_sym_BSLASH] = ACTIONS(179), - [anon_sym_function] = ACTIONS(181), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(181), - [anon_sym_for] = ACTIONS(181), - [anon_sym_while] = ACTIONS(181), - [anon_sym_repeat] = ACTIONS(181), - [anon_sym_QMARK] = ACTIONS(179), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(181), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(179), - [sym__number_literal] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(179), - [sym_dots] = ACTIONS(181), - [sym_dot_dot_i] = ACTIONS(181), - [sym_return] = ACTIONS(181), - [sym_next] = ACTIONS(181), - [sym_break] = ACTIONS(181), - [sym_true] = ACTIONS(181), - [sym_false] = ACTIONS(181), - [sym_null] = ACTIONS(181), - [sym_inf] = ACTIONS(181), - [sym_nan] = ACTIONS(181), - [anon_sym_NA] = ACTIONS(181), - [anon_sym_NA_integer_] = ACTIONS(181), - [anon_sym_NA_real_] = ACTIONS(181), - [anon_sym_NA_complex_] = ACTIONS(181), - [anon_sym_NA_character_] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(179), - [sym__semicolon] = ACTIONS(179), - [sym__raw_string_literal] = ACTIONS(179), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(179), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [217] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(233), - [anon_sym_BSLASH] = ACTIONS(231), - [anon_sym_function] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(233), - [anon_sym_for] = ACTIONS(233), - [anon_sym_while] = ACTIONS(233), - [anon_sym_repeat] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(231), - [sym__number_literal] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_dots] = ACTIONS(233), - [sym_dot_dot_i] = ACTIONS(233), - [sym_return] = ACTIONS(233), - [sym_next] = ACTIONS(233), - [sym_break] = ACTIONS(233), - [sym_true] = ACTIONS(233), - [sym_false] = ACTIONS(233), - [sym_null] = ACTIONS(233), - [sym_inf] = ACTIONS(233), - [sym_nan] = ACTIONS(233), - [anon_sym_NA] = ACTIONS(233), - [anon_sym_NA_integer_] = ACTIONS(233), - [anon_sym_NA_real_] = ACTIONS(233), - [anon_sym_NA_complex_] = ACTIONS(233), - [anon_sym_NA_character_] = ACTIONS(233), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(231), - [sym__semicolon] = ACTIONS(231), - [sym__raw_string_literal] = ACTIONS(231), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(231), - [sym__external_close_brace] = ACTIONS(231), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [218] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(229), - [anon_sym_BSLASH] = ACTIONS(227), - [anon_sym_function] = ACTIONS(229), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(229), - [anon_sym_for] = ACTIONS(229), - [anon_sym_while] = ACTIONS(229), - [anon_sym_repeat] = ACTIONS(229), - [anon_sym_QMARK] = ACTIONS(227), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(227), - [sym__number_literal] = ACTIONS(229), - [anon_sym_SQUOTE] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(227), - [sym_dots] = ACTIONS(229), - [sym_dot_dot_i] = ACTIONS(229), - [sym_return] = ACTIONS(229), - [sym_next] = ACTIONS(229), - [sym_break] = ACTIONS(229), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [sym_null] = ACTIONS(229), - [sym_inf] = ACTIONS(229), - [sym_nan] = ACTIONS(229), - [anon_sym_NA] = ACTIONS(229), - [anon_sym_NA_integer_] = ACTIONS(229), - [anon_sym_NA_real_] = ACTIONS(229), - [anon_sym_NA_complex_] = ACTIONS(229), - [anon_sym_NA_character_] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), - [sym__semicolon] = ACTIONS(227), - [sym__raw_string_literal] = ACTIONS(227), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(227), - [sym__external_close_brace] = ACTIONS(227), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [219] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [222] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(171), [sym_identifier] = ACTIONS(173), [anon_sym_BSLASH] = ACTIONS(171), [anon_sym_function] = ACTIONS(173), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(173), [anon_sym_for] = ACTIONS(173), [anon_sym_while] = ACTIONS(173), [anon_sym_repeat] = ACTIONS(173), [anon_sym_QMARK] = ACTIONS(171), - [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(171), [sym__number_literal] = ACTIONS(173), [anon_sym_SQUOTE] = ACTIONS(171), @@ -22652,139 +22872,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(173), [sym_null] = ACTIONS(173), [sym_inf] = ACTIONS(173), - [sym_nan] = ACTIONS(173), - [anon_sym_NA] = ACTIONS(173), - [anon_sym_NA_integer_] = ACTIONS(173), - [anon_sym_NA_real_] = ACTIONS(173), - [anon_sym_NA_complex_] = ACTIONS(173), - [anon_sym_NA_character_] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(171), - [sym__semicolon] = ACTIONS(171), - [sym__raw_string_literal] = ACTIONS(171), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(171), - [sym__external_close_brace] = ACTIONS(171), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [220] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(225), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_function] = ACTIONS(225), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(225), - [anon_sym_for] = ACTIONS(225), - [anon_sym_while] = ACTIONS(225), - [anon_sym_repeat] = ACTIONS(225), - [anon_sym_QMARK] = ACTIONS(223), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(223), - [sym__number_literal] = ACTIONS(225), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_dots] = ACTIONS(225), - [sym_dot_dot_i] = ACTIONS(225), - [sym_return] = ACTIONS(225), - [sym_next] = ACTIONS(225), - [sym_break] = ACTIONS(225), - [sym_true] = ACTIONS(225), - [sym_false] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [sym_inf] = ACTIONS(225), - [sym_nan] = ACTIONS(225), - [anon_sym_NA] = ACTIONS(225), - [anon_sym_NA_integer_] = ACTIONS(225), - [anon_sym_NA_real_] = ACTIONS(225), - [anon_sym_NA_complex_] = ACTIONS(225), - [anon_sym_NA_character_] = ACTIONS(225), + [sym_nan] = ACTIONS(173), + [anon_sym_NA] = ACTIONS(173), + [anon_sym_NA_integer_] = ACTIONS(173), + [anon_sym_NA_real_] = ACTIONS(173), + [anon_sym_NA_complex_] = ACTIONS(173), + [anon_sym_NA_character_] = ACTIONS(173), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(223), - [sym__semicolon] = ACTIONS(223), - [sym__raw_string_literal] = ACTIONS(223), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(223), - [sym__external_close_brace] = ACTIONS(223), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__newline] = ACTIONS(171), + [sym__semicolon] = ACTIONS(171), + [sym__raw_string_literal] = ACTIONS(171), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(171), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [221] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [223] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(175), [sym_identifier] = ACTIONS(177), [anon_sym_BSLASH] = ACTIONS(175), [anon_sym_function] = ACTIONS(177), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(177), [anon_sym_for] = ACTIONS(177), [anon_sym_while] = ACTIONS(177), [anon_sym_repeat] = ACTIONS(177), [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(175), [sym__number_literal] = ACTIONS(177), [anon_sym_SQUOTE] = ACTIONS(175), @@ -22808,56 +22955,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(175), [sym__semicolon] = ACTIONS(175), [sym__raw_string_literal] = ACTIONS(175), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(175), - [sym__external_close_brace] = ACTIONS(175), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [222] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [224] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(179), [sym_identifier] = ACTIONS(181), [anon_sym_BSLASH] = ACTIONS(179), [anon_sym_function] = ACTIONS(181), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(181), [anon_sym_for] = ACTIONS(181), [anon_sym_while] = ACTIONS(181), [anon_sym_repeat] = ACTIONS(181), [anon_sym_QMARK] = ACTIONS(179), - [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(181), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(179), [sym__number_literal] = ACTIONS(181), [anon_sym_SQUOTE] = ACTIONS(179), @@ -22881,202 +23028,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(179), [sym__semicolon] = ACTIONS(179), [sym__raw_string_literal] = ACTIONS(179), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(179), - [sym__external_close_brace] = ACTIONS(179), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [223] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(187), - [sym_identifier] = ACTIONS(189), - [anon_sym_BSLASH] = ACTIONS(187), - [anon_sym_function] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(189), - [anon_sym_for] = ACTIONS(189), - [anon_sym_while] = ACTIONS(189), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(187), - [sym__number_literal] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(187), - [sym_dots] = ACTIONS(189), - [sym_dot_dot_i] = ACTIONS(189), - [sym_return] = ACTIONS(189), - [sym_next] = ACTIONS(189), - [sym_break] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_inf] = ACTIONS(189), - [sym_nan] = ACTIONS(189), - [anon_sym_NA] = ACTIONS(189), - [anon_sym_NA_integer_] = ACTIONS(189), - [anon_sym_NA_real_] = ACTIONS(189), - [anon_sym_NA_complex_] = ACTIONS(189), - [anon_sym_NA_character_] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(187), - [sym__semicolon] = ACTIONS(187), - [sym__raw_string_literal] = ACTIONS(187), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(187), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [224] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_function] = ACTIONS(221), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(221), - [anon_sym_for] = ACTIONS(221), - [anon_sym_while] = ACTIONS(221), - [anon_sym_repeat] = ACTIONS(221), - [anon_sym_QMARK] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(219), - [sym__number_literal] = ACTIONS(221), - [anon_sym_SQUOTE] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(219), - [sym_dots] = ACTIONS(221), - [sym_dot_dot_i] = ACTIONS(221), - [sym_return] = ACTIONS(221), - [sym_next] = ACTIONS(221), - [sym_break] = ACTIONS(221), - [sym_true] = ACTIONS(221), - [sym_false] = ACTIONS(221), - [sym_null] = ACTIONS(221), - [sym_inf] = ACTIONS(221), - [sym_nan] = ACTIONS(221), - [anon_sym_NA] = ACTIONS(221), - [anon_sym_NA_integer_] = ACTIONS(221), - [anon_sym_NA_real_] = ACTIONS(221), - [anon_sym_NA_complex_] = ACTIONS(221), - [anon_sym_NA_character_] = ACTIONS(221), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(219), - [sym__semicolon] = ACTIONS(219), - [sym__raw_string_literal] = ACTIONS(219), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(219), - [sym__external_close_brace] = ACTIONS(219), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, [225] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(183), [sym_identifier] = ACTIONS(185), [anon_sym_BSLASH] = ACTIONS(183), [anon_sym_function] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(185), [anon_sym_for] = ACTIONS(185), [anon_sym_while] = ACTIONS(185), [anon_sym_repeat] = ACTIONS(185), [anon_sym_QMARK] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(183), [sym__number_literal] = ACTIONS(185), [anon_sym_SQUOTE] = ACTIONS(183), @@ -23100,57 +23101,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(183), [sym__semicolon] = ACTIONS(183), [sym__raw_string_literal] = ACTIONS(183), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(183), - [sym__external_close_brace] = ACTIONS(183), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, [226] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(187), + [sym_identifier] = ACTIONS(189), + [anon_sym_BSLASH] = ACTIONS(187), + [anon_sym_function] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_if] = ACTIONS(189), + [anon_sym_for] = ACTIONS(189), + [anon_sym_while] = ACTIONS(189), + [anon_sym_repeat] = ACTIONS(189), + [anon_sym_QMARK] = ACTIONS(187), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(187), + [sym__number_literal] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym_dots] = ACTIONS(189), + [sym_dot_dot_i] = ACTIONS(189), + [sym_return] = ACTIONS(189), + [sym_next] = ACTIONS(189), + [sym_break] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_inf] = ACTIONS(189), + [sym_nan] = ACTIONS(189), + [anon_sym_NA] = ACTIONS(189), + [anon_sym_NA_integer_] = ACTIONS(189), + [anon_sym_NA_real_] = ACTIONS(189), + [anon_sym_NA_complex_] = ACTIONS(189), + [anon_sym_NA_character_] = ACTIONS(189), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(187), + [sym__semicolon] = ACTIONS(187), + [sym__raw_string_literal] = ACTIONS(187), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(187), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), + }, + [227] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), [ts_builtin_sym_end] = ACTIONS(191), [sym_identifier] = ACTIONS(193), [anon_sym_BSLASH] = ACTIONS(191), [anon_sym_function] = ACTIONS(193), - [anon_sym_EQ] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(193), [anon_sym_for] = ACTIONS(193), [anon_sym_while] = ACTIONS(193), [anon_sym_repeat] = ACTIONS(193), [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(193), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(191), [sym__number_literal] = ACTIONS(193), [anon_sym_SQUOTE] = ACTIONS(191), @@ -23174,56 +23247,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(191), [sym__semicolon] = ACTIONS(191), [sym__raw_string_literal] = ACTIONS(191), - [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(191), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [227] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), + [228] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), [ts_builtin_sym_end] = ACTIONS(195), [sym_identifier] = ACTIONS(197), [anon_sym_BSLASH] = ACTIONS(195), [anon_sym_function] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(197), [anon_sym_for] = ACTIONS(197), [anon_sym_while] = ACTIONS(197), [anon_sym_repeat] = ACTIONS(197), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(195), [sym__number_literal] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(195), @@ -23247,56 +23320,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(195), [sym__semicolon] = ACTIONS(195), [sym__raw_string_literal] = ACTIONS(195), - [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(195), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [228] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), + [229] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(199), + [sym_identifier] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_function] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_if] = ACTIONS(201), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(201), + [anon_sym_repeat] = ACTIONS(201), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(199), + [sym__number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym_dots] = ACTIONS(201), + [sym_dot_dot_i] = ACTIONS(201), + [sym_return] = ACTIONS(201), + [sym_next] = ACTIONS(201), + [sym_break] = ACTIONS(201), + [sym_true] = ACTIONS(201), + [sym_false] = ACTIONS(201), + [sym_null] = ACTIONS(201), + [sym_inf] = ACTIONS(201), + [sym_nan] = ACTIONS(201), + [anon_sym_NA] = ACTIONS(201), + [anon_sym_NA_integer_] = ACTIONS(201), + [anon_sym_NA_real_] = ACTIONS(201), + [anon_sym_NA_complex_] = ACTIONS(201), + [anon_sym_NA_character_] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(199), + [sym__semicolon] = ACTIONS(199), + [sym__raw_string_literal] = ACTIONS(199), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(199), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), + }, + [230] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(203), + [sym_identifier] = ACTIONS(205), + [anon_sym_BSLASH] = ACTIONS(203), + [anon_sym_function] = ACTIONS(205), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_if] = ACTIONS(205), + [anon_sym_for] = ACTIONS(205), + [anon_sym_while] = ACTIONS(205), + [anon_sym_repeat] = ACTIONS(205), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(203), + [sym__number_literal] = ACTIONS(205), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE] = ACTIONS(203), + [sym_dots] = ACTIONS(205), + [sym_dot_dot_i] = ACTIONS(205), + [sym_return] = ACTIONS(205), + [sym_next] = ACTIONS(205), + [sym_break] = ACTIONS(205), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [sym_null] = ACTIONS(205), + [sym_inf] = ACTIONS(205), + [sym_nan] = ACTIONS(205), + [anon_sym_NA] = ACTIONS(205), + [anon_sym_NA_integer_] = ACTIONS(205), + [anon_sym_NA_real_] = ACTIONS(205), + [anon_sym_NA_complex_] = ACTIONS(205), + [anon_sym_NA_character_] = ACTIONS(205), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(203), + [sym__semicolon] = ACTIONS(203), + [sym__raw_string_literal] = ACTIONS(203), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(203), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), + }, + [231] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(207), + [sym_identifier] = ACTIONS(209), + [anon_sym_BSLASH] = ACTIONS(207), + [anon_sym_function] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_if] = ACTIONS(209), + [anon_sym_for] = ACTIONS(209), + [anon_sym_while] = ACTIONS(209), + [anon_sym_repeat] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(207), + [sym__number_literal] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(207), + [sym_dots] = ACTIONS(209), + [sym_dot_dot_i] = ACTIONS(209), + [sym_return] = ACTIONS(209), + [sym_next] = ACTIONS(209), + [sym_break] = ACTIONS(209), + [sym_true] = ACTIONS(209), + [sym_false] = ACTIONS(209), + [sym_null] = ACTIONS(209), + [sym_inf] = ACTIONS(209), + [sym_nan] = ACTIONS(209), + [anon_sym_NA] = ACTIONS(209), + [anon_sym_NA_integer_] = ACTIONS(209), + [anon_sym_NA_real_] = ACTIONS(209), + [anon_sym_NA_complex_] = ACTIONS(209), + [anon_sym_NA_character_] = ACTIONS(209), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(207), + [sym__semicolon] = ACTIONS(207), + [sym__raw_string_literal] = ACTIONS(207), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(207), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), + }, + [232] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), [ts_builtin_sym_end] = ACTIONS(211), [sym_identifier] = ACTIONS(213), [anon_sym_BSLASH] = ACTIONS(211), [anon_sym_function] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(213), [anon_sym_for] = ACTIONS(213), [anon_sym_while] = ACTIONS(213), [anon_sym_repeat] = ACTIONS(213), [anon_sym_QMARK] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(211), [sym__number_literal] = ACTIONS(213), [anon_sym_SQUOTE] = ACTIONS(211), @@ -23320,201 +23612,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(211), [sym__semicolon] = ACTIONS(211), [sym__raw_string_literal] = ACTIONS(211), - [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(211), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [229] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(145), - [anon_sym_BSLASH] = ACTIONS(143), - [anon_sym_function] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(145), - [anon_sym_for] = ACTIONS(145), - [anon_sym_while] = ACTIONS(145), - [anon_sym_repeat] = ACTIONS(145), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(143), - [sym__number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(143), - [sym_dots] = ACTIONS(145), - [sym_dot_dot_i] = ACTIONS(145), - [sym_return] = ACTIONS(145), - [sym_next] = ACTIONS(145), - [sym_break] = ACTIONS(145), - [sym_true] = ACTIONS(145), - [sym_false] = ACTIONS(145), - [sym_null] = ACTIONS(145), - [sym_inf] = ACTIONS(145), - [sym_nan] = ACTIONS(145), - [anon_sym_NA] = ACTIONS(145), - [anon_sym_NA_integer_] = ACTIONS(145), - [anon_sym_NA_real_] = ACTIONS(145), - [anon_sym_NA_complex_] = ACTIONS(145), - [anon_sym_NA_character_] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(143), - [sym__semicolon] = ACTIONS(143), - [sym__raw_string_literal] = ACTIONS(143), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(143), - [sym__external_close_brace] = ACTIONS(143), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, - [230] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), + [233] = { + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), [ts_builtin_sym_end] = ACTIONS(215), [sym_identifier] = ACTIONS(217), [anon_sym_BSLASH] = ACTIONS(215), [anon_sym_function] = ACTIONS(217), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(217), - [anon_sym_for] = ACTIONS(217), - [anon_sym_while] = ACTIONS(217), - [anon_sym_repeat] = ACTIONS(217), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(215), - [sym__number_literal] = ACTIONS(217), - [anon_sym_SQUOTE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym_dots] = ACTIONS(217), - [sym_dot_dot_i] = ACTIONS(217), - [sym_return] = ACTIONS(217), - [sym_next] = ACTIONS(217), - [sym_break] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_inf] = ACTIONS(217), - [sym_nan] = ACTIONS(217), - [anon_sym_NA] = ACTIONS(217), - [anon_sym_NA_integer_] = ACTIONS(217), - [anon_sym_NA_real_] = ACTIONS(217), - [anon_sym_NA_complex_] = ACTIONS(217), - [anon_sym_NA_character_] = ACTIONS(217), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(215), - [sym__semicolon] = ACTIONS(215), - [sym__raw_string_literal] = ACTIONS(215), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(215), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), - }, - [231] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(215), - [anon_sym_function] = ACTIONS(217), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(217), [anon_sym_for] = ACTIONS(217), [anon_sym_while] = ACTIONS(217), [anon_sym_repeat] = ACTIONS(217), [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(217), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(215), [sym__number_literal] = ACTIONS(217), [anon_sym_SQUOTE] = ACTIONS(215), @@ -23538,203 +23685,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(215), [sym__semicolon] = ACTIONS(215), [sym__raw_string_literal] = ACTIONS(215), - [sym__external_open_parenthesis] = ACTIONS(335), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(215), - [sym__external_close_brace] = ACTIONS(215), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [232] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(211), - [anon_sym_function] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(213), - [anon_sym_for] = ACTIONS(213), - [anon_sym_while] = ACTIONS(213), - [anon_sym_repeat] = ACTIONS(213), - [anon_sym_QMARK] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(211), - [sym__number_literal] = ACTIONS(213), - [anon_sym_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [sym_dots] = ACTIONS(213), - [sym_dot_dot_i] = ACTIONS(213), - [sym_return] = ACTIONS(213), - [sym_next] = ACTIONS(213), - [sym_break] = ACTIONS(213), - [sym_true] = ACTIONS(213), - [sym_false] = ACTIONS(213), - [sym_null] = ACTIONS(213), - [sym_inf] = ACTIONS(213), - [sym_nan] = ACTIONS(213), - [anon_sym_NA] = ACTIONS(213), - [anon_sym_NA_integer_] = ACTIONS(213), - [anon_sym_NA_real_] = ACTIONS(213), - [anon_sym_NA_complex_] = ACTIONS(213), - [anon_sym_NA_character_] = ACTIONS(213), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(211), - [sym__semicolon] = ACTIONS(211), - [sym__raw_string_literal] = ACTIONS(211), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(211), - [sym__external_close_brace] = ACTIONS(211), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), - }, - [233] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(143), - [sym_identifier] = ACTIONS(145), - [anon_sym_BSLASH] = ACTIONS(143), - [anon_sym_function] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(145), - [anon_sym_for] = ACTIONS(145), - [anon_sym_while] = ACTIONS(145), - [anon_sym_repeat] = ACTIONS(145), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(143), - [sym__number_literal] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(143), - [sym_dots] = ACTIONS(145), - [sym_dot_dot_i] = ACTIONS(145), - [sym_return] = ACTIONS(145), - [sym_next] = ACTIONS(145), - [sym_break] = ACTIONS(145), - [sym_true] = ACTIONS(145), - [sym_false] = ACTIONS(145), - [sym_null] = ACTIONS(145), - [sym_inf] = ACTIONS(145), - [sym_nan] = ACTIONS(145), - [anon_sym_NA] = ACTIONS(145), - [anon_sym_NA_integer_] = ACTIONS(145), - [anon_sym_NA_real_] = ACTIONS(145), - [anon_sym_NA_complex_] = ACTIONS(145), - [anon_sym_NA_character_] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(143), - [sym__semicolon] = ACTIONS(143), - [sym__raw_string_literal] = ACTIONS(143), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(143), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, [234] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), [ts_builtin_sym_end] = ACTIONS(219), [sym_identifier] = ACTIONS(221), [anon_sym_BSLASH] = ACTIONS(219), [anon_sym_function] = ACTIONS(221), - [anon_sym_EQ] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(221), [anon_sym_for] = ACTIONS(221), [anon_sym_while] = ACTIONS(221), [anon_sym_repeat] = ACTIONS(221), [anon_sym_QMARK] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(221), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(219), [sym__number_literal] = ACTIONS(221), [anon_sym_SQUOTE] = ACTIONS(219), @@ -23758,129 +23758,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(219), [sym__semicolon] = ACTIONS(219), [sym__raw_string_literal] = ACTIONS(219), - [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(219), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, [235] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(197), - [anon_sym_BSLASH] = ACTIONS(195), - [anon_sym_function] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(197), - [anon_sym_for] = ACTIONS(197), - [anon_sym_while] = ACTIONS(197), - [anon_sym_repeat] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(195), - [sym__number_literal] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(195), - [sym_dots] = ACTIONS(197), - [sym_dot_dot_i] = ACTIONS(197), - [sym_return] = ACTIONS(197), - [sym_next] = ACTIONS(197), - [sym_break] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_inf] = ACTIONS(197), - [sym_nan] = ACTIONS(197), - [anon_sym_NA] = ACTIONS(197), - [anon_sym_NA_integer_] = ACTIONS(197), - [anon_sym_NA_real_] = ACTIONS(197), - [anon_sym_NA_complex_] = ACTIONS(197), - [anon_sym_NA_character_] = ACTIONS(197), + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), + [ts_builtin_sym_end] = ACTIONS(145), + [sym_identifier] = ACTIONS(143), + [anon_sym_BSLASH] = ACTIONS(145), + [anon_sym_function] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_if] = ACTIONS(143), + [anon_sym_for] = ACTIONS(143), + [anon_sym_while] = ACTIONS(143), + [anon_sym_repeat] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(145), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [sym__hex_literal] = ACTIONS(145), + [sym__number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_dots] = ACTIONS(143), + [sym_dot_dot_i] = ACTIONS(143), + [sym_return] = ACTIONS(143), + [sym_next] = ACTIONS(143), + [sym_break] = ACTIONS(143), + [sym_true] = ACTIONS(143), + [sym_false] = ACTIONS(143), + [sym_null] = ACTIONS(143), + [sym_inf] = ACTIONS(143), + [sym_nan] = ACTIONS(143), + [anon_sym_NA] = ACTIONS(143), + [anon_sym_NA_integer_] = ACTIONS(143), + [anon_sym_NA_real_] = ACTIONS(143), + [anon_sym_NA_complex_] = ACTIONS(143), + [anon_sym_NA_character_] = ACTIONS(143), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(195), - [sym__semicolon] = ACTIONS(195), - [sym__raw_string_literal] = ACTIONS(195), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(195), - [sym__external_close_brace] = ACTIONS(195), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__newline] = ACTIONS(145), + [sym__semicolon] = ACTIONS(145), + [sym__raw_string_literal] = ACTIONS(145), + [sym__external_open_parenthesis] = ACTIONS(263), + [sym__external_open_brace] = ACTIONS(145), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, [236] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), [ts_builtin_sym_end] = ACTIONS(223), [sym_identifier] = ACTIONS(225), [anon_sym_BSLASH] = ACTIONS(223), [anon_sym_function] = ACTIONS(225), - [anon_sym_EQ] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(225), [anon_sym_for] = ACTIONS(225), [anon_sym_while] = ACTIONS(225), [anon_sym_repeat] = ACTIONS(225), [anon_sym_QMARK] = ACTIONS(223), - [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(223), [sym__number_literal] = ACTIONS(225), [anon_sym_SQUOTE] = ACTIONS(223), @@ -23904,56 +23904,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(223), [sym__semicolon] = ACTIONS(223), [sym__raw_string_literal] = ACTIONS(223), - [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(223), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, [237] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), + [sym_call_arguments] = STATE(377), + [sym_subset_arguments] = STATE(378), + [sym_subset2_arguments] = STATE(384), + [sym__open_parenthesis] = STATE(264), + [sym__open_bracket] = STATE(253), + [sym__open_bracket2] = STATE(258), [ts_builtin_sym_end] = ACTIONS(227), [sym_identifier] = ACTIONS(229), [anon_sym_BSLASH] = ACTIONS(227), [anon_sym_function] = ACTIONS(229), - [anon_sym_EQ] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(317), [anon_sym_if] = ACTIONS(229), [anon_sym_for] = ACTIONS(229), [anon_sym_while] = ACTIONS(229), [anon_sym_repeat] = ACTIONS(229), [anon_sym_QMARK] = ACTIONS(227), - [anon_sym_TILDE] = ACTIONS(249), + [anon_sym_TILDE] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_COLON_EQ] = ACTIONS(323), + [anon_sym_DASH_GT] = ACTIONS(325), + [anon_sym_DASH_GT_GT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_LT_EQ] = ACTIONS(339), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_GT_EQ] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(339), + [anon_sym_BANG_EQ] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(255), + [anon_sym_CARET] = ACTIONS(255), + [aux_sym_binary_operator_token1] = ACTIONS(257), + [anon_sym_PIPE_GT] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), [sym__hex_literal] = ACTIONS(227), [sym__number_literal] = ACTIONS(229), [anon_sym_SQUOTE] = ACTIONS(227), @@ -23977,497 +23977,498 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(227), [sym__semicolon] = ACTIONS(227), [sym__raw_string_literal] = ACTIONS(227), - [sym__external_open_parenthesis] = ACTIONS(285), + [sym__external_open_parenthesis] = ACTIONS(263), [sym__external_open_brace] = ACTIONS(227), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__external_open_bracket] = ACTIONS(265), + [sym__external_open_bracket2] = ACTIONS(267), }, [238] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(231), - [sym_identifier] = ACTIONS(233), - [anon_sym_BSLASH] = ACTIONS(231), - [anon_sym_function] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(233), - [anon_sym_for] = ACTIONS(233), - [anon_sym_while] = ACTIONS(233), - [anon_sym_repeat] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(231), - [sym__number_literal] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_dots] = ACTIONS(233), - [sym_dot_dot_i] = ACTIONS(233), - [sym_return] = ACTIONS(233), - [sym_next] = ACTIONS(233), - [sym_break] = ACTIONS(233), - [sym_true] = ACTIONS(233), - [sym_false] = ACTIONS(233), - [sym_null] = ACTIONS(233), - [sym_inf] = ACTIONS(233), - [sym_nan] = ACTIONS(233), - [anon_sym_NA] = ACTIONS(233), - [anon_sym_NA_integer_] = ACTIONS(233), - [anon_sym_NA_real_] = ACTIONS(233), - [anon_sym_NA_complex_] = ACTIONS(233), - [anon_sym_NA_character_] = ACTIONS(233), + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(231), + [anon_sym_BSLASH] = ACTIONS(233), + [anon_sym_function] = ACTIONS(231), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(231), + [anon_sym_for] = ACTIONS(231), + [anon_sym_while] = ACTIONS(231), + [anon_sym_repeat] = ACTIONS(231), + [anon_sym_QMARK] = ACTIONS(233), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(233), + [sym__number_literal] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym_dots] = ACTIONS(231), + [sym_dot_dot_i] = ACTIONS(231), + [sym_return] = ACTIONS(231), + [sym_next] = ACTIONS(231), + [sym_break] = ACTIONS(231), + [sym_true] = ACTIONS(231), + [sym_false] = ACTIONS(231), + [sym_null] = ACTIONS(231), + [sym_inf] = ACTIONS(231), + [sym_nan] = ACTIONS(231), + [anon_sym_NA] = ACTIONS(231), + [anon_sym_NA_integer_] = ACTIONS(231), + [anon_sym_NA_real_] = ACTIONS(231), + [anon_sym_NA_complex_] = ACTIONS(231), + [anon_sym_NA_character_] = ACTIONS(231), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(231), - [sym__semicolon] = ACTIONS(231), - [sym__raw_string_literal] = ACTIONS(231), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(231), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(233), + [sym__semicolon] = ACTIONS(233), + [sym__raw_string_literal] = ACTIONS(233), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(233), + [sym__external_close_brace] = ACTIONS(233), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, [239] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(189), - [anon_sym_BSLASH] = ACTIONS(187), - [anon_sym_function] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(189), - [anon_sym_for] = ACTIONS(189), - [anon_sym_while] = ACTIONS(189), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(187), - [sym__number_literal] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(187), - [sym_dots] = ACTIONS(189), - [sym_dot_dot_i] = ACTIONS(189), - [sym_return] = ACTIONS(189), - [sym_next] = ACTIONS(189), - [sym_break] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_inf] = ACTIONS(189), - [sym_nan] = ACTIONS(189), - [anon_sym_NA] = ACTIONS(189), - [anon_sym_NA_integer_] = ACTIONS(189), - [anon_sym_NA_real_] = ACTIONS(189), - [anon_sym_NA_complex_] = ACTIONS(189), - [anon_sym_NA_character_] = ACTIONS(189), + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(235), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(235), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_repeat] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(237), + [sym__number_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym_dots] = ACTIONS(235), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(235), + [sym_next] = ACTIONS(235), + [sym_break] = ACTIONS(235), + [sym_true] = ACTIONS(235), + [sym_false] = ACTIONS(235), + [sym_null] = ACTIONS(235), + [sym_inf] = ACTIONS(235), + [sym_nan] = ACTIONS(235), + [anon_sym_NA] = ACTIONS(235), + [anon_sym_NA_integer_] = ACTIONS(235), + [anon_sym_NA_real_] = ACTIONS(235), + [anon_sym_NA_complex_] = ACTIONS(235), + [anon_sym_NA_character_] = ACTIONS(235), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(187), - [sym__semicolon] = ACTIONS(187), - [sym__raw_string_literal] = ACTIONS(187), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(187), - [sym__external_close_brace] = ACTIONS(187), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__newline] = ACTIONS(237), + [sym__semicolon] = ACTIONS(237), + [sym__raw_string_literal] = ACTIONS(237), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(237), + [sym__external_close_brace] = ACTIONS(237), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, [240] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(235), - [sym_identifier] = ACTIONS(237), - [anon_sym_BSLASH] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(237), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_repeat] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(235), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(235), - [sym__number_literal] = ACTIONS(237), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_dots] = ACTIONS(237), - [sym_dot_dot_i] = ACTIONS(237), - [sym_return] = ACTIONS(237), - [sym_next] = ACTIONS(237), - [sym_break] = ACTIONS(237), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [sym_null] = ACTIONS(237), - [sym_inf] = ACTIONS(237), - [sym_nan] = ACTIONS(237), - [anon_sym_NA] = ACTIONS(237), - [anon_sym_NA_integer_] = ACTIONS(237), - [anon_sym_NA_real_] = ACTIONS(237), - [anon_sym_NA_complex_] = ACTIONS(237), - [anon_sym_NA_character_] = ACTIONS(237), + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(235), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_repeat] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(237), + [anon_sym_BANG] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(237), + [anon_sym_LT_LT_DASH] = ACTIONS(237), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DASH_GT_GT] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(237), + [sym__number_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym_dots] = ACTIONS(235), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(235), + [sym_next] = ACTIONS(235), + [sym_break] = ACTIONS(235), + [sym_true] = ACTIONS(235), + [sym_false] = ACTIONS(235), + [sym_null] = ACTIONS(235), + [sym_inf] = ACTIONS(235), + [sym_nan] = ACTIONS(235), + [anon_sym_NA] = ACTIONS(235), + [anon_sym_NA_integer_] = ACTIONS(235), + [anon_sym_NA_real_] = ACTIONS(235), + [anon_sym_NA_complex_] = ACTIONS(235), + [anon_sym_NA_character_] = ACTIONS(235), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(235), - [sym__semicolon] = ACTIONS(235), - [sym__raw_string_literal] = ACTIONS(235), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(235), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(237), + [sym__semicolon] = ACTIONS(237), + [sym__raw_string_literal] = ACTIONS(237), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(237), + [sym__external_close_brace] = ACTIONS(237), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, [241] = { - [sym_call_arguments] = STATE(422), - [sym_subset_arguments] = STATE(421), - [sym_subset2_arguments] = STATE(419), - [sym__open_parenthesis] = STATE(255), - [sym__open_bracket] = STATE(275), - [sym__open_bracket2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(239), - [sym_identifier] = ACTIONS(241), - [anon_sym_BSLASH] = ACTIONS(239), - [anon_sym_function] = ACTIONS(241), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_if] = ACTIONS(241), - [anon_sym_for] = ACTIONS(241), - [anon_sym_while] = ACTIONS(241), - [anon_sym_repeat] = ACTIONS(241), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_LT_DASH] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(255), - [anon_sym_COLON_EQ] = ACTIONS(255), - [anon_sym_DASH_GT] = ACTIONS(257), - [anon_sym_DASH_GT_GT] = ACTIONS(259), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(265), - [anon_sym_AMP_AMP] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_SLASH] = ACTIONS(275), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [aux_sym_binary_operator_token1] = ACTIONS(279), - [anon_sym_PIPE_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(283), - [sym__hex_literal] = ACTIONS(239), - [sym__number_literal] = ACTIONS(241), - [anon_sym_SQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE] = ACTIONS(239), - [sym_dots] = ACTIONS(241), - [sym_dot_dot_i] = ACTIONS(241), - [sym_return] = ACTIONS(241), - [sym_next] = ACTIONS(241), - [sym_break] = ACTIONS(241), - [sym_true] = ACTIONS(241), - [sym_false] = ACTIONS(241), - [sym_null] = ACTIONS(241), - [sym_inf] = ACTIONS(241), - [sym_nan] = ACTIONS(241), - [anon_sym_NA] = ACTIONS(241), - [anon_sym_NA_integer_] = ACTIONS(241), - [anon_sym_NA_real_] = ACTIONS(241), - [anon_sym_NA_complex_] = ACTIONS(241), - [anon_sym_NA_character_] = ACTIONS(241), + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(235), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_repeat] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(237), + [anon_sym_BANG] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(237), + [anon_sym_LT_LT_DASH] = ACTIONS(237), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DASH_GT_GT] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(237), + [sym__number_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym_dots] = ACTIONS(235), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(235), + [sym_next] = ACTIONS(235), + [sym_break] = ACTIONS(235), + [sym_true] = ACTIONS(235), + [sym_false] = ACTIONS(235), + [sym_null] = ACTIONS(235), + [sym_inf] = ACTIONS(235), + [sym_nan] = ACTIONS(235), + [anon_sym_NA] = ACTIONS(235), + [anon_sym_NA_integer_] = ACTIONS(235), + [anon_sym_NA_real_] = ACTIONS(235), + [anon_sym_NA_complex_] = ACTIONS(235), + [anon_sym_NA_character_] = ACTIONS(235), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(239), - [sym__semicolon] = ACTIONS(239), - [sym__raw_string_literal] = ACTIONS(239), - [sym__external_open_parenthesis] = ACTIONS(285), - [sym__external_open_brace] = ACTIONS(239), - [sym__external_open_bracket] = ACTIONS(287), - [sym__external_open_bracket2] = ACTIONS(289), + [sym__newline] = ACTIONS(237), + [sym__semicolon] = ACTIONS(237), + [sym__raw_string_literal] = ACTIONS(237), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(237), + [sym__external_close_brace] = ACTIONS(237), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, [242] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(341), - [anon_sym_BSLASH] = ACTIONS(343), - [anon_sym_function] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(341), - [anon_sym_for] = ACTIONS(341), - [anon_sym_while] = ACTIONS(341), - [anon_sym_repeat] = ACTIONS(341), - [anon_sym_QMARK] = ACTIONS(345), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(343), - [sym__number_literal] = ACTIONS(341), - [anon_sym_SQUOTE] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [sym_dots] = ACTIONS(341), - [sym_dot_dot_i] = ACTIONS(341), - [sym_return] = ACTIONS(341), - [sym_next] = ACTIONS(341), - [sym_break] = ACTIONS(341), - [sym_true] = ACTIONS(341), - [sym_false] = ACTIONS(341), - [sym_null] = ACTIONS(341), - [sym_inf] = ACTIONS(341), - [sym_nan] = ACTIONS(341), - [anon_sym_NA] = ACTIONS(341), - [anon_sym_NA_integer_] = ACTIONS(341), - [anon_sym_NA_real_] = ACTIONS(341), - [anon_sym_NA_complex_] = ACTIONS(341), - [anon_sym_NA_character_] = ACTIONS(341), + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(235), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_repeat] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(237), + [anon_sym_BANG] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(237), + [anon_sym_LT_LT_DASH] = ACTIONS(237), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DASH_GT_GT] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(237), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(237), + [anon_sym_PIPE_GT] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(237), + [sym__number_literal] = ACTIONS(235), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym_dots] = ACTIONS(235), + [sym_dot_dot_i] = ACTIONS(235), + [sym_return] = ACTIONS(235), + [sym_next] = ACTIONS(235), + [sym_break] = ACTIONS(235), + [sym_true] = ACTIONS(235), + [sym_false] = ACTIONS(235), + [sym_null] = ACTIONS(235), + [sym_inf] = ACTIONS(235), + [sym_nan] = ACTIONS(235), + [anon_sym_NA] = ACTIONS(235), + [anon_sym_NA_integer_] = ACTIONS(235), + [anon_sym_NA_real_] = ACTIONS(235), + [anon_sym_NA_complex_] = ACTIONS(235), + [anon_sym_NA_character_] = ACTIONS(235), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(343), - [sym__semicolon] = ACTIONS(343), - [sym__raw_string_literal] = ACTIONS(343), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(343), - [sym__external_close_brace] = ACTIONS(343), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__newline] = ACTIONS(237), + [sym__semicolon] = ACTIONS(237), + [sym__raw_string_literal] = ACTIONS(237), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(237), + [sym__external_close_brace] = ACTIONS(237), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, [243] = { - [sym_call_arguments] = STATE(418), - [sym_subset_arguments] = STATE(424), - [sym_subset2_arguments] = STATE(426), - [sym__open_parenthesis] = STATE(267), - [sym__open_bracket] = STATE(268), - [sym__open_bracket2] = STATE(273), - [sym_identifier] = ACTIONS(193), - [anon_sym_BSLASH] = ACTIONS(191), - [anon_sym_function] = ACTIONS(193), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_if] = ACTIONS(193), - [anon_sym_for] = ACTIONS(193), - [anon_sym_while] = ACTIONS(193), - [anon_sym_repeat] = ACTIONS(193), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_TILDE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(193), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(305), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [anon_sym_COLON_EQ] = ACTIONS(305), - [anon_sym_DASH_GT] = ACTIONS(307), - [anon_sym_DASH_GT_GT] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_STAR_STAR] = ACTIONS(327), - [anon_sym_CARET] = ACTIONS(327), - [aux_sym_binary_operator_token1] = ACTIONS(329), - [anon_sym_PIPE_GT] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [sym__hex_literal] = ACTIONS(191), - [sym__number_literal] = ACTIONS(193), - [anon_sym_SQUOTE] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(191), - [sym_dots] = ACTIONS(193), - [sym_dot_dot_i] = ACTIONS(193), - [sym_return] = ACTIONS(193), - [sym_next] = ACTIONS(193), - [sym_break] = ACTIONS(193), - [sym_true] = ACTIONS(193), - [sym_false] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [sym_inf] = ACTIONS(193), - [sym_nan] = ACTIONS(193), - [anon_sym_NA] = ACTIONS(193), - [anon_sym_NA_integer_] = ACTIONS(193), - [anon_sym_NA_real_] = ACTIONS(193), - [anon_sym_NA_complex_] = ACTIONS(193), - [anon_sym_NA_character_] = ACTIONS(193), + [sym_call_arguments] = STATE(413), + [sym_subset_arguments] = STATE(427), + [sym_subset2_arguments] = STATE(415), + [sym__open_parenthesis] = STATE(260), + [sym__open_bracket] = STATE(261), + [sym__open_bracket2] = STATE(262), + [sym_identifier] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_if] = ACTIONS(153), + [anon_sym_for] = ACTIONS(153), + [anon_sym_while] = ACTIONS(153), + [anon_sym_repeat] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_DASH_GT_GT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(297), + [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(299), + [aux_sym_binary_operator_token1] = ACTIONS(301), + [anon_sym_PIPE_GT] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(305), + [sym__hex_literal] = ACTIONS(151), + [sym__number_literal] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(151), + [sym_dots] = ACTIONS(153), + [sym_dot_dot_i] = ACTIONS(153), + [sym_return] = ACTIONS(153), + [sym_next] = ACTIONS(153), + [sym_break] = ACTIONS(153), + [sym_true] = ACTIONS(153), + [sym_false] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [sym_inf] = ACTIONS(153), + [sym_nan] = ACTIONS(153), + [anon_sym_NA] = ACTIONS(153), + [anon_sym_NA_integer_] = ACTIONS(153), + [anon_sym_NA_real_] = ACTIONS(153), + [anon_sym_NA_complex_] = ACTIONS(153), + [anon_sym_NA_character_] = ACTIONS(153), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(191), - [sym__semicolon] = ACTIONS(191), - [sym__raw_string_literal] = ACTIONS(191), - [sym__external_open_parenthesis] = ACTIONS(335), - [sym__external_open_brace] = ACTIONS(191), - [sym__external_close_brace] = ACTIONS(191), - [sym__external_open_bracket] = ACTIONS(337), - [sym__external_open_bracket2] = ACTIONS(339), + [sym__newline] = ACTIONS(151), + [sym__semicolon] = ACTIONS(151), + [sym__raw_string_literal] = ACTIONS(151), + [sym__external_open_parenthesis] = ACTIONS(307), + [sym__external_open_brace] = ACTIONS(151), + [sym__external_close_brace] = ACTIONS(151), + [sym__external_open_bracket] = ACTIONS(309), + [sym__external_open_bracket2] = ACTIONS(311), }, [244] = { - [sym_string] = STATE(358), - [sym__single_quoted_string] = STATE(286), - [sym__double_quoted_string] = STATE(302), - [aux_sym_function_definition_repeat1] = STATE(246), - [sym_identifier] = ACTIONS(347), - [anon_sym_BSLASH] = ACTIONS(349), + [sym_string] = STATE(373), + [sym__single_quoted_string] = STATE(288), + [sym__double_quoted_string] = STATE(289), + [aux_sym_function_definition_repeat1] = STATE(307), + [ts_builtin_sym_end] = ACTIONS(347), + [sym_identifier] = ACTIONS(349), + [anon_sym_BSLASH] = ACTIONS(347), [anon_sym_function] = ACTIONS(351), [anon_sym_EQ] = ACTIONS(351), [anon_sym_if] = ACTIONS(351), [anon_sym_for] = ACTIONS(351), [anon_sym_while] = ACTIONS(351), [anon_sym_repeat] = ACTIONS(351), - [anon_sym_QMARK] = ACTIONS(349), - [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(347), + [anon_sym_TILDE] = ACTIONS(347), [anon_sym_BANG] = ACTIONS(351), - [anon_sym_PLUS] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(347), [anon_sym_DASH] = ACTIONS(351), - [anon_sym_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_COLON_EQ] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(347), + [anon_sym_COLON_EQ] = ACTIONS(347), [anon_sym_DASH_GT] = ACTIONS(351), - [anon_sym_DASH_GT_GT] = ACTIONS(349), + [anon_sym_DASH_GT_GT] = ACTIONS(347), [anon_sym_PIPE] = ACTIONS(351), [anon_sym_AMP] = ACTIONS(351), - [anon_sym_PIPE_PIPE] = ACTIONS(349), - [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(347), [anon_sym_LT] = ACTIONS(351), - [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(347), [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_EQ] = ACTIONS(349), - [anon_sym_EQ_EQ] = ACTIONS(349), - [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(351), - [anon_sym_SLASH] = ACTIONS(349), - [anon_sym_STAR_STAR] = ACTIONS(349), - [anon_sym_CARET] = ACTIONS(349), - [aux_sym_binary_operator_token1] = ACTIONS(349), - [anon_sym_PIPE_GT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_STAR_STAR] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [aux_sym_binary_operator_token1] = ACTIONS(347), + [anon_sym_PIPE_GT] = ACTIONS(347), [anon_sym_COLON] = ACTIONS(351), - [anon_sym_DOLLAR] = ACTIONS(349), - [anon_sym_AT] = ACTIONS(349), - [sym__hex_literal] = ACTIONS(349), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_AT] = ACTIONS(347), + [sym__hex_literal] = ACTIONS(347), [sym__number_literal] = ACTIONS(351), [anon_sym_SQUOTE] = ACTIONS(353), [anon_sym_DQUOTE] = ACTIONS(355), - [sym_dots] = ACTIONS(347), - [sym_dot_dot_i] = ACTIONS(347), + [sym_dots] = ACTIONS(349), + [sym_dot_dot_i] = ACTIONS(349), [sym_return] = ACTIONS(351), [sym_next] = ACTIONS(351), [sym_break] = ACTIONS(351), @@ -24482,209 +24483,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NA_complex_] = ACTIONS(351), [anon_sym_NA_character_] = ACTIONS(351), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(357), - [sym__semicolon] = ACTIONS(349), - [sym__raw_string_literal] = ACTIONS(359), - [sym__external_else] = ACTIONS(349), - [sym__external_open_parenthesis] = ACTIONS(349), - [sym__external_open_brace] = ACTIONS(349), - [sym__external_close_brace] = ACTIONS(349), - [sym__external_open_bracket] = ACTIONS(349), - [sym__external_open_bracket2] = ACTIONS(349), + [sym__newline] = ACTIONS(347), + [sym__semicolon] = ACTIONS(347), + [sym__raw_string_literal] = ACTIONS(357), + [sym__external_else] = ACTIONS(347), + [sym__external_open_parenthesis] = ACTIONS(347), + [sym__external_open_brace] = ACTIONS(347), + [sym__external_open_bracket] = ACTIONS(347), + [sym__external_open_bracket2] = ACTIONS(347), }, [245] = { - [sym_string] = STATE(336), - [sym__single_quoted_string] = STATE(290), - [sym__double_quoted_string] = STATE(289), - [aux_sym_function_definition_repeat1] = STATE(304), - [ts_builtin_sym_end] = ACTIONS(361), - [sym_identifier] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(361), - [anon_sym_function] = ACTIONS(365), - [anon_sym_EQ] = ACTIONS(365), - [anon_sym_if] = ACTIONS(365), - [anon_sym_for] = ACTIONS(365), - [anon_sym_while] = ACTIONS(365), - [anon_sym_repeat] = ACTIONS(365), - [anon_sym_QMARK] = ACTIONS(361), - [anon_sym_TILDE] = ACTIONS(361), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_PLUS] = ACTIONS(361), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_LT_DASH] = ACTIONS(361), - [anon_sym_LT_LT_DASH] = ACTIONS(361), - [anon_sym_COLON_EQ] = ACTIONS(361), - [anon_sym_DASH_GT] = ACTIONS(365), - [anon_sym_DASH_GT_GT] = ACTIONS(361), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_PIPE_PIPE] = ACTIONS(361), - [anon_sym_AMP_AMP] = ACTIONS(361), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_LT_EQ] = ACTIONS(361), - [anon_sym_GT] = ACTIONS(365), - [anon_sym_GT_EQ] = ACTIONS(361), - [anon_sym_EQ_EQ] = ACTIONS(361), - [anon_sym_BANG_EQ] = ACTIONS(361), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_SLASH] = ACTIONS(361), - [anon_sym_STAR_STAR] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(361), - [aux_sym_binary_operator_token1] = ACTIONS(361), - [anon_sym_PIPE_GT] = ACTIONS(361), - [anon_sym_COLON] = ACTIONS(365), - [anon_sym_DOLLAR] = ACTIONS(361), - [anon_sym_AT] = ACTIONS(361), - [sym__hex_literal] = ACTIONS(361), - [sym__number_literal] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym_dots] = ACTIONS(363), - [sym_dot_dot_i] = ACTIONS(363), - [sym_return] = ACTIONS(365), - [sym_next] = ACTIONS(365), - [sym_break] = ACTIONS(365), - [sym_true] = ACTIONS(365), - [sym_false] = ACTIONS(365), - [sym_null] = ACTIONS(365), - [sym_inf] = ACTIONS(365), - [sym_nan] = ACTIONS(365), - [anon_sym_NA] = ACTIONS(365), - [anon_sym_NA_integer_] = ACTIONS(365), - [anon_sym_NA_real_] = ACTIONS(365), - [anon_sym_NA_complex_] = ACTIONS(365), - [anon_sym_NA_character_] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(361), - [sym__semicolon] = ACTIONS(361), - [sym__raw_string_literal] = ACTIONS(371), - [sym__external_else] = ACTIONS(361), - [sym__external_open_parenthesis] = ACTIONS(361), - [sym__external_open_brace] = ACTIONS(361), - [sym__external_open_bracket] = ACTIONS(361), - [sym__external_open_bracket2] = ACTIONS(361), - }, - [246] = { - [sym_string] = STATE(373), - [sym__single_quoted_string] = STATE(286), - [sym__double_quoted_string] = STATE(302), - [aux_sym_function_definition_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(373), - [anon_sym_BSLASH] = ACTIONS(361), - [anon_sym_function] = ACTIONS(365), - [anon_sym_EQ] = ACTIONS(365), - [anon_sym_if] = ACTIONS(365), - [anon_sym_for] = ACTIONS(365), - [anon_sym_while] = ACTIONS(365), - [anon_sym_repeat] = ACTIONS(365), - [anon_sym_QMARK] = ACTIONS(361), - [anon_sym_TILDE] = ACTIONS(361), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_PLUS] = ACTIONS(361), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_LT_DASH] = ACTIONS(361), - [anon_sym_LT_LT_DASH] = ACTIONS(361), - [anon_sym_COLON_EQ] = ACTIONS(361), - [anon_sym_DASH_GT] = ACTIONS(365), - [anon_sym_DASH_GT_GT] = ACTIONS(361), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_PIPE_PIPE] = ACTIONS(361), - [anon_sym_AMP_AMP] = ACTIONS(361), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_LT_EQ] = ACTIONS(361), - [anon_sym_GT] = ACTIONS(365), - [anon_sym_GT_EQ] = ACTIONS(361), - [anon_sym_EQ_EQ] = ACTIONS(361), - [anon_sym_BANG_EQ] = ACTIONS(361), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_SLASH] = ACTIONS(361), - [anon_sym_STAR_STAR] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(361), - [aux_sym_binary_operator_token1] = ACTIONS(361), - [anon_sym_PIPE_GT] = ACTIONS(361), - [anon_sym_COLON] = ACTIONS(365), - [anon_sym_DOLLAR] = ACTIONS(361), - [anon_sym_AT] = ACTIONS(361), - [sym__hex_literal] = ACTIONS(361), - [sym__number_literal] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(353), - [anon_sym_DQUOTE] = ACTIONS(355), - [sym_dots] = ACTIONS(373), - [sym_dot_dot_i] = ACTIONS(373), - [sym_return] = ACTIONS(365), - [sym_next] = ACTIONS(365), - [sym_break] = ACTIONS(365), - [sym_true] = ACTIONS(365), - [sym_false] = ACTIONS(365), - [sym_null] = ACTIONS(365), - [sym_inf] = ACTIONS(365), - [sym_nan] = ACTIONS(365), - [anon_sym_NA] = ACTIONS(365), - [anon_sym_NA_integer_] = ACTIONS(365), - [anon_sym_NA_real_] = ACTIONS(365), - [anon_sym_NA_complex_] = ACTIONS(365), - [anon_sym_NA_character_] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(361), - [sym__semicolon] = ACTIONS(361), - [sym__raw_string_literal] = ACTIONS(359), - [sym__external_else] = ACTIONS(361), - [sym__external_open_parenthesis] = ACTIONS(361), - [sym__external_open_brace] = ACTIONS(361), - [sym__external_close_brace] = ACTIONS(361), - [sym__external_open_bracket] = ACTIONS(361), - [sym__external_open_bracket2] = ACTIONS(361), - }, - [247] = { - [sym_string] = STATE(356), - [sym__single_quoted_string] = STATE(290), - [sym__double_quoted_string] = STATE(289), - [aux_sym_function_definition_repeat1] = STATE(245), - [ts_builtin_sym_end] = ACTIONS(349), - [sym_identifier] = ACTIONS(375), - [anon_sym_BSLASH] = ACTIONS(349), + [sym_string] = STATE(341), + [sym__single_quoted_string] = STATE(292), + [sym__double_quoted_string] = STATE(293), + [aux_sym_function_definition_repeat1] = STATE(318), + [sym_identifier] = ACTIONS(359), + [anon_sym_BSLASH] = ACTIONS(347), [anon_sym_function] = ACTIONS(351), [anon_sym_EQ] = ACTIONS(351), [anon_sym_if] = ACTIONS(351), [anon_sym_for] = ACTIONS(351), [anon_sym_while] = ACTIONS(351), [anon_sym_repeat] = ACTIONS(351), - [anon_sym_QMARK] = ACTIONS(349), - [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(347), + [anon_sym_TILDE] = ACTIONS(347), [anon_sym_BANG] = ACTIONS(351), - [anon_sym_PLUS] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(347), [anon_sym_DASH] = ACTIONS(351), - [anon_sym_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_COLON_EQ] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(347), + [anon_sym_COLON_EQ] = ACTIONS(347), [anon_sym_DASH_GT] = ACTIONS(351), - [anon_sym_DASH_GT_GT] = ACTIONS(349), + [anon_sym_DASH_GT_GT] = ACTIONS(347), [anon_sym_PIPE] = ACTIONS(351), [anon_sym_AMP] = ACTIONS(351), - [anon_sym_PIPE_PIPE] = ACTIONS(349), - [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(347), [anon_sym_LT] = ACTIONS(351), - [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(347), [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_EQ] = ACTIONS(349), - [anon_sym_EQ_EQ] = ACTIONS(349), - [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(351), - [anon_sym_SLASH] = ACTIONS(349), - [anon_sym_STAR_STAR] = ACTIONS(349), - [anon_sym_CARET] = ACTIONS(349), - [aux_sym_binary_operator_token1] = ACTIONS(349), - [anon_sym_PIPE_GT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_STAR_STAR] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [aux_sym_binary_operator_token1] = ACTIONS(347), + [anon_sym_PIPE_GT] = ACTIONS(347), [anon_sym_COLON] = ACTIONS(351), - [anon_sym_DOLLAR] = ACTIONS(349), - [anon_sym_AT] = ACTIONS(349), - [sym__hex_literal] = ACTIONS(349), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_AT] = ACTIONS(347), + [sym__hex_literal] = ACTIONS(347), [sym__number_literal] = ACTIONS(351), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym_dots] = ACTIONS(375), - [sym_dot_dot_i] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_dots] = ACTIONS(359), + [sym_dot_dot_i] = ACTIONS(359), [sym_return] = ACTIONS(351), [sym_next] = ACTIONS(351), [sym_break] = ACTIONS(351), @@ -24699,48 +24554,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NA_complex_] = ACTIONS(351), [anon_sym_NA_character_] = ACTIONS(351), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(347), + [sym__semicolon] = ACTIONS(347), + [sym__raw_string_literal] = ACTIONS(365), + [sym__external_else] = ACTIONS(347), + [sym__external_open_parenthesis] = ACTIONS(347), + [sym__external_open_brace] = ACTIONS(347), + [sym__external_close_brace] = ACTIONS(347), + [sym__external_open_bracket] = ACTIONS(347), + [sym__external_open_bracket2] = ACTIONS(347), + }, + [246] = { + [sym_string] = STATE(371), + [sym__single_quoted_string] = STATE(292), + [sym__double_quoted_string] = STATE(293), + [aux_sym_function_definition_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(367), + [anon_sym_BSLASH] = ACTIONS(369), + [anon_sym_function] = ACTIONS(371), + [anon_sym_EQ] = ACTIONS(371), + [anon_sym_if] = ACTIONS(371), + [anon_sym_for] = ACTIONS(371), + [anon_sym_while] = ACTIONS(371), + [anon_sym_repeat] = ACTIONS(371), + [anon_sym_QMARK] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(371), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(369), + [anon_sym_LT_LT_DASH] = ACTIONS(369), + [anon_sym_COLON_EQ] = ACTIONS(369), + [anon_sym_DASH_GT] = ACTIONS(371), + [anon_sym_DASH_GT_GT] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(371), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(371), + [anon_sym_SLASH] = ACTIONS(369), + [anon_sym_STAR_STAR] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [aux_sym_binary_operator_token1] = ACTIONS(369), + [anon_sym_PIPE_GT] = ACTIONS(369), + [anon_sym_COLON] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(369), + [sym__hex_literal] = ACTIONS(369), + [sym__number_literal] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_dots] = ACTIONS(367), + [sym_dot_dot_i] = ACTIONS(367), + [sym_return] = ACTIONS(371), + [sym_next] = ACTIONS(371), + [sym_break] = ACTIONS(371), + [sym_true] = ACTIONS(371), + [sym_false] = ACTIONS(371), + [sym_null] = ACTIONS(371), + [sym_inf] = ACTIONS(371), + [sym_nan] = ACTIONS(371), + [anon_sym_NA] = ACTIONS(371), + [anon_sym_NA_integer_] = ACTIONS(371), + [anon_sym_NA_real_] = ACTIONS(371), + [anon_sym_NA_complex_] = ACTIONS(371), + [anon_sym_NA_character_] = ACTIONS(371), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(373), + [sym__semicolon] = ACTIONS(369), + [sym__raw_string_literal] = ACTIONS(365), + [sym__external_else] = ACTIONS(369), + [sym__external_open_parenthesis] = ACTIONS(369), + [sym__external_open_brace] = ACTIONS(369), + [sym__external_close_brace] = ACTIONS(369), + [sym__external_open_bracket] = ACTIONS(369), + [sym__external_open_bracket2] = ACTIONS(369), + }, + [247] = { + [sym_string] = STATE(363), + [sym__single_quoted_string] = STATE(288), + [sym__double_quoted_string] = STATE(289), + [aux_sym_function_definition_repeat1] = STATE(244), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(375), + [anon_sym_BSLASH] = ACTIONS(369), + [anon_sym_function] = ACTIONS(371), + [anon_sym_EQ] = ACTIONS(371), + [anon_sym_if] = ACTIONS(371), + [anon_sym_for] = ACTIONS(371), + [anon_sym_while] = ACTIONS(371), + [anon_sym_repeat] = ACTIONS(371), + [anon_sym_QMARK] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(371), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(369), + [anon_sym_LT_LT_DASH] = ACTIONS(369), + [anon_sym_COLON_EQ] = ACTIONS(369), + [anon_sym_DASH_GT] = ACTIONS(371), + [anon_sym_DASH_GT_GT] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(371), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(371), + [anon_sym_SLASH] = ACTIONS(369), + [anon_sym_STAR_STAR] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [aux_sym_binary_operator_token1] = ACTIONS(369), + [anon_sym_PIPE_GT] = ACTIONS(369), + [anon_sym_COLON] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(369), + [sym__hex_literal] = ACTIONS(369), + [sym__number_literal] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(355), + [sym_dots] = ACTIONS(375), + [sym_dot_dot_i] = ACTIONS(375), + [sym_return] = ACTIONS(371), + [sym_next] = ACTIONS(371), + [sym_break] = ACTIONS(371), + [sym_true] = ACTIONS(371), + [sym_false] = ACTIONS(371), + [sym_null] = ACTIONS(371), + [sym_inf] = ACTIONS(371), + [sym_nan] = ACTIONS(371), + [anon_sym_NA] = ACTIONS(371), + [anon_sym_NA_integer_] = ACTIONS(371), + [anon_sym_NA_real_] = ACTIONS(371), + [anon_sym_NA_complex_] = ACTIONS(371), + [anon_sym_NA_character_] = ACTIONS(371), + [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(377), - [sym__semicolon] = ACTIONS(349), - [sym__raw_string_literal] = ACTIONS(371), - [sym__external_else] = ACTIONS(349), - [sym__external_open_parenthesis] = ACTIONS(349), - [sym__external_open_brace] = ACTIONS(349), - [sym__external_open_bracket] = ACTIONS(349), - [sym__external_open_bracket2] = ACTIONS(349), + [sym__semicolon] = ACTIONS(369), + [sym__raw_string_literal] = ACTIONS(357), + [sym__external_else] = ACTIONS(369), + [sym__external_open_parenthesis] = ACTIONS(369), + [sym__external_open_brace] = ACTIONS(369), + [sym__external_open_bracket] = ACTIONS(369), + [sym__external_open_bracket2] = ACTIONS(369), }, [248] = { - [sym_function_definition] = STATE(1346), - [sym_if_statement] = STATE(1346), - [sym_for_statement] = STATE(1346), - [sym_while_statement] = STATE(1346), - [sym_repeat_statement] = STATE(1346), - [sym_braced_expression] = STATE(1346), - [sym_parenthesized_expression] = STATE(1346), - [sym_call] = STATE(1346), - [sym_subset] = STATE(1346), - [sym_subset2] = STATE(1346), - [sym_argument] = STATE(1898), + [sym_function_definition] = STATE(1361), + [sym_if_statement] = STATE(1361), + [sym_for_statement] = STATE(1361), + [sym_while_statement] = STATE(1361), + [sym_repeat_statement] = STATE(1361), + [sym_braced_expression] = STATE(1361), + [sym_parenthesized_expression] = STATE(1361), + [sym_call] = STATE(1361), + [sym_subset] = STATE(1361), + [sym_subset2] = STATE(1361), + [sym_argument] = STATE(1839), [sym__argument_named] = STATE(2046), - [sym__argument_unnamed] = STATE(2041), - [sym__argument_value] = STATE(2040), - [sym_unary_operator] = STATE(1346), - [sym_binary_operator] = STATE(1346), - [sym_extract_operator] = STATE(1346), - [sym_namespace_operator] = STATE(1346), - [sym_integer] = STATE(1346), - [sym_complex] = STATE(1346), - [sym_float] = STATE(1346), - [sym__float_literal] = STATE(1625), - [sym_string] = STATE(1622), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1621), - [sym__argument_name_string_or_identifier_or_null] = STATE(2054), - [sym_na] = STATE(1346), - [sym__expression] = STATE(1346), - [sym__open_parenthesis] = STATE(1113), - [sym__open_brace] = STATE(392), - [sym__close_bracket2] = STATE(1679), - [aux_sym_call_arguments_repeat1] = STATE(1897), + [sym__argument_unnamed] = STATE(2031), + [sym__argument_value] = STATE(2030), + [sym_unary_operator] = STATE(1361), + [sym_binary_operator] = STATE(1361), + [sym_extract_operator] = STATE(1361), + [sym_namespace_operator] = STATE(1361), + [sym_integer] = STATE(1361), + [sym_complex] = STATE(1361), + [sym_float] = STATE(1361), + [sym__float_literal] = STATE(1620), + [sym_string] = STATE(1630), + [sym__single_quoted_string] = STATE(1624), + [sym__double_quoted_string] = STATE(1625), + [sym__argument_name_string_or_identifier_or_null] = STATE(2059), + [sym_na] = STATE(1361), + [sym__expression] = STATE(1361), + [sym__open_parenthesis] = STATE(1056), + [sym__close_parenthesis] = STATE(1751), + [sym__open_brace] = STATE(402), + [aux_sym_call_arguments_repeat1] = STATE(1840), [sym_identifier] = ACTIONS(379), [anon_sym_BSLASH] = ACTIONS(381), [anon_sym_function] = ACTIONS(383), @@ -24776,42 +24776,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comma] = ACTIONS(415), [sym__raw_string_literal] = ACTIONS(417), [sym__external_open_parenthesis] = ACTIONS(419), - [sym__external_open_brace] = ACTIONS(421), - [sym__external_close_bracket2] = ACTIONS(423), + [sym__external_close_parenthesis] = ACTIONS(421), + [sym__external_open_brace] = ACTIONS(423), }, [249] = { - [sym_function_definition] = STATE(1442), - [sym_if_statement] = STATE(1442), - [sym_for_statement] = STATE(1442), - [sym_while_statement] = STATE(1442), - [sym_repeat_statement] = STATE(1442), - [sym_braced_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_call] = STATE(1442), - [sym_subset] = STATE(1442), - [sym_subset2] = STATE(1442), - [sym_argument] = STATE(1847), - [sym__argument_named] = STATE(2035), - [sym__argument_unnamed] = STATE(2036), - [sym__argument_value] = STATE(2037), - [sym_unary_operator] = STATE(1442), - [sym_binary_operator] = STATE(1442), - [sym_extract_operator] = STATE(1442), - [sym_namespace_operator] = STATE(1442), - [sym_integer] = STATE(1442), - [sym_complex] = STATE(1442), - [sym_float] = STATE(1442), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1608), - [sym__single_quoted_string] = STATE(1630), - [sym__double_quoted_string] = STATE(1605), - [sym__argument_name_string_or_identifier_or_null] = STATE(2062), - [sym_na] = STATE(1442), - [sym__expression] = STATE(1442), - [sym__open_parenthesis] = STATE(1096), - [sym__close_parenthesis] = STATE(328), - [sym__open_brace] = STATE(423), - [aux_sym_call_arguments_repeat1] = STATE(1848), + [sym_function_definition] = STATE(1552), + [sym_if_statement] = STATE(1552), + [sym_for_statement] = STATE(1552), + [sym_while_statement] = STATE(1552), + [sym_repeat_statement] = STATE(1552), + [sym_braced_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_call] = STATE(1552), + [sym_subset] = STATE(1552), + [sym_subset2] = STATE(1552), + [sym_argument] = STATE(1939), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2035), + [sym__argument_value] = STATE(2047), + [sym_unary_operator] = STATE(1552), + [sym_binary_operator] = STATE(1552), + [sym_extract_operator] = STATE(1552), + [sym_namespace_operator] = STATE(1552), + [sym_integer] = STATE(1552), + [sym_complex] = STATE(1552), + [sym_float] = STATE(1552), + [sym__float_literal] = STATE(1610), + [sym_string] = STATE(1627), + [sym__single_quoted_string] = STATE(1604), + [sym__double_quoted_string] = STATE(1632), + [sym__argument_name_string_or_identifier_or_null] = STATE(2054), + [sym_na] = STATE(1552), + [sym__expression] = STATE(1552), + [sym__open_parenthesis] = STATE(1069), + [sym__open_brace] = STATE(422), + [sym__close_bracket2] = STATE(1679), + [aux_sym_call_arguments_repeat1] = STATE(1850), [sym_identifier] = ACTIONS(425), [anon_sym_BSLASH] = ACTIONS(427), [anon_sym_function] = ACTIONS(429), @@ -24847,113 +24847,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comma] = ACTIONS(461), [sym__raw_string_literal] = ACTIONS(463), [sym__external_open_parenthesis] = ACTIONS(465), - [sym__external_close_parenthesis] = ACTIONS(467), - [sym__external_open_brace] = ACTIONS(469), + [sym__external_open_brace] = ACTIONS(467), + [sym__external_close_bracket2] = ACTIONS(469), }, [250] = { - [sym_string] = STATE(414), - [sym__single_quoted_string] = STATE(308), - [sym__double_quoted_string] = STATE(307), - [aux_sym_function_definition_repeat1] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(361), + [sym_string] = STATE(435), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [aux_sym_function_definition_repeat1] = STATE(334), [sym_identifier] = ACTIONS(471), - [anon_sym_BSLASH] = ACTIONS(361), - [anon_sym_function] = ACTIONS(365), - [anon_sym_EQ] = ACTIONS(365), - [anon_sym_if] = ACTIONS(365), - [anon_sym_for] = ACTIONS(365), - [anon_sym_while] = ACTIONS(365), - [anon_sym_repeat] = ACTIONS(365), - [anon_sym_QMARK] = ACTIONS(361), - [anon_sym_TILDE] = ACTIONS(361), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_PLUS] = ACTIONS(361), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_LT_DASH] = ACTIONS(361), - [anon_sym_LT_LT_DASH] = ACTIONS(361), - [anon_sym_COLON_EQ] = ACTIONS(361), - [anon_sym_DASH_GT] = ACTIONS(365), - [anon_sym_DASH_GT_GT] = ACTIONS(361), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_PIPE_PIPE] = ACTIONS(361), - [anon_sym_AMP_AMP] = ACTIONS(361), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_LT_EQ] = ACTIONS(361), - [anon_sym_GT] = ACTIONS(365), - [anon_sym_GT_EQ] = ACTIONS(361), - [anon_sym_EQ_EQ] = ACTIONS(361), - [anon_sym_BANG_EQ] = ACTIONS(361), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_SLASH] = ACTIONS(361), - [anon_sym_STAR_STAR] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(361), - [aux_sym_binary_operator_token1] = ACTIONS(361), - [anon_sym_PIPE_GT] = ACTIONS(361), - [anon_sym_COLON] = ACTIONS(365), - [anon_sym_DOLLAR] = ACTIONS(361), - [anon_sym_AT] = ACTIONS(361), - [sym__hex_literal] = ACTIONS(361), - [sym__number_literal] = ACTIONS(365), + [anon_sym_BSLASH] = ACTIONS(347), + [anon_sym_function] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_repeat] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(347), + [anon_sym_TILDE] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(347), + [anon_sym_COLON_EQ] = ACTIONS(347), + [anon_sym_DASH_GT] = ACTIONS(351), + [anon_sym_DASH_GT_GT] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_PIPE_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_STAR_STAR] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [aux_sym_binary_operator_token1] = ACTIONS(347), + [anon_sym_PIPE_GT] = ACTIONS(347), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_AT] = ACTIONS(347), + [sym__hex_literal] = ACTIONS(347), + [sym__number_literal] = ACTIONS(351), [anon_sym_SQUOTE] = ACTIONS(473), [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(471), [sym_dot_dot_i] = ACTIONS(471), - [sym_return] = ACTIONS(365), - [sym_next] = ACTIONS(365), - [sym_break] = ACTIONS(365), - [sym_true] = ACTIONS(365), - [sym_false] = ACTIONS(365), - [sym_null] = ACTIONS(365), - [sym_inf] = ACTIONS(365), - [sym_nan] = ACTIONS(365), - [anon_sym_NA] = ACTIONS(365), - [anon_sym_NA_integer_] = ACTIONS(365), - [anon_sym_NA_real_] = ACTIONS(365), - [anon_sym_NA_complex_] = ACTIONS(365), - [anon_sym_NA_character_] = ACTIONS(365), + [sym_return] = ACTIONS(351), + [sym_next] = ACTIONS(351), + [sym_break] = ACTIONS(351), + [sym_true] = ACTIONS(351), + [sym_false] = ACTIONS(351), + [sym_null] = ACTIONS(351), + [sym_inf] = ACTIONS(351), + [sym_nan] = ACTIONS(351), + [anon_sym_NA] = ACTIONS(351), + [anon_sym_NA_integer_] = ACTIONS(351), + [anon_sym_NA_real_] = ACTIONS(351), + [anon_sym_NA_complex_] = ACTIONS(351), + [anon_sym_NA_character_] = ACTIONS(351), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(361), - [sym__semicolon] = ACTIONS(361), + [sym__newline] = ACTIONS(347), + [sym__semicolon] = ACTIONS(347), [sym__raw_string_literal] = ACTIONS(477), - [sym__external_open_parenthesis] = ACTIONS(361), - [sym__external_open_brace] = ACTIONS(361), - [sym__external_open_bracket] = ACTIONS(361), - [sym__external_open_bracket2] = ACTIONS(361), + [sym__external_open_parenthesis] = ACTIONS(347), + [sym__external_open_brace] = ACTIONS(347), + [sym__external_close_brace] = ACTIONS(347), + [sym__external_open_bracket] = ACTIONS(347), + [sym__external_open_bracket2] = ACTIONS(347), }, [251] = { - [sym_function_definition] = STATE(1346), - [sym_if_statement] = STATE(1346), - [sym_for_statement] = STATE(1346), - [sym_while_statement] = STATE(1346), - [sym_repeat_statement] = STATE(1346), - [sym_braced_expression] = STATE(1346), - [sym_parenthesized_expression] = STATE(1346), - [sym_call] = STATE(1346), - [sym_subset] = STATE(1346), - [sym_subset2] = STATE(1346), - [sym_argument] = STATE(1866), + [sym_string] = STATE(420), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(309), + [aux_sym_function_definition_repeat1] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(347), + [sym_identifier] = ACTIONS(479), + [anon_sym_BSLASH] = ACTIONS(347), + [anon_sym_function] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_repeat] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(347), + [anon_sym_TILDE] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(347), + [anon_sym_COLON_EQ] = ACTIONS(347), + [anon_sym_DASH_GT] = ACTIONS(351), + [anon_sym_DASH_GT_GT] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_PIPE_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_STAR_STAR] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [aux_sym_binary_operator_token1] = ACTIONS(347), + [anon_sym_PIPE_GT] = ACTIONS(347), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_AT] = ACTIONS(347), + [sym__hex_literal] = ACTIONS(347), + [sym__number_literal] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(483), + [sym_dots] = ACTIONS(479), + [sym_dot_dot_i] = ACTIONS(479), + [sym_return] = ACTIONS(351), + [sym_next] = ACTIONS(351), + [sym_break] = ACTIONS(351), + [sym_true] = ACTIONS(351), + [sym_false] = ACTIONS(351), + [sym_null] = ACTIONS(351), + [sym_inf] = ACTIONS(351), + [sym_nan] = ACTIONS(351), + [anon_sym_NA] = ACTIONS(351), + [anon_sym_NA_integer_] = ACTIONS(351), + [anon_sym_NA_real_] = ACTIONS(351), + [anon_sym_NA_complex_] = ACTIONS(351), + [anon_sym_NA_character_] = ACTIONS(351), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(347), + [sym__semicolon] = ACTIONS(347), + [sym__raw_string_literal] = ACTIONS(485), + [sym__external_open_parenthesis] = ACTIONS(347), + [sym__external_open_brace] = ACTIONS(347), + [sym__external_open_bracket] = ACTIONS(347), + [sym__external_open_bracket2] = ACTIONS(347), + }, + [252] = { + [sym_string] = STATE(361), + [sym__single_quoted_string] = STATE(292), + [sym__double_quoted_string] = STATE(293), + [sym_identifier] = ACTIONS(487), + [anon_sym_BSLASH] = ACTIONS(489), + [anon_sym_function] = ACTIONS(491), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [anon_sym_repeat] = ACTIONS(491), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_LT_DASH] = ACTIONS(489), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [anon_sym_COLON_EQ] = ACTIONS(489), + [anon_sym_DASH_GT] = ACTIONS(491), + [anon_sym_DASH_GT_GT] = ACTIONS(489), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_PIPE_PIPE] = ACTIONS(489), + [anon_sym_AMP_AMP] = ACTIONS(489), + [anon_sym_LT] = ACTIONS(491), + [anon_sym_LT_EQ] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(491), + [anon_sym_GT_EQ] = ACTIONS(489), + [anon_sym_EQ_EQ] = ACTIONS(489), + [anon_sym_BANG_EQ] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_SLASH] = ACTIONS(489), + [anon_sym_STAR_STAR] = ACTIONS(489), + [anon_sym_CARET] = ACTIONS(489), + [aux_sym_binary_operator_token1] = ACTIONS(489), + [anon_sym_PIPE_GT] = ACTIONS(489), + [anon_sym_COLON] = ACTIONS(491), + [anon_sym_DOLLAR] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(489), + [sym__hex_literal] = ACTIONS(489), + [sym__number_literal] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_dots] = ACTIONS(487), + [sym_dot_dot_i] = ACTIONS(487), + [sym_return] = ACTIONS(491), + [sym_next] = ACTIONS(491), + [sym_break] = ACTIONS(491), + [sym_true] = ACTIONS(491), + [sym_false] = ACTIONS(491), + [sym_null] = ACTIONS(491), + [sym_inf] = ACTIONS(491), + [sym_nan] = ACTIONS(491), + [anon_sym_NA] = ACTIONS(491), + [anon_sym_NA_integer_] = ACTIONS(491), + [anon_sym_NA_real_] = ACTIONS(491), + [anon_sym_NA_complex_] = ACTIONS(491), + [anon_sym_NA_character_] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(489), + [sym__semicolon] = ACTIONS(489), + [sym__raw_string_literal] = ACTIONS(365), + [sym__external_else] = ACTIONS(489), + [sym__external_open_parenthesis] = ACTIONS(489), + [sym__external_open_brace] = ACTIONS(489), + [sym__external_close_brace] = ACTIONS(489), + [sym__external_open_bracket] = ACTIONS(489), + [sym__external_open_bracket2] = ACTIONS(489), + }, + [253] = { + [sym_function_definition] = STATE(1575), + [sym_if_statement] = STATE(1575), + [sym_for_statement] = STATE(1575), + [sym_while_statement] = STATE(1575), + [sym_repeat_statement] = STATE(1575), + [sym_braced_expression] = STATE(1575), + [sym_parenthesized_expression] = STATE(1575), + [sym_call] = STATE(1575), + [sym_subset] = STATE(1575), + [sym_subset2] = STATE(1575), + [sym_argument] = STATE(1846), + [sym__argument_named] = STATE(2032), + [sym__argument_unnamed] = STATE(2045), + [sym__argument_value] = STATE(2043), + [sym_unary_operator] = STATE(1575), + [sym_binary_operator] = STATE(1575), + [sym_extract_operator] = STATE(1575), + [sym_namespace_operator] = STATE(1575), + [sym_integer] = STATE(1575), + [sym_complex] = STATE(1575), + [sym_float] = STATE(1575), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1628), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1611), + [sym__argument_name_string_or_identifier_or_null] = STATE(2071), + [sym_na] = STATE(1575), + [sym__expression] = STATE(1575), + [sym__open_parenthesis] = STATE(1064), + [sym__open_brace] = STATE(418), + [sym__close_bracket] = STATE(443), + [aux_sym_call_arguments_repeat1] = STATE(1964), + [sym_identifier] = ACTIONS(493), + [anon_sym_BSLASH] = ACTIONS(495), + [anon_sym_function] = ACTIONS(497), + [anon_sym_if] = ACTIONS(499), + [anon_sym_for] = ACTIONS(501), + [anon_sym_while] = ACTIONS(503), + [anon_sym_repeat] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [sym__hex_literal] = ACTIONS(515), + [sym__number_literal] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(521), + [sym_dots] = ACTIONS(493), + [sym_dot_dot_i] = ACTIONS(493), + [sym_return] = ACTIONS(523), + [sym_next] = ACTIONS(523), + [sym_break] = ACTIONS(523), + [sym_true] = ACTIONS(523), + [sym_false] = ACTIONS(523), + [sym_null] = ACTIONS(525), + [sym_inf] = ACTIONS(523), + [sym_nan] = ACTIONS(523), + [anon_sym_NA] = ACTIONS(527), + [anon_sym_NA_integer_] = ACTIONS(527), + [anon_sym_NA_real_] = ACTIONS(527), + [anon_sym_NA_complex_] = ACTIONS(527), + [anon_sym_NA_character_] = ACTIONS(527), + [sym_comment] = ACTIONS(3), + [sym_comma] = ACTIONS(529), + [sym__raw_string_literal] = ACTIONS(531), + [sym__external_open_parenthesis] = ACTIONS(533), + [sym__external_open_brace] = ACTIONS(535), + [sym__external_close_bracket] = ACTIONS(537), + }, + [254] = { + [sym_string] = STATE(340), + [sym__single_quoted_string] = STATE(288), + [sym__double_quoted_string] = STATE(289), + [ts_builtin_sym_end] = ACTIONS(489), + [sym_identifier] = ACTIONS(539), + [anon_sym_BSLASH] = ACTIONS(489), + [anon_sym_function] = ACTIONS(491), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [anon_sym_repeat] = ACTIONS(491), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_LT_DASH] = ACTIONS(489), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [anon_sym_COLON_EQ] = ACTIONS(489), + [anon_sym_DASH_GT] = ACTIONS(491), + [anon_sym_DASH_GT_GT] = ACTIONS(489), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_PIPE_PIPE] = ACTIONS(489), + [anon_sym_AMP_AMP] = ACTIONS(489), + [anon_sym_LT] = ACTIONS(491), + [anon_sym_LT_EQ] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(491), + [anon_sym_GT_EQ] = ACTIONS(489), + [anon_sym_EQ_EQ] = ACTIONS(489), + [anon_sym_BANG_EQ] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_SLASH] = ACTIONS(489), + [anon_sym_STAR_STAR] = ACTIONS(489), + [anon_sym_CARET] = ACTIONS(489), + [aux_sym_binary_operator_token1] = ACTIONS(489), + [anon_sym_PIPE_GT] = ACTIONS(489), + [anon_sym_COLON] = ACTIONS(491), + [anon_sym_DOLLAR] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(489), + [sym__hex_literal] = ACTIONS(489), + [sym__number_literal] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(355), + [sym_dots] = ACTIONS(539), + [sym_dot_dot_i] = ACTIONS(539), + [sym_return] = ACTIONS(491), + [sym_next] = ACTIONS(491), + [sym_break] = ACTIONS(491), + [sym_true] = ACTIONS(491), + [sym_false] = ACTIONS(491), + [sym_null] = ACTIONS(491), + [sym_inf] = ACTIONS(491), + [sym_nan] = ACTIONS(491), + [anon_sym_NA] = ACTIONS(491), + [anon_sym_NA_integer_] = ACTIONS(491), + [anon_sym_NA_real_] = ACTIONS(491), + [anon_sym_NA_complex_] = ACTIONS(491), + [anon_sym_NA_character_] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(489), + [sym__semicolon] = ACTIONS(489), + [sym__raw_string_literal] = ACTIONS(357), + [sym__external_else] = ACTIONS(489), + [sym__external_open_parenthesis] = ACTIONS(489), + [sym__external_open_brace] = ACTIONS(489), + [sym__external_open_bracket] = ACTIONS(489), + [sym__external_open_bracket2] = ACTIONS(489), + }, + [255] = { + [sym_function_definition] = STATE(1361), + [sym_if_statement] = STATE(1361), + [sym_for_statement] = STATE(1361), + [sym_while_statement] = STATE(1361), + [sym_repeat_statement] = STATE(1361), + [sym_braced_expression] = STATE(1361), + [sym_parenthesized_expression] = STATE(1361), + [sym_call] = STATE(1361), + [sym_subset] = STATE(1361), + [sym_subset2] = STATE(1361), + [sym_argument] = STATE(1902), [sym__argument_named] = STATE(2046), - [sym__argument_unnamed] = STATE(2041), - [sym__argument_value] = STATE(2040), - [sym_unary_operator] = STATE(1346), - [sym_binary_operator] = STATE(1346), - [sym_extract_operator] = STATE(1346), - [sym_namespace_operator] = STATE(1346), - [sym_integer] = STATE(1346), - [sym_complex] = STATE(1346), - [sym_float] = STATE(1346), - [sym__float_literal] = STATE(1625), - [sym_string] = STATE(1622), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1621), - [sym__argument_name_string_or_identifier_or_null] = STATE(2054), - [sym_na] = STATE(1346), - [sym__expression] = STATE(1346), - [sym__open_parenthesis] = STATE(1113), - [sym__open_brace] = STATE(392), - [sym__close_bracket2] = STATE(1637), - [aux_sym_call_arguments_repeat1] = STATE(1853), + [sym__argument_unnamed] = STATE(2031), + [sym__argument_value] = STATE(2030), + [sym_unary_operator] = STATE(1361), + [sym_binary_operator] = STATE(1361), + [sym_extract_operator] = STATE(1361), + [sym_namespace_operator] = STATE(1361), + [sym_integer] = STATE(1361), + [sym_complex] = STATE(1361), + [sym_float] = STATE(1361), + [sym__float_literal] = STATE(1620), + [sym_string] = STATE(1630), + [sym__single_quoted_string] = STATE(1624), + [sym__double_quoted_string] = STATE(1625), + [sym__argument_name_string_or_identifier_or_null] = STATE(2059), + [sym_na] = STATE(1361), + [sym__expression] = STATE(1361), + [sym__open_parenthesis] = STATE(1056), + [sym__close_parenthesis] = STATE(1713), + [sym__open_brace] = STATE(402), + [aux_sym_call_arguments_repeat1] = STATE(1908), [sym_identifier] = ACTIONS(379), [anon_sym_BSLASH] = ACTIONS(381), [anon_sym_function] = ACTIONS(383), @@ -24989,255 +25273,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comma] = ACTIONS(415), [sym__raw_string_literal] = ACTIONS(417), [sym__external_open_parenthesis] = ACTIONS(419), - [sym__external_open_brace] = ACTIONS(421), - [sym__external_close_bracket2] = ACTIONS(479), - }, - [252] = { - [sym_function_definition] = STATE(1372), - [sym_if_statement] = STATE(1372), - [sym_for_statement] = STATE(1372), - [sym_while_statement] = STATE(1372), - [sym_repeat_statement] = STATE(1372), - [sym_braced_expression] = STATE(1372), - [sym_parenthesized_expression] = STATE(1372), - [sym_call] = STATE(1372), - [sym_subset] = STATE(1372), - [sym_subset2] = STATE(1372), - [sym_argument] = STATE(1888), - [sym__argument_named] = STATE(2030), - [sym__argument_unnamed] = STATE(2031), - [sym__argument_value] = STATE(2034), - [sym_unary_operator] = STATE(1372), - [sym_binary_operator] = STATE(1372), - [sym_extract_operator] = STATE(1372), - [sym_namespace_operator] = STATE(1372), - [sym_integer] = STATE(1372), - [sym_complex] = STATE(1372), - [sym_float] = STATE(1372), - [sym__float_literal] = STATE(1611), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1613), - [sym__double_quoted_string] = STATE(1614), - [sym__argument_name_string_or_identifier_or_null] = STATE(2063), - [sym_na] = STATE(1372), - [sym__expression] = STATE(1372), - [sym__open_parenthesis] = STATE(1108), - [sym__open_brace] = STATE(436), - [sym__close_bracket] = STATE(1653), - [aux_sym_call_arguments_repeat1] = STATE(1867), - [sym_identifier] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_function] = ACTIONS(485), - [anon_sym_if] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_while] = ACTIONS(491), - [anon_sym_repeat] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [sym__hex_literal] = ACTIONS(503), - [sym__number_literal] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(509), - [sym_dots] = ACTIONS(481), - [sym_dot_dot_i] = ACTIONS(481), - [sym_return] = ACTIONS(511), - [sym_next] = ACTIONS(511), - [sym_break] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(513), - [sym_inf] = ACTIONS(511), - [sym_nan] = ACTIONS(511), - [anon_sym_NA] = ACTIONS(515), - [anon_sym_NA_integer_] = ACTIONS(515), - [anon_sym_NA_real_] = ACTIONS(515), - [anon_sym_NA_complex_] = ACTIONS(515), - [anon_sym_NA_character_] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(517), - [sym__raw_string_literal] = ACTIONS(519), - [sym__external_open_parenthesis] = ACTIONS(521), - [sym__external_open_brace] = ACTIONS(523), - [sym__external_close_bracket] = ACTIONS(525), - }, - [253] = { - [sym_string] = STATE(344), - [sym__single_quoted_string] = STATE(286), - [sym__double_quoted_string] = STATE(302), - [sym_identifier] = ACTIONS(527), - [anon_sym_BSLASH] = ACTIONS(529), - [anon_sym_function] = ACTIONS(531), - [anon_sym_EQ] = ACTIONS(531), - [anon_sym_if] = ACTIONS(531), - [anon_sym_for] = ACTIONS(531), - [anon_sym_while] = ACTIONS(531), - [anon_sym_repeat] = ACTIONS(531), - [anon_sym_QMARK] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [anon_sym_BANG] = ACTIONS(531), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_LT_DASH] = ACTIONS(529), - [anon_sym_LT_LT_DASH] = ACTIONS(529), - [anon_sym_COLON_EQ] = ACTIONS(529), - [anon_sym_DASH_GT] = ACTIONS(531), - [anon_sym_DASH_GT_GT] = ACTIONS(529), - [anon_sym_PIPE] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(531), - [anon_sym_PIPE_PIPE] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(529), - [anon_sym_LT] = ACTIONS(531), - [anon_sym_LT_EQ] = ACTIONS(529), - [anon_sym_GT] = ACTIONS(531), - [anon_sym_GT_EQ] = ACTIONS(529), - [anon_sym_EQ_EQ] = ACTIONS(529), - [anon_sym_BANG_EQ] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(529), - [anon_sym_STAR_STAR] = ACTIONS(529), - [anon_sym_CARET] = ACTIONS(529), - [aux_sym_binary_operator_token1] = ACTIONS(529), - [anon_sym_PIPE_GT] = ACTIONS(529), - [anon_sym_COLON] = ACTIONS(531), - [anon_sym_DOLLAR] = ACTIONS(529), - [anon_sym_AT] = ACTIONS(529), - [sym__hex_literal] = ACTIONS(529), - [sym__number_literal] = ACTIONS(531), - [anon_sym_SQUOTE] = ACTIONS(353), - [anon_sym_DQUOTE] = ACTIONS(355), - [sym_dots] = ACTIONS(527), - [sym_dot_dot_i] = ACTIONS(527), - [sym_return] = ACTIONS(531), - [sym_next] = ACTIONS(531), - [sym_break] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_null] = ACTIONS(531), - [sym_inf] = ACTIONS(531), - [sym_nan] = ACTIONS(531), - [anon_sym_NA] = ACTIONS(531), - [anon_sym_NA_integer_] = ACTIONS(531), - [anon_sym_NA_real_] = ACTIONS(531), - [anon_sym_NA_complex_] = ACTIONS(531), - [anon_sym_NA_character_] = ACTIONS(531), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(529), - [sym__semicolon] = ACTIONS(529), - [sym__raw_string_literal] = ACTIONS(359), - [sym__external_else] = ACTIONS(529), - [sym__external_open_parenthesis] = ACTIONS(529), - [sym__external_open_brace] = ACTIONS(529), - [sym__external_close_brace] = ACTIONS(529), - [sym__external_open_bracket] = ACTIONS(529), - [sym__external_open_bracket2] = ACTIONS(529), + [sym__external_close_parenthesis] = ACTIONS(541), + [sym__external_open_brace] = ACTIONS(423), }, - [254] = { - [sym_function_definition] = STATE(1442), - [sym_if_statement] = STATE(1442), - [sym_for_statement] = STATE(1442), - [sym_while_statement] = STATE(1442), - [sym_repeat_statement] = STATE(1442), - [sym_braced_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_call] = STATE(1442), - [sym_subset] = STATE(1442), - [sym_subset2] = STATE(1442), - [sym_argument] = STATE(1807), - [sym__argument_named] = STATE(2035), - [sym__argument_unnamed] = STATE(2036), - [sym__argument_value] = STATE(2037), - [sym_unary_operator] = STATE(1442), - [sym_binary_operator] = STATE(1442), - [sym_extract_operator] = STATE(1442), - [sym_namespace_operator] = STATE(1442), - [sym_integer] = STATE(1442), - [sym_complex] = STATE(1442), - [sym_float] = STATE(1442), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1608), - [sym__single_quoted_string] = STATE(1630), - [sym__double_quoted_string] = STATE(1605), - [sym__argument_name_string_or_identifier_or_null] = STATE(2062), - [sym_na] = STATE(1442), - [sym__expression] = STATE(1442), - [sym__open_parenthesis] = STATE(1096), - [sym__close_parenthesis] = STATE(1687), - [sym__open_brace] = STATE(423), - [aux_sym_call_arguments_repeat1] = STATE(1892), - [sym_identifier] = ACTIONS(425), - [anon_sym_BSLASH] = ACTIONS(427), - [anon_sym_function] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_for] = ACTIONS(433), - [anon_sym_while] = ACTIONS(435), - [anon_sym_repeat] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [sym__hex_literal] = ACTIONS(447), - [sym__number_literal] = ACTIONS(449), - [anon_sym_SQUOTE] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_dots] = ACTIONS(425), - [sym_dot_dot_i] = ACTIONS(425), - [sym_return] = ACTIONS(455), - [sym_next] = ACTIONS(455), - [sym_break] = ACTIONS(455), - [sym_true] = ACTIONS(455), - [sym_false] = ACTIONS(455), - [sym_null] = ACTIONS(457), - [sym_inf] = ACTIONS(455), - [sym_nan] = ACTIONS(455), - [anon_sym_NA] = ACTIONS(459), - [anon_sym_NA_integer_] = ACTIONS(459), - [anon_sym_NA_real_] = ACTIONS(459), - [anon_sym_NA_complex_] = ACTIONS(459), - [anon_sym_NA_character_] = ACTIONS(459), + [256] = { + [sym_function_definition] = STATE(1575), + [sym_if_statement] = STATE(1575), + [sym_for_statement] = STATE(1575), + [sym_while_statement] = STATE(1575), + [sym_repeat_statement] = STATE(1575), + [sym_braced_expression] = STATE(1575), + [sym_parenthesized_expression] = STATE(1575), + [sym_call] = STATE(1575), + [sym_subset] = STATE(1575), + [sym_subset2] = STATE(1575), + [sym_argument] = STATE(1810), + [sym__argument_named] = STATE(2032), + [sym__argument_unnamed] = STATE(2045), + [sym__argument_value] = STATE(2043), + [sym_unary_operator] = STATE(1575), + [sym_binary_operator] = STATE(1575), + [sym_extract_operator] = STATE(1575), + [sym_namespace_operator] = STATE(1575), + [sym_integer] = STATE(1575), + [sym_complex] = STATE(1575), + [sym_float] = STATE(1575), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1628), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1611), + [sym__argument_name_string_or_identifier_or_null] = STATE(2071), + [sym_na] = STATE(1575), + [sym__expression] = STATE(1575), + [sym__open_parenthesis] = STATE(1064), + [sym__open_brace] = STATE(418), + [sym__close_bracket] = STATE(1714), + [aux_sym_call_arguments_repeat1] = STATE(1838), + [sym_identifier] = ACTIONS(493), + [anon_sym_BSLASH] = ACTIONS(495), + [anon_sym_function] = ACTIONS(497), + [anon_sym_if] = ACTIONS(499), + [anon_sym_for] = ACTIONS(501), + [anon_sym_while] = ACTIONS(503), + [anon_sym_repeat] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [sym__hex_literal] = ACTIONS(515), + [sym__number_literal] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(521), + [sym_dots] = ACTIONS(493), + [sym_dot_dot_i] = ACTIONS(493), + [sym_return] = ACTIONS(523), + [sym_next] = ACTIONS(523), + [sym_break] = ACTIONS(523), + [sym_true] = ACTIONS(523), + [sym_false] = ACTIONS(523), + [sym_null] = ACTIONS(525), + [sym_inf] = ACTIONS(523), + [sym_nan] = ACTIONS(523), + [anon_sym_NA] = ACTIONS(527), + [anon_sym_NA_integer_] = ACTIONS(527), + [anon_sym_NA_real_] = ACTIONS(527), + [anon_sym_NA_complex_] = ACTIONS(527), + [anon_sym_NA_character_] = ACTIONS(527), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(461), - [sym__raw_string_literal] = ACTIONS(463), - [sym__external_open_parenthesis] = ACTIONS(465), - [sym__external_close_parenthesis] = ACTIONS(533), - [sym__external_open_brace] = ACTIONS(469), + [sym_comma] = ACTIONS(529), + [sym__raw_string_literal] = ACTIONS(531), + [sym__external_open_parenthesis] = ACTIONS(533), + [sym__external_open_brace] = ACTIONS(535), + [sym__external_close_bracket] = ACTIONS(543), }, - [255] = { - [sym_function_definition] = STATE(1442), - [sym_if_statement] = STATE(1442), - [sym_for_statement] = STATE(1442), - [sym_while_statement] = STATE(1442), - [sym_repeat_statement] = STATE(1442), - [sym_braced_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_call] = STATE(1442), - [sym_subset] = STATE(1442), - [sym_subset2] = STATE(1442), - [sym_argument] = STATE(1918), - [sym__argument_named] = STATE(2035), - [sym__argument_unnamed] = STATE(2036), - [sym__argument_value] = STATE(2037), - [sym_unary_operator] = STATE(1442), - [sym_binary_operator] = STATE(1442), - [sym_extract_operator] = STATE(1442), - [sym_namespace_operator] = STATE(1442), - [sym_integer] = STATE(1442), - [sym_complex] = STATE(1442), - [sym_float] = STATE(1442), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1608), - [sym__single_quoted_string] = STATE(1630), - [sym__double_quoted_string] = STATE(1605), - [sym__argument_name_string_or_identifier_or_null] = STATE(2062), - [sym_na] = STATE(1442), - [sym__expression] = STATE(1442), - [sym__open_parenthesis] = STATE(1096), - [sym__close_parenthesis] = STATE(433), - [sym__open_brace] = STATE(423), - [aux_sym_call_arguments_repeat1] = STATE(1906), + [257] = { + [sym_function_definition] = STATE(1552), + [sym_if_statement] = STATE(1552), + [sym_for_statement] = STATE(1552), + [sym_while_statement] = STATE(1552), + [sym_repeat_statement] = STATE(1552), + [sym_braced_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_call] = STATE(1552), + [sym_subset] = STATE(1552), + [sym_subset2] = STATE(1552), + [sym_argument] = STATE(1830), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2035), + [sym__argument_value] = STATE(2047), + [sym_unary_operator] = STATE(1552), + [sym_binary_operator] = STATE(1552), + [sym_extract_operator] = STATE(1552), + [sym_namespace_operator] = STATE(1552), + [sym_integer] = STATE(1552), + [sym_complex] = STATE(1552), + [sym_float] = STATE(1552), + [sym__float_literal] = STATE(1610), + [sym_string] = STATE(1627), + [sym__single_quoted_string] = STATE(1604), + [sym__double_quoted_string] = STATE(1632), + [sym__argument_name_string_or_identifier_or_null] = STATE(2054), + [sym_na] = STATE(1552), + [sym__expression] = STATE(1552), + [sym__open_parenthesis] = STATE(1069), + [sym__open_brace] = STATE(422), + [sym__close_bracket2] = STATE(1734), + [aux_sym_call_arguments_repeat1] = STATE(1808), [sym_identifier] = ACTIONS(425), [anon_sym_BSLASH] = ACTIONS(427), [anon_sym_function] = ACTIONS(429), @@ -25273,113 +25415,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comma] = ACTIONS(461), [sym__raw_string_literal] = ACTIONS(463), [sym__external_open_parenthesis] = ACTIONS(465), - [sym__external_close_parenthesis] = ACTIONS(535), - [sym__external_open_brace] = ACTIONS(469), - }, - [256] = { - [sym_function_definition] = STATE(1372), - [sym_if_statement] = STATE(1372), - [sym_for_statement] = STATE(1372), - [sym_while_statement] = STATE(1372), - [sym_repeat_statement] = STATE(1372), - [sym_braced_expression] = STATE(1372), - [sym_parenthesized_expression] = STATE(1372), - [sym_call] = STATE(1372), - [sym_subset] = STATE(1372), - [sym_subset2] = STATE(1372), - [sym_argument] = STATE(1812), - [sym__argument_named] = STATE(2030), - [sym__argument_unnamed] = STATE(2031), - [sym__argument_value] = STATE(2034), - [sym_unary_operator] = STATE(1372), - [sym_binary_operator] = STATE(1372), - [sym_extract_operator] = STATE(1372), - [sym_namespace_operator] = STATE(1372), - [sym_integer] = STATE(1372), - [sym_complex] = STATE(1372), - [sym_float] = STATE(1372), - [sym__float_literal] = STATE(1611), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1613), - [sym__double_quoted_string] = STATE(1614), - [sym__argument_name_string_or_identifier_or_null] = STATE(2063), - [sym_na] = STATE(1372), - [sym__expression] = STATE(1372), - [sym__open_parenthesis] = STATE(1108), - [sym__open_brace] = STATE(436), - [sym__close_bracket] = STATE(1686), - [aux_sym_call_arguments_repeat1] = STATE(1809), - [sym_identifier] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_function] = ACTIONS(485), - [anon_sym_if] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_while] = ACTIONS(491), - [anon_sym_repeat] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [sym__hex_literal] = ACTIONS(503), - [sym__number_literal] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(509), - [sym_dots] = ACTIONS(481), - [sym_dot_dot_i] = ACTIONS(481), - [sym_return] = ACTIONS(511), - [sym_next] = ACTIONS(511), - [sym_break] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(513), - [sym_inf] = ACTIONS(511), - [sym_nan] = ACTIONS(511), - [anon_sym_NA] = ACTIONS(515), - [anon_sym_NA_integer_] = ACTIONS(515), - [anon_sym_NA_real_] = ACTIONS(515), - [anon_sym_NA_complex_] = ACTIONS(515), - [anon_sym_NA_character_] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(517), - [sym__raw_string_literal] = ACTIONS(519), - [sym__external_open_parenthesis] = ACTIONS(521), - [sym__external_open_brace] = ACTIONS(523), - [sym__external_close_bracket] = ACTIONS(537), + [sym__external_open_brace] = ACTIONS(467), + [sym__external_close_bracket2] = ACTIONS(545), }, - [257] = { - [sym_function_definition] = STATE(1442), - [sym_if_statement] = STATE(1442), - [sym_for_statement] = STATE(1442), - [sym_while_statement] = STATE(1442), - [sym_repeat_statement] = STATE(1442), - [sym_braced_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_call] = STATE(1442), - [sym_subset] = STATE(1442), - [sym_subset2] = STATE(1442), - [sym_argument] = STATE(1820), - [sym__argument_named] = STATE(2035), - [sym__argument_unnamed] = STATE(2036), - [sym__argument_value] = STATE(2037), - [sym_unary_operator] = STATE(1442), - [sym_binary_operator] = STATE(1442), - [sym_extract_operator] = STATE(1442), - [sym_namespace_operator] = STATE(1442), - [sym_integer] = STATE(1442), - [sym_complex] = STATE(1442), - [sym_float] = STATE(1442), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1608), - [sym__single_quoted_string] = STATE(1630), - [sym__double_quoted_string] = STATE(1605), - [sym__argument_name_string_or_identifier_or_null] = STATE(2062), - [sym_na] = STATE(1442), - [sym__expression] = STATE(1442), - [sym__open_parenthesis] = STATE(1096), - [sym__close_parenthesis] = STATE(357), - [sym__open_brace] = STATE(423), - [aux_sym_call_arguments_repeat1] = STATE(1821), + [258] = { + [sym_function_definition] = STATE(1552), + [sym_if_statement] = STATE(1552), + [sym_for_statement] = STATE(1552), + [sym_while_statement] = STATE(1552), + [sym_repeat_statement] = STATE(1552), + [sym_braced_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_call] = STATE(1552), + [sym_subset] = STATE(1552), + [sym_subset2] = STATE(1552), + [sym_argument] = STATE(1819), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2035), + [sym__argument_value] = STATE(2047), + [sym_unary_operator] = STATE(1552), + [sym_binary_operator] = STATE(1552), + [sym_extract_operator] = STATE(1552), + [sym_namespace_operator] = STATE(1552), + [sym_integer] = STATE(1552), + [sym_complex] = STATE(1552), + [sym_float] = STATE(1552), + [sym__float_literal] = STATE(1610), + [sym_string] = STATE(1627), + [sym__single_quoted_string] = STATE(1604), + [sym__double_quoted_string] = STATE(1632), + [sym__argument_name_string_or_identifier_or_null] = STATE(2054), + [sym_na] = STATE(1552), + [sym__expression] = STATE(1552), + [sym__open_parenthesis] = STATE(1069), + [sym__open_brace] = STATE(422), + [sym__close_bracket2] = STATE(387), + [aux_sym_call_arguments_repeat1] = STATE(1857), [sym_identifier] = ACTIONS(425), [anon_sym_BSLASH] = ACTIONS(427), [anon_sym_function] = ACTIONS(429), @@ -25415,113 +25486,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comma] = ACTIONS(461), [sym__raw_string_literal] = ACTIONS(463), [sym__external_open_parenthesis] = ACTIONS(465), - [sym__external_close_parenthesis] = ACTIONS(539), - [sym__external_open_brace] = ACTIONS(469), + [sym__external_open_brace] = ACTIONS(467), + [sym__external_close_bracket2] = ACTIONS(547), }, - [258] = { - [sym_string] = STATE(387), - [sym__single_quoted_string] = STATE(308), - [sym__double_quoted_string] = STATE(307), + [259] = { + [sym_string] = STATE(405), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), [aux_sym_function_definition_repeat1] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(349), - [sym_identifier] = ACTIONS(541), - [anon_sym_BSLASH] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_EQ] = ACTIONS(351), - [anon_sym_if] = ACTIONS(351), - [anon_sym_for] = ACTIONS(351), - [anon_sym_while] = ACTIONS(351), - [anon_sym_repeat] = ACTIONS(351), - [anon_sym_QMARK] = ACTIONS(349), - [anon_sym_TILDE] = ACTIONS(349), - [anon_sym_BANG] = ACTIONS(351), - [anon_sym_PLUS] = ACTIONS(349), - [anon_sym_DASH] = ACTIONS(351), - [anon_sym_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_COLON_EQ] = ACTIONS(349), - [anon_sym_DASH_GT] = ACTIONS(351), - [anon_sym_DASH_GT_GT] = ACTIONS(349), - [anon_sym_PIPE] = ACTIONS(351), - [anon_sym_AMP] = ACTIONS(351), - [anon_sym_PIPE_PIPE] = ACTIONS(349), - [anon_sym_AMP_AMP] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_LT_EQ] = ACTIONS(349), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_EQ] = ACTIONS(349), - [anon_sym_EQ_EQ] = ACTIONS(349), - [anon_sym_BANG_EQ] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_SLASH] = ACTIONS(349), - [anon_sym_STAR_STAR] = ACTIONS(349), - [anon_sym_CARET] = ACTIONS(349), - [aux_sym_binary_operator_token1] = ACTIONS(349), - [anon_sym_PIPE_GT] = ACTIONS(349), - [anon_sym_COLON] = ACTIONS(351), - [anon_sym_DOLLAR] = ACTIONS(349), - [anon_sym_AT] = ACTIONS(349), - [sym__hex_literal] = ACTIONS(349), - [sym__number_literal] = ACTIONS(351), + [sym_identifier] = ACTIONS(549), + [anon_sym_BSLASH] = ACTIONS(369), + [anon_sym_function] = ACTIONS(371), + [anon_sym_EQ] = ACTIONS(371), + [anon_sym_if] = ACTIONS(371), + [anon_sym_for] = ACTIONS(371), + [anon_sym_while] = ACTIONS(371), + [anon_sym_repeat] = ACTIONS(371), + [anon_sym_QMARK] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(371), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(369), + [anon_sym_LT_LT_DASH] = ACTIONS(369), + [anon_sym_COLON_EQ] = ACTIONS(369), + [anon_sym_DASH_GT] = ACTIONS(371), + [anon_sym_DASH_GT_GT] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(371), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(371), + [anon_sym_SLASH] = ACTIONS(369), + [anon_sym_STAR_STAR] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [aux_sym_binary_operator_token1] = ACTIONS(369), + [anon_sym_PIPE_GT] = ACTIONS(369), + [anon_sym_COLON] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(369), + [sym__hex_literal] = ACTIONS(369), + [sym__number_literal] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(473), [anon_sym_DQUOTE] = ACTIONS(475), - [sym_dots] = ACTIONS(541), - [sym_dot_dot_i] = ACTIONS(541), - [sym_return] = ACTIONS(351), - [sym_next] = ACTIONS(351), - [sym_break] = ACTIONS(351), - [sym_true] = ACTIONS(351), - [sym_false] = ACTIONS(351), - [sym_null] = ACTIONS(351), - [sym_inf] = ACTIONS(351), - [sym_nan] = ACTIONS(351), - [anon_sym_NA] = ACTIONS(351), - [anon_sym_NA_integer_] = ACTIONS(351), - [anon_sym_NA_real_] = ACTIONS(351), - [anon_sym_NA_complex_] = ACTIONS(351), - [anon_sym_NA_character_] = ACTIONS(351), + [sym_dots] = ACTIONS(549), + [sym_dot_dot_i] = ACTIONS(549), + [sym_return] = ACTIONS(371), + [sym_next] = ACTIONS(371), + [sym_break] = ACTIONS(371), + [sym_true] = ACTIONS(371), + [sym_false] = ACTIONS(371), + [sym_null] = ACTIONS(371), + [sym_inf] = ACTIONS(371), + [sym_nan] = ACTIONS(371), + [anon_sym_NA] = ACTIONS(371), + [anon_sym_NA_integer_] = ACTIONS(371), + [anon_sym_NA_real_] = ACTIONS(371), + [anon_sym_NA_complex_] = ACTIONS(371), + [anon_sym_NA_character_] = ACTIONS(371), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(543), - [sym__semicolon] = ACTIONS(349), + [sym__newline] = ACTIONS(551), + [sym__semicolon] = ACTIONS(369), [sym__raw_string_literal] = ACTIONS(477), - [sym__external_open_parenthesis] = ACTIONS(349), - [sym__external_open_brace] = ACTIONS(349), - [sym__external_open_bracket] = ACTIONS(349), - [sym__external_open_bracket2] = ACTIONS(349), + [sym__external_open_parenthesis] = ACTIONS(369), + [sym__external_open_brace] = ACTIONS(369), + [sym__external_close_brace] = ACTIONS(369), + [sym__external_open_bracket] = ACTIONS(369), + [sym__external_open_bracket2] = ACTIONS(369), }, - [259] = { - [sym_function_definition] = STATE(1346), - [sym_if_statement] = STATE(1346), - [sym_for_statement] = STATE(1346), - [sym_while_statement] = STATE(1346), - [sym_repeat_statement] = STATE(1346), - [sym_braced_expression] = STATE(1346), - [sym_parenthesized_expression] = STATE(1346), - [sym_call] = STATE(1346), - [sym_subset] = STATE(1346), - [sym_subset2] = STATE(1346), - [sym_argument] = STATE(1992), + [260] = { + [sym_function_definition] = STATE(1361), + [sym_if_statement] = STATE(1361), + [sym_for_statement] = STATE(1361), + [sym_while_statement] = STATE(1361), + [sym_repeat_statement] = STATE(1361), + [sym_braced_expression] = STATE(1361), + [sym_parenthesized_expression] = STATE(1361), + [sym_call] = STATE(1361), + [sym_subset] = STATE(1361), + [sym_subset2] = STATE(1361), + [sym_argument] = STATE(1906), [sym__argument_named] = STATE(2046), - [sym__argument_unnamed] = STATE(2041), - [sym__argument_value] = STATE(2040), - [sym_unary_operator] = STATE(1346), - [sym_binary_operator] = STATE(1346), - [sym_extract_operator] = STATE(1346), - [sym_namespace_operator] = STATE(1346), - [sym_integer] = STATE(1346), - [sym_complex] = STATE(1346), - [sym_float] = STATE(1346), - [sym__float_literal] = STATE(1625), - [sym_string] = STATE(1622), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1621), - [sym__argument_name_string_or_identifier_or_null] = STATE(2054), - [sym_na] = STATE(1346), - [sym__expression] = STATE(1346), - [sym__open_parenthesis] = STATE(1113), - [sym__open_brace] = STATE(392), - [sym__close_bracket2] = STATE(1684), - [aux_sym_call_arguments_repeat1] = STATE(1850), + [sym__argument_unnamed] = STATE(2031), + [sym__argument_value] = STATE(2030), + [sym_unary_operator] = STATE(1361), + [sym_binary_operator] = STATE(1361), + [sym_extract_operator] = STATE(1361), + [sym_namespace_operator] = STATE(1361), + [sym_integer] = STATE(1361), + [sym_complex] = STATE(1361), + [sym_float] = STATE(1361), + [sym__float_literal] = STATE(1620), + [sym_string] = STATE(1630), + [sym__single_quoted_string] = STATE(1624), + [sym__double_quoted_string] = STATE(1625), + [sym__argument_name_string_or_identifier_or_null] = STATE(2059), + [sym_na] = STATE(1361), + [sym__expression] = STATE(1361), + [sym__open_parenthesis] = STATE(1056), + [sym__close_parenthesis] = STATE(423), + [sym__open_brace] = STATE(402), + [aux_sym_call_arguments_repeat1] = STATE(1921), [sym_identifier] = ACTIONS(379), [anon_sym_BSLASH] = ACTIONS(381), [anon_sym_function] = ACTIONS(383), @@ -25557,42 +25628,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comma] = ACTIONS(415), [sym__raw_string_literal] = ACTIONS(417), [sym__external_open_parenthesis] = ACTIONS(419), - [sym__external_open_brace] = ACTIONS(421), - [sym__external_close_bracket2] = ACTIONS(545), + [sym__external_close_parenthesis] = ACTIONS(553), + [sym__external_open_brace] = ACTIONS(423), }, - [260] = { - [sym_function_definition] = STATE(1442), - [sym_if_statement] = STATE(1442), - [sym_for_statement] = STATE(1442), - [sym_while_statement] = STATE(1442), - [sym_repeat_statement] = STATE(1442), - [sym_braced_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_call] = STATE(1442), - [sym_subset] = STATE(1442), - [sym_subset2] = STATE(1442), - [sym_argument] = STATE(1891), - [sym__argument_named] = STATE(2035), - [sym__argument_unnamed] = STATE(2036), - [sym__argument_value] = STATE(2037), - [sym_unary_operator] = STATE(1442), - [sym_binary_operator] = STATE(1442), - [sym_extract_operator] = STATE(1442), - [sym_namespace_operator] = STATE(1442), - [sym_integer] = STATE(1442), - [sym_complex] = STATE(1442), - [sym_float] = STATE(1442), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1608), - [sym__single_quoted_string] = STATE(1630), - [sym__double_quoted_string] = STATE(1605), - [sym__argument_name_string_or_identifier_or_null] = STATE(2062), - [sym_na] = STATE(1442), - [sym__expression] = STATE(1442), - [sym__open_parenthesis] = STATE(1096), - [sym__close_parenthesis] = STATE(1725), - [sym__open_brace] = STATE(423), - [aux_sym_call_arguments_repeat1] = STATE(1974), + [261] = { + [sym_function_definition] = STATE(1575), + [sym_if_statement] = STATE(1575), + [sym_for_statement] = STATE(1575), + [sym_while_statement] = STATE(1575), + [sym_repeat_statement] = STATE(1575), + [sym_braced_expression] = STATE(1575), + [sym_parenthesized_expression] = STATE(1575), + [sym_call] = STATE(1575), + [sym_subset] = STATE(1575), + [sym_subset2] = STATE(1575), + [sym_argument] = STATE(1899), + [sym__argument_named] = STATE(2032), + [sym__argument_unnamed] = STATE(2045), + [sym__argument_value] = STATE(2043), + [sym_unary_operator] = STATE(1575), + [sym_binary_operator] = STATE(1575), + [sym_extract_operator] = STATE(1575), + [sym_namespace_operator] = STATE(1575), + [sym_integer] = STATE(1575), + [sym_complex] = STATE(1575), + [sym_float] = STATE(1575), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1628), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1611), + [sym__argument_name_string_or_identifier_or_null] = STATE(2071), + [sym_na] = STATE(1575), + [sym__expression] = STATE(1575), + [sym__open_parenthesis] = STATE(1064), + [sym__open_brace] = STATE(418), + [sym__close_bracket] = STATE(424), + [aux_sym_call_arguments_repeat1] = STATE(1866), + [sym_identifier] = ACTIONS(493), + [anon_sym_BSLASH] = ACTIONS(495), + [anon_sym_function] = ACTIONS(497), + [anon_sym_if] = ACTIONS(499), + [anon_sym_for] = ACTIONS(501), + [anon_sym_while] = ACTIONS(503), + [anon_sym_repeat] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [sym__hex_literal] = ACTIONS(515), + [sym__number_literal] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(521), + [sym_dots] = ACTIONS(493), + [sym_dot_dot_i] = ACTIONS(493), + [sym_return] = ACTIONS(523), + [sym_next] = ACTIONS(523), + [sym_break] = ACTIONS(523), + [sym_true] = ACTIONS(523), + [sym_false] = ACTIONS(523), + [sym_null] = ACTIONS(525), + [sym_inf] = ACTIONS(523), + [sym_nan] = ACTIONS(523), + [anon_sym_NA] = ACTIONS(527), + [anon_sym_NA_integer_] = ACTIONS(527), + [anon_sym_NA_real_] = ACTIONS(527), + [anon_sym_NA_complex_] = ACTIONS(527), + [anon_sym_NA_character_] = ACTIONS(527), + [sym_comment] = ACTIONS(3), + [sym_comma] = ACTIONS(529), + [sym__raw_string_literal] = ACTIONS(531), + [sym__external_open_parenthesis] = ACTIONS(533), + [sym__external_open_brace] = ACTIONS(535), + [sym__external_close_bracket] = ACTIONS(555), + }, + [262] = { + [sym_function_definition] = STATE(1552), + [sym_if_statement] = STATE(1552), + [sym_for_statement] = STATE(1552), + [sym_while_statement] = STATE(1552), + [sym_repeat_statement] = STATE(1552), + [sym_braced_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_call] = STATE(1552), + [sym_subset] = STATE(1552), + [sym_subset2] = STATE(1552), + [sym_argument] = STATE(1867), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2035), + [sym__argument_value] = STATE(2047), + [sym_unary_operator] = STATE(1552), + [sym_binary_operator] = STATE(1552), + [sym_extract_operator] = STATE(1552), + [sym_namespace_operator] = STATE(1552), + [sym_integer] = STATE(1552), + [sym_complex] = STATE(1552), + [sym_float] = STATE(1552), + [sym__float_literal] = STATE(1610), + [sym_string] = STATE(1627), + [sym__single_quoted_string] = STATE(1604), + [sym__double_quoted_string] = STATE(1632), + [sym__argument_name_string_or_identifier_or_null] = STATE(2054), + [sym_na] = STATE(1552), + [sym__expression] = STATE(1552), + [sym__open_parenthesis] = STATE(1069), + [sym__open_brace] = STATE(422), + [sym__close_bracket2] = STATE(429), + [aux_sym_call_arguments_repeat1] = STATE(1896), [sym_identifier] = ACTIONS(425), [anon_sym_BSLASH] = ACTIONS(427), [anon_sym_function] = ACTIONS(429), @@ -25628,113 +25770,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comma] = ACTIONS(461), [sym__raw_string_literal] = ACTIONS(463), [sym__external_open_parenthesis] = ACTIONS(465), - [sym__external_close_parenthesis] = ACTIONS(547), - [sym__external_open_brace] = ACTIONS(469), + [sym__external_open_brace] = ACTIONS(467), + [sym__external_close_bracket2] = ACTIONS(557), }, - [261] = { - [sym_function_definition] = STATE(1372), - [sym_if_statement] = STATE(1372), - [sym_for_statement] = STATE(1372), - [sym_while_statement] = STATE(1372), - [sym_repeat_statement] = STATE(1372), - [sym_braced_expression] = STATE(1372), - [sym_parenthesized_expression] = STATE(1372), - [sym_call] = STATE(1372), - [sym_subset] = STATE(1372), - [sym_subset2] = STATE(1372), - [sym_argument] = STATE(1954), - [sym__argument_named] = STATE(2030), - [sym__argument_unnamed] = STATE(2031), - [sym__argument_value] = STATE(2034), - [sym_unary_operator] = STATE(1372), - [sym_binary_operator] = STATE(1372), - [sym_extract_operator] = STATE(1372), - [sym_namespace_operator] = STATE(1372), - [sym_integer] = STATE(1372), - [sym_complex] = STATE(1372), - [sym_float] = STATE(1372), - [sym__float_literal] = STATE(1611), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1613), - [sym__double_quoted_string] = STATE(1614), - [sym__argument_name_string_or_identifier_or_null] = STATE(2063), - [sym_na] = STATE(1372), - [sym__expression] = STATE(1372), - [sym__open_parenthesis] = STATE(1108), - [sym__open_brace] = STATE(436), - [sym__close_bracket] = STATE(1729), - [aux_sym_call_arguments_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_function] = ACTIONS(485), - [anon_sym_if] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_while] = ACTIONS(491), - [anon_sym_repeat] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [sym__hex_literal] = ACTIONS(503), - [sym__number_literal] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(509), - [sym_dots] = ACTIONS(481), - [sym_dot_dot_i] = ACTIONS(481), - [sym_return] = ACTIONS(511), - [sym_next] = ACTIONS(511), - [sym_break] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(513), - [sym_inf] = ACTIONS(511), - [sym_nan] = ACTIONS(511), - [anon_sym_NA] = ACTIONS(515), - [anon_sym_NA_integer_] = ACTIONS(515), - [anon_sym_NA_real_] = ACTIONS(515), - [anon_sym_NA_complex_] = ACTIONS(515), - [anon_sym_NA_character_] = ACTIONS(515), + [263] = { + [sym_string] = STATE(401), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(309), + [aux_sym_function_definition_repeat1] = STATE(251), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(559), + [anon_sym_BSLASH] = ACTIONS(369), + [anon_sym_function] = ACTIONS(371), + [anon_sym_EQ] = ACTIONS(371), + [anon_sym_if] = ACTIONS(371), + [anon_sym_for] = ACTIONS(371), + [anon_sym_while] = ACTIONS(371), + [anon_sym_repeat] = ACTIONS(371), + [anon_sym_QMARK] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(371), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(369), + [anon_sym_LT_LT_DASH] = ACTIONS(369), + [anon_sym_COLON_EQ] = ACTIONS(369), + [anon_sym_DASH_GT] = ACTIONS(371), + [anon_sym_DASH_GT_GT] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(371), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(369), + [anon_sym_STAR] = ACTIONS(371), + [anon_sym_SLASH] = ACTIONS(369), + [anon_sym_STAR_STAR] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [aux_sym_binary_operator_token1] = ACTIONS(369), + [anon_sym_PIPE_GT] = ACTIONS(369), + [anon_sym_COLON] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(369), + [sym__hex_literal] = ACTIONS(369), + [sym__number_literal] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(483), + [sym_dots] = ACTIONS(559), + [sym_dot_dot_i] = ACTIONS(559), + [sym_return] = ACTIONS(371), + [sym_next] = ACTIONS(371), + [sym_break] = ACTIONS(371), + [sym_true] = ACTIONS(371), + [sym_false] = ACTIONS(371), + [sym_null] = ACTIONS(371), + [sym_inf] = ACTIONS(371), + [sym_nan] = ACTIONS(371), + [anon_sym_NA] = ACTIONS(371), + [anon_sym_NA_integer_] = ACTIONS(371), + [anon_sym_NA_real_] = ACTIONS(371), + [anon_sym_NA_complex_] = ACTIONS(371), + [anon_sym_NA_character_] = ACTIONS(371), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(517), - [sym__raw_string_literal] = ACTIONS(519), - [sym__external_open_parenthesis] = ACTIONS(521), - [sym__external_open_brace] = ACTIONS(523), - [sym__external_close_bracket] = ACTIONS(549), + [sym__newline] = ACTIONS(561), + [sym__semicolon] = ACTIONS(369), + [sym__raw_string_literal] = ACTIONS(485), + [sym__external_open_parenthesis] = ACTIONS(369), + [sym__external_open_brace] = ACTIONS(369), + [sym__external_open_bracket] = ACTIONS(369), + [sym__external_open_bracket2] = ACTIONS(369), }, - [262] = { - [sym_function_definition] = STATE(1346), - [sym_if_statement] = STATE(1346), - [sym_for_statement] = STATE(1346), - [sym_while_statement] = STATE(1346), - [sym_repeat_statement] = STATE(1346), - [sym_braced_expression] = STATE(1346), - [sym_parenthesized_expression] = STATE(1346), - [sym_call] = STATE(1346), - [sym_subset] = STATE(1346), - [sym_subset2] = STATE(1346), - [sym_argument] = STATE(1940), + [264] = { + [sym_function_definition] = STATE(1361), + [sym_if_statement] = STATE(1361), + [sym_for_statement] = STATE(1361), + [sym_while_statement] = STATE(1361), + [sym_repeat_statement] = STATE(1361), + [sym_braced_expression] = STATE(1361), + [sym_parenthesized_expression] = STATE(1361), + [sym_call] = STATE(1361), + [sym_subset] = STATE(1361), + [sym_subset2] = STATE(1361), + [sym_argument] = STATE(1895), [sym__argument_named] = STATE(2046), - [sym__argument_unnamed] = STATE(2041), - [sym__argument_value] = STATE(2040), - [sym_unary_operator] = STATE(1346), - [sym_binary_operator] = STATE(1346), - [sym_extract_operator] = STATE(1346), - [sym_namespace_operator] = STATE(1346), - [sym_integer] = STATE(1346), - [sym_complex] = STATE(1346), - [sym_float] = STATE(1346), - [sym__float_literal] = STATE(1625), - [sym_string] = STATE(1622), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1621), - [sym__argument_name_string_or_identifier_or_null] = STATE(2054), - [sym_na] = STATE(1346), - [sym__expression] = STATE(1346), - [sym__open_parenthesis] = STATE(1113), - [sym__open_brace] = STATE(392), - [sym__close_bracket2] = STATE(1732), - [aux_sym_call_arguments_repeat1] = STATE(1938), + [sym__argument_unnamed] = STATE(2031), + [sym__argument_value] = STATE(2030), + [sym_unary_operator] = STATE(1361), + [sym_binary_operator] = STATE(1361), + [sym_extract_operator] = STATE(1361), + [sym_namespace_operator] = STATE(1361), + [sym_integer] = STATE(1361), + [sym_complex] = STATE(1361), + [sym_float] = STATE(1361), + [sym__float_literal] = STATE(1620), + [sym_string] = STATE(1630), + [sym__single_quoted_string] = STATE(1624), + [sym__double_quoted_string] = STATE(1625), + [sym__argument_name_string_or_identifier_or_null] = STATE(2059), + [sym_na] = STATE(1361), + [sym__expression] = STATE(1361), + [sym__open_parenthesis] = STATE(1056), + [sym__close_parenthesis] = STATE(442), + [sym__open_brace] = STATE(402), + [aux_sym_call_arguments_repeat1] = STATE(1834), [sym_identifier] = ACTIONS(379), [anon_sym_BSLASH] = ACTIONS(381), [anon_sym_function] = ACTIONS(383), @@ -25770,113 +25912,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comma] = ACTIONS(415), [sym__raw_string_literal] = ACTIONS(417), [sym__external_open_parenthesis] = ACTIONS(419), - [sym__external_open_brace] = ACTIONS(421), - [sym__external_close_bracket2] = ACTIONS(551), - }, - [263] = { - [sym_function_definition] = STATE(1442), - [sym_if_statement] = STATE(1442), - [sym_for_statement] = STATE(1442), - [sym_while_statement] = STATE(1442), - [sym_repeat_statement] = STATE(1442), - [sym_braced_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_call] = STATE(1442), - [sym_subset] = STATE(1442), - [sym_subset2] = STATE(1442), - [sym_argument] = STATE(1830), - [sym__argument_named] = STATE(2035), - [sym__argument_unnamed] = STATE(2036), - [sym__argument_value] = STATE(2037), - [sym_unary_operator] = STATE(1442), - [sym_binary_operator] = STATE(1442), - [sym_extract_operator] = STATE(1442), - [sym_namespace_operator] = STATE(1442), - [sym_integer] = STATE(1442), - [sym_complex] = STATE(1442), - [sym_float] = STATE(1442), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1608), - [sym__single_quoted_string] = STATE(1630), - [sym__double_quoted_string] = STATE(1605), - [sym__argument_name_string_or_identifier_or_null] = STATE(2062), - [sym_na] = STATE(1442), - [sym__expression] = STATE(1442), - [sym__open_parenthesis] = STATE(1096), - [sym__close_parenthesis] = STATE(1656), - [sym__open_brace] = STATE(423), - [aux_sym_call_arguments_repeat1] = STATE(1831), - [sym_identifier] = ACTIONS(425), - [anon_sym_BSLASH] = ACTIONS(427), - [anon_sym_function] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_for] = ACTIONS(433), - [anon_sym_while] = ACTIONS(435), - [anon_sym_repeat] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(445), - [sym__hex_literal] = ACTIONS(447), - [sym__number_literal] = ACTIONS(449), - [anon_sym_SQUOTE] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_dots] = ACTIONS(425), - [sym_dot_dot_i] = ACTIONS(425), - [sym_return] = ACTIONS(455), - [sym_next] = ACTIONS(455), - [sym_break] = ACTIONS(455), - [sym_true] = ACTIONS(455), - [sym_false] = ACTIONS(455), - [sym_null] = ACTIONS(457), - [sym_inf] = ACTIONS(455), - [sym_nan] = ACTIONS(455), - [anon_sym_NA] = ACTIONS(459), - [anon_sym_NA_integer_] = ACTIONS(459), - [anon_sym_NA_real_] = ACTIONS(459), - [anon_sym_NA_complex_] = ACTIONS(459), - [anon_sym_NA_character_] = ACTIONS(459), - [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(461), - [sym__raw_string_literal] = ACTIONS(463), - [sym__external_open_parenthesis] = ACTIONS(465), - [sym__external_close_parenthesis] = ACTIONS(553), - [sym__external_open_brace] = ACTIONS(469), + [sym__external_close_parenthesis] = ACTIONS(563), + [sym__external_open_brace] = ACTIONS(423), }, - [264] = { - [sym_function_definition] = STATE(1442), - [sym_if_statement] = STATE(1442), - [sym_for_statement] = STATE(1442), - [sym_while_statement] = STATE(1442), - [sym_repeat_statement] = STATE(1442), - [sym_braced_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_call] = STATE(1442), - [sym_subset] = STATE(1442), - [sym_subset2] = STATE(1442), - [sym_argument] = STATE(1869), - [sym__argument_named] = STATE(2035), - [sym__argument_unnamed] = STATE(2036), - [sym__argument_value] = STATE(2037), - [sym_unary_operator] = STATE(1442), - [sym_binary_operator] = STATE(1442), - [sym_extract_operator] = STATE(1442), - [sym_namespace_operator] = STATE(1442), - [sym_integer] = STATE(1442), - [sym_complex] = STATE(1442), - [sym_float] = STATE(1442), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1608), - [sym__single_quoted_string] = STATE(1630), - [sym__double_quoted_string] = STATE(1605), - [sym__argument_name_string_or_identifier_or_null] = STATE(2062), - [sym_na] = STATE(1442), - [sym__expression] = STATE(1442), - [sym__open_parenthesis] = STATE(1096), - [sym__close_parenthesis] = STATE(1681), - [sym__open_brace] = STATE(423), - [aux_sym_call_arguments_repeat1] = STATE(1870), + [265] = { + [sym_function_definition] = STATE(1552), + [sym_if_statement] = STATE(1552), + [sym_for_statement] = STATE(1552), + [sym_while_statement] = STATE(1552), + [sym_repeat_statement] = STATE(1552), + [sym_braced_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_call] = STATE(1552), + [sym_subset] = STATE(1552), + [sym_subset2] = STATE(1552), + [sym_argument] = STATE(1892), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2035), + [sym__argument_value] = STATE(2047), + [sym_unary_operator] = STATE(1552), + [sym_binary_operator] = STATE(1552), + [sym_extract_operator] = STATE(1552), + [sym_namespace_operator] = STATE(1552), + [sym_integer] = STATE(1552), + [sym_complex] = STATE(1552), + [sym_float] = STATE(1552), + [sym__float_literal] = STATE(1610), + [sym_string] = STATE(1627), + [sym__single_quoted_string] = STATE(1604), + [sym__double_quoted_string] = STATE(1632), + [sym__argument_name_string_or_identifier_or_null] = STATE(2054), + [sym_na] = STATE(1552), + [sym__expression] = STATE(1552), + [sym__open_parenthesis] = STATE(1069), + [sym__open_brace] = STATE(422), + [sym__close_bracket2] = STATE(1733), + [aux_sym_call_arguments_repeat1] = STATE(1820), [sym_identifier] = ACTIONS(425), [anon_sym_BSLASH] = ACTIONS(427), [anon_sym_function] = ACTIONS(429), @@ -25912,42 +25983,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comma] = ACTIONS(461), [sym__raw_string_literal] = ACTIONS(463), [sym__external_open_parenthesis] = ACTIONS(465), - [sym__external_close_parenthesis] = ACTIONS(555), - [sym__external_open_brace] = ACTIONS(469), + [sym__external_open_brace] = ACTIONS(467), + [sym__external_close_bracket2] = ACTIONS(565), }, - [265] = { - [sym_function_definition] = STATE(1346), - [sym_if_statement] = STATE(1346), - [sym_for_statement] = STATE(1346), - [sym_while_statement] = STATE(1346), - [sym_repeat_statement] = STATE(1346), - [sym_braced_expression] = STATE(1346), - [sym_parenthesized_expression] = STATE(1346), - [sym_call] = STATE(1346), - [sym_subset] = STATE(1346), - [sym_subset2] = STATE(1346), - [sym_argument] = STATE(1836), + [266] = { + [sym_function_definition] = STATE(1361), + [sym_if_statement] = STATE(1361), + [sym_for_statement] = STATE(1361), + [sym_while_statement] = STATE(1361), + [sym_repeat_statement] = STATE(1361), + [sym_braced_expression] = STATE(1361), + [sym_parenthesized_expression] = STATE(1361), + [sym_call] = STATE(1361), + [sym_subset] = STATE(1361), + [sym_subset2] = STATE(1361), + [sym_argument] = STATE(1886), [sym__argument_named] = STATE(2046), - [sym__argument_unnamed] = STATE(2041), - [sym__argument_value] = STATE(2040), - [sym_unary_operator] = STATE(1346), - [sym_binary_operator] = STATE(1346), - [sym_extract_operator] = STATE(1346), - [sym_namespace_operator] = STATE(1346), - [sym_integer] = STATE(1346), - [sym_complex] = STATE(1346), - [sym_float] = STATE(1346), - [sym__float_literal] = STATE(1625), - [sym_string] = STATE(1622), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1621), - [sym__argument_name_string_or_identifier_or_null] = STATE(2054), - [sym_na] = STATE(1346), - [sym__expression] = STATE(1346), - [sym__open_parenthesis] = STATE(1113), - [sym__open_brace] = STATE(392), - [sym__close_bracket2] = STATE(1759), - [aux_sym_call_arguments_repeat1] = STATE(1845), + [sym__argument_unnamed] = STATE(2031), + [sym__argument_value] = STATE(2030), + [sym_unary_operator] = STATE(1361), + [sym_binary_operator] = STATE(1361), + [sym_extract_operator] = STATE(1361), + [sym_namespace_operator] = STATE(1361), + [sym_integer] = STATE(1361), + [sym_complex] = STATE(1361), + [sym_float] = STATE(1361), + [sym__float_literal] = STATE(1620), + [sym_string] = STATE(1630), + [sym__single_quoted_string] = STATE(1624), + [sym__double_quoted_string] = STATE(1625), + [sym__argument_name_string_or_identifier_or_null] = STATE(2059), + [sym_na] = STATE(1361), + [sym__expression] = STATE(1361), + [sym__open_parenthesis] = STATE(1056), + [sym__close_parenthesis] = STATE(1768), + [sym__open_brace] = STATE(402), + [aux_sym_call_arguments_repeat1] = STATE(1887), [sym_identifier] = ACTIONS(379), [anon_sym_BSLASH] = ACTIONS(381), [anon_sym_function] = ACTIONS(383), @@ -25983,113 +26054,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comma] = ACTIONS(415), [sym__raw_string_literal] = ACTIONS(417), [sym__external_open_parenthesis] = ACTIONS(419), - [sym__external_open_brace] = ACTIONS(421), - [sym__external_close_bracket2] = ACTIONS(557), + [sym__external_close_parenthesis] = ACTIONS(567), + [sym__external_open_brace] = ACTIONS(423), }, - [266] = { - [sym_function_definition] = STATE(1372), - [sym_if_statement] = STATE(1372), - [sym_for_statement] = STATE(1372), - [sym_while_statement] = STATE(1372), - [sym_repeat_statement] = STATE(1372), - [sym_braced_expression] = STATE(1372), - [sym_parenthesized_expression] = STATE(1372), - [sym_call] = STATE(1372), - [sym_subset] = STATE(1372), - [sym_subset2] = STATE(1372), - [sym_argument] = STATE(1832), - [sym__argument_named] = STATE(2030), - [sym__argument_unnamed] = STATE(2031), - [sym__argument_value] = STATE(2034), - [sym_unary_operator] = STATE(1372), - [sym_binary_operator] = STATE(1372), - [sym_extract_operator] = STATE(1372), - [sym_namespace_operator] = STATE(1372), - [sym_integer] = STATE(1372), - [sym_complex] = STATE(1372), - [sym_float] = STATE(1372), - [sym__float_literal] = STATE(1611), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1613), - [sym__double_quoted_string] = STATE(1614), - [sym__argument_name_string_or_identifier_or_null] = STATE(2063), - [sym_na] = STATE(1372), - [sym__expression] = STATE(1372), - [sym__open_parenthesis] = STATE(1108), - [sym__open_brace] = STATE(436), - [sym__close_bracket] = STATE(1740), - [aux_sym_call_arguments_repeat1] = STATE(1834), - [sym_identifier] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_function] = ACTIONS(485), - [anon_sym_if] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_while] = ACTIONS(491), - [anon_sym_repeat] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [sym__hex_literal] = ACTIONS(503), - [sym__number_literal] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(509), - [sym_dots] = ACTIONS(481), - [sym_dot_dot_i] = ACTIONS(481), - [sym_return] = ACTIONS(511), - [sym_next] = ACTIONS(511), - [sym_break] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(513), - [sym_inf] = ACTIONS(511), - [sym_nan] = ACTIONS(511), - [anon_sym_NA] = ACTIONS(515), - [anon_sym_NA_integer_] = ACTIONS(515), - [anon_sym_NA_real_] = ACTIONS(515), - [anon_sym_NA_complex_] = ACTIONS(515), - [anon_sym_NA_character_] = ACTIONS(515), + [267] = { + [sym_function_definition] = STATE(1575), + [sym_if_statement] = STATE(1575), + [sym_for_statement] = STATE(1575), + [sym_while_statement] = STATE(1575), + [sym_repeat_statement] = STATE(1575), + [sym_braced_expression] = STATE(1575), + [sym_parenthesized_expression] = STATE(1575), + [sym_call] = STATE(1575), + [sym_subset] = STATE(1575), + [sym_subset2] = STATE(1575), + [sym_argument] = STATE(1909), + [sym__argument_named] = STATE(2032), + [sym__argument_unnamed] = STATE(2045), + [sym__argument_value] = STATE(2043), + [sym_unary_operator] = STATE(1575), + [sym_binary_operator] = STATE(1575), + [sym_extract_operator] = STATE(1575), + [sym_namespace_operator] = STATE(1575), + [sym_integer] = STATE(1575), + [sym_complex] = STATE(1575), + [sym_float] = STATE(1575), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1628), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1611), + [sym__argument_name_string_or_identifier_or_null] = STATE(2071), + [sym_na] = STATE(1575), + [sym__expression] = STATE(1575), + [sym__open_parenthesis] = STATE(1064), + [sym__open_brace] = STATE(418), + [sym__close_bracket] = STATE(1769), + [aux_sym_call_arguments_repeat1] = STATE(1922), + [sym_identifier] = ACTIONS(493), + [anon_sym_BSLASH] = ACTIONS(495), + [anon_sym_function] = ACTIONS(497), + [anon_sym_if] = ACTIONS(499), + [anon_sym_for] = ACTIONS(501), + [anon_sym_while] = ACTIONS(503), + [anon_sym_repeat] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [sym__hex_literal] = ACTIONS(515), + [sym__number_literal] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(521), + [sym_dots] = ACTIONS(493), + [sym_dot_dot_i] = ACTIONS(493), + [sym_return] = ACTIONS(523), + [sym_next] = ACTIONS(523), + [sym_break] = ACTIONS(523), + [sym_true] = ACTIONS(523), + [sym_false] = ACTIONS(523), + [sym_null] = ACTIONS(525), + [sym_inf] = ACTIONS(523), + [sym_nan] = ACTIONS(523), + [anon_sym_NA] = ACTIONS(527), + [anon_sym_NA_integer_] = ACTIONS(527), + [anon_sym_NA_real_] = ACTIONS(527), + [anon_sym_NA_complex_] = ACTIONS(527), + [anon_sym_NA_character_] = ACTIONS(527), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(517), - [sym__raw_string_literal] = ACTIONS(519), - [sym__external_open_parenthesis] = ACTIONS(521), - [sym__external_open_brace] = ACTIONS(523), - [sym__external_close_bracket] = ACTIONS(559), + [sym_comma] = ACTIONS(529), + [sym__raw_string_literal] = ACTIONS(531), + [sym__external_open_parenthesis] = ACTIONS(533), + [sym__external_open_brace] = ACTIONS(535), + [sym__external_close_bracket] = ACTIONS(569), }, - [267] = { - [sym_function_definition] = STATE(1442), - [sym_if_statement] = STATE(1442), - [sym_for_statement] = STATE(1442), - [sym_while_statement] = STATE(1442), - [sym_repeat_statement] = STATE(1442), - [sym_braced_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_call] = STATE(1442), - [sym_subset] = STATE(1442), - [sym_subset2] = STATE(1442), - [sym_argument] = STATE(1935), - [sym__argument_named] = STATE(2035), - [sym__argument_unnamed] = STATE(2036), - [sym__argument_value] = STATE(2037), - [sym_unary_operator] = STATE(1442), - [sym_binary_operator] = STATE(1442), - [sym_extract_operator] = STATE(1442), - [sym_namespace_operator] = STATE(1442), - [sym_integer] = STATE(1442), - [sym_complex] = STATE(1442), - [sym_float] = STATE(1442), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1608), - [sym__single_quoted_string] = STATE(1630), - [sym__double_quoted_string] = STATE(1605), - [sym__argument_name_string_or_identifier_or_null] = STATE(2062), - [sym_na] = STATE(1442), - [sym__expression] = STATE(1442), - [sym__open_parenthesis] = STATE(1096), - [sym__close_parenthesis] = STATE(404), - [sym__open_brace] = STATE(423), - [aux_sym_call_arguments_repeat1] = STATE(1933), + [268] = { + [sym_function_definition] = STATE(1552), + [sym_if_statement] = STATE(1552), + [sym_for_statement] = STATE(1552), + [sym_while_statement] = STATE(1552), + [sym_repeat_statement] = STATE(1552), + [sym_braced_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_call] = STATE(1552), + [sym_subset] = STATE(1552), + [sym_subset2] = STATE(1552), + [sym_argument] = STATE(1925), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2035), + [sym__argument_value] = STATE(2047), + [sym_unary_operator] = STATE(1552), + [sym_binary_operator] = STATE(1552), + [sym_extract_operator] = STATE(1552), + [sym_namespace_operator] = STATE(1552), + [sym_integer] = STATE(1552), + [sym_complex] = STATE(1552), + [sym_float] = STATE(1552), + [sym__float_literal] = STATE(1610), + [sym_string] = STATE(1627), + [sym__single_quoted_string] = STATE(1604), + [sym__double_quoted_string] = STATE(1632), + [sym__argument_name_string_or_identifier_or_null] = STATE(2054), + [sym_na] = STATE(1552), + [sym__expression] = STATE(1552), + [sym__open_parenthesis] = STATE(1069), + [sym__open_brace] = STATE(422), + [sym__close_bracket2] = STATE(1773), + [aux_sym_call_arguments_repeat1] = STATE(1943), [sym_identifier] = ACTIONS(425), [anon_sym_BSLASH] = ACTIONS(427), [anon_sym_function] = ACTIONS(429), @@ -26125,184 +26196,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comma] = ACTIONS(461), [sym__raw_string_literal] = ACTIONS(463), [sym__external_open_parenthesis] = ACTIONS(465), - [sym__external_close_parenthesis] = ACTIONS(561), - [sym__external_open_brace] = ACTIONS(469), - }, - [268] = { - [sym_function_definition] = STATE(1372), - [sym_if_statement] = STATE(1372), - [sym_for_statement] = STATE(1372), - [sym_while_statement] = STATE(1372), - [sym_repeat_statement] = STATE(1372), - [sym_braced_expression] = STATE(1372), - [sym_parenthesized_expression] = STATE(1372), - [sym_call] = STATE(1372), - [sym_subset] = STATE(1372), - [sym_subset2] = STATE(1372), - [sym_argument] = STATE(1979), - [sym__argument_named] = STATE(2030), - [sym__argument_unnamed] = STATE(2031), - [sym__argument_value] = STATE(2034), - [sym_unary_operator] = STATE(1372), - [sym_binary_operator] = STATE(1372), - [sym_extract_operator] = STATE(1372), - [sym_namespace_operator] = STATE(1372), - [sym_integer] = STATE(1372), - [sym_complex] = STATE(1372), - [sym_float] = STATE(1372), - [sym__float_literal] = STATE(1611), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1613), - [sym__double_quoted_string] = STATE(1614), - [sym__argument_name_string_or_identifier_or_null] = STATE(2063), - [sym_na] = STATE(1372), - [sym__expression] = STATE(1372), - [sym__open_parenthesis] = STATE(1108), - [sym__open_brace] = STATE(436), - [sym__close_bracket] = STATE(403), - [aux_sym_call_arguments_repeat1] = STATE(1973), - [sym_identifier] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_function] = ACTIONS(485), - [anon_sym_if] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_while] = ACTIONS(491), - [anon_sym_repeat] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [sym__hex_literal] = ACTIONS(503), - [sym__number_literal] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(509), - [sym_dots] = ACTIONS(481), - [sym_dot_dot_i] = ACTIONS(481), - [sym_return] = ACTIONS(511), - [sym_next] = ACTIONS(511), - [sym_break] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(513), - [sym_inf] = ACTIONS(511), - [sym_nan] = ACTIONS(511), - [anon_sym_NA] = ACTIONS(515), - [anon_sym_NA_integer_] = ACTIONS(515), - [anon_sym_NA_real_] = ACTIONS(515), - [anon_sym_NA_complex_] = ACTIONS(515), - [anon_sym_NA_character_] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(517), - [sym__raw_string_literal] = ACTIONS(519), - [sym__external_open_parenthesis] = ACTIONS(521), - [sym__external_open_brace] = ACTIONS(523), - [sym__external_close_bracket] = ACTIONS(563), + [sym__external_open_brace] = ACTIONS(467), + [sym__external_close_bracket2] = ACTIONS(571), }, [269] = { - [sym_function_definition] = STATE(1372), - [sym_if_statement] = STATE(1372), - [sym_for_statement] = STATE(1372), - [sym_while_statement] = STATE(1372), - [sym_repeat_statement] = STATE(1372), - [sym_braced_expression] = STATE(1372), - [sym_parenthesized_expression] = STATE(1372), - [sym_call] = STATE(1372), - [sym_subset] = STATE(1372), - [sym_subset2] = STATE(1372), - [sym_argument] = STATE(1900), - [sym__argument_named] = STATE(2030), + [sym_function_definition] = STATE(1361), + [sym_if_statement] = STATE(1361), + [sym_for_statement] = STATE(1361), + [sym_while_statement] = STATE(1361), + [sym_repeat_statement] = STATE(1361), + [sym_braced_expression] = STATE(1361), + [sym_parenthesized_expression] = STATE(1361), + [sym_call] = STATE(1361), + [sym_subset] = STATE(1361), + [sym_subset2] = STATE(1361), + [sym_argument] = STATE(1941), + [sym__argument_named] = STATE(2046), [sym__argument_unnamed] = STATE(2031), - [sym__argument_value] = STATE(2034), - [sym_unary_operator] = STATE(1372), - [sym_binary_operator] = STATE(1372), - [sym_extract_operator] = STATE(1372), - [sym_namespace_operator] = STATE(1372), - [sym_integer] = STATE(1372), - [sym_complex] = STATE(1372), - [sym_float] = STATE(1372), - [sym__float_literal] = STATE(1611), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1613), - [sym__double_quoted_string] = STATE(1614), - [sym__argument_name_string_or_identifier_or_null] = STATE(2063), - [sym_na] = STATE(1372), - [sym__expression] = STATE(1372), - [sym__open_parenthesis] = STATE(1108), - [sym__open_brace] = STATE(436), - [sym__close_bracket] = STATE(1680), - [aux_sym_call_arguments_repeat1] = STATE(1899), - [sym_identifier] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_function] = ACTIONS(485), - [anon_sym_if] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_while] = ACTIONS(491), - [anon_sym_repeat] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [sym__hex_literal] = ACTIONS(503), - [sym__number_literal] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(509), - [sym_dots] = ACTIONS(481), - [sym_dot_dot_i] = ACTIONS(481), - [sym_return] = ACTIONS(511), - [sym_next] = ACTIONS(511), - [sym_break] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(513), - [sym_inf] = ACTIONS(511), - [sym_nan] = ACTIONS(511), - [anon_sym_NA] = ACTIONS(515), - [anon_sym_NA_integer_] = ACTIONS(515), - [anon_sym_NA_real_] = ACTIONS(515), - [anon_sym_NA_complex_] = ACTIONS(515), - [anon_sym_NA_character_] = ACTIONS(515), + [sym__argument_value] = STATE(2030), + [sym_unary_operator] = STATE(1361), + [sym_binary_operator] = STATE(1361), + [sym_extract_operator] = STATE(1361), + [sym_namespace_operator] = STATE(1361), + [sym_integer] = STATE(1361), + [sym_complex] = STATE(1361), + [sym_float] = STATE(1361), + [sym__float_literal] = STATE(1620), + [sym_string] = STATE(1630), + [sym__single_quoted_string] = STATE(1624), + [sym__double_quoted_string] = STATE(1625), + [sym__argument_name_string_or_identifier_or_null] = STATE(2059), + [sym_na] = STATE(1361), + [sym__expression] = STATE(1361), + [sym__open_parenthesis] = STATE(1056), + [sym__close_parenthesis] = STATE(365), + [sym__open_brace] = STATE(402), + [aux_sym_call_arguments_repeat1] = STATE(1945), + [sym_identifier] = ACTIONS(379), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_function] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_while] = ACTIONS(389), + [anon_sym_repeat] = ACTIONS(391), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [sym__hex_literal] = ACTIONS(401), + [sym__number_literal] = ACTIONS(403), + [anon_sym_SQUOTE] = ACTIONS(405), + [anon_sym_DQUOTE] = ACTIONS(407), + [sym_dots] = ACTIONS(379), + [sym_dot_dot_i] = ACTIONS(379), + [sym_return] = ACTIONS(409), + [sym_next] = ACTIONS(409), + [sym_break] = ACTIONS(409), + [sym_true] = ACTIONS(409), + [sym_false] = ACTIONS(409), + [sym_null] = ACTIONS(411), + [sym_inf] = ACTIONS(409), + [sym_nan] = ACTIONS(409), + [anon_sym_NA] = ACTIONS(413), + [anon_sym_NA_integer_] = ACTIONS(413), + [anon_sym_NA_real_] = ACTIONS(413), + [anon_sym_NA_complex_] = ACTIONS(413), + [anon_sym_NA_character_] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(517), - [sym__raw_string_literal] = ACTIONS(519), - [sym__external_open_parenthesis] = ACTIONS(521), - [sym__external_open_brace] = ACTIONS(523), - [sym__external_close_bracket] = ACTIONS(565), + [sym_comma] = ACTIONS(415), + [sym__raw_string_literal] = ACTIONS(417), + [sym__external_open_parenthesis] = ACTIONS(419), + [sym__external_close_parenthesis] = ACTIONS(573), + [sym__external_open_brace] = ACTIONS(423), }, [270] = { - [sym_function_definition] = STATE(1442), - [sym_if_statement] = STATE(1442), - [sym_for_statement] = STATE(1442), - [sym_while_statement] = STATE(1442), - [sym_repeat_statement] = STATE(1442), - [sym_braced_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_call] = STATE(1442), - [sym_subset] = STATE(1442), - [sym_subset2] = STATE(1442), - [sym_argument] = STATE(1865), - [sym__argument_named] = STATE(2035), - [sym__argument_unnamed] = STATE(2036), - [sym__argument_value] = STATE(2037), - [sym_unary_operator] = STATE(1442), - [sym_binary_operator] = STATE(1442), - [sym_extract_operator] = STATE(1442), - [sym_namespace_operator] = STATE(1442), - [sym_integer] = STATE(1442), - [sym_complex] = STATE(1442), - [sym_float] = STATE(1442), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1608), - [sym__single_quoted_string] = STATE(1630), - [sym__double_quoted_string] = STATE(1605), - [sym__argument_name_string_or_identifier_or_null] = STATE(2062), - [sym_na] = STATE(1442), - [sym__expression] = STATE(1442), - [sym__open_parenthesis] = STATE(1096), - [sym__close_parenthesis] = STATE(1751), - [sym__open_brace] = STATE(423), - [aux_sym_call_arguments_repeat1] = STATE(1864), + [sym_function_definition] = STATE(1575), + [sym_if_statement] = STATE(1575), + [sym_for_statement] = STATE(1575), + [sym_while_statement] = STATE(1575), + [sym_repeat_statement] = STATE(1575), + [sym_braced_expression] = STATE(1575), + [sym_parenthesized_expression] = STATE(1575), + [sym_call] = STATE(1575), + [sym_subset] = STATE(1575), + [sym_subset2] = STATE(1575), + [sym_argument] = STATE(1937), + [sym__argument_named] = STATE(2032), + [sym__argument_unnamed] = STATE(2045), + [sym__argument_value] = STATE(2043), + [sym_unary_operator] = STATE(1575), + [sym_binary_operator] = STATE(1575), + [sym_extract_operator] = STATE(1575), + [sym_namespace_operator] = STATE(1575), + [sym_integer] = STATE(1575), + [sym_complex] = STATE(1575), + [sym_float] = STATE(1575), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1628), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1611), + [sym__argument_name_string_or_identifier_or_null] = STATE(2071), + [sym_na] = STATE(1575), + [sym__expression] = STATE(1575), + [sym__open_parenthesis] = STATE(1064), + [sym__open_brace] = STATE(418), + [sym__close_bracket] = STATE(366), + [aux_sym_call_arguments_repeat1] = STATE(1953), + [sym_identifier] = ACTIONS(493), + [anon_sym_BSLASH] = ACTIONS(495), + [anon_sym_function] = ACTIONS(497), + [anon_sym_if] = ACTIONS(499), + [anon_sym_for] = ACTIONS(501), + [anon_sym_while] = ACTIONS(503), + [anon_sym_repeat] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [sym__hex_literal] = ACTIONS(515), + [sym__number_literal] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(521), + [sym_dots] = ACTIONS(493), + [sym_dot_dot_i] = ACTIONS(493), + [sym_return] = ACTIONS(523), + [sym_next] = ACTIONS(523), + [sym_break] = ACTIONS(523), + [sym_true] = ACTIONS(523), + [sym_false] = ACTIONS(523), + [sym_null] = ACTIONS(525), + [sym_inf] = ACTIONS(523), + [sym_nan] = ACTIONS(523), + [anon_sym_NA] = ACTIONS(527), + [anon_sym_NA_integer_] = ACTIONS(527), + [anon_sym_NA_real_] = ACTIONS(527), + [anon_sym_NA_complex_] = ACTIONS(527), + [anon_sym_NA_character_] = ACTIONS(527), + [sym_comment] = ACTIONS(3), + [sym_comma] = ACTIONS(529), + [sym__raw_string_literal] = ACTIONS(531), + [sym__external_open_parenthesis] = ACTIONS(533), + [sym__external_open_brace] = ACTIONS(535), + [sym__external_close_bracket] = ACTIONS(575), + }, + [271] = { + [sym_function_definition] = STATE(1552), + [sym_if_statement] = STATE(1552), + [sym_for_statement] = STATE(1552), + [sym_while_statement] = STATE(1552), + [sym_repeat_statement] = STATE(1552), + [sym_braced_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_call] = STATE(1552), + [sym_subset] = STATE(1552), + [sym_subset2] = STATE(1552), + [sym_argument] = STATE(1828), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2035), + [sym__argument_value] = STATE(2047), + [sym_unary_operator] = STATE(1552), + [sym_binary_operator] = STATE(1552), + [sym_extract_operator] = STATE(1552), + [sym_namespace_operator] = STATE(1552), + [sym_integer] = STATE(1552), + [sym_complex] = STATE(1552), + [sym_float] = STATE(1552), + [sym__float_literal] = STATE(1610), + [sym_string] = STATE(1627), + [sym__single_quoted_string] = STATE(1604), + [sym__double_quoted_string] = STATE(1632), + [sym__argument_name_string_or_identifier_or_null] = STATE(2054), + [sym_na] = STATE(1552), + [sym__expression] = STATE(1552), + [sym__open_parenthesis] = STATE(1069), + [sym__open_brace] = STATE(422), + [sym__close_bracket2] = STATE(367), + [aux_sym_call_arguments_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(425), [anon_sym_BSLASH] = ACTIONS(427), [anon_sym_function] = ACTIONS(429), @@ -26338,42 +26409,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comma] = ACTIONS(461), [sym__raw_string_literal] = ACTIONS(463), [sym__external_open_parenthesis] = ACTIONS(465), - [sym__external_close_parenthesis] = ACTIONS(567), - [sym__external_open_brace] = ACTIONS(469), + [sym__external_open_brace] = ACTIONS(467), + [sym__external_close_bracket2] = ACTIONS(577), }, - [271] = { - [sym_function_definition] = STATE(1346), - [sym_if_statement] = STATE(1346), - [sym_for_statement] = STATE(1346), - [sym_while_statement] = STATE(1346), - [sym_repeat_statement] = STATE(1346), - [sym_braced_expression] = STATE(1346), - [sym_parenthesized_expression] = STATE(1346), - [sym_call] = STATE(1346), - [sym_subset] = STATE(1346), - [sym_subset2] = STATE(1346), - [sym_argument] = STATE(1818), + [272] = { + [sym_function_definition] = STATE(1361), + [sym_if_statement] = STATE(1361), + [sym_for_statement] = STATE(1361), + [sym_while_statement] = STATE(1361), + [sym_repeat_statement] = STATE(1361), + [sym_braced_expression] = STATE(1361), + [sym_parenthesized_expression] = STATE(1361), + [sym_call] = STATE(1361), + [sym_subset] = STATE(1361), + [sym_subset2] = STATE(1361), + [sym_argument] = STATE(1822), [sym__argument_named] = STATE(2046), - [sym__argument_unnamed] = STATE(2041), - [sym__argument_value] = STATE(2040), - [sym_unary_operator] = STATE(1346), - [sym_binary_operator] = STATE(1346), - [sym_extract_operator] = STATE(1346), - [sym_namespace_operator] = STATE(1346), - [sym_integer] = STATE(1346), - [sym_complex] = STATE(1346), - [sym_float] = STATE(1346), - [sym__float_literal] = STATE(1625), - [sym_string] = STATE(1622), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1621), - [sym__argument_name_string_or_identifier_or_null] = STATE(2054), - [sym_na] = STATE(1346), - [sym__expression] = STATE(1346), - [sym__open_parenthesis] = STATE(1113), - [sym__open_brace] = STATE(392), - [sym__close_bracket2] = STATE(363), - [aux_sym_call_arguments_repeat1] = STATE(1980), + [sym__argument_unnamed] = STATE(2031), + [sym__argument_value] = STATE(2030), + [sym_unary_operator] = STATE(1361), + [sym_binary_operator] = STATE(1361), + [sym_extract_operator] = STATE(1361), + [sym_namespace_operator] = STATE(1361), + [sym_integer] = STATE(1361), + [sym_complex] = STATE(1361), + [sym_float] = STATE(1361), + [sym__float_literal] = STATE(1620), + [sym_string] = STATE(1630), + [sym__single_quoted_string] = STATE(1624), + [sym__double_quoted_string] = STATE(1625), + [sym__argument_name_string_or_identifier_or_null] = STATE(2059), + [sym_na] = STATE(1361), + [sym__expression] = STATE(1361), + [sym__open_parenthesis] = STATE(1056), + [sym__close_parenthesis] = STATE(1639), + [sym__open_brace] = STATE(402), + [aux_sym_call_arguments_repeat1] = STATE(1823), [sym_identifier] = ACTIONS(379), [anon_sym_BSLASH] = ACTIONS(381), [anon_sym_function] = ACTIONS(383), @@ -26409,184 +26480,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comma] = ACTIONS(415), [sym__raw_string_literal] = ACTIONS(417), [sym__external_open_parenthesis] = ACTIONS(419), - [sym__external_open_brace] = ACTIONS(421), - [sym__external_close_bracket2] = ACTIONS(569), + [sym__external_close_parenthesis] = ACTIONS(579), + [sym__external_open_brace] = ACTIONS(423), }, - [272] = { - [sym_string] = STATE(407), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [aux_sym_function_definition_repeat1] = STATE(278), - [sym_identifier] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_EQ] = ACTIONS(351), - [anon_sym_if] = ACTIONS(351), - [anon_sym_for] = ACTIONS(351), - [anon_sym_while] = ACTIONS(351), - [anon_sym_repeat] = ACTIONS(351), - [anon_sym_QMARK] = ACTIONS(349), - [anon_sym_TILDE] = ACTIONS(349), - [anon_sym_BANG] = ACTIONS(351), - [anon_sym_PLUS] = ACTIONS(349), - [anon_sym_DASH] = ACTIONS(351), - [anon_sym_LT_DASH] = ACTIONS(349), - [anon_sym_LT_LT_DASH] = ACTIONS(349), - [anon_sym_COLON_EQ] = ACTIONS(349), - [anon_sym_DASH_GT] = ACTIONS(351), - [anon_sym_DASH_GT_GT] = ACTIONS(349), - [anon_sym_PIPE] = ACTIONS(351), - [anon_sym_AMP] = ACTIONS(351), - [anon_sym_PIPE_PIPE] = ACTIONS(349), - [anon_sym_AMP_AMP] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_LT_EQ] = ACTIONS(349), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_EQ] = ACTIONS(349), - [anon_sym_EQ_EQ] = ACTIONS(349), - [anon_sym_BANG_EQ] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_SLASH] = ACTIONS(349), - [anon_sym_STAR_STAR] = ACTIONS(349), - [anon_sym_CARET] = ACTIONS(349), - [aux_sym_binary_operator_token1] = ACTIONS(349), - [anon_sym_PIPE_GT] = ACTIONS(349), - [anon_sym_COLON] = ACTIONS(351), - [anon_sym_DOLLAR] = ACTIONS(349), - [anon_sym_AT] = ACTIONS(349), - [sym__hex_literal] = ACTIONS(349), - [sym__number_literal] = ACTIONS(351), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), - [sym_dots] = ACTIONS(571), - [sym_dot_dot_i] = ACTIONS(571), - [sym_return] = ACTIONS(351), - [sym_next] = ACTIONS(351), - [sym_break] = ACTIONS(351), - [sym_true] = ACTIONS(351), - [sym_false] = ACTIONS(351), - [sym_null] = ACTIONS(351), - [sym_inf] = ACTIONS(351), - [sym_nan] = ACTIONS(351), - [anon_sym_NA] = ACTIONS(351), - [anon_sym_NA_integer_] = ACTIONS(351), - [anon_sym_NA_real_] = ACTIONS(351), - [anon_sym_NA_complex_] = ACTIONS(351), - [anon_sym_NA_character_] = ACTIONS(351), + [273] = { + [sym_function_definition] = STATE(1575), + [sym_if_statement] = STATE(1575), + [sym_for_statement] = STATE(1575), + [sym_while_statement] = STATE(1575), + [sym_repeat_statement] = STATE(1575), + [sym_braced_expression] = STATE(1575), + [sym_parenthesized_expression] = STATE(1575), + [sym_call] = STATE(1575), + [sym_subset] = STATE(1575), + [sym_subset2] = STATE(1575), + [sym_argument] = STATE(1871), + [sym__argument_named] = STATE(2032), + [sym__argument_unnamed] = STATE(2045), + [sym__argument_value] = STATE(2043), + [sym_unary_operator] = STATE(1575), + [sym_binary_operator] = STATE(1575), + [sym_extract_operator] = STATE(1575), + [sym_namespace_operator] = STATE(1575), + [sym_integer] = STATE(1575), + [sym_complex] = STATE(1575), + [sym_float] = STATE(1575), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1628), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1611), + [sym__argument_name_string_or_identifier_or_null] = STATE(2071), + [sym_na] = STATE(1575), + [sym__expression] = STATE(1575), + [sym__open_parenthesis] = STATE(1064), + [sym__open_brace] = STATE(418), + [sym__close_bracket] = STATE(1640), + [aux_sym_call_arguments_repeat1] = STATE(1809), + [sym_identifier] = ACTIONS(493), + [anon_sym_BSLASH] = ACTIONS(495), + [anon_sym_function] = ACTIONS(497), + [anon_sym_if] = ACTIONS(499), + [anon_sym_for] = ACTIONS(501), + [anon_sym_while] = ACTIONS(503), + [anon_sym_repeat] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [sym__hex_literal] = ACTIONS(515), + [sym__number_literal] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(521), + [sym_dots] = ACTIONS(493), + [sym_dot_dot_i] = ACTIONS(493), + [sym_return] = ACTIONS(523), + [sym_next] = ACTIONS(523), + [sym_break] = ACTIONS(523), + [sym_true] = ACTIONS(523), + [sym_false] = ACTIONS(523), + [sym_null] = ACTIONS(525), + [sym_inf] = ACTIONS(523), + [sym_nan] = ACTIONS(523), + [anon_sym_NA] = ACTIONS(527), + [anon_sym_NA_integer_] = ACTIONS(527), + [anon_sym_NA_real_] = ACTIONS(527), + [anon_sym_NA_complex_] = ACTIONS(527), + [anon_sym_NA_character_] = ACTIONS(527), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(577), - [sym__semicolon] = ACTIONS(349), - [sym__raw_string_literal] = ACTIONS(579), - [sym__external_open_parenthesis] = ACTIONS(349), - [sym__external_open_brace] = ACTIONS(349), - [sym__external_close_brace] = ACTIONS(349), - [sym__external_open_bracket] = ACTIONS(349), - [sym__external_open_bracket2] = ACTIONS(349), + [sym_comma] = ACTIONS(529), + [sym__raw_string_literal] = ACTIONS(531), + [sym__external_open_parenthesis] = ACTIONS(533), + [sym__external_open_brace] = ACTIONS(535), + [sym__external_close_bracket] = ACTIONS(581), }, - [273] = { - [sym_function_definition] = STATE(1346), - [sym_if_statement] = STATE(1346), - [sym_for_statement] = STATE(1346), - [sym_while_statement] = STATE(1346), - [sym_repeat_statement] = STATE(1346), - [sym_braced_expression] = STATE(1346), - [sym_parenthesized_expression] = STATE(1346), - [sym_call] = STATE(1346), - [sym_subset] = STATE(1346), - [sym_subset2] = STATE(1346), - [sym_argument] = STATE(1971), - [sym__argument_named] = STATE(2046), - [sym__argument_unnamed] = STATE(2041), - [sym__argument_value] = STATE(2040), - [sym_unary_operator] = STATE(1346), - [sym_binary_operator] = STATE(1346), - [sym_extract_operator] = STATE(1346), - [sym_namespace_operator] = STATE(1346), - [sym_integer] = STATE(1346), - [sym_complex] = STATE(1346), - [sym_float] = STATE(1346), - [sym__float_literal] = STATE(1625), - [sym_string] = STATE(1622), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1621), + [274] = { + [sym_function_definition] = STATE(1552), + [sym_if_statement] = STATE(1552), + [sym_for_statement] = STATE(1552), + [sym_while_statement] = STATE(1552), + [sym_repeat_statement] = STATE(1552), + [sym_braced_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_call] = STATE(1552), + [sym_subset] = STATE(1552), + [sym_subset2] = STATE(1552), + [sym_argument] = STATE(1884), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2035), + [sym__argument_value] = STATE(2047), + [sym_unary_operator] = STATE(1552), + [sym_binary_operator] = STATE(1552), + [sym_extract_operator] = STATE(1552), + [sym_namespace_operator] = STATE(1552), + [sym_integer] = STATE(1552), + [sym_complex] = STATE(1552), + [sym_float] = STATE(1552), + [sym__float_literal] = STATE(1610), + [sym_string] = STATE(1627), + [sym__single_quoted_string] = STATE(1604), + [sym__double_quoted_string] = STATE(1632), [sym__argument_name_string_or_identifier_or_null] = STATE(2054), - [sym_na] = STATE(1346), - [sym__expression] = STATE(1346), - [sym__open_parenthesis] = STATE(1113), - [sym__open_brace] = STATE(392), - [sym__close_bracket2] = STATE(402), - [aux_sym_call_arguments_repeat1] = STATE(1966), - [sym_identifier] = ACTIONS(379), - [anon_sym_BSLASH] = ACTIONS(381), - [anon_sym_function] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_while] = ACTIONS(389), - [anon_sym_repeat] = ACTIONS(391), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [sym__hex_literal] = ACTIONS(401), - [sym__number_literal] = ACTIONS(403), - [anon_sym_SQUOTE] = ACTIONS(405), - [anon_sym_DQUOTE] = ACTIONS(407), - [sym_dots] = ACTIONS(379), - [sym_dot_dot_i] = ACTIONS(379), - [sym_return] = ACTIONS(409), - [sym_next] = ACTIONS(409), - [sym_break] = ACTIONS(409), - [sym_true] = ACTIONS(409), - [sym_false] = ACTIONS(409), - [sym_null] = ACTIONS(411), - [sym_inf] = ACTIONS(409), - [sym_nan] = ACTIONS(409), - [anon_sym_NA] = ACTIONS(413), - [anon_sym_NA_integer_] = ACTIONS(413), - [anon_sym_NA_real_] = ACTIONS(413), - [anon_sym_NA_complex_] = ACTIONS(413), - [anon_sym_NA_character_] = ACTIONS(413), + [sym_na] = STATE(1552), + [sym__expression] = STATE(1552), + [sym__open_parenthesis] = STATE(1069), + [sym__open_brace] = STATE(422), + [sym__close_bracket2] = STATE(1685), + [aux_sym_call_arguments_repeat1] = STATE(1849), + [sym_identifier] = ACTIONS(425), + [anon_sym_BSLASH] = ACTIONS(427), + [anon_sym_function] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_for] = ACTIONS(433), + [anon_sym_while] = ACTIONS(435), + [anon_sym_repeat] = ACTIONS(437), + [anon_sym_QMARK] = ACTIONS(439), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [sym__hex_literal] = ACTIONS(447), + [sym__number_literal] = ACTIONS(449), + [anon_sym_SQUOTE] = ACTIONS(451), + [anon_sym_DQUOTE] = ACTIONS(453), + [sym_dots] = ACTIONS(425), + [sym_dot_dot_i] = ACTIONS(425), + [sym_return] = ACTIONS(455), + [sym_next] = ACTIONS(455), + [sym_break] = ACTIONS(455), + [sym_true] = ACTIONS(455), + [sym_false] = ACTIONS(455), + [sym_null] = ACTIONS(457), + [sym_inf] = ACTIONS(455), + [sym_nan] = ACTIONS(455), + [anon_sym_NA] = ACTIONS(459), + [anon_sym_NA_integer_] = ACTIONS(459), + [anon_sym_NA_real_] = ACTIONS(459), + [anon_sym_NA_complex_] = ACTIONS(459), + [anon_sym_NA_character_] = ACTIONS(459), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(415), - [sym__raw_string_literal] = ACTIONS(417), - [sym__external_open_parenthesis] = ACTIONS(419), - [sym__external_open_brace] = ACTIONS(421), - [sym__external_close_bracket2] = ACTIONS(581), + [sym_comma] = ACTIONS(461), + [sym__raw_string_literal] = ACTIONS(463), + [sym__external_open_parenthesis] = ACTIONS(465), + [sym__external_open_brace] = ACTIONS(467), + [sym__external_close_bracket2] = ACTIONS(583), }, - [274] = { - [sym_function_definition] = STATE(1346), - [sym_if_statement] = STATE(1346), - [sym_for_statement] = STATE(1346), - [sym_while_statement] = STATE(1346), - [sym_repeat_statement] = STATE(1346), - [sym_braced_expression] = STATE(1346), - [sym_parenthesized_expression] = STATE(1346), - [sym_call] = STATE(1346), - [sym_subset] = STATE(1346), - [sym_subset2] = STATE(1346), - [sym_argument] = STATE(1913), + [275] = { + [sym_function_definition] = STATE(1361), + [sym_if_statement] = STATE(1361), + [sym_for_statement] = STATE(1361), + [sym_while_statement] = STATE(1361), + [sym_repeat_statement] = STATE(1361), + [sym_braced_expression] = STATE(1361), + [sym_parenthesized_expression] = STATE(1361), + [sym_call] = STATE(1361), + [sym_subset] = STATE(1361), + [sym_subset2] = STATE(1361), + [sym_argument] = STATE(1842), [sym__argument_named] = STATE(2046), - [sym__argument_unnamed] = STATE(2041), - [sym__argument_value] = STATE(2040), - [sym_unary_operator] = STATE(1346), - [sym_binary_operator] = STATE(1346), - [sym_extract_operator] = STATE(1346), - [sym_namespace_operator] = STATE(1346), - [sym_integer] = STATE(1346), - [sym_complex] = STATE(1346), - [sym_float] = STATE(1346), - [sym__float_literal] = STATE(1625), - [sym_string] = STATE(1622), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1621), - [sym__argument_name_string_or_identifier_or_null] = STATE(2054), - [sym_na] = STATE(1346), - [sym__expression] = STATE(1346), - [sym__open_parenthesis] = STATE(1113), - [sym__open_brace] = STATE(392), - [sym__close_bracket2] = STATE(1755), - [aux_sym_call_arguments_repeat1] = STATE(1927), + [sym__argument_unnamed] = STATE(2031), + [sym__argument_value] = STATE(2030), + [sym_unary_operator] = STATE(1361), + [sym_binary_operator] = STATE(1361), + [sym_extract_operator] = STATE(1361), + [sym_namespace_operator] = STATE(1361), + [sym_integer] = STATE(1361), + [sym_complex] = STATE(1361), + [sym_float] = STATE(1361), + [sym__float_literal] = STATE(1620), + [sym_string] = STATE(1630), + [sym__single_quoted_string] = STATE(1624), + [sym__double_quoted_string] = STATE(1625), + [sym__argument_name_string_or_identifier_or_null] = STATE(2059), + [sym_na] = STATE(1361), + [sym__expression] = STATE(1361), + [sym__open_parenthesis] = STATE(1056), + [sym__close_parenthesis] = STATE(328), + [sym__open_brace] = STATE(402), + [aux_sym_call_arguments_repeat1] = STATE(1843), [sym_identifier] = ACTIONS(379), [anon_sym_BSLASH] = ACTIONS(381), [anon_sym_function] = ACTIONS(383), @@ -26622,468 +26693,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comma] = ACTIONS(415), [sym__raw_string_literal] = ACTIONS(417), [sym__external_open_parenthesis] = ACTIONS(419), - [sym__external_open_brace] = ACTIONS(421), - [sym__external_close_bracket2] = ACTIONS(583), - }, - [275] = { - [sym_function_definition] = STATE(1372), - [sym_if_statement] = STATE(1372), - [sym_for_statement] = STATE(1372), - [sym_while_statement] = STATE(1372), - [sym_repeat_statement] = STATE(1372), - [sym_braced_expression] = STATE(1372), - [sym_parenthesized_expression] = STATE(1372), - [sym_call] = STATE(1372), - [sym_subset] = STATE(1372), - [sym_subset2] = STATE(1372), - [sym_argument] = STATE(1904), - [sym__argument_named] = STATE(2030), - [sym__argument_unnamed] = STATE(2031), - [sym__argument_value] = STATE(2034), - [sym_unary_operator] = STATE(1372), - [sym_binary_operator] = STATE(1372), - [sym_extract_operator] = STATE(1372), - [sym_namespace_operator] = STATE(1372), - [sym_integer] = STATE(1372), - [sym_complex] = STATE(1372), - [sym_float] = STATE(1372), - [sym__float_literal] = STATE(1611), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1613), - [sym__double_quoted_string] = STATE(1614), - [sym__argument_name_string_or_identifier_or_null] = STATE(2063), - [sym_na] = STATE(1372), - [sym__expression] = STATE(1372), - [sym__open_parenthesis] = STATE(1108), - [sym__open_brace] = STATE(436), - [sym__close_bracket] = STATE(443), - [aux_sym_call_arguments_repeat1] = STATE(1902), - [sym_identifier] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_function] = ACTIONS(485), - [anon_sym_if] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_while] = ACTIONS(491), - [anon_sym_repeat] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [sym__hex_literal] = ACTIONS(503), - [sym__number_literal] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(509), - [sym_dots] = ACTIONS(481), - [sym_dot_dot_i] = ACTIONS(481), - [sym_return] = ACTIONS(511), - [sym_next] = ACTIONS(511), - [sym_break] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(513), - [sym_inf] = ACTIONS(511), - [sym_nan] = ACTIONS(511), - [anon_sym_NA] = ACTIONS(515), - [anon_sym_NA_integer_] = ACTIONS(515), - [anon_sym_NA_real_] = ACTIONS(515), - [anon_sym_NA_complex_] = ACTIONS(515), - [anon_sym_NA_character_] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(517), - [sym__raw_string_literal] = ACTIONS(519), - [sym__external_open_parenthesis] = ACTIONS(521), - [sym__external_open_brace] = ACTIONS(523), - [sym__external_close_bracket] = ACTIONS(585), + [sym__external_close_parenthesis] = ACTIONS(585), + [sym__external_open_brace] = ACTIONS(423), }, [276] = { - [sym_function_definition] = STATE(1372), - [sym_if_statement] = STATE(1372), - [sym_for_statement] = STATE(1372), - [sym_while_statement] = STATE(1372), - [sym_repeat_statement] = STATE(1372), - [sym_braced_expression] = STATE(1372), - [sym_parenthesized_expression] = STATE(1372), - [sym_call] = STATE(1372), - [sym_subset] = STATE(1372), - [sym_subset2] = STATE(1372), - [sym_argument] = STATE(1999), - [sym__argument_named] = STATE(2030), - [sym__argument_unnamed] = STATE(2031), - [sym__argument_value] = STATE(2034), - [sym_unary_operator] = STATE(1372), - [sym_binary_operator] = STATE(1372), - [sym_extract_operator] = STATE(1372), - [sym_namespace_operator] = STATE(1372), - [sym_integer] = STATE(1372), - [sym_complex] = STATE(1372), - [sym_float] = STATE(1372), - [sym__float_literal] = STATE(1611), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1613), - [sym__double_quoted_string] = STATE(1614), - [sym__argument_name_string_or_identifier_or_null] = STATE(2063), - [sym_na] = STATE(1372), - [sym__expression] = STATE(1372), - [sym__open_parenthesis] = STATE(1108), - [sym__open_brace] = STATE(436), - [sym__close_bracket] = STATE(362), - [aux_sym_call_arguments_repeat1] = STATE(1995), - [sym_identifier] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_function] = ACTIONS(485), - [anon_sym_if] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_while] = ACTIONS(491), - [anon_sym_repeat] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [sym__hex_literal] = ACTIONS(503), - [sym__number_literal] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(509), - [sym_dots] = ACTIONS(481), - [sym_dot_dot_i] = ACTIONS(481), - [sym_return] = ACTIONS(511), - [sym_next] = ACTIONS(511), - [sym_break] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(513), - [sym_inf] = ACTIONS(511), - [sym_nan] = ACTIONS(511), - [anon_sym_NA] = ACTIONS(515), - [anon_sym_NA_integer_] = ACTIONS(515), - [anon_sym_NA_real_] = ACTIONS(515), - [anon_sym_NA_complex_] = ACTIONS(515), - [anon_sym_NA_character_] = ACTIONS(515), + [sym_function_definition] = STATE(1575), + [sym_if_statement] = STATE(1575), + [sym_for_statement] = STATE(1575), + [sym_while_statement] = STATE(1575), + [sym_repeat_statement] = STATE(1575), + [sym_braced_expression] = STATE(1575), + [sym_parenthesized_expression] = STATE(1575), + [sym_call] = STATE(1575), + [sym_subset] = STATE(1575), + [sym_subset2] = STATE(1575), + [sym_argument] = STATE(1915), + [sym__argument_named] = STATE(2032), + [sym__argument_unnamed] = STATE(2045), + [sym__argument_value] = STATE(2043), + [sym_unary_operator] = STATE(1575), + [sym_binary_operator] = STATE(1575), + [sym_extract_operator] = STATE(1575), + [sym_namespace_operator] = STATE(1575), + [sym_integer] = STATE(1575), + [sym_complex] = STATE(1575), + [sym_float] = STATE(1575), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1628), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1611), + [sym__argument_name_string_or_identifier_or_null] = STATE(2071), + [sym_na] = STATE(1575), + [sym__expression] = STATE(1575), + [sym__open_parenthesis] = STATE(1064), + [sym__open_brace] = STATE(418), + [sym__close_bracket] = STATE(329), + [aux_sym_call_arguments_repeat1] = STATE(1917), + [sym_identifier] = ACTIONS(493), + [anon_sym_BSLASH] = ACTIONS(495), + [anon_sym_function] = ACTIONS(497), + [anon_sym_if] = ACTIONS(499), + [anon_sym_for] = ACTIONS(501), + [anon_sym_while] = ACTIONS(503), + [anon_sym_repeat] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [sym__hex_literal] = ACTIONS(515), + [sym__number_literal] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(521), + [sym_dots] = ACTIONS(493), + [sym_dot_dot_i] = ACTIONS(493), + [sym_return] = ACTIONS(523), + [sym_next] = ACTIONS(523), + [sym_break] = ACTIONS(523), + [sym_true] = ACTIONS(523), + [sym_false] = ACTIONS(523), + [sym_null] = ACTIONS(525), + [sym_inf] = ACTIONS(523), + [sym_nan] = ACTIONS(523), + [anon_sym_NA] = ACTIONS(527), + [anon_sym_NA_integer_] = ACTIONS(527), + [anon_sym_NA_real_] = ACTIONS(527), + [anon_sym_NA_complex_] = ACTIONS(527), + [anon_sym_NA_character_] = ACTIONS(527), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(517), - [sym__raw_string_literal] = ACTIONS(519), - [sym__external_open_parenthesis] = ACTIONS(521), - [sym__external_open_brace] = ACTIONS(523), + [sym_comma] = ACTIONS(529), + [sym__raw_string_literal] = ACTIONS(531), + [sym__external_open_parenthesis] = ACTIONS(533), + [sym__external_open_brace] = ACTIONS(535), [sym__external_close_bracket] = ACTIONS(587), }, [277] = { - [sym_function_definition] = STATE(1372), - [sym_if_statement] = STATE(1372), - [sym_for_statement] = STATE(1372), - [sym_while_statement] = STATE(1372), - [sym_repeat_statement] = STATE(1372), - [sym_braced_expression] = STATE(1372), - [sym_parenthesized_expression] = STATE(1372), - [sym_call] = STATE(1372), - [sym_subset] = STATE(1372), - [sym_subset2] = STATE(1372), - [sym_argument] = STATE(1950), - [sym__argument_named] = STATE(2030), - [sym__argument_unnamed] = STATE(2031), - [sym__argument_value] = STATE(2034), - [sym_unary_operator] = STATE(1372), - [sym_binary_operator] = STATE(1372), - [sym_extract_operator] = STATE(1372), - [sym_namespace_operator] = STATE(1372), - [sym_integer] = STATE(1372), - [sym_complex] = STATE(1372), - [sym_float] = STATE(1372), - [sym__float_literal] = STATE(1611), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1613), - [sym__double_quoted_string] = STATE(1614), - [sym__argument_name_string_or_identifier_or_null] = STATE(2063), - [sym_na] = STATE(1372), - [sym__expression] = STATE(1372), - [sym__open_parenthesis] = STATE(1108), - [sym__open_brace] = STATE(436), - [sym__close_bracket] = STATE(1764), - [aux_sym_call_arguments_repeat1] = STATE(1905), - [sym_identifier] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_function] = ACTIONS(485), - [anon_sym_if] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_while] = ACTIONS(491), - [anon_sym_repeat] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [sym__hex_literal] = ACTIONS(503), - [sym__number_literal] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(509), - [sym_dots] = ACTIONS(481), - [sym_dot_dot_i] = ACTIONS(481), - [sym_return] = ACTIONS(511), - [sym_next] = ACTIONS(511), - [sym_break] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(513), - [sym_inf] = ACTIONS(511), - [sym_nan] = ACTIONS(511), - [anon_sym_NA] = ACTIONS(515), - [anon_sym_NA_integer_] = ACTIONS(515), - [anon_sym_NA_real_] = ACTIONS(515), - [anon_sym_NA_complex_] = ACTIONS(515), - [anon_sym_NA_character_] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(517), - [sym__raw_string_literal] = ACTIONS(519), - [sym__external_open_parenthesis] = ACTIONS(521), - [sym__external_open_brace] = ACTIONS(523), - [sym__external_close_bracket] = ACTIONS(589), - }, - [278] = { - [sym_string] = STATE(384), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [aux_sym_function_definition_repeat1] = STATE(349), - [sym_identifier] = ACTIONS(591), - [anon_sym_BSLASH] = ACTIONS(361), - [anon_sym_function] = ACTIONS(365), - [anon_sym_EQ] = ACTIONS(365), - [anon_sym_if] = ACTIONS(365), - [anon_sym_for] = ACTIONS(365), - [anon_sym_while] = ACTIONS(365), - [anon_sym_repeat] = ACTIONS(365), - [anon_sym_QMARK] = ACTIONS(361), - [anon_sym_TILDE] = ACTIONS(361), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_PLUS] = ACTIONS(361), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_LT_DASH] = ACTIONS(361), - [anon_sym_LT_LT_DASH] = ACTIONS(361), - [anon_sym_COLON_EQ] = ACTIONS(361), - [anon_sym_DASH_GT] = ACTIONS(365), - [anon_sym_DASH_GT_GT] = ACTIONS(361), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_PIPE_PIPE] = ACTIONS(361), - [anon_sym_AMP_AMP] = ACTIONS(361), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_LT_EQ] = ACTIONS(361), - [anon_sym_GT] = ACTIONS(365), - [anon_sym_GT_EQ] = ACTIONS(361), - [anon_sym_EQ_EQ] = ACTIONS(361), - [anon_sym_BANG_EQ] = ACTIONS(361), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_SLASH] = ACTIONS(361), - [anon_sym_STAR_STAR] = ACTIONS(361), - [anon_sym_CARET] = ACTIONS(361), - [aux_sym_binary_operator_token1] = ACTIONS(361), - [anon_sym_PIPE_GT] = ACTIONS(361), - [anon_sym_COLON] = ACTIONS(365), - [anon_sym_DOLLAR] = ACTIONS(361), - [anon_sym_AT] = ACTIONS(361), - [sym__hex_literal] = ACTIONS(361), - [sym__number_literal] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), - [sym_dots] = ACTIONS(591), - [sym_dot_dot_i] = ACTIONS(591), - [sym_return] = ACTIONS(365), - [sym_next] = ACTIONS(365), - [sym_break] = ACTIONS(365), - [sym_true] = ACTIONS(365), - [sym_false] = ACTIONS(365), - [sym_null] = ACTIONS(365), - [sym_inf] = ACTIONS(365), - [sym_nan] = ACTIONS(365), - [anon_sym_NA] = ACTIONS(365), - [anon_sym_NA_integer_] = ACTIONS(365), - [anon_sym_NA_real_] = ACTIONS(365), - [anon_sym_NA_complex_] = ACTIONS(365), - [anon_sym_NA_character_] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(361), - [sym__semicolon] = ACTIONS(361), - [sym__raw_string_literal] = ACTIONS(579), - [sym__external_open_parenthesis] = ACTIONS(361), - [sym__external_open_brace] = ACTIONS(361), - [sym__external_close_brace] = ACTIONS(361), - [sym__external_open_bracket] = ACTIONS(361), - [sym__external_open_bracket2] = ACTIONS(361), - }, - [279] = { - [sym_string] = STATE(354), - [sym__single_quoted_string] = STATE(290), - [sym__double_quoted_string] = STATE(289), - [ts_builtin_sym_end] = ACTIONS(529), - [sym_identifier] = ACTIONS(593), - [anon_sym_BSLASH] = ACTIONS(529), - [anon_sym_function] = ACTIONS(531), - [anon_sym_EQ] = ACTIONS(531), - [anon_sym_if] = ACTIONS(531), - [anon_sym_for] = ACTIONS(531), - [anon_sym_while] = ACTIONS(531), - [anon_sym_repeat] = ACTIONS(531), - [anon_sym_QMARK] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [anon_sym_BANG] = ACTIONS(531), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_LT_DASH] = ACTIONS(529), - [anon_sym_LT_LT_DASH] = ACTIONS(529), - [anon_sym_COLON_EQ] = ACTIONS(529), - [anon_sym_DASH_GT] = ACTIONS(531), - [anon_sym_DASH_GT_GT] = ACTIONS(529), - [anon_sym_PIPE] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(531), - [anon_sym_PIPE_PIPE] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(529), - [anon_sym_LT] = ACTIONS(531), - [anon_sym_LT_EQ] = ACTIONS(529), - [anon_sym_GT] = ACTIONS(531), - [anon_sym_GT_EQ] = ACTIONS(529), - [anon_sym_EQ_EQ] = ACTIONS(529), - [anon_sym_BANG_EQ] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(529), - [anon_sym_STAR_STAR] = ACTIONS(529), - [anon_sym_CARET] = ACTIONS(529), - [aux_sym_binary_operator_token1] = ACTIONS(529), - [anon_sym_PIPE_GT] = ACTIONS(529), - [anon_sym_COLON] = ACTIONS(531), - [anon_sym_DOLLAR] = ACTIONS(529), - [anon_sym_AT] = ACTIONS(529), - [sym__hex_literal] = ACTIONS(529), - [sym__number_literal] = ACTIONS(531), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym_dots] = ACTIONS(593), - [sym_dot_dot_i] = ACTIONS(593), - [sym_return] = ACTIONS(531), - [sym_next] = ACTIONS(531), - [sym_break] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_null] = ACTIONS(531), - [sym_inf] = ACTIONS(531), - [sym_nan] = ACTIONS(531), - [anon_sym_NA] = ACTIONS(531), - [anon_sym_NA_integer_] = ACTIONS(531), - [anon_sym_NA_real_] = ACTIONS(531), - [anon_sym_NA_complex_] = ACTIONS(531), - [anon_sym_NA_character_] = ACTIONS(531), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(529), - [sym__semicolon] = ACTIONS(529), - [sym__raw_string_literal] = ACTIONS(371), - [sym__external_else] = ACTIONS(529), - [sym__external_open_parenthesis] = ACTIONS(529), - [sym__external_open_brace] = ACTIONS(529), - [sym__external_open_bracket] = ACTIONS(529), - [sym__external_open_bracket2] = ACTIONS(529), - }, - [280] = { - [sym_function_definition] = STATE(1346), - [sym_if_statement] = STATE(1346), - [sym_for_statement] = STATE(1346), - [sym_while_statement] = STATE(1346), - [sym_repeat_statement] = STATE(1346), - [sym_braced_expression] = STATE(1346), - [sym_parenthesized_expression] = STATE(1346), - [sym_call] = STATE(1346), - [sym_subset] = STATE(1346), - [sym_subset2] = STATE(1346), - [sym_argument] = STATE(1901), - [sym__argument_named] = STATE(2046), - [sym__argument_unnamed] = STATE(2041), - [sym__argument_value] = STATE(2040), - [sym_unary_operator] = STATE(1346), - [sym_binary_operator] = STATE(1346), - [sym_extract_operator] = STATE(1346), - [sym_namespace_operator] = STATE(1346), - [sym_integer] = STATE(1346), - [sym_complex] = STATE(1346), - [sym_float] = STATE(1346), - [sym__float_literal] = STATE(1625), - [sym_string] = STATE(1622), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1621), + [sym_function_definition] = STATE(1552), + [sym_if_statement] = STATE(1552), + [sym_for_statement] = STATE(1552), + [sym_while_statement] = STATE(1552), + [sym_repeat_statement] = STATE(1552), + [sym_braced_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_call] = STATE(1552), + [sym_subset] = STATE(1552), + [sym_subset2] = STATE(1552), + [sym_argument] = STATE(1918), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2035), + [sym__argument_value] = STATE(2047), + [sym_unary_operator] = STATE(1552), + [sym_binary_operator] = STATE(1552), + [sym_extract_operator] = STATE(1552), + [sym_namespace_operator] = STATE(1552), + [sym_integer] = STATE(1552), + [sym_complex] = STATE(1552), + [sym_float] = STATE(1552), + [sym__float_literal] = STATE(1610), + [sym_string] = STATE(1627), + [sym__single_quoted_string] = STATE(1604), + [sym__double_quoted_string] = STATE(1632), [sym__argument_name_string_or_identifier_or_null] = STATE(2054), - [sym_na] = STATE(1346), - [sym__expression] = STATE(1346), - [sym__open_parenthesis] = STATE(1113), - [sym__open_brace] = STATE(392), - [sym__close_bracket2] = STATE(440), - [aux_sym_call_arguments_repeat1] = STATE(1896), - [sym_identifier] = ACTIONS(379), - [anon_sym_BSLASH] = ACTIONS(381), - [anon_sym_function] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_while] = ACTIONS(389), - [anon_sym_repeat] = ACTIONS(391), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [sym__hex_literal] = ACTIONS(401), - [sym__number_literal] = ACTIONS(403), - [anon_sym_SQUOTE] = ACTIONS(405), - [anon_sym_DQUOTE] = ACTIONS(407), - [sym_dots] = ACTIONS(379), - [sym_dot_dot_i] = ACTIONS(379), - [sym_return] = ACTIONS(409), - [sym_next] = ACTIONS(409), - [sym_break] = ACTIONS(409), - [sym_true] = ACTIONS(409), - [sym_false] = ACTIONS(409), - [sym_null] = ACTIONS(411), - [sym_inf] = ACTIONS(409), - [sym_nan] = ACTIONS(409), - [anon_sym_NA] = ACTIONS(413), - [anon_sym_NA_integer_] = ACTIONS(413), - [anon_sym_NA_real_] = ACTIONS(413), - [anon_sym_NA_complex_] = ACTIONS(413), - [anon_sym_NA_character_] = ACTIONS(413), + [sym_na] = STATE(1552), + [sym__expression] = STATE(1552), + [sym__open_parenthesis] = STATE(1069), + [sym__open_brace] = STATE(422), + [sym__close_bracket2] = STATE(330), + [aux_sym_call_arguments_repeat1] = STATE(1920), + [sym_identifier] = ACTIONS(425), + [anon_sym_BSLASH] = ACTIONS(427), + [anon_sym_function] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_for] = ACTIONS(433), + [anon_sym_while] = ACTIONS(435), + [anon_sym_repeat] = ACTIONS(437), + [anon_sym_QMARK] = ACTIONS(439), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [sym__hex_literal] = ACTIONS(447), + [sym__number_literal] = ACTIONS(449), + [anon_sym_SQUOTE] = ACTIONS(451), + [anon_sym_DQUOTE] = ACTIONS(453), + [sym_dots] = ACTIONS(425), + [sym_dot_dot_i] = ACTIONS(425), + [sym_return] = ACTIONS(455), + [sym_next] = ACTIONS(455), + [sym_break] = ACTIONS(455), + [sym_true] = ACTIONS(455), + [sym_false] = ACTIONS(455), + [sym_null] = ACTIONS(457), + [sym_inf] = ACTIONS(455), + [sym_nan] = ACTIONS(455), + [anon_sym_NA] = ACTIONS(459), + [anon_sym_NA_integer_] = ACTIONS(459), + [anon_sym_NA_real_] = ACTIONS(459), + [anon_sym_NA_complex_] = ACTIONS(459), + [anon_sym_NA_character_] = ACTIONS(459), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(415), - [sym__raw_string_literal] = ACTIONS(417), - [sym__external_open_parenthesis] = ACTIONS(419), - [sym__external_open_brace] = ACTIONS(421), - [sym__external_close_bracket2] = ACTIONS(595), + [sym_comma] = ACTIONS(461), + [sym__raw_string_literal] = ACTIONS(463), + [sym__external_open_parenthesis] = ACTIONS(465), + [sym__external_open_brace] = ACTIONS(467), + [sym__external_close_bracket2] = ACTIONS(589), }, - [281] = { - [sym_function_definition] = STATE(1346), - [sym_if_statement] = STATE(1346), - [sym_for_statement] = STATE(1346), - [sym_while_statement] = STATE(1346), - [sym_repeat_statement] = STATE(1346), - [sym_braced_expression] = STATE(1346), - [sym_parenthesized_expression] = STATE(1346), - [sym_call] = STATE(1346), - [sym_subset] = STATE(1346), - [sym_subset2] = STATE(1346), - [sym_argument] = STATE(1889), + [278] = { + [sym_function_definition] = STATE(1361), + [sym_if_statement] = STATE(1361), + [sym_for_statement] = STATE(1361), + [sym_while_statement] = STATE(1361), + [sym_repeat_statement] = STATE(1361), + [sym_braced_expression] = STATE(1361), + [sym_parenthesized_expression] = STATE(1361), + [sym_call] = STATE(1361), + [sym_subset] = STATE(1361), + [sym_subset2] = STATE(1361), + [sym_argument] = STATE(1861), [sym__argument_named] = STATE(2046), - [sym__argument_unnamed] = STATE(2041), - [sym__argument_value] = STATE(2040), - [sym_unary_operator] = STATE(1346), - [sym_binary_operator] = STATE(1346), - [sym_extract_operator] = STATE(1346), - [sym_namespace_operator] = STATE(1346), - [sym_integer] = STATE(1346), - [sym_complex] = STATE(1346), - [sym_float] = STATE(1346), - [sym__float_literal] = STATE(1625), - [sym_string] = STATE(1622), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1621), - [sym__argument_name_string_or_identifier_or_null] = STATE(2054), - [sym_na] = STATE(1346), - [sym__expression] = STATE(1346), - [sym__open_parenthesis] = STATE(1113), - [sym__open_brace] = STATE(392), - [sym__close_bracket2] = STATE(350), - [aux_sym_call_arguments_repeat1] = STATE(1890), + [sym__argument_unnamed] = STATE(2031), + [sym__argument_value] = STATE(2030), + [sym_unary_operator] = STATE(1361), + [sym_binary_operator] = STATE(1361), + [sym_extract_operator] = STATE(1361), + [sym_namespace_operator] = STATE(1361), + [sym_integer] = STATE(1361), + [sym_complex] = STATE(1361), + [sym_float] = STATE(1361), + [sym__float_literal] = STATE(1620), + [sym_string] = STATE(1630), + [sym__single_quoted_string] = STATE(1624), + [sym__double_quoted_string] = STATE(1625), + [sym__argument_name_string_or_identifier_or_null] = STATE(2059), + [sym_na] = STATE(1361), + [sym__expression] = STATE(1361), + [sym__open_parenthesis] = STATE(1056), + [sym__close_parenthesis] = STATE(1704), + [sym__open_brace] = STATE(402), + [aux_sym_call_arguments_repeat1] = STATE(1862), [sym_identifier] = ACTIONS(379), [anon_sym_BSLASH] = ACTIONS(381), [anon_sym_function] = ACTIONS(383), @@ -27119,113 +26906,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comma] = ACTIONS(415), [sym__raw_string_literal] = ACTIONS(417), [sym__external_open_parenthesis] = ACTIONS(419), - [sym__external_open_brace] = ACTIONS(421), - [sym__external_close_bracket2] = ACTIONS(597), + [sym__external_close_parenthesis] = ACTIONS(591), + [sym__external_open_brace] = ACTIONS(423), }, - [282] = { - [sym_function_definition] = STATE(1372), - [sym_if_statement] = STATE(1372), - [sym_for_statement] = STATE(1372), - [sym_while_statement] = STATE(1372), - [sym_repeat_statement] = STATE(1372), - [sym_braced_expression] = STATE(1372), - [sym_parenthesized_expression] = STATE(1372), - [sym_call] = STATE(1372), - [sym_subset] = STATE(1372), - [sym_subset2] = STATE(1372), - [sym_argument] = STATE(1877), - [sym__argument_named] = STATE(2030), - [sym__argument_unnamed] = STATE(2031), - [sym__argument_value] = STATE(2034), - [sym_unary_operator] = STATE(1372), - [sym_binary_operator] = STATE(1372), - [sym_extract_operator] = STATE(1372), - [sym_namespace_operator] = STATE(1372), - [sym_integer] = STATE(1372), - [sym_complex] = STATE(1372), - [sym_float] = STATE(1372), - [sym__float_literal] = STATE(1611), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1613), - [sym__double_quoted_string] = STATE(1614), - [sym__argument_name_string_or_identifier_or_null] = STATE(2063), - [sym_na] = STATE(1372), - [sym__expression] = STATE(1372), - [sym__open_parenthesis] = STATE(1108), - [sym__open_brace] = STATE(436), - [sym__close_bracket] = STATE(351), - [aux_sym_call_arguments_repeat1] = STATE(1878), - [sym_identifier] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_function] = ACTIONS(485), - [anon_sym_if] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_while] = ACTIONS(491), - [anon_sym_repeat] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [sym__hex_literal] = ACTIONS(503), - [sym__number_literal] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(509), - [sym_dots] = ACTIONS(481), - [sym_dot_dot_i] = ACTIONS(481), - [sym_return] = ACTIONS(511), - [sym_next] = ACTIONS(511), - [sym_break] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(513), - [sym_inf] = ACTIONS(511), - [sym_nan] = ACTIONS(511), - [anon_sym_NA] = ACTIONS(515), - [anon_sym_NA_integer_] = ACTIONS(515), - [anon_sym_NA_real_] = ACTIONS(515), - [anon_sym_NA_complex_] = ACTIONS(515), - [anon_sym_NA_character_] = ACTIONS(515), + [279] = { + [sym_function_definition] = STATE(1575), + [sym_if_statement] = STATE(1575), + [sym_for_statement] = STATE(1575), + [sym_while_statement] = STATE(1575), + [sym_repeat_statement] = STATE(1575), + [sym_braced_expression] = STATE(1575), + [sym_parenthesized_expression] = STATE(1575), + [sym_call] = STATE(1575), + [sym_subset] = STATE(1575), + [sym_subset2] = STATE(1575), + [sym_argument] = STATE(1901), + [sym__argument_named] = STATE(2032), + [sym__argument_unnamed] = STATE(2045), + [sym__argument_value] = STATE(2043), + [sym_unary_operator] = STATE(1575), + [sym_binary_operator] = STATE(1575), + [sym_extract_operator] = STATE(1575), + [sym_namespace_operator] = STATE(1575), + [sym_integer] = STATE(1575), + [sym_complex] = STATE(1575), + [sym_float] = STATE(1575), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1628), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1611), + [sym__argument_name_string_or_identifier_or_null] = STATE(2071), + [sym_na] = STATE(1575), + [sym__expression] = STATE(1575), + [sym__open_parenthesis] = STATE(1064), + [sym__open_brace] = STATE(418), + [sym__close_bracket] = STATE(1705), + [aux_sym_call_arguments_repeat1] = STATE(1914), + [sym_identifier] = ACTIONS(493), + [anon_sym_BSLASH] = ACTIONS(495), + [anon_sym_function] = ACTIONS(497), + [anon_sym_if] = ACTIONS(499), + [anon_sym_for] = ACTIONS(501), + [anon_sym_while] = ACTIONS(503), + [anon_sym_repeat] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [sym__hex_literal] = ACTIONS(515), + [sym__number_literal] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(521), + [sym_dots] = ACTIONS(493), + [sym_dot_dot_i] = ACTIONS(493), + [sym_return] = ACTIONS(523), + [sym_next] = ACTIONS(523), + [sym_break] = ACTIONS(523), + [sym_true] = ACTIONS(523), + [sym_false] = ACTIONS(523), + [sym_null] = ACTIONS(525), + [sym_inf] = ACTIONS(523), + [sym_nan] = ACTIONS(523), + [anon_sym_NA] = ACTIONS(527), + [anon_sym_NA_integer_] = ACTIONS(527), + [anon_sym_NA_real_] = ACTIONS(527), + [anon_sym_NA_complex_] = ACTIONS(527), + [anon_sym_NA_character_] = ACTIONS(527), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(517), - [sym__raw_string_literal] = ACTIONS(519), - [sym__external_open_parenthesis] = ACTIONS(521), - [sym__external_open_brace] = ACTIONS(523), - [sym__external_close_bracket] = ACTIONS(599), + [sym_comma] = ACTIONS(529), + [sym__raw_string_literal] = ACTIONS(531), + [sym__external_open_parenthesis] = ACTIONS(533), + [sym__external_open_brace] = ACTIONS(535), + [sym__external_close_bracket] = ACTIONS(593), }, - [283] = { - [sym_function_definition] = STATE(1442), - [sym_if_statement] = STATE(1442), - [sym_for_statement] = STATE(1442), - [sym_while_statement] = STATE(1442), - [sym_repeat_statement] = STATE(1442), - [sym_braced_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_call] = STATE(1442), - [sym_subset] = STATE(1442), - [sym_subset2] = STATE(1442), - [sym_argument] = STATE(1908), - [sym__argument_named] = STATE(2035), - [sym__argument_unnamed] = STATE(2036), - [sym__argument_value] = STATE(2037), - [sym_unary_operator] = STATE(1442), - [sym_binary_operator] = STATE(1442), - [sym_extract_operator] = STATE(1442), - [sym_namespace_operator] = STATE(1442), - [sym_integer] = STATE(1442), - [sym_complex] = STATE(1442), - [sym_float] = STATE(1442), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1608), - [sym__single_quoted_string] = STATE(1630), - [sym__double_quoted_string] = STATE(1605), - [sym__argument_name_string_or_identifier_or_null] = STATE(2062), - [sym_na] = STATE(1442), - [sym__expression] = STATE(1442), - [sym__open_parenthesis] = STATE(1096), - [sym__close_parenthesis] = STATE(1767), - [sym__open_brace] = STATE(423), - [aux_sym_call_arguments_repeat1] = STATE(1907), + [280] = { + [sym_function_definition] = STATE(1552), + [sym_if_statement] = STATE(1552), + [sym_for_statement] = STATE(1552), + [sym_while_statement] = STATE(1552), + [sym_repeat_statement] = STATE(1552), + [sym_braced_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_call] = STATE(1552), + [sym_subset] = STATE(1552), + [sym_subset2] = STATE(1552), + [sym_argument] = STATE(1916), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2035), + [sym__argument_value] = STATE(2047), + [sym_unary_operator] = STATE(1552), + [sym_binary_operator] = STATE(1552), + [sym_extract_operator] = STATE(1552), + [sym_namespace_operator] = STATE(1552), + [sym_integer] = STATE(1552), + [sym_complex] = STATE(1552), + [sym_float] = STATE(1552), + [sym__float_literal] = STATE(1610), + [sym_string] = STATE(1627), + [sym__single_quoted_string] = STATE(1604), + [sym__double_quoted_string] = STATE(1632), + [sym__argument_name_string_or_identifier_or_null] = STATE(2054), + [sym_na] = STATE(1552), + [sym__expression] = STATE(1552), + [sym__open_parenthesis] = STATE(1069), + [sym__open_brace] = STATE(422), + [sym__close_bracket2] = STATE(1706), + [aux_sym_call_arguments_repeat1] = STATE(1919), [sym_identifier] = ACTIONS(425), [anon_sym_BSLASH] = ACTIONS(427), [anon_sym_function] = ACTIONS(429), @@ -27261,80 +27048,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comma] = ACTIONS(461), [sym__raw_string_literal] = ACTIONS(463), [sym__external_open_parenthesis] = ACTIONS(465), - [sym__external_close_parenthesis] = ACTIONS(601), - [sym__external_open_brace] = ACTIONS(469), + [sym__external_open_brace] = ACTIONS(467), + [sym__external_close_bracket2] = ACTIONS(595), + }, + [281] = { + [sym_function_definition] = STATE(1361), + [sym_if_statement] = STATE(1361), + [sym_for_statement] = STATE(1361), + [sym_while_statement] = STATE(1361), + [sym_repeat_statement] = STATE(1361), + [sym_braced_expression] = STATE(1361), + [sym_parenthesized_expression] = STATE(1361), + [sym_call] = STATE(1361), + [sym_subset] = STATE(1361), + [sym_subset2] = STATE(1361), + [sym_argument] = STATE(1807), + [sym__argument_named] = STATE(2046), + [sym__argument_unnamed] = STATE(2031), + [sym__argument_value] = STATE(2030), + [sym_unary_operator] = STATE(1361), + [sym_binary_operator] = STATE(1361), + [sym_extract_operator] = STATE(1361), + [sym_namespace_operator] = STATE(1361), + [sym_integer] = STATE(1361), + [sym_complex] = STATE(1361), + [sym_float] = STATE(1361), + [sym__float_literal] = STATE(1620), + [sym_string] = STATE(1630), + [sym__single_quoted_string] = STATE(1624), + [sym__double_quoted_string] = STATE(1625), + [sym__argument_name_string_or_identifier_or_null] = STATE(2059), + [sym_na] = STATE(1361), + [sym__expression] = STATE(1361), + [sym__open_parenthesis] = STATE(1056), + [sym__close_parenthesis] = STATE(1642), + [sym__open_brace] = STATE(402), + [aux_sym_call_arguments_repeat1] = STATE(1879), + [sym_identifier] = ACTIONS(379), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_function] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_while] = ACTIONS(389), + [anon_sym_repeat] = ACTIONS(391), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [sym__hex_literal] = ACTIONS(401), + [sym__number_literal] = ACTIONS(403), + [anon_sym_SQUOTE] = ACTIONS(405), + [anon_sym_DQUOTE] = ACTIONS(407), + [sym_dots] = ACTIONS(379), + [sym_dot_dot_i] = ACTIONS(379), + [sym_return] = ACTIONS(409), + [sym_next] = ACTIONS(409), + [sym_break] = ACTIONS(409), + [sym_true] = ACTIONS(409), + [sym_false] = ACTIONS(409), + [sym_null] = ACTIONS(411), + [sym_inf] = ACTIONS(409), + [sym_nan] = ACTIONS(409), + [anon_sym_NA] = ACTIONS(413), + [anon_sym_NA_integer_] = ACTIONS(413), + [anon_sym_NA_real_] = ACTIONS(413), + [anon_sym_NA_complex_] = ACTIONS(413), + [anon_sym_NA_character_] = ACTIONS(413), + [sym_comment] = ACTIONS(3), + [sym_comma] = ACTIONS(415), + [sym__raw_string_literal] = ACTIONS(417), + [sym__external_open_parenthesis] = ACTIONS(419), + [sym__external_close_parenthesis] = ACTIONS(597), + [sym__external_open_brace] = ACTIONS(423), + }, + [282] = { + [sym_function_definition] = STATE(1575), + [sym_if_statement] = STATE(1575), + [sym_for_statement] = STATE(1575), + [sym_while_statement] = STATE(1575), + [sym_repeat_statement] = STATE(1575), + [sym_braced_expression] = STATE(1575), + [sym_parenthesized_expression] = STATE(1575), + [sym_call] = STATE(1575), + [sym_subset] = STATE(1575), + [sym_subset2] = STATE(1575), + [sym_argument] = STATE(1923), + [sym__argument_named] = STATE(2032), + [sym__argument_unnamed] = STATE(2045), + [sym__argument_value] = STATE(2043), + [sym_unary_operator] = STATE(1575), + [sym_binary_operator] = STATE(1575), + [sym_extract_operator] = STATE(1575), + [sym_namespace_operator] = STATE(1575), + [sym_integer] = STATE(1575), + [sym_complex] = STATE(1575), + [sym_float] = STATE(1575), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1628), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1611), + [sym__argument_name_string_or_identifier_or_null] = STATE(2071), + [sym_na] = STATE(1575), + [sym__expression] = STATE(1575), + [sym__open_parenthesis] = STATE(1064), + [sym__open_brace] = STATE(418), + [sym__close_bracket] = STATE(1673), + [aux_sym_call_arguments_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(493), + [anon_sym_BSLASH] = ACTIONS(495), + [anon_sym_function] = ACTIONS(497), + [anon_sym_if] = ACTIONS(499), + [anon_sym_for] = ACTIONS(501), + [anon_sym_while] = ACTIONS(503), + [anon_sym_repeat] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [sym__hex_literal] = ACTIONS(515), + [sym__number_literal] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(521), + [sym_dots] = ACTIONS(493), + [sym_dot_dot_i] = ACTIONS(493), + [sym_return] = ACTIONS(523), + [sym_next] = ACTIONS(523), + [sym_break] = ACTIONS(523), + [sym_true] = ACTIONS(523), + [sym_false] = ACTIONS(523), + [sym_null] = ACTIONS(525), + [sym_inf] = ACTIONS(523), + [sym_nan] = ACTIONS(523), + [anon_sym_NA] = ACTIONS(527), + [anon_sym_NA_integer_] = ACTIONS(527), + [anon_sym_NA_real_] = ACTIONS(527), + [anon_sym_NA_complex_] = ACTIONS(527), + [anon_sym_NA_character_] = ACTIONS(527), + [sym_comment] = ACTIONS(3), + [sym_comma] = ACTIONS(529), + [sym__raw_string_literal] = ACTIONS(531), + [sym__external_open_parenthesis] = ACTIONS(533), + [sym__external_open_brace] = ACTIONS(535), + [sym__external_close_bracket] = ACTIONS(599), + }, + [283] = { + [sym_function_definition] = STATE(1575), + [sym_if_statement] = STATE(1575), + [sym_for_statement] = STATE(1575), + [sym_while_statement] = STATE(1575), + [sym_repeat_statement] = STATE(1575), + [sym_braced_expression] = STATE(1575), + [sym_parenthesized_expression] = STATE(1575), + [sym_call] = STATE(1575), + [sym_subset] = STATE(1575), + [sym_subset2] = STATE(1575), + [sym_argument] = STATE(1853), + [sym__argument_named] = STATE(2032), + [sym__argument_unnamed] = STATE(2045), + [sym__argument_value] = STATE(2043), + [sym_unary_operator] = STATE(1575), + [sym_binary_operator] = STATE(1575), + [sym_extract_operator] = STATE(1575), + [sym_namespace_operator] = STATE(1575), + [sym_integer] = STATE(1575), + [sym_complex] = STATE(1575), + [sym_float] = STATE(1575), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1628), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1611), + [sym__argument_name_string_or_identifier_or_null] = STATE(2071), + [sym_na] = STATE(1575), + [sym__expression] = STATE(1575), + [sym__open_parenthesis] = STATE(1064), + [sym__open_brace] = STATE(418), + [sym__close_bracket] = STATE(1721), + [aux_sym_call_arguments_repeat1] = STATE(1854), + [sym_identifier] = ACTIONS(493), + [anon_sym_BSLASH] = ACTIONS(495), + [anon_sym_function] = ACTIONS(497), + [anon_sym_if] = ACTIONS(499), + [anon_sym_for] = ACTIONS(501), + [anon_sym_while] = ACTIONS(503), + [anon_sym_repeat] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [sym__hex_literal] = ACTIONS(515), + [sym__number_literal] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(521), + [sym_dots] = ACTIONS(493), + [sym_dot_dot_i] = ACTIONS(493), + [sym_return] = ACTIONS(523), + [sym_next] = ACTIONS(523), + [sym_break] = ACTIONS(523), + [sym_true] = ACTIONS(523), + [sym_false] = ACTIONS(523), + [sym_null] = ACTIONS(525), + [sym_inf] = ACTIONS(523), + [sym_nan] = ACTIONS(523), + [anon_sym_NA] = ACTIONS(527), + [anon_sym_NA_integer_] = ACTIONS(527), + [anon_sym_NA_real_] = ACTIONS(527), + [anon_sym_NA_complex_] = ACTIONS(527), + [anon_sym_NA_character_] = ACTIONS(527), + [sym_comment] = ACTIONS(3), + [sym_comma] = ACTIONS(529), + [sym__raw_string_literal] = ACTIONS(531), + [sym__external_open_parenthesis] = ACTIONS(533), + [sym__external_open_brace] = ACTIONS(535), + [sym__external_close_bracket] = ACTIONS(601), }, [284] = { - [ts_builtin_sym_end] = ACTIONS(603), - [sym_identifier] = ACTIONS(605), - [anon_sym_BSLASH] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_EQ] = ACTIONS(605), - [anon_sym_if] = ACTIONS(605), - [anon_sym_for] = ACTIONS(605), - [anon_sym_while] = ACTIONS(605), - [anon_sym_repeat] = ACTIONS(605), - [anon_sym_QMARK] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(603), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_LT_DASH] = ACTIONS(603), - [anon_sym_LT_LT_DASH] = ACTIONS(603), - [anon_sym_COLON_EQ] = ACTIONS(603), - [anon_sym_DASH_GT] = ACTIONS(605), - [anon_sym_DASH_GT_GT] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(603), - [anon_sym_STAR_STAR] = ACTIONS(603), - [anon_sym_CARET] = ACTIONS(603), - [aux_sym_binary_operator_token1] = ACTIONS(603), - [anon_sym_PIPE_GT] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(603), - [anon_sym_AT] = ACTIONS(603), - [anon_sym_COLON_COLON] = ACTIONS(605), - [anon_sym_COLON_COLON_COLON] = ACTIONS(603), - [sym__hex_literal] = ACTIONS(603), - [sym__number_literal] = ACTIONS(605), - [anon_sym_SQUOTE] = ACTIONS(603), - [anon_sym_DQUOTE] = ACTIONS(603), - [sym_dots] = ACTIONS(605), - [sym_dot_dot_i] = ACTIONS(605), - [sym_return] = ACTIONS(605), - [sym_next] = ACTIONS(605), - [sym_break] = ACTIONS(605), - [sym_true] = ACTIONS(605), - [sym_false] = ACTIONS(605), - [sym_null] = ACTIONS(605), - [sym_inf] = ACTIONS(605), - [sym_nan] = ACTIONS(605), - [anon_sym_NA] = ACTIONS(605), - [anon_sym_NA_integer_] = ACTIONS(605), - [anon_sym_NA_real_] = ACTIONS(605), - [anon_sym_NA_complex_] = ACTIONS(605), - [anon_sym_NA_character_] = ACTIONS(605), + [sym_identifier] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(605), + [anon_sym_function] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(603), + [anon_sym_if] = ACTIONS(603), + [anon_sym_for] = ACTIONS(603), + [anon_sym_while] = ACTIONS(603), + [anon_sym_repeat] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_LT_DASH] = ACTIONS(605), + [anon_sym_LT_LT_DASH] = ACTIONS(605), + [anon_sym_COLON_EQ] = ACTIONS(605), + [anon_sym_DASH_GT] = ACTIONS(603), + [anon_sym_DASH_GT_GT] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_STAR_STAR] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [aux_sym_binary_operator_token1] = ACTIONS(605), + [anon_sym_PIPE_GT] = ACTIONS(605), + [anon_sym_COLON] = ACTIONS(603), + [anon_sym_DOLLAR] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(605), + [anon_sym_COLON_COLON] = ACTIONS(603), + [anon_sym_COLON_COLON_COLON] = ACTIONS(605), + [sym__hex_literal] = ACTIONS(605), + [sym__number_literal] = ACTIONS(603), + [anon_sym_SQUOTE] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_dots] = ACTIONS(603), + [sym_dot_dot_i] = ACTIONS(603), + [sym_return] = ACTIONS(603), + [sym_next] = ACTIONS(603), + [sym_break] = ACTIONS(603), + [sym_true] = ACTIONS(603), + [sym_false] = ACTIONS(603), + [sym_null] = ACTIONS(603), + [sym_inf] = ACTIONS(603), + [sym_nan] = ACTIONS(603), + [anon_sym_NA] = ACTIONS(603), + [anon_sym_NA_integer_] = ACTIONS(603), + [anon_sym_NA_real_] = ACTIONS(603), + [anon_sym_NA_complex_] = ACTIONS(603), + [anon_sym_NA_character_] = ACTIONS(603), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(603), - [sym__semicolon] = ACTIONS(603), - [sym__raw_string_literal] = ACTIONS(603), - [sym__external_else] = ACTIONS(603), - [sym__external_open_parenthesis] = ACTIONS(603), - [sym__external_open_brace] = ACTIONS(603), - [sym__external_open_bracket] = ACTIONS(603), - [sym__external_open_bracket2] = ACTIONS(603), + [sym__newline] = ACTIONS(605), + [sym__semicolon] = ACTIONS(605), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_else] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(605), + [sym__external_open_brace] = ACTIONS(605), + [sym__external_close_brace] = ACTIONS(605), + [sym__external_open_bracket] = ACTIONS(605), + [sym__external_open_bracket2] = ACTIONS(605), }, [285] = { + [ts_builtin_sym_end] = ACTIONS(605), + [sym_identifier] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(605), + [anon_sym_function] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(603), + [anon_sym_if] = ACTIONS(603), + [anon_sym_for] = ACTIONS(603), + [anon_sym_while] = ACTIONS(603), + [anon_sym_repeat] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_LT_DASH] = ACTIONS(605), + [anon_sym_LT_LT_DASH] = ACTIONS(605), + [anon_sym_COLON_EQ] = ACTIONS(605), + [anon_sym_DASH_GT] = ACTIONS(603), + [anon_sym_DASH_GT_GT] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_STAR_STAR] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [aux_sym_binary_operator_token1] = ACTIONS(605), + [anon_sym_PIPE_GT] = ACTIONS(605), + [anon_sym_COLON] = ACTIONS(603), + [anon_sym_DOLLAR] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(605), + [anon_sym_COLON_COLON] = ACTIONS(603), + [anon_sym_COLON_COLON_COLON] = ACTIONS(605), + [sym__hex_literal] = ACTIONS(605), + [sym__number_literal] = ACTIONS(603), + [anon_sym_SQUOTE] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_dots] = ACTIONS(603), + [sym_dot_dot_i] = ACTIONS(603), + [sym_return] = ACTIONS(603), + [sym_next] = ACTIONS(603), + [sym_break] = ACTIONS(603), + [sym_true] = ACTIONS(603), + [sym_false] = ACTIONS(603), + [sym_null] = ACTIONS(603), + [sym_inf] = ACTIONS(603), + [sym_nan] = ACTIONS(603), + [anon_sym_NA] = ACTIONS(603), + [anon_sym_NA_integer_] = ACTIONS(603), + [anon_sym_NA_real_] = ACTIONS(603), + [anon_sym_NA_complex_] = ACTIONS(603), + [anon_sym_NA_character_] = ACTIONS(603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(605), + [sym__semicolon] = ACTIONS(605), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_else] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(605), + [sym__external_open_brace] = ACTIONS(605), + [sym__external_open_bracket] = ACTIONS(605), + [sym__external_open_bracket2] = ACTIONS(605), + }, + [286] = { [ts_builtin_sym_end] = ACTIONS(607), [sym_identifier] = ACTIONS(609), [anon_sym_BSLASH] = ACTIONS(607), @@ -27373,8 +27443,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(609), [anon_sym_DOLLAR] = ACTIONS(607), [anon_sym_AT] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_COLON_COLON_COLON] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(611), + [anon_sym_COLON_COLON_COLON] = ACTIONS(613), [sym__hex_literal] = ACTIONS(607), [sym__number_literal] = ACTIONS(609), [anon_sym_SQUOTE] = ACTIONS(607), @@ -27404,77 +27474,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(607), [sym__external_open_bracket2] = ACTIONS(607), }, - [286] = { - [sym_identifier] = ACTIONS(611), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_function] = ACTIONS(611), - [anon_sym_EQ] = ACTIONS(611), - [anon_sym_if] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_repeat] = ACTIONS(611), - [anon_sym_QMARK] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT_DASH] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_DASH_GT] = ACTIONS(611), - [anon_sym_DASH_GT_GT] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(611), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_STAR_STAR] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [aux_sym_binary_operator_token1] = ACTIONS(613), - [anon_sym_PIPE_GT] = ACTIONS(613), - [anon_sym_COLON] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_COLON_COLON] = ACTIONS(611), - [anon_sym_COLON_COLON_COLON] = ACTIONS(613), - [sym__hex_literal] = ACTIONS(613), - [sym__number_literal] = ACTIONS(611), - [anon_sym_SQUOTE] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [sym_dots] = ACTIONS(611), - [sym_dot_dot_i] = ACTIONS(611), - [sym_return] = ACTIONS(611), - [sym_next] = ACTIONS(611), - [sym_break] = ACTIONS(611), - [sym_true] = ACTIONS(611), - [sym_false] = ACTIONS(611), - [sym_null] = ACTIONS(611), - [sym_inf] = ACTIONS(611), - [sym_nan] = ACTIONS(611), - [anon_sym_NA] = ACTIONS(611), - [anon_sym_NA_integer_] = ACTIONS(611), - [anon_sym_NA_real_] = ACTIONS(611), - [anon_sym_NA_complex_] = ACTIONS(611), - [anon_sym_NA_character_] = ACTIONS(611), + [287] = { + [ts_builtin_sym_end] = ACTIONS(615), + [sym_identifier] = ACTIONS(617), + [anon_sym_BSLASH] = ACTIONS(615), + [anon_sym_function] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(617), + [anon_sym_if] = ACTIONS(617), + [anon_sym_for] = ACTIONS(617), + [anon_sym_while] = ACTIONS(617), + [anon_sym_repeat] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_LT_DASH] = ACTIONS(615), + [anon_sym_LT_LT_DASH] = ACTIONS(615), + [anon_sym_COLON_EQ] = ACTIONS(615), + [anon_sym_DASH_GT] = ACTIONS(617), + [anon_sym_DASH_GT_GT] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_STAR_STAR] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [aux_sym_binary_operator_token1] = ACTIONS(615), + [anon_sym_PIPE_GT] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_L] = ACTIONS(619), + [anon_sym_i] = ACTIONS(621), + [sym__hex_literal] = ACTIONS(615), + [sym__number_literal] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_dots] = ACTIONS(617), + [sym_dot_dot_i] = ACTIONS(617), + [sym_return] = ACTIONS(617), + [sym_next] = ACTIONS(617), + [sym_break] = ACTIONS(617), + [sym_true] = ACTIONS(617), + [sym_false] = ACTIONS(617), + [sym_null] = ACTIONS(617), + [sym_inf] = ACTIONS(617), + [sym_nan] = ACTIONS(617), + [anon_sym_NA] = ACTIONS(617), + [anon_sym_NA_integer_] = ACTIONS(617), + [anon_sym_NA_real_] = ACTIONS(617), + [anon_sym_NA_complex_] = ACTIONS(617), + [anon_sym_NA_character_] = ACTIONS(617), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(613), - [sym__semicolon] = ACTIONS(613), - [sym__raw_string_literal] = ACTIONS(613), - [sym__external_else] = ACTIONS(613), - [sym__external_open_parenthesis] = ACTIONS(613), - [sym__external_open_brace] = ACTIONS(613), - [sym__external_close_brace] = ACTIONS(613), - [sym__external_open_bracket] = ACTIONS(613), - [sym__external_open_bracket2] = ACTIONS(613), + [sym__newline] = ACTIONS(615), + [sym__semicolon] = ACTIONS(615), + [sym__raw_string_literal] = ACTIONS(615), + [sym__external_else] = ACTIONS(615), + [sym__external_open_parenthesis] = ACTIONS(615), + [sym__external_open_brace] = ACTIONS(615), + [sym__external_open_bracket] = ACTIONS(615), + [sym__external_open_bracket2] = ACTIONS(615), }, - [287] = { + [288] = { + [ts_builtin_sym_end] = ACTIONS(623), + [sym_identifier] = ACTIONS(625), + [anon_sym_BSLASH] = ACTIONS(623), + [anon_sym_function] = ACTIONS(625), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(625), + [anon_sym_while] = ACTIONS(625), + [anon_sym_repeat] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(623), + [anon_sym_LT_LT_DASH] = ACTIONS(623), + [anon_sym_COLON_EQ] = ACTIONS(623), + [anon_sym_DASH_GT] = ACTIONS(625), + [anon_sym_DASH_GT_GT] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR_STAR] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [aux_sym_binary_operator_token1] = ACTIONS(623), + [anon_sym_PIPE_GT] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_DOLLAR] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym_COLON_COLON_COLON] = ACTIONS(623), + [sym__hex_literal] = ACTIONS(623), + [sym__number_literal] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_dots] = ACTIONS(625), + [sym_dot_dot_i] = ACTIONS(625), + [sym_return] = ACTIONS(625), + [sym_next] = ACTIONS(625), + [sym_break] = ACTIONS(625), + [sym_true] = ACTIONS(625), + [sym_false] = ACTIONS(625), + [sym_null] = ACTIONS(625), + [sym_inf] = ACTIONS(625), + [sym_nan] = ACTIONS(625), + [anon_sym_NA] = ACTIONS(625), + [anon_sym_NA_integer_] = ACTIONS(625), + [anon_sym_NA_real_] = ACTIONS(625), + [anon_sym_NA_complex_] = ACTIONS(625), + [anon_sym_NA_character_] = ACTIONS(625), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(623), + [sym__semicolon] = ACTIONS(623), + [sym__raw_string_literal] = ACTIONS(623), + [sym__external_else] = ACTIONS(623), + [sym__external_open_parenthesis] = ACTIONS(623), + [sym__external_open_brace] = ACTIONS(623), + [sym__external_open_bracket] = ACTIONS(623), + [sym__external_open_bracket2] = ACTIONS(623), + }, + [289] = { + [ts_builtin_sym_end] = ACTIONS(623), + [sym_identifier] = ACTIONS(625), + [anon_sym_BSLASH] = ACTIONS(623), + [anon_sym_function] = ACTIONS(625), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(625), + [anon_sym_while] = ACTIONS(625), + [anon_sym_repeat] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(623), + [anon_sym_LT_LT_DASH] = ACTIONS(623), + [anon_sym_COLON_EQ] = ACTIONS(623), + [anon_sym_DASH_GT] = ACTIONS(625), + [anon_sym_DASH_GT_GT] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR_STAR] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [aux_sym_binary_operator_token1] = ACTIONS(623), + [anon_sym_PIPE_GT] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_DOLLAR] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym_COLON_COLON_COLON] = ACTIONS(623), + [sym__hex_literal] = ACTIONS(623), + [sym__number_literal] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_dots] = ACTIONS(625), + [sym_dot_dot_i] = ACTIONS(625), + [sym_return] = ACTIONS(625), + [sym_next] = ACTIONS(625), + [sym_break] = ACTIONS(625), + [sym_true] = ACTIONS(625), + [sym_false] = ACTIONS(625), + [sym_null] = ACTIONS(625), + [sym_inf] = ACTIONS(625), + [sym_nan] = ACTIONS(625), + [anon_sym_NA] = ACTIONS(625), + [anon_sym_NA_integer_] = ACTIONS(625), + [anon_sym_NA_real_] = ACTIONS(625), + [anon_sym_NA_complex_] = ACTIONS(625), + [anon_sym_NA_character_] = ACTIONS(625), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(623), + [sym__semicolon] = ACTIONS(623), + [sym__raw_string_literal] = ACTIONS(623), + [sym__external_else] = ACTIONS(623), + [sym__external_open_parenthesis] = ACTIONS(623), + [sym__external_open_brace] = ACTIONS(623), + [sym__external_open_bracket] = ACTIONS(623), + [sym__external_open_bracket2] = ACTIONS(623), + }, + [290] = { [sym_identifier] = ACTIONS(609), [anon_sym_BSLASH] = ACTIONS(607), [anon_sym_function] = ACTIONS(609), @@ -27512,8 +27722,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(609), [anon_sym_DOLLAR] = ACTIONS(607), [anon_sym_AT] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_COLON_COLON_COLON] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(627), + [anon_sym_COLON_COLON_COLON] = ACTIONS(629), [sym__hex_literal] = ACTIONS(607), [sym__number_literal] = ACTIONS(609), [anon_sym_SQUOTE] = ACTIONS(607), @@ -27544,567 +27754,497 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(607), [sym__external_open_bracket2] = ACTIONS(607), }, - [288] = { - [sym_identifier] = ACTIONS(615), - [anon_sym_BSLASH] = ACTIONS(617), - [anon_sym_function] = ACTIONS(615), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_while] = ACTIONS(615), - [anon_sym_repeat] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_LT_DASH] = ACTIONS(617), - [anon_sym_LT_LT_DASH] = ACTIONS(617), - [anon_sym_COLON_EQ] = ACTIONS(617), - [anon_sym_DASH_GT] = ACTIONS(615), - [anon_sym_DASH_GT_GT] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_STAR_STAR] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [aux_sym_binary_operator_token1] = ACTIONS(617), - [anon_sym_PIPE_GT] = ACTIONS(617), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_L] = ACTIONS(619), - [anon_sym_i] = ACTIONS(621), - [sym__hex_literal] = ACTIONS(617), - [sym__number_literal] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [sym_dots] = ACTIONS(615), - [sym_dot_dot_i] = ACTIONS(615), - [sym_return] = ACTIONS(615), - [sym_next] = ACTIONS(615), - [sym_break] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_null] = ACTIONS(615), - [sym_inf] = ACTIONS(615), - [sym_nan] = ACTIONS(615), - [anon_sym_NA] = ACTIONS(615), - [anon_sym_NA_integer_] = ACTIONS(615), - [anon_sym_NA_real_] = ACTIONS(615), - [anon_sym_NA_complex_] = ACTIONS(615), - [anon_sym_NA_character_] = ACTIONS(615), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(617), - [sym__semicolon] = ACTIONS(617), - [sym__raw_string_literal] = ACTIONS(617), - [sym__external_else] = ACTIONS(617), - [sym__external_open_parenthesis] = ACTIONS(617), - [sym__external_open_brace] = ACTIONS(617), - [sym__external_close_brace] = ACTIONS(617), - [sym__external_open_bracket] = ACTIONS(617), - [sym__external_open_bracket2] = ACTIONS(617), - }, - [289] = { - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(611), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_function] = ACTIONS(611), - [anon_sym_EQ] = ACTIONS(611), - [anon_sym_if] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_repeat] = ACTIONS(611), - [anon_sym_QMARK] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT_DASH] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_DASH_GT] = ACTIONS(611), - [anon_sym_DASH_GT_GT] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(611), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_STAR_STAR] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [aux_sym_binary_operator_token1] = ACTIONS(613), - [anon_sym_PIPE_GT] = ACTIONS(613), - [anon_sym_COLON] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_COLON_COLON] = ACTIONS(611), - [anon_sym_COLON_COLON_COLON] = ACTIONS(613), - [sym__hex_literal] = ACTIONS(613), - [sym__number_literal] = ACTIONS(611), - [anon_sym_SQUOTE] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [sym_dots] = ACTIONS(611), - [sym_dot_dot_i] = ACTIONS(611), - [sym_return] = ACTIONS(611), - [sym_next] = ACTIONS(611), - [sym_break] = ACTIONS(611), - [sym_true] = ACTIONS(611), - [sym_false] = ACTIONS(611), - [sym_null] = ACTIONS(611), - [sym_inf] = ACTIONS(611), - [sym_nan] = ACTIONS(611), - [anon_sym_NA] = ACTIONS(611), - [anon_sym_NA_integer_] = ACTIONS(611), - [anon_sym_NA_real_] = ACTIONS(611), - [anon_sym_NA_complex_] = ACTIONS(611), - [anon_sym_NA_character_] = ACTIONS(611), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(613), - [sym__semicolon] = ACTIONS(613), - [sym__raw_string_literal] = ACTIONS(613), - [sym__external_else] = ACTIONS(613), - [sym__external_open_parenthesis] = ACTIONS(613), - [sym__external_open_brace] = ACTIONS(613), - [sym__external_open_bracket] = ACTIONS(613), - [sym__external_open_bracket2] = ACTIONS(613), - }, - [290] = { - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(611), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_function] = ACTIONS(611), - [anon_sym_EQ] = ACTIONS(611), - [anon_sym_if] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_repeat] = ACTIONS(611), - [anon_sym_QMARK] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT_DASH] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_DASH_GT] = ACTIONS(611), - [anon_sym_DASH_GT_GT] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(611), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_STAR_STAR] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [aux_sym_binary_operator_token1] = ACTIONS(613), - [anon_sym_PIPE_GT] = ACTIONS(613), - [anon_sym_COLON] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_COLON_COLON] = ACTIONS(611), - [anon_sym_COLON_COLON_COLON] = ACTIONS(613), - [sym__hex_literal] = ACTIONS(613), - [sym__number_literal] = ACTIONS(611), - [anon_sym_SQUOTE] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [sym_dots] = ACTIONS(611), - [sym_dot_dot_i] = ACTIONS(611), - [sym_return] = ACTIONS(611), - [sym_next] = ACTIONS(611), - [sym_break] = ACTIONS(611), - [sym_true] = ACTIONS(611), - [sym_false] = ACTIONS(611), - [sym_null] = ACTIONS(611), - [sym_inf] = ACTIONS(611), - [sym_nan] = ACTIONS(611), - [anon_sym_NA] = ACTIONS(611), - [anon_sym_NA_integer_] = ACTIONS(611), - [anon_sym_NA_real_] = ACTIONS(611), - [anon_sym_NA_complex_] = ACTIONS(611), - [anon_sym_NA_character_] = ACTIONS(611), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(613), - [sym__semicolon] = ACTIONS(613), - [sym__raw_string_literal] = ACTIONS(613), - [sym__external_else] = ACTIONS(613), - [sym__external_open_parenthesis] = ACTIONS(613), - [sym__external_open_brace] = ACTIONS(613), - [sym__external_open_bracket] = ACTIONS(613), - [sym__external_open_bracket2] = ACTIONS(613), - }, [291] = { - [sym_string] = STATE(411), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_identifier] = ACTIONS(623), - [anon_sym_BSLASH] = ACTIONS(529), - [anon_sym_function] = ACTIONS(531), - [anon_sym_EQ] = ACTIONS(531), - [anon_sym_if] = ACTIONS(531), - [anon_sym_for] = ACTIONS(531), - [anon_sym_while] = ACTIONS(531), - [anon_sym_repeat] = ACTIONS(531), - [anon_sym_QMARK] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [anon_sym_BANG] = ACTIONS(531), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_LT_DASH] = ACTIONS(529), - [anon_sym_LT_LT_DASH] = ACTIONS(529), - [anon_sym_COLON_EQ] = ACTIONS(529), - [anon_sym_DASH_GT] = ACTIONS(531), - [anon_sym_DASH_GT_GT] = ACTIONS(529), - [anon_sym_PIPE] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(531), - [anon_sym_PIPE_PIPE] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(529), - [anon_sym_LT] = ACTIONS(531), - [anon_sym_LT_EQ] = ACTIONS(529), - [anon_sym_GT] = ACTIONS(531), - [anon_sym_GT_EQ] = ACTIONS(529), - [anon_sym_EQ_EQ] = ACTIONS(529), - [anon_sym_BANG_EQ] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(529), - [anon_sym_STAR_STAR] = ACTIONS(529), - [anon_sym_CARET] = ACTIONS(529), - [aux_sym_binary_operator_token1] = ACTIONS(529), - [anon_sym_PIPE_GT] = ACTIONS(529), - [anon_sym_COLON] = ACTIONS(531), - [anon_sym_DOLLAR] = ACTIONS(529), - [anon_sym_AT] = ACTIONS(529), - [sym__hex_literal] = ACTIONS(529), - [sym__number_literal] = ACTIONS(531), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), - [sym_dots] = ACTIONS(623), - [sym_dot_dot_i] = ACTIONS(623), - [sym_return] = ACTIONS(531), - [sym_next] = ACTIONS(531), - [sym_break] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_null] = ACTIONS(531), - [sym_inf] = ACTIONS(531), - [sym_nan] = ACTIONS(531), - [anon_sym_NA] = ACTIONS(531), - [anon_sym_NA_integer_] = ACTIONS(531), - [anon_sym_NA_real_] = ACTIONS(531), - [anon_sym_NA_complex_] = ACTIONS(531), - [anon_sym_NA_character_] = ACTIONS(531), + [sym_identifier] = ACTIONS(617), + [anon_sym_BSLASH] = ACTIONS(615), + [anon_sym_function] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(617), + [anon_sym_if] = ACTIONS(617), + [anon_sym_for] = ACTIONS(617), + [anon_sym_while] = ACTIONS(617), + [anon_sym_repeat] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_LT_DASH] = ACTIONS(615), + [anon_sym_LT_LT_DASH] = ACTIONS(615), + [anon_sym_COLON_EQ] = ACTIONS(615), + [anon_sym_DASH_GT] = ACTIONS(617), + [anon_sym_DASH_GT_GT] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_STAR_STAR] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [aux_sym_binary_operator_token1] = ACTIONS(615), + [anon_sym_PIPE_GT] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_L] = ACTIONS(631), + [anon_sym_i] = ACTIONS(633), + [sym__hex_literal] = ACTIONS(615), + [sym__number_literal] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_dots] = ACTIONS(617), + [sym_dot_dot_i] = ACTIONS(617), + [sym_return] = ACTIONS(617), + [sym_next] = ACTIONS(617), + [sym_break] = ACTIONS(617), + [sym_true] = ACTIONS(617), + [sym_false] = ACTIONS(617), + [sym_null] = ACTIONS(617), + [sym_inf] = ACTIONS(617), + [sym_nan] = ACTIONS(617), + [anon_sym_NA] = ACTIONS(617), + [anon_sym_NA_integer_] = ACTIONS(617), + [anon_sym_NA_real_] = ACTIONS(617), + [anon_sym_NA_complex_] = ACTIONS(617), + [anon_sym_NA_character_] = ACTIONS(617), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(529), - [sym__semicolon] = ACTIONS(529), - [sym__raw_string_literal] = ACTIONS(579), - [sym__external_open_parenthesis] = ACTIONS(529), - [sym__external_open_brace] = ACTIONS(529), - [sym__external_close_brace] = ACTIONS(529), - [sym__external_open_bracket] = ACTIONS(529), - [sym__external_open_bracket2] = ACTIONS(529), + [sym__newline] = ACTIONS(615), + [sym__semicolon] = ACTIONS(615), + [sym__raw_string_literal] = ACTIONS(615), + [sym__external_else] = ACTIONS(615), + [sym__external_open_parenthesis] = ACTIONS(615), + [sym__external_open_brace] = ACTIONS(615), + [sym__external_close_brace] = ACTIONS(615), + [sym__external_open_bracket] = ACTIONS(615), + [sym__external_open_bracket2] = ACTIONS(615), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(615), - [anon_sym_BSLASH] = ACTIONS(617), - [anon_sym_function] = ACTIONS(615), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_while] = ACTIONS(615), - [anon_sym_repeat] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_LT_DASH] = ACTIONS(617), - [anon_sym_LT_LT_DASH] = ACTIONS(617), - [anon_sym_COLON_EQ] = ACTIONS(617), - [anon_sym_DASH_GT] = ACTIONS(615), - [anon_sym_DASH_GT_GT] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_STAR_STAR] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [aux_sym_binary_operator_token1] = ACTIONS(617), - [anon_sym_PIPE_GT] = ACTIONS(617), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_L] = ACTIONS(625), - [anon_sym_i] = ACTIONS(627), - [sym__hex_literal] = ACTIONS(617), - [sym__number_literal] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [sym_dots] = ACTIONS(615), - [sym_dot_dot_i] = ACTIONS(615), - [sym_return] = ACTIONS(615), - [sym_next] = ACTIONS(615), - [sym_break] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_null] = ACTIONS(615), - [sym_inf] = ACTIONS(615), - [sym_nan] = ACTIONS(615), - [anon_sym_NA] = ACTIONS(615), - [anon_sym_NA_integer_] = ACTIONS(615), - [anon_sym_NA_real_] = ACTIONS(615), - [anon_sym_NA_complex_] = ACTIONS(615), - [anon_sym_NA_character_] = ACTIONS(615), + [sym_identifier] = ACTIONS(625), + [anon_sym_BSLASH] = ACTIONS(623), + [anon_sym_function] = ACTIONS(625), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(625), + [anon_sym_while] = ACTIONS(625), + [anon_sym_repeat] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(623), + [anon_sym_LT_LT_DASH] = ACTIONS(623), + [anon_sym_COLON_EQ] = ACTIONS(623), + [anon_sym_DASH_GT] = ACTIONS(625), + [anon_sym_DASH_GT_GT] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR_STAR] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [aux_sym_binary_operator_token1] = ACTIONS(623), + [anon_sym_PIPE_GT] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_DOLLAR] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym_COLON_COLON_COLON] = ACTIONS(623), + [sym__hex_literal] = ACTIONS(623), + [sym__number_literal] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_dots] = ACTIONS(625), + [sym_dot_dot_i] = ACTIONS(625), + [sym_return] = ACTIONS(625), + [sym_next] = ACTIONS(625), + [sym_break] = ACTIONS(625), + [sym_true] = ACTIONS(625), + [sym_false] = ACTIONS(625), + [sym_null] = ACTIONS(625), + [sym_inf] = ACTIONS(625), + [sym_nan] = ACTIONS(625), + [anon_sym_NA] = ACTIONS(625), + [anon_sym_NA_integer_] = ACTIONS(625), + [anon_sym_NA_real_] = ACTIONS(625), + [anon_sym_NA_complex_] = ACTIONS(625), + [anon_sym_NA_character_] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(617), - [sym__semicolon] = ACTIONS(617), - [sym__raw_string_literal] = ACTIONS(617), - [sym__external_else] = ACTIONS(617), - [sym__external_open_parenthesis] = ACTIONS(617), - [sym__external_open_brace] = ACTIONS(617), - [sym__external_open_bracket] = ACTIONS(617), - [sym__external_open_bracket2] = ACTIONS(617), + [sym__newline] = ACTIONS(623), + [sym__semicolon] = ACTIONS(623), + [sym__raw_string_literal] = ACTIONS(623), + [sym__external_else] = ACTIONS(623), + [sym__external_open_parenthesis] = ACTIONS(623), + [sym__external_open_brace] = ACTIONS(623), + [sym__external_close_brace] = ACTIONS(623), + [sym__external_open_bracket] = ACTIONS(623), + [sym__external_open_bracket2] = ACTIONS(623), }, [293] = { - [ts_builtin_sym_end] = ACTIONS(629), - [sym_identifier] = ACTIONS(631), - [anon_sym_BSLASH] = ACTIONS(629), - [anon_sym_function] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_if] = ACTIONS(631), - [anon_sym_for] = ACTIONS(631), - [anon_sym_while] = ACTIONS(631), - [anon_sym_repeat] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(629), - [anon_sym_TILDE] = ACTIONS(629), - [anon_sym_BANG] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_LT_DASH] = ACTIONS(629), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_COLON_EQ] = ACTIONS(629), - [anon_sym_DASH_GT] = ACTIONS(631), - [anon_sym_DASH_GT_GT] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(631), - [anon_sym_LT_EQ] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_GT_EQ] = ACTIONS(629), - [anon_sym_EQ_EQ] = ACTIONS(629), - [anon_sym_BANG_EQ] = ACTIONS(629), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_SLASH] = ACTIONS(629), - [anon_sym_STAR_STAR] = ACTIONS(629), - [anon_sym_CARET] = ACTIONS(629), - [aux_sym_binary_operator_token1] = ACTIONS(629), - [anon_sym_PIPE_GT] = ACTIONS(629), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_AT] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(633), - [anon_sym_COLON_COLON_COLON] = ACTIONS(635), - [sym__hex_literal] = ACTIONS(629), - [sym__number_literal] = ACTIONS(631), - [anon_sym_SQUOTE] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [sym_dots] = ACTIONS(631), - [sym_dot_dot_i] = ACTIONS(631), - [sym_return] = ACTIONS(631), - [sym_next] = ACTIONS(631), - [sym_break] = ACTIONS(631), - [sym_true] = ACTIONS(631), - [sym_false] = ACTIONS(631), - [sym_null] = ACTIONS(631), - [sym_inf] = ACTIONS(631), - [sym_nan] = ACTIONS(631), - [anon_sym_NA] = ACTIONS(631), - [anon_sym_NA_integer_] = ACTIONS(631), - [anon_sym_NA_real_] = ACTIONS(631), - [anon_sym_NA_complex_] = ACTIONS(631), - [anon_sym_NA_character_] = ACTIONS(631), + [sym_identifier] = ACTIONS(625), + [anon_sym_BSLASH] = ACTIONS(623), + [anon_sym_function] = ACTIONS(625), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(625), + [anon_sym_while] = ACTIONS(625), + [anon_sym_repeat] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(623), + [anon_sym_LT_LT_DASH] = ACTIONS(623), + [anon_sym_COLON_EQ] = ACTIONS(623), + [anon_sym_DASH_GT] = ACTIONS(625), + [anon_sym_DASH_GT_GT] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR_STAR] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [aux_sym_binary_operator_token1] = ACTIONS(623), + [anon_sym_PIPE_GT] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_DOLLAR] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym_COLON_COLON_COLON] = ACTIONS(623), + [sym__hex_literal] = ACTIONS(623), + [sym__number_literal] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_dots] = ACTIONS(625), + [sym_dot_dot_i] = ACTIONS(625), + [sym_return] = ACTIONS(625), + [sym_next] = ACTIONS(625), + [sym_break] = ACTIONS(625), + [sym_true] = ACTIONS(625), + [sym_false] = ACTIONS(625), + [sym_null] = ACTIONS(625), + [sym_inf] = ACTIONS(625), + [sym_nan] = ACTIONS(625), + [anon_sym_NA] = ACTIONS(625), + [anon_sym_NA_integer_] = ACTIONS(625), + [anon_sym_NA_real_] = ACTIONS(625), + [anon_sym_NA_complex_] = ACTIONS(625), + [anon_sym_NA_character_] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(629), - [sym__semicolon] = ACTIONS(629), - [sym__raw_string_literal] = ACTIONS(629), - [sym__external_else] = ACTIONS(629), - [sym__external_open_parenthesis] = ACTIONS(629), - [sym__external_open_brace] = ACTIONS(629), - [sym__external_open_bracket] = ACTIONS(629), - [sym__external_open_bracket2] = ACTIONS(629), + [sym__newline] = ACTIONS(623), + [sym__semicolon] = ACTIONS(623), + [sym__raw_string_literal] = ACTIONS(623), + [sym__external_else] = ACTIONS(623), + [sym__external_open_parenthesis] = ACTIONS(623), + [sym__external_open_brace] = ACTIONS(623), + [sym__external_close_brace] = ACTIONS(623), + [sym__external_open_bracket] = ACTIONS(623), + [sym__external_open_bracket2] = ACTIONS(623), }, [294] = { - [sym_string] = STATE(396), - [sym__single_quoted_string] = STATE(308), - [sym__double_quoted_string] = STATE(307), - [ts_builtin_sym_end] = ACTIONS(529), - [sym_identifier] = ACTIONS(637), - [anon_sym_BSLASH] = ACTIONS(529), - [anon_sym_function] = ACTIONS(531), - [anon_sym_EQ] = ACTIONS(531), - [anon_sym_if] = ACTIONS(531), - [anon_sym_for] = ACTIONS(531), - [anon_sym_while] = ACTIONS(531), - [anon_sym_repeat] = ACTIONS(531), - [anon_sym_QMARK] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [anon_sym_BANG] = ACTIONS(531), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_LT_DASH] = ACTIONS(529), - [anon_sym_LT_LT_DASH] = ACTIONS(529), - [anon_sym_COLON_EQ] = ACTIONS(529), - [anon_sym_DASH_GT] = ACTIONS(531), - [anon_sym_DASH_GT_GT] = ACTIONS(529), - [anon_sym_PIPE] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(531), - [anon_sym_PIPE_PIPE] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(529), - [anon_sym_LT] = ACTIONS(531), - [anon_sym_LT_EQ] = ACTIONS(529), - [anon_sym_GT] = ACTIONS(531), - [anon_sym_GT_EQ] = ACTIONS(529), - [anon_sym_EQ_EQ] = ACTIONS(529), - [anon_sym_BANG_EQ] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(529), - [anon_sym_STAR_STAR] = ACTIONS(529), - [anon_sym_CARET] = ACTIONS(529), - [aux_sym_binary_operator_token1] = ACTIONS(529), - [anon_sym_PIPE_GT] = ACTIONS(529), - [anon_sym_COLON] = ACTIONS(531), - [anon_sym_DOLLAR] = ACTIONS(529), - [anon_sym_AT] = ACTIONS(529), - [sym__hex_literal] = ACTIONS(529), - [sym__number_literal] = ACTIONS(531), - [anon_sym_SQUOTE] = ACTIONS(473), - [anon_sym_DQUOTE] = ACTIONS(475), - [sym_dots] = ACTIONS(637), - [sym_dot_dot_i] = ACTIONS(637), - [sym_return] = ACTIONS(531), - [sym_next] = ACTIONS(531), - [sym_break] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_null] = ACTIONS(531), - [sym_inf] = ACTIONS(531), - [sym_nan] = ACTIONS(531), - [anon_sym_NA] = ACTIONS(531), - [anon_sym_NA_integer_] = ACTIONS(531), - [anon_sym_NA_real_] = ACTIONS(531), - [anon_sym_NA_complex_] = ACTIONS(531), - [anon_sym_NA_character_] = ACTIONS(531), + [sym_identifier] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(637), + [anon_sym_function] = ACTIONS(635), + [anon_sym_EQ] = ACTIONS(635), + [anon_sym_if] = ACTIONS(635), + [anon_sym_for] = ACTIONS(635), + [anon_sym_while] = ACTIONS(635), + [anon_sym_repeat] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_LT_DASH] = ACTIONS(637), + [anon_sym_LT_LT_DASH] = ACTIONS(637), + [anon_sym_COLON_EQ] = ACTIONS(637), + [anon_sym_DASH_GT] = ACTIONS(635), + [anon_sym_DASH_GT_GT] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_AMP] = ACTIONS(635), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(635), + [anon_sym_LT_EQ] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(635), + [anon_sym_GT_EQ] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(637), + [anon_sym_STAR_STAR] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [aux_sym_binary_operator_token1] = ACTIONS(637), + [anon_sym_PIPE_GT] = ACTIONS(637), + [anon_sym_COLON] = ACTIONS(635), + [anon_sym_DOLLAR] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(637), + [anon_sym_COLON_COLON] = ACTIONS(635), + [anon_sym_COLON_COLON_COLON] = ACTIONS(637), + [sym__hex_literal] = ACTIONS(637), + [sym__number_literal] = ACTIONS(635), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(637), + [sym_dots] = ACTIONS(635), + [sym_dot_dot_i] = ACTIONS(635), + [sym_return] = ACTIONS(635), + [sym_next] = ACTIONS(635), + [sym_break] = ACTIONS(635), + [sym_true] = ACTIONS(635), + [sym_false] = ACTIONS(635), + [sym_null] = ACTIONS(635), + [sym_inf] = ACTIONS(635), + [sym_nan] = ACTIONS(635), + [anon_sym_NA] = ACTIONS(635), + [anon_sym_NA_integer_] = ACTIONS(635), + [anon_sym_NA_real_] = ACTIONS(635), + [anon_sym_NA_complex_] = ACTIONS(635), + [anon_sym_NA_character_] = ACTIONS(635), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(529), - [sym__semicolon] = ACTIONS(529), - [sym__raw_string_literal] = ACTIONS(477), - [sym__external_open_parenthesis] = ACTIONS(529), - [sym__external_open_brace] = ACTIONS(529), - [sym__external_open_bracket] = ACTIONS(529), - [sym__external_open_bracket2] = ACTIONS(529), + [sym__newline] = ACTIONS(637), + [sym__semicolon] = ACTIONS(637), + [sym__raw_string_literal] = ACTIONS(637), + [sym__external_else] = ACTIONS(637), + [sym__external_open_parenthesis] = ACTIONS(637), + [sym__external_open_brace] = ACTIONS(637), + [sym__external_close_brace] = ACTIONS(637), + [sym__external_open_bracket] = ACTIONS(637), + [sym__external_open_bracket2] = ACTIONS(637), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(639), - [sym_identifier] = ACTIONS(641), - [anon_sym_BSLASH] = ACTIONS(639), - [anon_sym_function] = ACTIONS(641), - [anon_sym_EQ] = ACTIONS(641), - [anon_sym_if] = ACTIONS(641), - [anon_sym_for] = ACTIONS(641), - [anon_sym_while] = ACTIONS(641), - [anon_sym_repeat] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(639), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_BANG] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_LT_DASH] = ACTIONS(639), - [anon_sym_LT_LT_DASH] = ACTIONS(639), - [anon_sym_COLON_EQ] = ACTIONS(639), - [anon_sym_DASH_GT] = ACTIONS(641), - [anon_sym_DASH_GT_GT] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(641), - [anon_sym_AMP] = ACTIONS(641), - [anon_sym_PIPE_PIPE] = ACTIONS(639), - [anon_sym_AMP_AMP] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_LT_EQ] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(639), - [anon_sym_EQ_EQ] = ACTIONS(639), - [anon_sym_BANG_EQ] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_STAR_STAR] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [aux_sym_binary_operator_token1] = ACTIONS(639), - [anon_sym_PIPE_GT] = ACTIONS(639), - [anon_sym_COLON] = ACTIONS(641), - [anon_sym_DOLLAR] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(639), - [anon_sym_COLON_COLON] = ACTIONS(641), - [anon_sym_COLON_COLON_COLON] = ACTIONS(639), - [sym__hex_literal] = ACTIONS(639), - [sym__number_literal] = ACTIONS(641), - [anon_sym_SQUOTE] = ACTIONS(639), - [anon_sym_DQUOTE] = ACTIONS(639), - [sym_dots] = ACTIONS(641), - [sym_dot_dot_i] = ACTIONS(641), - [sym_return] = ACTIONS(641), - [sym_next] = ACTIONS(641), - [sym_break] = ACTIONS(641), - [sym_true] = ACTIONS(641), - [sym_false] = ACTIONS(641), - [sym_null] = ACTIONS(641), - [sym_inf] = ACTIONS(641), - [sym_nan] = ACTIONS(641), - [anon_sym_NA] = ACTIONS(641), - [anon_sym_NA_integer_] = ACTIONS(641), - [anon_sym_NA_real_] = ACTIONS(641), - [anon_sym_NA_complex_] = ACTIONS(641), - [anon_sym_NA_character_] = ACTIONS(641), + [sym_identifier] = ACTIONS(639), + [anon_sym_BSLASH] = ACTIONS(641), + [anon_sym_function] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(639), + [anon_sym_if] = ACTIONS(639), + [anon_sym_for] = ACTIONS(639), + [anon_sym_while] = ACTIONS(639), + [anon_sym_repeat] = ACTIONS(639), + [anon_sym_QMARK] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_LT_DASH] = ACTIONS(641), + [anon_sym_LT_LT_DASH] = ACTIONS(641), + [anon_sym_COLON_EQ] = ACTIONS(641), + [anon_sym_DASH_GT] = ACTIONS(639), + [anon_sym_DASH_GT_GT] = ACTIONS(641), + [anon_sym_PIPE] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(639), + [anon_sym_PIPE_PIPE] = ACTIONS(641), + [anon_sym_AMP_AMP] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_LT_EQ] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(639), + [anon_sym_GT_EQ] = ACTIONS(641), + [anon_sym_EQ_EQ] = ACTIONS(641), + [anon_sym_BANG_EQ] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_SLASH] = ACTIONS(641), + [anon_sym_STAR_STAR] = ACTIONS(641), + [anon_sym_CARET] = ACTIONS(641), + [aux_sym_binary_operator_token1] = ACTIONS(641), + [anon_sym_PIPE_GT] = ACTIONS(641), + [anon_sym_COLON] = ACTIONS(639), + [anon_sym_DOLLAR] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(641), + [anon_sym_COLON_COLON] = ACTIONS(639), + [anon_sym_COLON_COLON_COLON] = ACTIONS(641), + [sym__hex_literal] = ACTIONS(641), + [sym__number_literal] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(641), + [anon_sym_DQUOTE] = ACTIONS(641), + [sym_dots] = ACTIONS(639), + [sym_dot_dot_i] = ACTIONS(639), + [sym_return] = ACTIONS(639), + [sym_next] = ACTIONS(639), + [sym_break] = ACTIONS(639), + [sym_true] = ACTIONS(639), + [sym_false] = ACTIONS(639), + [sym_null] = ACTIONS(639), + [sym_inf] = ACTIONS(639), + [sym_nan] = ACTIONS(639), + [anon_sym_NA] = ACTIONS(639), + [anon_sym_NA_integer_] = ACTIONS(639), + [anon_sym_NA_real_] = ACTIONS(639), + [anon_sym_NA_complex_] = ACTIONS(639), + [anon_sym_NA_character_] = ACTIONS(639), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(639), - [sym__semicolon] = ACTIONS(639), - [sym__raw_string_literal] = ACTIONS(639), - [sym__external_else] = ACTIONS(639), - [sym__external_open_parenthesis] = ACTIONS(639), - [sym__external_open_brace] = ACTIONS(639), - [sym__external_open_bracket] = ACTIONS(639), - [sym__external_open_bracket2] = ACTIONS(639), + [sym__newline] = ACTIONS(641), + [sym__semicolon] = ACTIONS(641), + [sym__raw_string_literal] = ACTIONS(641), + [sym__external_else] = ACTIONS(641), + [sym__external_open_parenthesis] = ACTIONS(641), + [sym__external_open_brace] = ACTIONS(641), + [sym__external_close_brace] = ACTIONS(641), + [sym__external_open_bracket] = ACTIONS(641), + [sym__external_open_bracket2] = ACTIONS(641), }, [296] = { + [ts_builtin_sym_end] = ACTIONS(637), + [sym_identifier] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(637), + [anon_sym_function] = ACTIONS(635), + [anon_sym_EQ] = ACTIONS(635), + [anon_sym_if] = ACTIONS(635), + [anon_sym_for] = ACTIONS(635), + [anon_sym_while] = ACTIONS(635), + [anon_sym_repeat] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_LT_DASH] = ACTIONS(637), + [anon_sym_LT_LT_DASH] = ACTIONS(637), + [anon_sym_COLON_EQ] = ACTIONS(637), + [anon_sym_DASH_GT] = ACTIONS(635), + [anon_sym_DASH_GT_GT] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_AMP] = ACTIONS(635), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(635), + [anon_sym_LT_EQ] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(635), + [anon_sym_GT_EQ] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(637), + [anon_sym_STAR_STAR] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [aux_sym_binary_operator_token1] = ACTIONS(637), + [anon_sym_PIPE_GT] = ACTIONS(637), + [anon_sym_COLON] = ACTIONS(635), + [anon_sym_DOLLAR] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(637), + [anon_sym_COLON_COLON] = ACTIONS(635), + [anon_sym_COLON_COLON_COLON] = ACTIONS(637), + [sym__hex_literal] = ACTIONS(637), + [sym__number_literal] = ACTIONS(635), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(637), + [sym_dots] = ACTIONS(635), + [sym_dot_dot_i] = ACTIONS(635), + [sym_return] = ACTIONS(635), + [sym_next] = ACTIONS(635), + [sym_break] = ACTIONS(635), + [sym_true] = ACTIONS(635), + [sym_false] = ACTIONS(635), + [sym_null] = ACTIONS(635), + [sym_inf] = ACTIONS(635), + [sym_nan] = ACTIONS(635), + [anon_sym_NA] = ACTIONS(635), + [anon_sym_NA_integer_] = ACTIONS(635), + [anon_sym_NA_real_] = ACTIONS(635), + [anon_sym_NA_complex_] = ACTIONS(635), + [anon_sym_NA_character_] = ACTIONS(635), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(637), + [sym__semicolon] = ACTIONS(637), + [sym__raw_string_literal] = ACTIONS(637), + [sym__external_else] = ACTIONS(637), + [sym__external_open_parenthesis] = ACTIONS(637), + [sym__external_open_brace] = ACTIONS(637), + [sym__external_open_bracket] = ACTIONS(637), + [sym__external_open_bracket2] = ACTIONS(637), + }, + [297] = { + [ts_builtin_sym_end] = ACTIONS(641), + [sym_identifier] = ACTIONS(639), + [anon_sym_BSLASH] = ACTIONS(641), + [anon_sym_function] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(639), + [anon_sym_if] = ACTIONS(639), + [anon_sym_for] = ACTIONS(639), + [anon_sym_while] = ACTIONS(639), + [anon_sym_repeat] = ACTIONS(639), + [anon_sym_QMARK] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_LT_DASH] = ACTIONS(641), + [anon_sym_LT_LT_DASH] = ACTIONS(641), + [anon_sym_COLON_EQ] = ACTIONS(641), + [anon_sym_DASH_GT] = ACTIONS(639), + [anon_sym_DASH_GT_GT] = ACTIONS(641), + [anon_sym_PIPE] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(639), + [anon_sym_PIPE_PIPE] = ACTIONS(641), + [anon_sym_AMP_AMP] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_LT_EQ] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(639), + [anon_sym_GT_EQ] = ACTIONS(641), + [anon_sym_EQ_EQ] = ACTIONS(641), + [anon_sym_BANG_EQ] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_SLASH] = ACTIONS(641), + [anon_sym_STAR_STAR] = ACTIONS(641), + [anon_sym_CARET] = ACTIONS(641), + [aux_sym_binary_operator_token1] = ACTIONS(641), + [anon_sym_PIPE_GT] = ACTIONS(641), + [anon_sym_COLON] = ACTIONS(639), + [anon_sym_DOLLAR] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(641), + [anon_sym_COLON_COLON] = ACTIONS(639), + [anon_sym_COLON_COLON_COLON] = ACTIONS(641), + [sym__hex_literal] = ACTIONS(641), + [sym__number_literal] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(641), + [anon_sym_DQUOTE] = ACTIONS(641), + [sym_dots] = ACTIONS(639), + [sym_dot_dot_i] = ACTIONS(639), + [sym_return] = ACTIONS(639), + [sym_next] = ACTIONS(639), + [sym_break] = ACTIONS(639), + [sym_true] = ACTIONS(639), + [sym_false] = ACTIONS(639), + [sym_null] = ACTIONS(639), + [sym_inf] = ACTIONS(639), + [sym_nan] = ACTIONS(639), + [anon_sym_NA] = ACTIONS(639), + [anon_sym_NA_integer_] = ACTIONS(639), + [anon_sym_NA_real_] = ACTIONS(639), + [anon_sym_NA_complex_] = ACTIONS(639), + [anon_sym_NA_character_] = ACTIONS(639), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(641), + [sym__semicolon] = ACTIONS(641), + [sym__raw_string_literal] = ACTIONS(641), + [sym__external_else] = ACTIONS(641), + [sym__external_open_parenthesis] = ACTIONS(641), + [sym__external_open_brace] = ACTIONS(641), + [sym__external_open_bracket] = ACTIONS(641), + [sym__external_open_bracket2] = ACTIONS(641), + }, + [298] = { [sym_identifier] = ACTIONS(643), [anon_sym_BSLASH] = ACTIONS(645), [anon_sym_function] = ACTIONS(643), @@ -28174,7 +28314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(645), [sym__external_open_bracket2] = ACTIONS(645), }, - [297] = { + [299] = { [sym_identifier] = ACTIONS(647), [anon_sym_BSLASH] = ACTIONS(649), [anon_sym_function] = ACTIONS(647), @@ -28244,77 +28384,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(649), [sym__external_open_bracket2] = ACTIONS(649), }, - [298] = { - [sym_identifier] = ACTIONS(641), - [anon_sym_BSLASH] = ACTIONS(639), - [anon_sym_function] = ACTIONS(641), - [anon_sym_EQ] = ACTIONS(641), - [anon_sym_if] = ACTIONS(641), - [anon_sym_for] = ACTIONS(641), - [anon_sym_while] = ACTIONS(641), - [anon_sym_repeat] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(639), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_BANG] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_LT_DASH] = ACTIONS(639), - [anon_sym_LT_LT_DASH] = ACTIONS(639), - [anon_sym_COLON_EQ] = ACTIONS(639), - [anon_sym_DASH_GT] = ACTIONS(641), - [anon_sym_DASH_GT_GT] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(641), - [anon_sym_AMP] = ACTIONS(641), - [anon_sym_PIPE_PIPE] = ACTIONS(639), - [anon_sym_AMP_AMP] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_LT_EQ] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(639), - [anon_sym_EQ_EQ] = ACTIONS(639), - [anon_sym_BANG_EQ] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_STAR_STAR] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [aux_sym_binary_operator_token1] = ACTIONS(639), - [anon_sym_PIPE_GT] = ACTIONS(639), - [anon_sym_COLON] = ACTIONS(641), - [anon_sym_DOLLAR] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(639), - [anon_sym_COLON_COLON] = ACTIONS(641), - [anon_sym_COLON_COLON_COLON] = ACTIONS(639), - [sym__hex_literal] = ACTIONS(639), - [sym__number_literal] = ACTIONS(641), - [anon_sym_SQUOTE] = ACTIONS(639), - [anon_sym_DQUOTE] = ACTIONS(639), - [sym_dots] = ACTIONS(641), - [sym_dot_dot_i] = ACTIONS(641), - [sym_return] = ACTIONS(641), - [sym_next] = ACTIONS(641), - [sym_break] = ACTIONS(641), - [sym_true] = ACTIONS(641), - [sym_false] = ACTIONS(641), - [sym_null] = ACTIONS(641), - [sym_inf] = ACTIONS(641), - [sym_nan] = ACTIONS(641), - [anon_sym_NA] = ACTIONS(641), - [anon_sym_NA_integer_] = ACTIONS(641), - [anon_sym_NA_real_] = ACTIONS(641), - [anon_sym_NA_complex_] = ACTIONS(641), - [anon_sym_NA_character_] = ACTIONS(641), + [300] = { + [sym_string] = STATE(428), + [sym__single_quoted_string] = STATE(308), + [sym__double_quoted_string] = STATE(309), + [ts_builtin_sym_end] = ACTIONS(489), + [sym_identifier] = ACTIONS(651), + [anon_sym_BSLASH] = ACTIONS(489), + [anon_sym_function] = ACTIONS(491), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [anon_sym_repeat] = ACTIONS(491), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_LT_DASH] = ACTIONS(489), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [anon_sym_COLON_EQ] = ACTIONS(489), + [anon_sym_DASH_GT] = ACTIONS(491), + [anon_sym_DASH_GT_GT] = ACTIONS(489), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_PIPE_PIPE] = ACTIONS(489), + [anon_sym_AMP_AMP] = ACTIONS(489), + [anon_sym_LT] = ACTIONS(491), + [anon_sym_LT_EQ] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(491), + [anon_sym_GT_EQ] = ACTIONS(489), + [anon_sym_EQ_EQ] = ACTIONS(489), + [anon_sym_BANG_EQ] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_SLASH] = ACTIONS(489), + [anon_sym_STAR_STAR] = ACTIONS(489), + [anon_sym_CARET] = ACTIONS(489), + [aux_sym_binary_operator_token1] = ACTIONS(489), + [anon_sym_PIPE_GT] = ACTIONS(489), + [anon_sym_COLON] = ACTIONS(491), + [anon_sym_DOLLAR] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(489), + [sym__hex_literal] = ACTIONS(489), + [sym__number_literal] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(483), + [sym_dots] = ACTIONS(651), + [sym_dot_dot_i] = ACTIONS(651), + [sym_return] = ACTIONS(491), + [sym_next] = ACTIONS(491), + [sym_break] = ACTIONS(491), + [sym_true] = ACTIONS(491), + [sym_false] = ACTIONS(491), + [sym_null] = ACTIONS(491), + [sym_inf] = ACTIONS(491), + [sym_nan] = ACTIONS(491), + [anon_sym_NA] = ACTIONS(491), + [anon_sym_NA_integer_] = ACTIONS(491), + [anon_sym_NA_real_] = ACTIONS(491), + [anon_sym_NA_complex_] = ACTIONS(491), + [anon_sym_NA_character_] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(639), - [sym__semicolon] = ACTIONS(639), - [sym__raw_string_literal] = ACTIONS(639), - [sym__external_else] = ACTIONS(639), - [sym__external_open_parenthesis] = ACTIONS(639), - [sym__external_open_brace] = ACTIONS(639), - [sym__external_close_brace] = ACTIONS(639), - [sym__external_open_bracket] = ACTIONS(639), - [sym__external_open_bracket2] = ACTIONS(639), + [sym__newline] = ACTIONS(489), + [sym__semicolon] = ACTIONS(489), + [sym__raw_string_literal] = ACTIONS(485), + [sym__external_open_parenthesis] = ACTIONS(489), + [sym__external_open_brace] = ACTIONS(489), + [sym__external_open_bracket] = ACTIONS(489), + [sym__external_open_bracket2] = ACTIONS(489), }, - [299] = { + [301] = { [ts_builtin_sym_end] = ACTIONS(645), [sym_identifier] = ACTIONS(643), [anon_sym_BSLASH] = ACTIONS(645), @@ -28384,7 +28524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(645), [sym__external_open_bracket2] = ACTIONS(645), }, - [300] = { + [302] = { [ts_builtin_sym_end] = ACTIONS(649), [sym_identifier] = ACTIONS(647), [anon_sym_BSLASH] = ACTIONS(649), @@ -28454,701 +28594,1112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(649), [sym__external_open_bracket2] = ACTIONS(649), }, - [301] = { - [sym_identifier] = ACTIONS(631), - [anon_sym_BSLASH] = ACTIONS(629), - [anon_sym_function] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_if] = ACTIONS(631), - [anon_sym_for] = ACTIONS(631), - [anon_sym_while] = ACTIONS(631), - [anon_sym_repeat] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(629), - [anon_sym_TILDE] = ACTIONS(629), - [anon_sym_BANG] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_LT_DASH] = ACTIONS(629), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_COLON_EQ] = ACTIONS(629), - [anon_sym_DASH_GT] = ACTIONS(631), - [anon_sym_DASH_GT_GT] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(631), - [anon_sym_LT_EQ] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_GT_EQ] = ACTIONS(629), - [anon_sym_EQ_EQ] = ACTIONS(629), - [anon_sym_BANG_EQ] = ACTIONS(629), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_SLASH] = ACTIONS(629), - [anon_sym_STAR_STAR] = ACTIONS(629), - [anon_sym_CARET] = ACTIONS(629), - [aux_sym_binary_operator_token1] = ACTIONS(629), - [anon_sym_PIPE_GT] = ACTIONS(629), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_AT] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(651), - [anon_sym_COLON_COLON_COLON] = ACTIONS(653), - [sym__hex_literal] = ACTIONS(629), - [sym__number_literal] = ACTIONS(631), - [anon_sym_SQUOTE] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [sym_dots] = ACTIONS(631), - [sym_dot_dot_i] = ACTIONS(631), - [sym_return] = ACTIONS(631), - [sym_next] = ACTIONS(631), - [sym_break] = ACTIONS(631), - [sym_true] = ACTIONS(631), - [sym_false] = ACTIONS(631), - [sym_null] = ACTIONS(631), - [sym_inf] = ACTIONS(631), - [sym_nan] = ACTIONS(631), - [anon_sym_NA] = ACTIONS(631), - [anon_sym_NA_integer_] = ACTIONS(631), - [anon_sym_NA_real_] = ACTIONS(631), - [anon_sym_NA_complex_] = ACTIONS(631), - [anon_sym_NA_character_] = ACTIONS(631), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(629), - [sym__semicolon] = ACTIONS(629), - [sym__raw_string_literal] = ACTIONS(629), - [sym__external_else] = ACTIONS(629), - [sym__external_open_parenthesis] = ACTIONS(629), - [sym__external_open_brace] = ACTIONS(629), - [sym__external_close_brace] = ACTIONS(629), - [sym__external_open_bracket] = ACTIONS(629), - [sym__external_open_bracket2] = ACTIONS(629), - }, - [302] = { - [sym_identifier] = ACTIONS(611), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_function] = ACTIONS(611), - [anon_sym_EQ] = ACTIONS(611), - [anon_sym_if] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_repeat] = ACTIONS(611), - [anon_sym_QMARK] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT_DASH] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_DASH_GT] = ACTIONS(611), - [anon_sym_DASH_GT_GT] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(611), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_STAR_STAR] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [aux_sym_binary_operator_token1] = ACTIONS(613), - [anon_sym_PIPE_GT] = ACTIONS(613), - [anon_sym_COLON] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_COLON_COLON] = ACTIONS(611), - [anon_sym_COLON_COLON_COLON] = ACTIONS(613), - [sym__hex_literal] = ACTIONS(613), - [sym__number_literal] = ACTIONS(611), - [anon_sym_SQUOTE] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [sym_dots] = ACTIONS(611), - [sym_dot_dot_i] = ACTIONS(611), - [sym_return] = ACTIONS(611), - [sym_next] = ACTIONS(611), - [sym_break] = ACTIONS(611), - [sym_true] = ACTIONS(611), - [sym_false] = ACTIONS(611), - [sym_null] = ACTIONS(611), - [sym_inf] = ACTIONS(611), - [sym_nan] = ACTIONS(611), - [anon_sym_NA] = ACTIONS(611), - [anon_sym_NA_integer_] = ACTIONS(611), - [anon_sym_NA_real_] = ACTIONS(611), - [anon_sym_NA_complex_] = ACTIONS(611), - [anon_sym_NA_character_] = ACTIONS(611), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(613), - [sym__semicolon] = ACTIONS(613), - [sym__raw_string_literal] = ACTIONS(613), - [sym__external_else] = ACTIONS(613), - [sym__external_open_parenthesis] = ACTIONS(613), - [sym__external_open_brace] = ACTIONS(613), - [sym__external_close_brace] = ACTIONS(613), - [sym__external_open_bracket] = ACTIONS(613), - [sym__external_open_bracket2] = ACTIONS(613), - }, [303] = { - [sym_identifier] = ACTIONS(605), - [anon_sym_BSLASH] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_EQ] = ACTIONS(605), - [anon_sym_if] = ACTIONS(605), - [anon_sym_for] = ACTIONS(605), - [anon_sym_while] = ACTIONS(605), - [anon_sym_repeat] = ACTIONS(605), - [anon_sym_QMARK] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(603), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_LT_DASH] = ACTIONS(603), - [anon_sym_LT_LT_DASH] = ACTIONS(603), - [anon_sym_COLON_EQ] = ACTIONS(603), - [anon_sym_DASH_GT] = ACTIONS(605), - [anon_sym_DASH_GT_GT] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(603), - [anon_sym_STAR_STAR] = ACTIONS(603), - [anon_sym_CARET] = ACTIONS(603), - [aux_sym_binary_operator_token1] = ACTIONS(603), - [anon_sym_PIPE_GT] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(603), - [anon_sym_AT] = ACTIONS(603), - [anon_sym_COLON_COLON] = ACTIONS(605), - [anon_sym_COLON_COLON_COLON] = ACTIONS(603), - [sym__hex_literal] = ACTIONS(603), - [sym__number_literal] = ACTIONS(605), - [anon_sym_SQUOTE] = ACTIONS(603), - [anon_sym_DQUOTE] = ACTIONS(603), - [sym_dots] = ACTIONS(605), - [sym_dot_dot_i] = ACTIONS(605), - [sym_return] = ACTIONS(605), - [sym_next] = ACTIONS(605), - [sym_break] = ACTIONS(605), - [sym_true] = ACTIONS(605), - [sym_false] = ACTIONS(605), - [sym_null] = ACTIONS(605), - [sym_inf] = ACTIONS(605), - [sym_nan] = ACTIONS(605), - [anon_sym_NA] = ACTIONS(605), - [anon_sym_NA_integer_] = ACTIONS(605), - [anon_sym_NA_real_] = ACTIONS(605), - [anon_sym_NA_complex_] = ACTIONS(605), - [anon_sym_NA_character_] = ACTIONS(605), + [sym_string] = STATE(406), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_identifier] = ACTIONS(653), + [anon_sym_BSLASH] = ACTIONS(489), + [anon_sym_function] = ACTIONS(491), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [anon_sym_repeat] = ACTIONS(491), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_LT_DASH] = ACTIONS(489), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [anon_sym_COLON_EQ] = ACTIONS(489), + [anon_sym_DASH_GT] = ACTIONS(491), + [anon_sym_DASH_GT_GT] = ACTIONS(489), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_PIPE_PIPE] = ACTIONS(489), + [anon_sym_AMP_AMP] = ACTIONS(489), + [anon_sym_LT] = ACTIONS(491), + [anon_sym_LT_EQ] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(491), + [anon_sym_GT_EQ] = ACTIONS(489), + [anon_sym_EQ_EQ] = ACTIONS(489), + [anon_sym_BANG_EQ] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_SLASH] = ACTIONS(489), + [anon_sym_STAR_STAR] = ACTIONS(489), + [anon_sym_CARET] = ACTIONS(489), + [aux_sym_binary_operator_token1] = ACTIONS(489), + [anon_sym_PIPE_GT] = ACTIONS(489), + [anon_sym_COLON] = ACTIONS(491), + [anon_sym_DOLLAR] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(489), + [sym__hex_literal] = ACTIONS(489), + [sym__number_literal] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), + [sym_dots] = ACTIONS(653), + [sym_dot_dot_i] = ACTIONS(653), + [sym_return] = ACTIONS(491), + [sym_next] = ACTIONS(491), + [sym_break] = ACTIONS(491), + [sym_true] = ACTIONS(491), + [sym_false] = ACTIONS(491), + [sym_null] = ACTIONS(491), + [sym_inf] = ACTIONS(491), + [sym_nan] = ACTIONS(491), + [anon_sym_NA] = ACTIONS(491), + [anon_sym_NA_integer_] = ACTIONS(491), + [anon_sym_NA_real_] = ACTIONS(491), + [anon_sym_NA_complex_] = ACTIONS(491), + [anon_sym_NA_character_] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(603), - [sym__semicolon] = ACTIONS(603), - [sym__raw_string_literal] = ACTIONS(603), - [sym__external_else] = ACTIONS(603), - [sym__external_open_parenthesis] = ACTIONS(603), - [sym__external_open_brace] = ACTIONS(603), - [sym__external_close_brace] = ACTIONS(603), - [sym__external_open_bracket] = ACTIONS(603), - [sym__external_open_bracket2] = ACTIONS(603), + [sym__newline] = ACTIONS(489), + [sym__semicolon] = ACTIONS(489), + [sym__raw_string_literal] = ACTIONS(477), + [sym__external_open_parenthesis] = ACTIONS(489), + [sym__external_open_brace] = ACTIONS(489), + [sym__external_close_brace] = ACTIONS(489), + [sym__external_open_bracket] = ACTIONS(489), + [sym__external_open_bracket2] = ACTIONS(489), }, [304] = { - [aux_sym_function_definition_repeat1] = STATE(304), - [ts_builtin_sym_end] = ACTIONS(655), - [sym_identifier] = ACTIONS(657), - [anon_sym_BSLASH] = ACTIONS(655), - [anon_sym_function] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_if] = ACTIONS(657), - [anon_sym_for] = ACTIONS(657), - [anon_sym_while] = ACTIONS(657), - [anon_sym_repeat] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(655), - [anon_sym_TILDE] = ACTIONS(655), - [anon_sym_BANG] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(657), - [anon_sym_LT_DASH] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(655), - [anon_sym_COLON_EQ] = ACTIONS(655), - [anon_sym_DASH_GT] = ACTIONS(657), - [anon_sym_DASH_GT_GT] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_PIPE_PIPE] = ACTIONS(655), - [anon_sym_AMP_AMP] = ACTIONS(655), - [anon_sym_LT] = ACTIONS(657), - [anon_sym_LT_EQ] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_GT_EQ] = ACTIONS(655), - [anon_sym_EQ_EQ] = ACTIONS(655), - [anon_sym_BANG_EQ] = ACTIONS(655), - [anon_sym_STAR] = ACTIONS(657), - [anon_sym_SLASH] = ACTIONS(655), - [anon_sym_STAR_STAR] = ACTIONS(655), - [anon_sym_CARET] = ACTIONS(655), - [aux_sym_binary_operator_token1] = ACTIONS(655), - [anon_sym_PIPE_GT] = ACTIONS(655), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(655), - [anon_sym_AT] = ACTIONS(655), - [sym__hex_literal] = ACTIONS(655), - [sym__number_literal] = ACTIONS(657), - [anon_sym_SQUOTE] = ACTIONS(655), - [anon_sym_DQUOTE] = ACTIONS(655), - [sym_dots] = ACTIONS(657), - [sym_dot_dot_i] = ACTIONS(657), - [sym_return] = ACTIONS(657), - [sym_next] = ACTIONS(657), - [sym_break] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_null] = ACTIONS(657), - [sym_inf] = ACTIONS(657), - [sym_nan] = ACTIONS(657), - [anon_sym_NA] = ACTIONS(657), - [anon_sym_NA_integer_] = ACTIONS(657), - [anon_sym_NA_real_] = ACTIONS(657), - [anon_sym_NA_complex_] = ACTIONS(657), - [anon_sym_NA_character_] = ACTIONS(657), + [ts_builtin_sym_end] = ACTIONS(615), + [sym_identifier] = ACTIONS(617), + [anon_sym_BSLASH] = ACTIONS(615), + [anon_sym_function] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(617), + [anon_sym_if] = ACTIONS(617), + [anon_sym_for] = ACTIONS(617), + [anon_sym_while] = ACTIONS(617), + [anon_sym_repeat] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_LT_DASH] = ACTIONS(615), + [anon_sym_LT_LT_DASH] = ACTIONS(615), + [anon_sym_COLON_EQ] = ACTIONS(615), + [anon_sym_DASH_GT] = ACTIONS(617), + [anon_sym_DASH_GT_GT] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_STAR_STAR] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [aux_sym_binary_operator_token1] = ACTIONS(615), + [anon_sym_PIPE_GT] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_L] = ACTIONS(655), + [anon_sym_i] = ACTIONS(657), + [sym__hex_literal] = ACTIONS(615), + [sym__number_literal] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_dots] = ACTIONS(617), + [sym_dot_dot_i] = ACTIONS(617), + [sym_return] = ACTIONS(617), + [sym_next] = ACTIONS(617), + [sym_break] = ACTIONS(617), + [sym_true] = ACTIONS(617), + [sym_false] = ACTIONS(617), + [sym_null] = ACTIONS(617), + [sym_inf] = ACTIONS(617), + [sym_nan] = ACTIONS(617), + [anon_sym_NA] = ACTIONS(617), + [anon_sym_NA_integer_] = ACTIONS(617), + [anon_sym_NA_real_] = ACTIONS(617), + [anon_sym_NA_complex_] = ACTIONS(617), + [anon_sym_NA_character_] = ACTIONS(617), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(659), - [sym__semicolon] = ACTIONS(655), - [sym__raw_string_literal] = ACTIONS(655), - [sym__external_else] = ACTIONS(655), - [sym__external_open_parenthesis] = ACTIONS(655), - [sym__external_open_brace] = ACTIONS(655), - [sym__external_open_bracket] = ACTIONS(655), - [sym__external_open_bracket2] = ACTIONS(655), + [sym__newline] = ACTIONS(615), + [sym__semicolon] = ACTIONS(615), + [sym__raw_string_literal] = ACTIONS(615), + [sym__external_open_parenthesis] = ACTIONS(615), + [sym__external_open_brace] = ACTIONS(615), + [sym__external_open_bracket] = ACTIONS(615), + [sym__external_open_bracket2] = ACTIONS(615), }, [305] = { - [sym_function_definition] = STATE(1372), - [sym_if_statement] = STATE(1372), - [sym_for_statement] = STATE(1372), - [sym_while_statement] = STATE(1372), - [sym_repeat_statement] = STATE(1372), - [sym_braced_expression] = STATE(1372), - [sym_parenthesized_expression] = STATE(1372), - [sym_call] = STATE(1372), - [sym_subset] = STATE(1372), - [sym_subset2] = STATE(1372), - [sym_argument] = STATE(2033), - [sym__argument_named] = STATE(2030), - [sym__argument_unnamed] = STATE(2031), - [sym__argument_value] = STATE(2034), - [sym_unary_operator] = STATE(1372), - [sym_binary_operator] = STATE(1372), - [sym_extract_operator] = STATE(1372), - [sym_namespace_operator] = STATE(1372), - [sym_integer] = STATE(1372), - [sym_complex] = STATE(1372), - [sym_float] = STATE(1372), - [sym__float_literal] = STATE(1611), - [sym_string] = STATE(1620), - [sym__single_quoted_string] = STATE(1613), - [sym__double_quoted_string] = STATE(1614), - [sym__argument_name_string_or_identifier_or_null] = STATE(2063), - [sym_na] = STATE(1372), - [sym__expression] = STATE(1372), - [sym__open_parenthesis] = STATE(1108), - [sym__open_brace] = STATE(436), - [sym_identifier] = ACTIONS(481), - [anon_sym_BSLASH] = ACTIONS(483), - [anon_sym_function] = ACTIONS(485), - [anon_sym_if] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_while] = ACTIONS(491), - [anon_sym_repeat] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [sym__hex_literal] = ACTIONS(503), - [sym__number_literal] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(509), - [sym_dots] = ACTIONS(481), - [sym_dot_dot_i] = ACTIONS(481), - [sym_return] = ACTIONS(511), - [sym_next] = ACTIONS(511), - [sym_break] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(513), - [sym_inf] = ACTIONS(511), - [sym_nan] = ACTIONS(511), - [anon_sym_NA] = ACTIONS(515), - [anon_sym_NA_integer_] = ACTIONS(515), - [anon_sym_NA_real_] = ACTIONS(515), - [anon_sym_NA_complex_] = ACTIONS(515), - [anon_sym_NA_character_] = ACTIONS(515), + [ts_builtin_sym_end] = ACTIONS(605), + [sym_identifier] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(605), + [anon_sym_function] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(603), + [anon_sym_if] = ACTIONS(603), + [anon_sym_for] = ACTIONS(603), + [anon_sym_while] = ACTIONS(603), + [anon_sym_repeat] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_LT_DASH] = ACTIONS(605), + [anon_sym_LT_LT_DASH] = ACTIONS(605), + [anon_sym_COLON_EQ] = ACTIONS(605), + [anon_sym_DASH_GT] = ACTIONS(603), + [anon_sym_DASH_GT_GT] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_STAR_STAR] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [aux_sym_binary_operator_token1] = ACTIONS(605), + [anon_sym_PIPE_GT] = ACTIONS(605), + [anon_sym_COLON] = ACTIONS(603), + [anon_sym_DOLLAR] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(605), + [anon_sym_COLON_COLON] = ACTIONS(603), + [anon_sym_COLON_COLON_COLON] = ACTIONS(605), + [sym__hex_literal] = ACTIONS(605), + [sym__number_literal] = ACTIONS(603), + [anon_sym_SQUOTE] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_dots] = ACTIONS(603), + [sym_dot_dot_i] = ACTIONS(603), + [sym_return] = ACTIONS(603), + [sym_next] = ACTIONS(603), + [sym_break] = ACTIONS(603), + [sym_true] = ACTIONS(603), + [sym_false] = ACTIONS(603), + [sym_null] = ACTIONS(603), + [sym_inf] = ACTIONS(603), + [sym_nan] = ACTIONS(603), + [anon_sym_NA] = ACTIONS(603), + [anon_sym_NA_integer_] = ACTIONS(603), + [anon_sym_NA_real_] = ACTIONS(603), + [anon_sym_NA_complex_] = ACTIONS(603), + [anon_sym_NA_character_] = ACTIONS(603), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(662), - [sym__raw_string_literal] = ACTIONS(519), - [sym__external_open_parenthesis] = ACTIONS(521), - [sym__external_open_brace] = ACTIONS(523), - [sym__external_close_bracket] = ACTIONS(662), + [sym__newline] = ACTIONS(605), + [sym__semicolon] = ACTIONS(605), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(605), + [sym__external_open_brace] = ACTIONS(605), + [sym__external_open_bracket] = ACTIONS(605), + [sym__external_open_bracket2] = ACTIONS(605), }, [306] = { - [sym_identifier] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(649), - [anon_sym_function] = ACTIONS(647), - [anon_sym_EQ] = ACTIONS(647), - [anon_sym_if] = ACTIONS(647), - [anon_sym_for] = ACTIONS(647), - [anon_sym_while] = ACTIONS(647), - [anon_sym_repeat] = ACTIONS(647), - [anon_sym_QMARK] = ACTIONS(649), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(649), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_LT_DASH] = ACTIONS(649), - [anon_sym_LT_LT_DASH] = ACTIONS(649), - [anon_sym_COLON_EQ] = ACTIONS(649), - [anon_sym_DASH_GT] = ACTIONS(647), - [anon_sym_DASH_GT_GT] = ACTIONS(649), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(649), - [anon_sym_AMP_AMP] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(649), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_GT_EQ] = ACTIONS(649), - [anon_sym_EQ_EQ] = ACTIONS(649), - [anon_sym_BANG_EQ] = ACTIONS(649), - [anon_sym_STAR] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(649), - [anon_sym_STAR_STAR] = ACTIONS(649), - [anon_sym_CARET] = ACTIONS(649), - [aux_sym_binary_operator_token1] = ACTIONS(649), - [anon_sym_PIPE_GT] = ACTIONS(649), - [anon_sym_COLON] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(649), - [anon_sym_AT] = ACTIONS(649), - [anon_sym_COLON_COLON] = ACTIONS(647), - [anon_sym_COLON_COLON_COLON] = ACTIONS(649), - [sym__hex_literal] = ACTIONS(649), - [sym__number_literal] = ACTIONS(647), - [anon_sym_SQUOTE] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(649), - [sym_dots] = ACTIONS(647), - [sym_dot_dot_i] = ACTIONS(647), - [sym_return] = ACTIONS(647), - [sym_next] = ACTIONS(647), - [sym_break] = ACTIONS(647), - [sym_true] = ACTIONS(647), - [sym_false] = ACTIONS(647), - [sym_null] = ACTIONS(647), - [sym_inf] = ACTIONS(647), - [sym_nan] = ACTIONS(647), - [anon_sym_NA] = ACTIONS(647), - [anon_sym_NA_integer_] = ACTIONS(647), - [anon_sym_NA_real_] = ACTIONS(647), - [anon_sym_NA_complex_] = ACTIONS(647), - [anon_sym_NA_character_] = ACTIONS(647), + [ts_builtin_sym_end] = ACTIONS(641), + [sym_identifier] = ACTIONS(639), + [anon_sym_BSLASH] = ACTIONS(641), + [anon_sym_function] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(639), + [anon_sym_if] = ACTIONS(639), + [anon_sym_for] = ACTIONS(639), + [anon_sym_while] = ACTIONS(639), + [anon_sym_repeat] = ACTIONS(639), + [anon_sym_QMARK] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_LT_DASH] = ACTIONS(641), + [anon_sym_LT_LT_DASH] = ACTIONS(641), + [anon_sym_COLON_EQ] = ACTIONS(641), + [anon_sym_DASH_GT] = ACTIONS(639), + [anon_sym_DASH_GT_GT] = ACTIONS(641), + [anon_sym_PIPE] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(639), + [anon_sym_PIPE_PIPE] = ACTIONS(641), + [anon_sym_AMP_AMP] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_LT_EQ] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(639), + [anon_sym_GT_EQ] = ACTIONS(641), + [anon_sym_EQ_EQ] = ACTIONS(641), + [anon_sym_BANG_EQ] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_SLASH] = ACTIONS(641), + [anon_sym_STAR_STAR] = ACTIONS(641), + [anon_sym_CARET] = ACTIONS(641), + [aux_sym_binary_operator_token1] = ACTIONS(641), + [anon_sym_PIPE_GT] = ACTIONS(641), + [anon_sym_COLON] = ACTIONS(639), + [anon_sym_DOLLAR] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(641), + [anon_sym_COLON_COLON] = ACTIONS(639), + [anon_sym_COLON_COLON_COLON] = ACTIONS(641), + [sym__hex_literal] = ACTIONS(641), + [sym__number_literal] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(641), + [anon_sym_DQUOTE] = ACTIONS(641), + [sym_dots] = ACTIONS(639), + [sym_dot_dot_i] = ACTIONS(639), + [sym_return] = ACTIONS(639), + [sym_next] = ACTIONS(639), + [sym_break] = ACTIONS(639), + [sym_true] = ACTIONS(639), + [sym_false] = ACTIONS(639), + [sym_null] = ACTIONS(639), + [sym_inf] = ACTIONS(639), + [sym_nan] = ACTIONS(639), + [anon_sym_NA] = ACTIONS(639), + [anon_sym_NA_integer_] = ACTIONS(639), + [anon_sym_NA_real_] = ACTIONS(639), + [anon_sym_NA_complex_] = ACTIONS(639), + [anon_sym_NA_character_] = ACTIONS(639), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(649), - [sym__semicolon] = ACTIONS(649), - [sym__raw_string_literal] = ACTIONS(649), - [sym__external_open_parenthesis] = ACTIONS(649), - [sym__external_open_brace] = ACTIONS(649), - [sym__external_close_brace] = ACTIONS(649), - [sym__external_open_bracket] = ACTIONS(649), - [sym__external_open_bracket2] = ACTIONS(649), + [sym__newline] = ACTIONS(641), + [sym__semicolon] = ACTIONS(641), + [sym__raw_string_literal] = ACTIONS(641), + [sym__external_open_parenthesis] = ACTIONS(641), + [sym__external_open_brace] = ACTIONS(641), + [sym__external_open_bracket] = ACTIONS(641), + [sym__external_open_bracket2] = ACTIONS(641), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(611), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_function] = ACTIONS(611), - [anon_sym_EQ] = ACTIONS(611), - [anon_sym_if] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_repeat] = ACTIONS(611), - [anon_sym_QMARK] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT_DASH] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_DASH_GT] = ACTIONS(611), - [anon_sym_DASH_GT_GT] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(611), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_STAR_STAR] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [aux_sym_binary_operator_token1] = ACTIONS(613), - [anon_sym_PIPE_GT] = ACTIONS(613), - [anon_sym_COLON] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_COLON_COLON] = ACTIONS(611), - [anon_sym_COLON_COLON_COLON] = ACTIONS(613), - [sym__hex_literal] = ACTIONS(613), - [sym__number_literal] = ACTIONS(611), - [anon_sym_SQUOTE] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [sym_dots] = ACTIONS(611), - [sym_dot_dot_i] = ACTIONS(611), - [sym_return] = ACTIONS(611), - [sym_next] = ACTIONS(611), - [sym_break] = ACTIONS(611), - [sym_true] = ACTIONS(611), - [sym_false] = ACTIONS(611), - [sym_null] = ACTIONS(611), - [sym_inf] = ACTIONS(611), - [sym_nan] = ACTIONS(611), - [anon_sym_NA] = ACTIONS(611), - [anon_sym_NA_integer_] = ACTIONS(611), - [anon_sym_NA_real_] = ACTIONS(611), - [anon_sym_NA_complex_] = ACTIONS(611), - [anon_sym_NA_character_] = ACTIONS(611), + [aux_sym_function_definition_repeat1] = STATE(307), + [ts_builtin_sym_end] = ACTIONS(659), + [sym_identifier] = ACTIONS(661), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_function] = ACTIONS(661), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [anon_sym_repeat] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(659), + [anon_sym_LT_LT_DASH] = ACTIONS(659), + [anon_sym_COLON_EQ] = ACTIONS(659), + [anon_sym_DASH_GT] = ACTIONS(661), + [anon_sym_DASH_GT_GT] = ACTIONS(659), + [anon_sym_PIPE] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_LT_EQ] = ACTIONS(659), + [anon_sym_GT] = ACTIONS(661), + [anon_sym_GT_EQ] = ACTIONS(659), + [anon_sym_EQ_EQ] = ACTIONS(659), + [anon_sym_BANG_EQ] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(659), + [anon_sym_STAR_STAR] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(659), + [aux_sym_binary_operator_token1] = ACTIONS(659), + [anon_sym_PIPE_GT] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(661), + [anon_sym_DOLLAR] = ACTIONS(659), + [anon_sym_AT] = ACTIONS(659), + [sym__hex_literal] = ACTIONS(659), + [sym__number_literal] = ACTIONS(661), + [anon_sym_SQUOTE] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(659), + [sym_dots] = ACTIONS(661), + [sym_dot_dot_i] = ACTIONS(661), + [sym_return] = ACTIONS(661), + [sym_next] = ACTIONS(661), + [sym_break] = ACTIONS(661), + [sym_true] = ACTIONS(661), + [sym_false] = ACTIONS(661), + [sym_null] = ACTIONS(661), + [sym_inf] = ACTIONS(661), + [sym_nan] = ACTIONS(661), + [anon_sym_NA] = ACTIONS(661), + [anon_sym_NA_integer_] = ACTIONS(661), + [anon_sym_NA_real_] = ACTIONS(661), + [anon_sym_NA_complex_] = ACTIONS(661), + [anon_sym_NA_character_] = ACTIONS(661), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(613), - [sym__semicolon] = ACTIONS(613), - [sym__raw_string_literal] = ACTIONS(613), - [sym__external_open_parenthesis] = ACTIONS(613), - [sym__external_open_brace] = ACTIONS(613), - [sym__external_open_bracket] = ACTIONS(613), - [sym__external_open_bracket2] = ACTIONS(613), + [sym__newline] = ACTIONS(663), + [sym__semicolon] = ACTIONS(659), + [sym__raw_string_literal] = ACTIONS(659), + [sym__external_else] = ACTIONS(659), + [sym__external_open_parenthesis] = ACTIONS(659), + [sym__external_open_brace] = ACTIONS(659), + [sym__external_open_bracket] = ACTIONS(659), + [sym__external_open_bracket2] = ACTIONS(659), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(611), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_function] = ACTIONS(611), - [anon_sym_EQ] = ACTIONS(611), - [anon_sym_if] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_repeat] = ACTIONS(611), - [anon_sym_QMARK] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT_DASH] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_DASH_GT] = ACTIONS(611), - [anon_sym_DASH_GT_GT] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(611), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_STAR_STAR] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [aux_sym_binary_operator_token1] = ACTIONS(613), - [anon_sym_PIPE_GT] = ACTIONS(613), - [anon_sym_COLON] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_COLON_COLON] = ACTIONS(611), - [anon_sym_COLON_COLON_COLON] = ACTIONS(613), - [sym__hex_literal] = ACTIONS(613), - [sym__number_literal] = ACTIONS(611), - [anon_sym_SQUOTE] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [sym_dots] = ACTIONS(611), - [sym_dot_dot_i] = ACTIONS(611), - [sym_return] = ACTIONS(611), - [sym_next] = ACTIONS(611), - [sym_break] = ACTIONS(611), - [sym_true] = ACTIONS(611), - [sym_false] = ACTIONS(611), - [sym_null] = ACTIONS(611), - [sym_inf] = ACTIONS(611), - [sym_nan] = ACTIONS(611), - [anon_sym_NA] = ACTIONS(611), - [anon_sym_NA_integer_] = ACTIONS(611), - [anon_sym_NA_real_] = ACTIONS(611), - [anon_sym_NA_complex_] = ACTIONS(611), - [anon_sym_NA_character_] = ACTIONS(611), + [ts_builtin_sym_end] = ACTIONS(623), + [sym_identifier] = ACTIONS(625), + [anon_sym_BSLASH] = ACTIONS(623), + [anon_sym_function] = ACTIONS(625), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(625), + [anon_sym_while] = ACTIONS(625), + [anon_sym_repeat] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(623), + [anon_sym_LT_LT_DASH] = ACTIONS(623), + [anon_sym_COLON_EQ] = ACTIONS(623), + [anon_sym_DASH_GT] = ACTIONS(625), + [anon_sym_DASH_GT_GT] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR_STAR] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [aux_sym_binary_operator_token1] = ACTIONS(623), + [anon_sym_PIPE_GT] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_DOLLAR] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym_COLON_COLON_COLON] = ACTIONS(623), + [sym__hex_literal] = ACTIONS(623), + [sym__number_literal] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_dots] = ACTIONS(625), + [sym_dot_dot_i] = ACTIONS(625), + [sym_return] = ACTIONS(625), + [sym_next] = ACTIONS(625), + [sym_break] = ACTIONS(625), + [sym_true] = ACTIONS(625), + [sym_false] = ACTIONS(625), + [sym_null] = ACTIONS(625), + [sym_inf] = ACTIONS(625), + [sym_nan] = ACTIONS(625), + [anon_sym_NA] = ACTIONS(625), + [anon_sym_NA_integer_] = ACTIONS(625), + [anon_sym_NA_real_] = ACTIONS(625), + [anon_sym_NA_complex_] = ACTIONS(625), + [anon_sym_NA_character_] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(613), - [sym__semicolon] = ACTIONS(613), - [sym__raw_string_literal] = ACTIONS(613), - [sym__external_open_parenthesis] = ACTIONS(613), - [sym__external_open_brace] = ACTIONS(613), - [sym__external_open_bracket] = ACTIONS(613), - [sym__external_open_bracket2] = ACTIONS(613), + [sym__newline] = ACTIONS(623), + [sym__semicolon] = ACTIONS(623), + [sym__raw_string_literal] = ACTIONS(623), + [sym__external_open_parenthesis] = ACTIONS(623), + [sym__external_open_brace] = ACTIONS(623), + [sym__external_open_bracket] = ACTIONS(623), + [sym__external_open_bracket2] = ACTIONS(623), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(615), - [anon_sym_BSLASH] = ACTIONS(617), - [anon_sym_function] = ACTIONS(615), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_while] = ACTIONS(615), - [anon_sym_repeat] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_LT_DASH] = ACTIONS(617), - [anon_sym_LT_LT_DASH] = ACTIONS(617), - [anon_sym_COLON_EQ] = ACTIONS(617), - [anon_sym_DASH_GT] = ACTIONS(615), - [anon_sym_DASH_GT_GT] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_STAR_STAR] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [aux_sym_binary_operator_token1] = ACTIONS(617), - [anon_sym_PIPE_GT] = ACTIONS(617), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_L] = ACTIONS(664), - [anon_sym_i] = ACTIONS(666), - [sym__hex_literal] = ACTIONS(617), - [sym__number_literal] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [sym_dots] = ACTIONS(615), - [sym_dot_dot_i] = ACTIONS(615), - [sym_return] = ACTIONS(615), - [sym_next] = ACTIONS(615), - [sym_break] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_null] = ACTIONS(615), - [sym_inf] = ACTIONS(615), - [sym_nan] = ACTIONS(615), - [anon_sym_NA] = ACTIONS(615), - [anon_sym_NA_integer_] = ACTIONS(615), - [anon_sym_NA_real_] = ACTIONS(615), - [anon_sym_NA_complex_] = ACTIONS(615), - [anon_sym_NA_character_] = ACTIONS(615), + [ts_builtin_sym_end] = ACTIONS(623), + [sym_identifier] = ACTIONS(625), + [anon_sym_BSLASH] = ACTIONS(623), + [anon_sym_function] = ACTIONS(625), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(625), + [anon_sym_while] = ACTIONS(625), + [anon_sym_repeat] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(623), + [anon_sym_LT_LT_DASH] = ACTIONS(623), + [anon_sym_COLON_EQ] = ACTIONS(623), + [anon_sym_DASH_GT] = ACTIONS(625), + [anon_sym_DASH_GT_GT] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR_STAR] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [aux_sym_binary_operator_token1] = ACTIONS(623), + [anon_sym_PIPE_GT] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_DOLLAR] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym_COLON_COLON_COLON] = ACTIONS(623), + [sym__hex_literal] = ACTIONS(623), + [sym__number_literal] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_dots] = ACTIONS(625), + [sym_dot_dot_i] = ACTIONS(625), + [sym_return] = ACTIONS(625), + [sym_next] = ACTIONS(625), + [sym_break] = ACTIONS(625), + [sym_true] = ACTIONS(625), + [sym_false] = ACTIONS(625), + [sym_null] = ACTIONS(625), + [sym_inf] = ACTIONS(625), + [sym_nan] = ACTIONS(625), + [anon_sym_NA] = ACTIONS(625), + [anon_sym_NA_integer_] = ACTIONS(625), + [anon_sym_NA_real_] = ACTIONS(625), + [anon_sym_NA_complex_] = ACTIONS(625), + [anon_sym_NA_character_] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(617), - [sym__semicolon] = ACTIONS(617), - [sym__raw_string_literal] = ACTIONS(617), - [sym__external_open_parenthesis] = ACTIONS(617), - [sym__external_open_brace] = ACTIONS(617), - [sym__external_open_bracket] = ACTIONS(617), - [sym__external_open_bracket2] = ACTIONS(617), + [sym__newline] = ACTIONS(623), + [sym__semicolon] = ACTIONS(623), + [sym__raw_string_literal] = ACTIONS(623), + [sym__external_open_parenthesis] = ACTIONS(623), + [sym__external_open_brace] = ACTIONS(623), + [sym__external_open_bracket] = ACTIONS(623), + [sym__external_open_bracket2] = ACTIONS(623), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(649), - [sym_identifier] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(649), - [anon_sym_function] = ACTIONS(647), - [anon_sym_EQ] = ACTIONS(647), - [anon_sym_if] = ACTIONS(647), - [anon_sym_for] = ACTIONS(647), - [anon_sym_while] = ACTIONS(647), - [anon_sym_repeat] = ACTIONS(647), - [anon_sym_QMARK] = ACTIONS(649), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(649), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_LT_DASH] = ACTIONS(649), - [anon_sym_LT_LT_DASH] = ACTIONS(649), - [anon_sym_COLON_EQ] = ACTIONS(649), - [anon_sym_DASH_GT] = ACTIONS(647), - [anon_sym_DASH_GT_GT] = ACTIONS(649), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(649), - [anon_sym_AMP_AMP] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(649), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_GT_EQ] = ACTIONS(649), - [anon_sym_EQ_EQ] = ACTIONS(649), - [anon_sym_BANG_EQ] = ACTIONS(649), - [anon_sym_STAR] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(649), - [anon_sym_STAR_STAR] = ACTIONS(649), - [anon_sym_CARET] = ACTIONS(649), - [aux_sym_binary_operator_token1] = ACTIONS(649), - [anon_sym_PIPE_GT] = ACTIONS(649), - [anon_sym_COLON] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(649), - [anon_sym_AT] = ACTIONS(649), - [anon_sym_COLON_COLON] = ACTIONS(647), - [anon_sym_COLON_COLON_COLON] = ACTIONS(649), - [sym__hex_literal] = ACTIONS(649), - [sym__number_literal] = ACTIONS(647), - [anon_sym_SQUOTE] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(649), - [sym_dots] = ACTIONS(647), - [sym_dot_dot_i] = ACTIONS(647), - [sym_return] = ACTIONS(647), - [sym_next] = ACTIONS(647), - [sym_break] = ACTIONS(647), - [sym_true] = ACTIONS(647), - [sym_false] = ACTIONS(647), - [sym_null] = ACTIONS(647), - [sym_inf] = ACTIONS(647), - [sym_nan] = ACTIONS(647), - [anon_sym_NA] = ACTIONS(647), - [anon_sym_NA_integer_] = ACTIONS(647), - [anon_sym_NA_real_] = ACTIONS(647), - [anon_sym_NA_complex_] = ACTIONS(647), - [anon_sym_NA_character_] = ACTIONS(647), + [sym_function_definition] = STATE(1361), + [sym_if_statement] = STATE(1361), + [sym_for_statement] = STATE(1361), + [sym_while_statement] = STATE(1361), + [sym_repeat_statement] = STATE(1361), + [sym_braced_expression] = STATE(1361), + [sym_parenthesized_expression] = STATE(1361), + [sym_call] = STATE(1361), + [sym_subset] = STATE(1361), + [sym_subset2] = STATE(1361), + [sym_argument] = STATE(2037), + [sym__argument_named] = STATE(2046), + [sym__argument_unnamed] = STATE(2031), + [sym__argument_value] = STATE(2030), + [sym_unary_operator] = STATE(1361), + [sym_binary_operator] = STATE(1361), + [sym_extract_operator] = STATE(1361), + [sym_namespace_operator] = STATE(1361), + [sym_integer] = STATE(1361), + [sym_complex] = STATE(1361), + [sym_float] = STATE(1361), + [sym__float_literal] = STATE(1620), + [sym_string] = STATE(1630), + [sym__single_quoted_string] = STATE(1624), + [sym__double_quoted_string] = STATE(1625), + [sym__argument_name_string_or_identifier_or_null] = STATE(2059), + [sym_na] = STATE(1361), + [sym__expression] = STATE(1361), + [sym__open_parenthesis] = STATE(1056), + [sym__open_brace] = STATE(402), + [sym_identifier] = ACTIONS(379), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_function] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_while] = ACTIONS(389), + [anon_sym_repeat] = ACTIONS(391), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [sym__hex_literal] = ACTIONS(401), + [sym__number_literal] = ACTIONS(403), + [anon_sym_SQUOTE] = ACTIONS(405), + [anon_sym_DQUOTE] = ACTIONS(407), + [sym_dots] = ACTIONS(379), + [sym_dot_dot_i] = ACTIONS(379), + [sym_return] = ACTIONS(409), + [sym_next] = ACTIONS(409), + [sym_break] = ACTIONS(409), + [sym_true] = ACTIONS(409), + [sym_false] = ACTIONS(409), + [sym_null] = ACTIONS(411), + [sym_inf] = ACTIONS(409), + [sym_nan] = ACTIONS(409), + [anon_sym_NA] = ACTIONS(413), + [anon_sym_NA_integer_] = ACTIONS(413), + [anon_sym_NA_real_] = ACTIONS(413), + [anon_sym_NA_complex_] = ACTIONS(413), + [anon_sym_NA_character_] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(649), - [sym__semicolon] = ACTIONS(649), - [sym__raw_string_literal] = ACTIONS(649), - [sym__external_open_parenthesis] = ACTIONS(649), - [sym__external_open_brace] = ACTIONS(649), - [sym__external_open_bracket] = ACTIONS(649), - [sym__external_open_bracket2] = ACTIONS(649), + [sym_comma] = ACTIONS(666), + [sym__raw_string_literal] = ACTIONS(417), + [sym__external_open_parenthesis] = ACTIONS(419), + [sym__external_close_parenthesis] = ACTIONS(666), + [sym__external_open_brace] = ACTIONS(423), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(645), + [ts_builtin_sym_end] = ACTIONS(637), + [sym_identifier] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(637), + [anon_sym_function] = ACTIONS(635), + [anon_sym_EQ] = ACTIONS(635), + [anon_sym_if] = ACTIONS(635), + [anon_sym_for] = ACTIONS(635), + [anon_sym_while] = ACTIONS(635), + [anon_sym_repeat] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_LT_DASH] = ACTIONS(637), + [anon_sym_LT_LT_DASH] = ACTIONS(637), + [anon_sym_COLON_EQ] = ACTIONS(637), + [anon_sym_DASH_GT] = ACTIONS(635), + [anon_sym_DASH_GT_GT] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_AMP] = ACTIONS(635), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(635), + [anon_sym_LT_EQ] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(635), + [anon_sym_GT_EQ] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(637), + [anon_sym_STAR_STAR] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [aux_sym_binary_operator_token1] = ACTIONS(637), + [anon_sym_PIPE_GT] = ACTIONS(637), + [anon_sym_COLON] = ACTIONS(635), + [anon_sym_DOLLAR] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(637), + [anon_sym_COLON_COLON] = ACTIONS(635), + [anon_sym_COLON_COLON_COLON] = ACTIONS(637), + [sym__hex_literal] = ACTIONS(637), + [sym__number_literal] = ACTIONS(635), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(637), + [sym_dots] = ACTIONS(635), + [sym_dot_dot_i] = ACTIONS(635), + [sym_return] = ACTIONS(635), + [sym_next] = ACTIONS(635), + [sym_break] = ACTIONS(635), + [sym_true] = ACTIONS(635), + [sym_false] = ACTIONS(635), + [sym_null] = ACTIONS(635), + [sym_inf] = ACTIONS(635), + [sym_nan] = ACTIONS(635), + [anon_sym_NA] = ACTIONS(635), + [anon_sym_NA_integer_] = ACTIONS(635), + [anon_sym_NA_real_] = ACTIONS(635), + [anon_sym_NA_complex_] = ACTIONS(635), + [anon_sym_NA_character_] = ACTIONS(635), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(637), + [sym__semicolon] = ACTIONS(637), + [sym__raw_string_literal] = ACTIONS(637), + [sym__external_open_parenthesis] = ACTIONS(637), + [sym__external_open_brace] = ACTIONS(637), + [sym__external_open_bracket] = ACTIONS(637), + [sym__external_open_bracket2] = ACTIONS(637), + }, + [312] = { + [sym_function_definition] = STATE(1575), + [sym_if_statement] = STATE(1575), + [sym_for_statement] = STATE(1575), + [sym_while_statement] = STATE(1575), + [sym_repeat_statement] = STATE(1575), + [sym_braced_expression] = STATE(1575), + [sym_parenthesized_expression] = STATE(1575), + [sym_call] = STATE(1575), + [sym_subset] = STATE(1575), + [sym_subset2] = STATE(1575), + [sym_argument] = STATE(2041), + [sym__argument_named] = STATE(2032), + [sym__argument_unnamed] = STATE(2045), + [sym__argument_value] = STATE(2043), + [sym_unary_operator] = STATE(1575), + [sym_binary_operator] = STATE(1575), + [sym_extract_operator] = STATE(1575), + [sym_namespace_operator] = STATE(1575), + [sym_integer] = STATE(1575), + [sym_complex] = STATE(1575), + [sym_float] = STATE(1575), + [sym__float_literal] = STATE(1626), + [sym_string] = STATE(1628), + [sym__single_quoted_string] = STATE(1629), + [sym__double_quoted_string] = STATE(1611), + [sym__argument_name_string_or_identifier_or_null] = STATE(2071), + [sym_na] = STATE(1575), + [sym__expression] = STATE(1575), + [sym__open_parenthesis] = STATE(1064), + [sym__open_brace] = STATE(418), + [sym_identifier] = ACTIONS(493), + [anon_sym_BSLASH] = ACTIONS(495), + [anon_sym_function] = ACTIONS(497), + [anon_sym_if] = ACTIONS(499), + [anon_sym_for] = ACTIONS(501), + [anon_sym_while] = ACTIONS(503), + [anon_sym_repeat] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [sym__hex_literal] = ACTIONS(515), + [sym__number_literal] = ACTIONS(517), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(521), + [sym_dots] = ACTIONS(493), + [sym_dot_dot_i] = ACTIONS(493), + [sym_return] = ACTIONS(523), + [sym_next] = ACTIONS(523), + [sym_break] = ACTIONS(523), + [sym_true] = ACTIONS(523), + [sym_false] = ACTIONS(523), + [sym_null] = ACTIONS(525), + [sym_inf] = ACTIONS(523), + [sym_nan] = ACTIONS(523), + [anon_sym_NA] = ACTIONS(527), + [anon_sym_NA_integer_] = ACTIONS(527), + [anon_sym_NA_real_] = ACTIONS(527), + [anon_sym_NA_complex_] = ACTIONS(527), + [anon_sym_NA_character_] = ACTIONS(527), + [sym_comment] = ACTIONS(3), + [sym_comma] = ACTIONS(666), + [sym__raw_string_literal] = ACTIONS(531), + [sym__external_open_parenthesis] = ACTIONS(533), + [sym__external_open_brace] = ACTIONS(535), + [sym__external_close_bracket] = ACTIONS(666), + }, + [313] = { + [sym_identifier] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(605), + [anon_sym_function] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(603), + [anon_sym_if] = ACTIONS(603), + [anon_sym_for] = ACTIONS(603), + [anon_sym_while] = ACTIONS(603), + [anon_sym_repeat] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_LT_DASH] = ACTIONS(605), + [anon_sym_LT_LT_DASH] = ACTIONS(605), + [anon_sym_COLON_EQ] = ACTIONS(605), + [anon_sym_DASH_GT] = ACTIONS(603), + [anon_sym_DASH_GT_GT] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_STAR_STAR] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [aux_sym_binary_operator_token1] = ACTIONS(605), + [anon_sym_PIPE_GT] = ACTIONS(605), + [anon_sym_COLON] = ACTIONS(603), + [anon_sym_DOLLAR] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(605), + [anon_sym_COLON_COLON] = ACTIONS(603), + [anon_sym_COLON_COLON_COLON] = ACTIONS(605), + [sym__hex_literal] = ACTIONS(605), + [sym__number_literal] = ACTIONS(603), + [anon_sym_SQUOTE] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_dots] = ACTIONS(603), + [sym_dot_dot_i] = ACTIONS(603), + [sym_return] = ACTIONS(603), + [sym_next] = ACTIONS(603), + [sym_break] = ACTIONS(603), + [sym_true] = ACTIONS(603), + [sym_false] = ACTIONS(603), + [sym_null] = ACTIONS(603), + [sym_inf] = ACTIONS(603), + [sym_nan] = ACTIONS(603), + [anon_sym_NA] = ACTIONS(603), + [anon_sym_NA_integer_] = ACTIONS(603), + [anon_sym_NA_real_] = ACTIONS(603), + [anon_sym_NA_complex_] = ACTIONS(603), + [anon_sym_NA_character_] = ACTIONS(603), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(605), + [sym__semicolon] = ACTIONS(605), + [sym__raw_string_literal] = ACTIONS(605), + [sym__external_open_parenthesis] = ACTIONS(605), + [sym__external_open_brace] = ACTIONS(605), + [sym__external_close_brace] = ACTIONS(605), + [sym__external_open_bracket] = ACTIONS(605), + [sym__external_open_bracket2] = ACTIONS(605), + }, + [314] = { + [sym_identifier] = ACTIONS(609), + [anon_sym_BSLASH] = ACTIONS(607), + [anon_sym_function] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(609), + [anon_sym_if] = ACTIONS(609), + [anon_sym_for] = ACTIONS(609), + [anon_sym_while] = ACTIONS(609), + [anon_sym_repeat] = ACTIONS(609), + [anon_sym_QMARK] = ACTIONS(607), + [anon_sym_TILDE] = ACTIONS(607), + [anon_sym_BANG] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_LT_DASH] = ACTIONS(607), + [anon_sym_LT_LT_DASH] = ACTIONS(607), + [anon_sym_COLON_EQ] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_DASH_GT_GT] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(609), + [anon_sym_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(609), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_STAR_STAR] = ACTIONS(607), + [anon_sym_CARET] = ACTIONS(607), + [aux_sym_binary_operator_token1] = ACTIONS(607), + [anon_sym_PIPE_GT] = ACTIONS(607), + [anon_sym_COLON] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(607), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(668), + [anon_sym_COLON_COLON_COLON] = ACTIONS(670), + [sym__hex_literal] = ACTIONS(607), + [sym__number_literal] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [sym_dots] = ACTIONS(609), + [sym_dot_dot_i] = ACTIONS(609), + [sym_return] = ACTIONS(609), + [sym_next] = ACTIONS(609), + [sym_break] = ACTIONS(609), + [sym_true] = ACTIONS(609), + [sym_false] = ACTIONS(609), + [sym_null] = ACTIONS(609), + [sym_inf] = ACTIONS(609), + [sym_nan] = ACTIONS(609), + [anon_sym_NA] = ACTIONS(609), + [anon_sym_NA_integer_] = ACTIONS(609), + [anon_sym_NA_real_] = ACTIONS(609), + [anon_sym_NA_complex_] = ACTIONS(609), + [anon_sym_NA_character_] = ACTIONS(609), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(607), + [sym__semicolon] = ACTIONS(607), + [sym__raw_string_literal] = ACTIONS(607), + [sym__external_open_parenthesis] = ACTIONS(607), + [sym__external_open_brace] = ACTIONS(607), + [sym__external_close_brace] = ACTIONS(607), + [sym__external_open_bracket] = ACTIONS(607), + [sym__external_open_bracket2] = ACTIONS(607), + }, + [315] = { + [sym_identifier] = ACTIONS(617), + [anon_sym_BSLASH] = ACTIONS(615), + [anon_sym_function] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(617), + [anon_sym_if] = ACTIONS(617), + [anon_sym_for] = ACTIONS(617), + [anon_sym_while] = ACTIONS(617), + [anon_sym_repeat] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_LT_DASH] = ACTIONS(615), + [anon_sym_LT_LT_DASH] = ACTIONS(615), + [anon_sym_COLON_EQ] = ACTIONS(615), + [anon_sym_DASH_GT] = ACTIONS(617), + [anon_sym_DASH_GT_GT] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_STAR_STAR] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [aux_sym_binary_operator_token1] = ACTIONS(615), + [anon_sym_PIPE_GT] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_L] = ACTIONS(672), + [anon_sym_i] = ACTIONS(674), + [sym__hex_literal] = ACTIONS(615), + [sym__number_literal] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_dots] = ACTIONS(617), + [sym_dot_dot_i] = ACTIONS(617), + [sym_return] = ACTIONS(617), + [sym_next] = ACTIONS(617), + [sym_break] = ACTIONS(617), + [sym_true] = ACTIONS(617), + [sym_false] = ACTIONS(617), + [sym_null] = ACTIONS(617), + [sym_inf] = ACTIONS(617), + [sym_nan] = ACTIONS(617), + [anon_sym_NA] = ACTIONS(617), + [anon_sym_NA_integer_] = ACTIONS(617), + [anon_sym_NA_real_] = ACTIONS(617), + [anon_sym_NA_complex_] = ACTIONS(617), + [anon_sym_NA_character_] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(615), + [sym__semicolon] = ACTIONS(615), + [sym__raw_string_literal] = ACTIONS(615), + [sym__external_open_parenthesis] = ACTIONS(615), + [sym__external_open_brace] = ACTIONS(615), + [sym__external_close_brace] = ACTIONS(615), + [sym__external_open_bracket] = ACTIONS(615), + [sym__external_open_bracket2] = ACTIONS(615), + }, + [316] = { + [sym_identifier] = ACTIONS(625), + [anon_sym_BSLASH] = ACTIONS(623), + [anon_sym_function] = ACTIONS(625), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(625), + [anon_sym_while] = ACTIONS(625), + [anon_sym_repeat] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(623), + [anon_sym_LT_LT_DASH] = ACTIONS(623), + [anon_sym_COLON_EQ] = ACTIONS(623), + [anon_sym_DASH_GT] = ACTIONS(625), + [anon_sym_DASH_GT_GT] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR_STAR] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [aux_sym_binary_operator_token1] = ACTIONS(623), + [anon_sym_PIPE_GT] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_DOLLAR] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym_COLON_COLON_COLON] = ACTIONS(623), + [sym__hex_literal] = ACTIONS(623), + [sym__number_literal] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_dots] = ACTIONS(625), + [sym_dot_dot_i] = ACTIONS(625), + [sym_return] = ACTIONS(625), + [sym_next] = ACTIONS(625), + [sym_break] = ACTIONS(625), + [sym_true] = ACTIONS(625), + [sym_false] = ACTIONS(625), + [sym_null] = ACTIONS(625), + [sym_inf] = ACTIONS(625), + [sym_nan] = ACTIONS(625), + [anon_sym_NA] = ACTIONS(625), + [anon_sym_NA_integer_] = ACTIONS(625), + [anon_sym_NA_real_] = ACTIONS(625), + [anon_sym_NA_complex_] = ACTIONS(625), + [anon_sym_NA_character_] = ACTIONS(625), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(623), + [sym__semicolon] = ACTIONS(623), + [sym__raw_string_literal] = ACTIONS(623), + [sym__external_open_parenthesis] = ACTIONS(623), + [sym__external_open_brace] = ACTIONS(623), + [sym__external_close_brace] = ACTIONS(623), + [sym__external_open_bracket] = ACTIONS(623), + [sym__external_open_bracket2] = ACTIONS(623), + }, + [317] = { + [sym_identifier] = ACTIONS(625), + [anon_sym_BSLASH] = ACTIONS(623), + [anon_sym_function] = ACTIONS(625), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(625), + [anon_sym_while] = ACTIONS(625), + [anon_sym_repeat] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(623), + [anon_sym_LT_LT_DASH] = ACTIONS(623), + [anon_sym_COLON_EQ] = ACTIONS(623), + [anon_sym_DASH_GT] = ACTIONS(625), + [anon_sym_DASH_GT_GT] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR_STAR] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [aux_sym_binary_operator_token1] = ACTIONS(623), + [anon_sym_PIPE_GT] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_DOLLAR] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym_COLON_COLON_COLON] = ACTIONS(623), + [sym__hex_literal] = ACTIONS(623), + [sym__number_literal] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_dots] = ACTIONS(625), + [sym_dot_dot_i] = ACTIONS(625), + [sym_return] = ACTIONS(625), + [sym_next] = ACTIONS(625), + [sym_break] = ACTIONS(625), + [sym_true] = ACTIONS(625), + [sym_false] = ACTIONS(625), + [sym_null] = ACTIONS(625), + [sym_inf] = ACTIONS(625), + [sym_nan] = ACTIONS(625), + [anon_sym_NA] = ACTIONS(625), + [anon_sym_NA_integer_] = ACTIONS(625), + [anon_sym_NA_real_] = ACTIONS(625), + [anon_sym_NA_complex_] = ACTIONS(625), + [anon_sym_NA_character_] = ACTIONS(625), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(623), + [sym__semicolon] = ACTIONS(623), + [sym__raw_string_literal] = ACTIONS(623), + [sym__external_open_parenthesis] = ACTIONS(623), + [sym__external_open_brace] = ACTIONS(623), + [sym__external_close_brace] = ACTIONS(623), + [sym__external_open_bracket] = ACTIONS(623), + [sym__external_open_bracket2] = ACTIONS(623), + }, + [318] = { + [aux_sym_function_definition_repeat1] = STATE(318), + [sym_identifier] = ACTIONS(661), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_function] = ACTIONS(661), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [anon_sym_repeat] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(659), + [anon_sym_LT_LT_DASH] = ACTIONS(659), + [anon_sym_COLON_EQ] = ACTIONS(659), + [anon_sym_DASH_GT] = ACTIONS(661), + [anon_sym_DASH_GT_GT] = ACTIONS(659), + [anon_sym_PIPE] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_LT_EQ] = ACTIONS(659), + [anon_sym_GT] = ACTIONS(661), + [anon_sym_GT_EQ] = ACTIONS(659), + [anon_sym_EQ_EQ] = ACTIONS(659), + [anon_sym_BANG_EQ] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(659), + [anon_sym_STAR_STAR] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(659), + [aux_sym_binary_operator_token1] = ACTIONS(659), + [anon_sym_PIPE_GT] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(661), + [anon_sym_DOLLAR] = ACTIONS(659), + [anon_sym_AT] = ACTIONS(659), + [sym__hex_literal] = ACTIONS(659), + [sym__number_literal] = ACTIONS(661), + [anon_sym_SQUOTE] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(659), + [sym_dots] = ACTIONS(661), + [sym_dot_dot_i] = ACTIONS(661), + [sym_return] = ACTIONS(661), + [sym_next] = ACTIONS(661), + [sym_break] = ACTIONS(661), + [sym_true] = ACTIONS(661), + [sym_false] = ACTIONS(661), + [sym_null] = ACTIONS(661), + [sym_inf] = ACTIONS(661), + [sym_nan] = ACTIONS(661), + [anon_sym_NA] = ACTIONS(661), + [anon_sym_NA_integer_] = ACTIONS(661), + [anon_sym_NA_real_] = ACTIONS(661), + [anon_sym_NA_complex_] = ACTIONS(661), + [anon_sym_NA_character_] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(676), + [sym__semicolon] = ACTIONS(659), + [sym__raw_string_literal] = ACTIONS(659), + [sym__external_else] = ACTIONS(659), + [sym__external_open_parenthesis] = ACTIONS(659), + [sym__external_open_brace] = ACTIONS(659), + [sym__external_close_brace] = ACTIONS(659), + [sym__external_open_bracket] = ACTIONS(659), + [sym__external_open_bracket2] = ACTIONS(659), + }, + [319] = { [sym_identifier] = ACTIONS(643), [anon_sym_BSLASH] = ACTIONS(645), [anon_sym_function] = ACTIONS(643), @@ -29213,523 +29764,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal] = ACTIONS(645), [sym__external_open_parenthesis] = ACTIONS(645), [sym__external_open_brace] = ACTIONS(645), + [sym__external_close_brace] = ACTIONS(645), [sym__external_open_bracket] = ACTIONS(645), [sym__external_open_bracket2] = ACTIONS(645), }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(639), - [sym_identifier] = ACTIONS(641), - [anon_sym_BSLASH] = ACTIONS(639), - [anon_sym_function] = ACTIONS(641), - [anon_sym_EQ] = ACTIONS(641), - [anon_sym_if] = ACTIONS(641), - [anon_sym_for] = ACTIONS(641), - [anon_sym_while] = ACTIONS(641), - [anon_sym_repeat] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(639), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_BANG] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_LT_DASH] = ACTIONS(639), - [anon_sym_LT_LT_DASH] = ACTIONS(639), - [anon_sym_COLON_EQ] = ACTIONS(639), - [anon_sym_DASH_GT] = ACTIONS(641), - [anon_sym_DASH_GT_GT] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(641), - [anon_sym_AMP] = ACTIONS(641), - [anon_sym_PIPE_PIPE] = ACTIONS(639), - [anon_sym_AMP_AMP] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_LT_EQ] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(639), - [anon_sym_EQ_EQ] = ACTIONS(639), - [anon_sym_BANG_EQ] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_STAR_STAR] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [aux_sym_binary_operator_token1] = ACTIONS(639), - [anon_sym_PIPE_GT] = ACTIONS(639), - [anon_sym_COLON] = ACTIONS(641), - [anon_sym_DOLLAR] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(639), - [anon_sym_COLON_COLON] = ACTIONS(641), - [anon_sym_COLON_COLON_COLON] = ACTIONS(639), - [sym__hex_literal] = ACTIONS(639), - [sym__number_literal] = ACTIONS(641), - [anon_sym_SQUOTE] = ACTIONS(639), - [anon_sym_DQUOTE] = ACTIONS(639), - [sym_dots] = ACTIONS(641), - [sym_dot_dot_i] = ACTIONS(641), - [sym_return] = ACTIONS(641), - [sym_next] = ACTIONS(641), - [sym_break] = ACTIONS(641), - [sym_true] = ACTIONS(641), - [sym_false] = ACTIONS(641), - [sym_null] = ACTIONS(641), - [sym_inf] = ACTIONS(641), - [sym_nan] = ACTIONS(641), - [anon_sym_NA] = ACTIONS(641), - [anon_sym_NA_integer_] = ACTIONS(641), - [anon_sym_NA_real_] = ACTIONS(641), - [anon_sym_NA_complex_] = ACTIONS(641), - [anon_sym_NA_character_] = ACTIONS(641), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(639), - [sym__semicolon] = ACTIONS(639), - [sym__raw_string_literal] = ACTIONS(639), - [sym__external_open_parenthesis] = ACTIONS(639), - [sym__external_open_brace] = ACTIONS(639), - [sym__external_open_bracket] = ACTIONS(639), - [sym__external_open_bracket2] = ACTIONS(639), - }, - [313] = { - [sym_function_definition] = STATE(1346), - [sym_if_statement] = STATE(1346), - [sym_for_statement] = STATE(1346), - [sym_while_statement] = STATE(1346), - [sym_repeat_statement] = STATE(1346), - [sym_braced_expression] = STATE(1346), - [sym_parenthesized_expression] = STATE(1346), - [sym_call] = STATE(1346), - [sym_subset] = STATE(1346), - [sym_subset2] = STATE(1346), - [sym_argument] = STATE(2042), - [sym__argument_named] = STATE(2046), - [sym__argument_unnamed] = STATE(2041), - [sym__argument_value] = STATE(2040), - [sym_unary_operator] = STATE(1346), - [sym_binary_operator] = STATE(1346), - [sym_extract_operator] = STATE(1346), - [sym_namespace_operator] = STATE(1346), - [sym_integer] = STATE(1346), - [sym_complex] = STATE(1346), - [sym_float] = STATE(1346), - [sym__float_literal] = STATE(1625), - [sym_string] = STATE(1622), - [sym__single_quoted_string] = STATE(1631), - [sym__double_quoted_string] = STATE(1621), - [sym__argument_name_string_or_identifier_or_null] = STATE(2054), - [sym_na] = STATE(1346), - [sym__expression] = STATE(1346), - [sym__open_parenthesis] = STATE(1113), - [sym__open_brace] = STATE(392), - [sym_identifier] = ACTIONS(379), - [anon_sym_BSLASH] = ACTIONS(381), - [anon_sym_function] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_while] = ACTIONS(389), - [anon_sym_repeat] = ACTIONS(391), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [sym__hex_literal] = ACTIONS(401), - [sym__number_literal] = ACTIONS(403), - [anon_sym_SQUOTE] = ACTIONS(405), - [anon_sym_DQUOTE] = ACTIONS(407), - [sym_dots] = ACTIONS(379), - [sym_dot_dot_i] = ACTIONS(379), - [sym_return] = ACTIONS(409), - [sym_next] = ACTIONS(409), - [sym_break] = ACTIONS(409), - [sym_true] = ACTIONS(409), - [sym_false] = ACTIONS(409), - [sym_null] = ACTIONS(411), - [sym_inf] = ACTIONS(409), - [sym_nan] = ACTIONS(409), - [anon_sym_NA] = ACTIONS(413), - [anon_sym_NA_integer_] = ACTIONS(413), - [anon_sym_NA_real_] = ACTIONS(413), - [anon_sym_NA_complex_] = ACTIONS(413), - [anon_sym_NA_character_] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(662), - [sym__raw_string_literal] = ACTIONS(417), - [sym__external_open_parenthesis] = ACTIONS(419), - [sym__external_open_brace] = ACTIONS(421), - [sym__external_close_bracket2] = ACTIONS(662), - }, - [314] = { - [sym_identifier] = ACTIONS(641), - [anon_sym_BSLASH] = ACTIONS(639), - [anon_sym_function] = ACTIONS(641), - [anon_sym_EQ] = ACTIONS(641), - [anon_sym_if] = ACTIONS(641), - [anon_sym_for] = ACTIONS(641), - [anon_sym_while] = ACTIONS(641), - [anon_sym_repeat] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(639), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_BANG] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_LT_DASH] = ACTIONS(639), - [anon_sym_LT_LT_DASH] = ACTIONS(639), - [anon_sym_COLON_EQ] = ACTIONS(639), - [anon_sym_DASH_GT] = ACTIONS(641), - [anon_sym_DASH_GT_GT] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(641), - [anon_sym_AMP] = ACTIONS(641), - [anon_sym_PIPE_PIPE] = ACTIONS(639), - [anon_sym_AMP_AMP] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_LT_EQ] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(639), - [anon_sym_EQ_EQ] = ACTIONS(639), - [anon_sym_BANG_EQ] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_STAR_STAR] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [aux_sym_binary_operator_token1] = ACTIONS(639), - [anon_sym_PIPE_GT] = ACTIONS(639), - [anon_sym_COLON] = ACTIONS(641), - [anon_sym_DOLLAR] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(639), - [anon_sym_COLON_COLON] = ACTIONS(641), - [anon_sym_COLON_COLON_COLON] = ACTIONS(639), - [sym__hex_literal] = ACTIONS(639), - [sym__number_literal] = ACTIONS(641), - [anon_sym_SQUOTE] = ACTIONS(639), - [anon_sym_DQUOTE] = ACTIONS(639), - [sym_dots] = ACTIONS(641), - [sym_dot_dot_i] = ACTIONS(641), - [sym_return] = ACTIONS(641), - [sym_next] = ACTIONS(641), - [sym_break] = ACTIONS(641), - [sym_true] = ACTIONS(641), - [sym_false] = ACTIONS(641), - [sym_null] = ACTIONS(641), - [sym_inf] = ACTIONS(641), - [sym_nan] = ACTIONS(641), - [anon_sym_NA] = ACTIONS(641), - [anon_sym_NA_integer_] = ACTIONS(641), - [anon_sym_NA_real_] = ACTIONS(641), - [anon_sym_NA_complex_] = ACTIONS(641), - [anon_sym_NA_character_] = ACTIONS(641), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(639), - [sym__semicolon] = ACTIONS(639), - [sym__raw_string_literal] = ACTIONS(639), - [sym__external_open_parenthesis] = ACTIONS(639), - [sym__external_open_brace] = ACTIONS(639), - [sym__external_close_brace] = ACTIONS(639), - [sym__external_open_bracket] = ACTIONS(639), - [sym__external_open_bracket2] = ACTIONS(639), - }, - [315] = { - [aux_sym_function_definition_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(657), - [anon_sym_BSLASH] = ACTIONS(655), - [anon_sym_function] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_if] = ACTIONS(657), - [anon_sym_for] = ACTIONS(657), - [anon_sym_while] = ACTIONS(657), - [anon_sym_repeat] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(655), - [anon_sym_TILDE] = ACTIONS(655), - [anon_sym_BANG] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(657), - [anon_sym_LT_DASH] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(655), - [anon_sym_COLON_EQ] = ACTIONS(655), - [anon_sym_DASH_GT] = ACTIONS(657), - [anon_sym_DASH_GT_GT] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_PIPE_PIPE] = ACTIONS(655), - [anon_sym_AMP_AMP] = ACTIONS(655), - [anon_sym_LT] = ACTIONS(657), - [anon_sym_LT_EQ] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_GT_EQ] = ACTIONS(655), - [anon_sym_EQ_EQ] = ACTIONS(655), - [anon_sym_BANG_EQ] = ACTIONS(655), - [anon_sym_STAR] = ACTIONS(657), - [anon_sym_SLASH] = ACTIONS(655), - [anon_sym_STAR_STAR] = ACTIONS(655), - [anon_sym_CARET] = ACTIONS(655), - [aux_sym_binary_operator_token1] = ACTIONS(655), - [anon_sym_PIPE_GT] = ACTIONS(655), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(655), - [anon_sym_AT] = ACTIONS(655), - [sym__hex_literal] = ACTIONS(655), - [sym__number_literal] = ACTIONS(657), - [anon_sym_SQUOTE] = ACTIONS(655), - [anon_sym_DQUOTE] = ACTIONS(655), - [sym_dots] = ACTIONS(657), - [sym_dot_dot_i] = ACTIONS(657), - [sym_return] = ACTIONS(657), - [sym_next] = ACTIONS(657), - [sym_break] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_null] = ACTIONS(657), - [sym_inf] = ACTIONS(657), - [sym_nan] = ACTIONS(657), - [anon_sym_NA] = ACTIONS(657), - [anon_sym_NA_integer_] = ACTIONS(657), - [anon_sym_NA_real_] = ACTIONS(657), - [anon_sym_NA_complex_] = ACTIONS(657), - [anon_sym_NA_character_] = ACTIONS(657), + [320] = { + [sym_identifier] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_function] = ACTIONS(647), + [anon_sym_EQ] = ACTIONS(647), + [anon_sym_if] = ACTIONS(647), + [anon_sym_for] = ACTIONS(647), + [anon_sym_while] = ACTIONS(647), + [anon_sym_repeat] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(649), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(649), + [anon_sym_COLON_EQ] = ACTIONS(649), + [anon_sym_DASH_GT] = ACTIONS(647), + [anon_sym_DASH_GT_GT] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(647), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_EQ] = ACTIONS(649), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_GT_EQ] = ACTIONS(649), + [anon_sym_EQ_EQ] = ACTIONS(649), + [anon_sym_BANG_EQ] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_STAR_STAR] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(649), + [aux_sym_binary_operator_token1] = ACTIONS(649), + [anon_sym_PIPE_GT] = ACTIONS(649), + [anon_sym_COLON] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(649), + [anon_sym_AT] = ACTIONS(649), + [anon_sym_COLON_COLON] = ACTIONS(647), + [anon_sym_COLON_COLON_COLON] = ACTIONS(649), + [sym__hex_literal] = ACTIONS(649), + [sym__number_literal] = ACTIONS(647), + [anon_sym_SQUOTE] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(649), + [sym_dots] = ACTIONS(647), + [sym_dot_dot_i] = ACTIONS(647), + [sym_return] = ACTIONS(647), + [sym_next] = ACTIONS(647), + [sym_break] = ACTIONS(647), + [sym_true] = ACTIONS(647), + [sym_false] = ACTIONS(647), + [sym_null] = ACTIONS(647), + [sym_inf] = ACTIONS(647), + [sym_nan] = ACTIONS(647), + [anon_sym_NA] = ACTIONS(647), + [anon_sym_NA_integer_] = ACTIONS(647), + [anon_sym_NA_real_] = ACTIONS(647), + [anon_sym_NA_complex_] = ACTIONS(647), + [anon_sym_NA_character_] = ACTIONS(647), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(668), - [sym__semicolon] = ACTIONS(655), - [sym__raw_string_literal] = ACTIONS(655), - [sym__external_else] = ACTIONS(655), - [sym__external_open_parenthesis] = ACTIONS(655), - [sym__external_open_brace] = ACTIONS(655), - [sym__external_close_brace] = ACTIONS(655), - [sym__external_open_bracket] = ACTIONS(655), - [sym__external_open_bracket2] = ACTIONS(655), + [sym__newline] = ACTIONS(649), + [sym__semicolon] = ACTIONS(649), + [sym__raw_string_literal] = ACTIONS(649), + [sym__external_open_parenthesis] = ACTIONS(649), + [sym__external_open_brace] = ACTIONS(649), + [sym__external_close_brace] = ACTIONS(649), + [sym__external_open_bracket] = ACTIONS(649), + [sym__external_open_bracket2] = ACTIONS(649), }, - [316] = { - [sym_identifier] = ACTIONS(631), - [anon_sym_BSLASH] = ACTIONS(629), - [anon_sym_function] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_if] = ACTIONS(631), - [anon_sym_for] = ACTIONS(631), - [anon_sym_while] = ACTIONS(631), - [anon_sym_repeat] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(629), - [anon_sym_TILDE] = ACTIONS(629), - [anon_sym_BANG] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_LT_DASH] = ACTIONS(629), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_COLON_EQ] = ACTIONS(629), - [anon_sym_DASH_GT] = ACTIONS(631), - [anon_sym_DASH_GT_GT] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(631), - [anon_sym_LT_EQ] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_GT_EQ] = ACTIONS(629), - [anon_sym_EQ_EQ] = ACTIONS(629), - [anon_sym_BANG_EQ] = ACTIONS(629), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_SLASH] = ACTIONS(629), - [anon_sym_STAR_STAR] = ACTIONS(629), - [anon_sym_CARET] = ACTIONS(629), - [aux_sym_binary_operator_token1] = ACTIONS(629), - [anon_sym_PIPE_GT] = ACTIONS(629), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_AT] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(671), - [anon_sym_COLON_COLON_COLON] = ACTIONS(673), - [sym__hex_literal] = ACTIONS(629), - [sym__number_literal] = ACTIONS(631), - [anon_sym_SQUOTE] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [sym_dots] = ACTIONS(631), - [sym_dot_dot_i] = ACTIONS(631), - [sym_return] = ACTIONS(631), - [sym_next] = ACTIONS(631), - [sym_break] = ACTIONS(631), - [sym_true] = ACTIONS(631), - [sym_false] = ACTIONS(631), - [sym_null] = ACTIONS(631), - [sym_inf] = ACTIONS(631), - [sym_nan] = ACTIONS(631), - [anon_sym_NA] = ACTIONS(631), - [anon_sym_NA_integer_] = ACTIONS(631), - [anon_sym_NA_real_] = ACTIONS(631), - [anon_sym_NA_complex_] = ACTIONS(631), - [anon_sym_NA_character_] = ACTIONS(631), + [321] = { + [sym_identifier] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(637), + [anon_sym_function] = ACTIONS(635), + [anon_sym_EQ] = ACTIONS(635), + [anon_sym_if] = ACTIONS(635), + [anon_sym_for] = ACTIONS(635), + [anon_sym_while] = ACTIONS(635), + [anon_sym_repeat] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_LT_DASH] = ACTIONS(637), + [anon_sym_LT_LT_DASH] = ACTIONS(637), + [anon_sym_COLON_EQ] = ACTIONS(637), + [anon_sym_DASH_GT] = ACTIONS(635), + [anon_sym_DASH_GT_GT] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_AMP] = ACTIONS(635), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(635), + [anon_sym_LT_EQ] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(635), + [anon_sym_GT_EQ] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(637), + [anon_sym_STAR_STAR] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [aux_sym_binary_operator_token1] = ACTIONS(637), + [anon_sym_PIPE_GT] = ACTIONS(637), + [anon_sym_COLON] = ACTIONS(635), + [anon_sym_DOLLAR] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(637), + [anon_sym_COLON_COLON] = ACTIONS(635), + [anon_sym_COLON_COLON_COLON] = ACTIONS(637), + [sym__hex_literal] = ACTIONS(637), + [sym__number_literal] = ACTIONS(635), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(637), + [sym_dots] = ACTIONS(635), + [sym_dot_dot_i] = ACTIONS(635), + [sym_return] = ACTIONS(635), + [sym_next] = ACTIONS(635), + [sym_break] = ACTIONS(635), + [sym_true] = ACTIONS(635), + [sym_false] = ACTIONS(635), + [sym_null] = ACTIONS(635), + [sym_inf] = ACTIONS(635), + [sym_nan] = ACTIONS(635), + [anon_sym_NA] = ACTIONS(635), + [anon_sym_NA_integer_] = ACTIONS(635), + [anon_sym_NA_real_] = ACTIONS(635), + [anon_sym_NA_complex_] = ACTIONS(635), + [anon_sym_NA_character_] = ACTIONS(635), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(629), - [sym__semicolon] = ACTIONS(629), - [sym__raw_string_literal] = ACTIONS(629), - [sym__external_open_parenthesis] = ACTIONS(629), - [sym__external_open_brace] = ACTIONS(629), - [sym__external_close_brace] = ACTIONS(629), - [sym__external_open_bracket] = ACTIONS(629), - [sym__external_open_bracket2] = ACTIONS(629), + [sym__newline] = ACTIONS(637), + [sym__semicolon] = ACTIONS(637), + [sym__raw_string_literal] = ACTIONS(637), + [sym__external_open_parenthesis] = ACTIONS(637), + [sym__external_open_brace] = ACTIONS(637), + [sym__external_close_brace] = ACTIONS(637), + [sym__external_open_bracket] = ACTIONS(637), + [sym__external_open_bracket2] = ACTIONS(637), }, - [317] = { - [sym_identifier] = ACTIONS(615), - [anon_sym_BSLASH] = ACTIONS(617), - [anon_sym_function] = ACTIONS(615), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_while] = ACTIONS(615), - [anon_sym_repeat] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_LT_DASH] = ACTIONS(617), - [anon_sym_LT_LT_DASH] = ACTIONS(617), - [anon_sym_COLON_EQ] = ACTIONS(617), - [anon_sym_DASH_GT] = ACTIONS(615), - [anon_sym_DASH_GT_GT] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_STAR_STAR] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [aux_sym_binary_operator_token1] = ACTIONS(617), - [anon_sym_PIPE_GT] = ACTIONS(617), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_L] = ACTIONS(675), - [anon_sym_i] = ACTIONS(677), - [sym__hex_literal] = ACTIONS(617), - [sym__number_literal] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [sym_dots] = ACTIONS(615), - [sym_dot_dot_i] = ACTIONS(615), - [sym_return] = ACTIONS(615), - [sym_next] = ACTIONS(615), - [sym_break] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_null] = ACTIONS(615), - [sym_inf] = ACTIONS(615), - [sym_nan] = ACTIONS(615), - [anon_sym_NA] = ACTIONS(615), - [anon_sym_NA_integer_] = ACTIONS(615), - [anon_sym_NA_real_] = ACTIONS(615), - [anon_sym_NA_complex_] = ACTIONS(615), - [anon_sym_NA_character_] = ACTIONS(615), + [322] = { + [sym_identifier] = ACTIONS(639), + [anon_sym_BSLASH] = ACTIONS(641), + [anon_sym_function] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(639), + [anon_sym_if] = ACTIONS(639), + [anon_sym_for] = ACTIONS(639), + [anon_sym_while] = ACTIONS(639), + [anon_sym_repeat] = ACTIONS(639), + [anon_sym_QMARK] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_LT_DASH] = ACTIONS(641), + [anon_sym_LT_LT_DASH] = ACTIONS(641), + [anon_sym_COLON_EQ] = ACTIONS(641), + [anon_sym_DASH_GT] = ACTIONS(639), + [anon_sym_DASH_GT_GT] = ACTIONS(641), + [anon_sym_PIPE] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(639), + [anon_sym_PIPE_PIPE] = ACTIONS(641), + [anon_sym_AMP_AMP] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_LT_EQ] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(639), + [anon_sym_GT_EQ] = ACTIONS(641), + [anon_sym_EQ_EQ] = ACTIONS(641), + [anon_sym_BANG_EQ] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_SLASH] = ACTIONS(641), + [anon_sym_STAR_STAR] = ACTIONS(641), + [anon_sym_CARET] = ACTIONS(641), + [aux_sym_binary_operator_token1] = ACTIONS(641), + [anon_sym_PIPE_GT] = ACTIONS(641), + [anon_sym_COLON] = ACTIONS(639), + [anon_sym_DOLLAR] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(641), + [anon_sym_COLON_COLON] = ACTIONS(639), + [anon_sym_COLON_COLON_COLON] = ACTIONS(641), + [sym__hex_literal] = ACTIONS(641), + [sym__number_literal] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(641), + [anon_sym_DQUOTE] = ACTIONS(641), + [sym_dots] = ACTIONS(639), + [sym_dot_dot_i] = ACTIONS(639), + [sym_return] = ACTIONS(639), + [sym_next] = ACTIONS(639), + [sym_break] = ACTIONS(639), + [sym_true] = ACTIONS(639), + [sym_false] = ACTIONS(639), + [sym_null] = ACTIONS(639), + [sym_inf] = ACTIONS(639), + [sym_nan] = ACTIONS(639), + [anon_sym_NA] = ACTIONS(639), + [anon_sym_NA_integer_] = ACTIONS(639), + [anon_sym_NA_real_] = ACTIONS(639), + [anon_sym_NA_complex_] = ACTIONS(639), + [anon_sym_NA_character_] = ACTIONS(639), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(617), - [sym__semicolon] = ACTIONS(617), - [sym__raw_string_literal] = ACTIONS(617), - [sym__external_open_parenthesis] = ACTIONS(617), - [sym__external_open_brace] = ACTIONS(617), - [sym__external_close_brace] = ACTIONS(617), - [sym__external_open_bracket] = ACTIONS(617), - [sym__external_open_bracket2] = ACTIONS(617), + [sym__newline] = ACTIONS(641), + [sym__semicolon] = ACTIONS(641), + [sym__raw_string_literal] = ACTIONS(641), + [sym__external_open_parenthesis] = ACTIONS(641), + [sym__external_open_brace] = ACTIONS(641), + [sym__external_close_brace] = ACTIONS(641), + [sym__external_open_bracket] = ACTIONS(641), + [sym__external_open_bracket2] = ACTIONS(641), }, - [318] = { - [sym_identifier] = ACTIONS(611), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_function] = ACTIONS(611), - [anon_sym_EQ] = ACTIONS(611), - [anon_sym_if] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_repeat] = ACTIONS(611), - [anon_sym_QMARK] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT_DASH] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_DASH_GT] = ACTIONS(611), - [anon_sym_DASH_GT_GT] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(611), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_STAR_STAR] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [aux_sym_binary_operator_token1] = ACTIONS(613), - [anon_sym_PIPE_GT] = ACTIONS(613), - [anon_sym_COLON] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_COLON_COLON] = ACTIONS(611), - [anon_sym_COLON_COLON_COLON] = ACTIONS(613), - [sym__hex_literal] = ACTIONS(613), - [sym__number_literal] = ACTIONS(611), - [anon_sym_SQUOTE] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [sym_dots] = ACTIONS(611), - [sym_dot_dot_i] = ACTIONS(611), - [sym_return] = ACTIONS(611), - [sym_next] = ACTIONS(611), - [sym_break] = ACTIONS(611), - [sym_true] = ACTIONS(611), - [sym_false] = ACTIONS(611), - [sym_null] = ACTIONS(611), - [sym_inf] = ACTIONS(611), - [sym_nan] = ACTIONS(611), - [anon_sym_NA] = ACTIONS(611), - [anon_sym_NA_integer_] = ACTIONS(611), - [anon_sym_NA_real_] = ACTIONS(611), - [anon_sym_NA_complex_] = ACTIONS(611), - [anon_sym_NA_character_] = ACTIONS(611), + [323] = { + [ts_builtin_sym_end] = ACTIONS(607), + [sym_identifier] = ACTIONS(609), + [anon_sym_BSLASH] = ACTIONS(607), + [anon_sym_function] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(609), + [anon_sym_if] = ACTIONS(609), + [anon_sym_for] = ACTIONS(609), + [anon_sym_while] = ACTIONS(609), + [anon_sym_repeat] = ACTIONS(609), + [anon_sym_QMARK] = ACTIONS(607), + [anon_sym_TILDE] = ACTIONS(607), + [anon_sym_BANG] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_LT_DASH] = ACTIONS(607), + [anon_sym_LT_LT_DASH] = ACTIONS(607), + [anon_sym_COLON_EQ] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_DASH_GT_GT] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(609), + [anon_sym_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(609), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_STAR_STAR] = ACTIONS(607), + [anon_sym_CARET] = ACTIONS(607), + [aux_sym_binary_operator_token1] = ACTIONS(607), + [anon_sym_PIPE_GT] = ACTIONS(607), + [anon_sym_COLON] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(607), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(679), + [anon_sym_COLON_COLON_COLON] = ACTIONS(681), + [sym__hex_literal] = ACTIONS(607), + [sym__number_literal] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [sym_dots] = ACTIONS(609), + [sym_dot_dot_i] = ACTIONS(609), + [sym_return] = ACTIONS(609), + [sym_next] = ACTIONS(609), + [sym_break] = ACTIONS(609), + [sym_true] = ACTIONS(609), + [sym_false] = ACTIONS(609), + [sym_null] = ACTIONS(609), + [sym_inf] = ACTIONS(609), + [sym_nan] = ACTIONS(609), + [anon_sym_NA] = ACTIONS(609), + [anon_sym_NA_integer_] = ACTIONS(609), + [anon_sym_NA_real_] = ACTIONS(609), + [anon_sym_NA_complex_] = ACTIONS(609), + [anon_sym_NA_character_] = ACTIONS(609), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(613), - [sym__semicolon] = ACTIONS(613), - [sym__raw_string_literal] = ACTIONS(613), - [sym__external_open_parenthesis] = ACTIONS(613), - [sym__external_open_brace] = ACTIONS(613), - [sym__external_close_brace] = ACTIONS(613), - [sym__external_open_bracket] = ACTIONS(613), - [sym__external_open_bracket2] = ACTIONS(613), + [sym__newline] = ACTIONS(607), + [sym__semicolon] = ACTIONS(607), + [sym__raw_string_literal] = ACTIONS(607), + [sym__external_open_parenthesis] = ACTIONS(607), + [sym__external_open_brace] = ACTIONS(607), + [sym__external_open_bracket] = ACTIONS(607), + [sym__external_open_bracket2] = ACTIONS(607), }, - [319] = { - [sym_function_definition] = STATE(1442), - [sym_if_statement] = STATE(1442), - [sym_for_statement] = STATE(1442), - [sym_while_statement] = STATE(1442), - [sym_repeat_statement] = STATE(1442), - [sym_braced_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_call] = STATE(1442), - [sym_subset] = STATE(1442), - [sym_subset2] = STATE(1442), + [324] = { + [sym_function_definition] = STATE(1552), + [sym_if_statement] = STATE(1552), + [sym_for_statement] = STATE(1552), + [sym_while_statement] = STATE(1552), + [sym_repeat_statement] = STATE(1552), + [sym_braced_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_call] = STATE(1552), + [sym_subset] = STATE(1552), + [sym_subset2] = STATE(1552), [sym_argument] = STATE(2038), - [sym__argument_named] = STATE(2035), - [sym__argument_unnamed] = STATE(2036), - [sym__argument_value] = STATE(2037), - [sym_unary_operator] = STATE(1442), - [sym_binary_operator] = STATE(1442), - [sym_extract_operator] = STATE(1442), - [sym_namespace_operator] = STATE(1442), - [sym_integer] = STATE(1442), - [sym_complex] = STATE(1442), - [sym_float] = STATE(1442), - [sym__float_literal] = STATE(1629), - [sym_string] = STATE(1608), - [sym__single_quoted_string] = STATE(1630), - [sym__double_quoted_string] = STATE(1605), - [sym__argument_name_string_or_identifier_or_null] = STATE(2062), - [sym_na] = STATE(1442), - [sym__expression] = STATE(1442), - [sym__open_parenthesis] = STATE(1096), - [sym__open_brace] = STATE(423), + [sym__argument_named] = STATE(2040), + [sym__argument_unnamed] = STATE(2035), + [sym__argument_value] = STATE(2047), + [sym_unary_operator] = STATE(1552), + [sym_binary_operator] = STATE(1552), + [sym_extract_operator] = STATE(1552), + [sym_namespace_operator] = STATE(1552), + [sym_integer] = STATE(1552), + [sym_complex] = STATE(1552), + [sym_float] = STATE(1552), + [sym__float_literal] = STATE(1610), + [sym_string] = STATE(1627), + [sym__single_quoted_string] = STATE(1604), + [sym__double_quoted_string] = STATE(1632), + [sym__argument_name_string_or_identifier_or_null] = STATE(2054), + [sym_na] = STATE(1552), + [sym__expression] = STATE(1552), + [sym__open_parenthesis] = STATE(1069), + [sym__open_brace] = STATE(422), [sym_identifier] = ACTIONS(425), [anon_sym_BSLASH] = ACTIONS(427), [anon_sym_function] = ACTIONS(429), @@ -29762,220 +30107,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NA_complex_] = ACTIONS(459), [anon_sym_NA_character_] = ACTIONS(459), [sym_comment] = ACTIONS(3), - [sym_comma] = ACTIONS(662), + [sym_comma] = ACTIONS(666), [sym__raw_string_literal] = ACTIONS(463), [sym__external_open_parenthesis] = ACTIONS(465), - [sym__external_close_parenthesis] = ACTIONS(662), - [sym__external_open_brace] = ACTIONS(469), - }, - [320] = { - [sym_identifier] = ACTIONS(611), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_function] = ACTIONS(611), - [anon_sym_EQ] = ACTIONS(611), - [anon_sym_if] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_repeat] = ACTIONS(611), - [anon_sym_QMARK] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT_DASH] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_DASH_GT] = ACTIONS(611), - [anon_sym_DASH_GT_GT] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(611), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_STAR_STAR] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [aux_sym_binary_operator_token1] = ACTIONS(613), - [anon_sym_PIPE_GT] = ACTIONS(613), - [anon_sym_COLON] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_COLON_COLON] = ACTIONS(611), - [anon_sym_COLON_COLON_COLON] = ACTIONS(613), - [sym__hex_literal] = ACTIONS(613), - [sym__number_literal] = ACTIONS(611), - [anon_sym_SQUOTE] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [sym_dots] = ACTIONS(611), - [sym_dot_dot_i] = ACTIONS(611), - [sym_return] = ACTIONS(611), - [sym_next] = ACTIONS(611), - [sym_break] = ACTIONS(611), - [sym_true] = ACTIONS(611), - [sym_false] = ACTIONS(611), - [sym_null] = ACTIONS(611), - [sym_inf] = ACTIONS(611), - [sym_nan] = ACTIONS(611), - [anon_sym_NA] = ACTIONS(611), - [anon_sym_NA_integer_] = ACTIONS(611), - [anon_sym_NA_real_] = ACTIONS(611), - [anon_sym_NA_complex_] = ACTIONS(611), - [anon_sym_NA_character_] = ACTIONS(611), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(613), - [sym__semicolon] = ACTIONS(613), - [sym__raw_string_literal] = ACTIONS(613), - [sym__external_open_parenthesis] = ACTIONS(613), - [sym__external_open_brace] = ACTIONS(613), - [sym__external_close_brace] = ACTIONS(613), - [sym__external_open_bracket] = ACTIONS(613), - [sym__external_open_bracket2] = ACTIONS(613), - }, - [321] = { - [ts_builtin_sym_end] = ACTIONS(603), - [sym_identifier] = ACTIONS(605), - [anon_sym_BSLASH] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_EQ] = ACTIONS(605), - [anon_sym_if] = ACTIONS(605), - [anon_sym_for] = ACTIONS(605), - [anon_sym_while] = ACTIONS(605), - [anon_sym_repeat] = ACTIONS(605), - [anon_sym_QMARK] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(603), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_LT_DASH] = ACTIONS(603), - [anon_sym_LT_LT_DASH] = ACTIONS(603), - [anon_sym_COLON_EQ] = ACTIONS(603), - [anon_sym_DASH_GT] = ACTIONS(605), - [anon_sym_DASH_GT_GT] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(603), - [anon_sym_STAR_STAR] = ACTIONS(603), - [anon_sym_CARET] = ACTIONS(603), - [aux_sym_binary_operator_token1] = ACTIONS(603), - [anon_sym_PIPE_GT] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(603), - [anon_sym_AT] = ACTIONS(603), - [anon_sym_COLON_COLON] = ACTIONS(605), - [anon_sym_COLON_COLON_COLON] = ACTIONS(603), - [sym__hex_literal] = ACTIONS(603), - [sym__number_literal] = ACTIONS(605), - [anon_sym_SQUOTE] = ACTIONS(603), - [anon_sym_DQUOTE] = ACTIONS(603), - [sym_dots] = ACTIONS(605), - [sym_dot_dot_i] = ACTIONS(605), - [sym_return] = ACTIONS(605), - [sym_next] = ACTIONS(605), - [sym_break] = ACTIONS(605), - [sym_true] = ACTIONS(605), - [sym_false] = ACTIONS(605), - [sym_null] = ACTIONS(605), - [sym_inf] = ACTIONS(605), - [sym_nan] = ACTIONS(605), - [anon_sym_NA] = ACTIONS(605), - [anon_sym_NA_integer_] = ACTIONS(605), - [anon_sym_NA_real_] = ACTIONS(605), - [anon_sym_NA_complex_] = ACTIONS(605), - [anon_sym_NA_character_] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(603), - [sym__semicolon] = ACTIONS(603), - [sym__raw_string_literal] = ACTIONS(603), - [sym__external_open_parenthesis] = ACTIONS(603), - [sym__external_open_brace] = ACTIONS(603), - [sym__external_open_bracket] = ACTIONS(603), - [sym__external_open_bracket2] = ACTIONS(603), - }, - [322] = { - [ts_builtin_sym_end] = ACTIONS(629), - [sym_identifier] = ACTIONS(631), - [anon_sym_BSLASH] = ACTIONS(629), - [anon_sym_function] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_if] = ACTIONS(631), - [anon_sym_for] = ACTIONS(631), - [anon_sym_while] = ACTIONS(631), - [anon_sym_repeat] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(629), - [anon_sym_TILDE] = ACTIONS(629), - [anon_sym_BANG] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_LT_DASH] = ACTIONS(629), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_COLON_EQ] = ACTIONS(629), - [anon_sym_DASH_GT] = ACTIONS(631), - [anon_sym_DASH_GT_GT] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(631), - [anon_sym_LT_EQ] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_GT_EQ] = ACTIONS(629), - [anon_sym_EQ_EQ] = ACTIONS(629), - [anon_sym_BANG_EQ] = ACTIONS(629), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_SLASH] = ACTIONS(629), - [anon_sym_STAR_STAR] = ACTIONS(629), - [anon_sym_CARET] = ACTIONS(629), - [aux_sym_binary_operator_token1] = ACTIONS(629), - [anon_sym_PIPE_GT] = ACTIONS(629), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_AT] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(679), - [anon_sym_COLON_COLON_COLON] = ACTIONS(681), - [sym__hex_literal] = ACTIONS(629), - [sym__number_literal] = ACTIONS(631), - [anon_sym_SQUOTE] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [sym_dots] = ACTIONS(631), - [sym_dot_dot_i] = ACTIONS(631), - [sym_return] = ACTIONS(631), - [sym_next] = ACTIONS(631), - [sym_break] = ACTIONS(631), - [sym_true] = ACTIONS(631), - [sym_false] = ACTIONS(631), - [sym_null] = ACTIONS(631), - [sym_inf] = ACTIONS(631), - [sym_nan] = ACTIONS(631), - [anon_sym_NA] = ACTIONS(631), - [anon_sym_NA_integer_] = ACTIONS(631), - [anon_sym_NA_real_] = ACTIONS(631), - [anon_sym_NA_complex_] = ACTIONS(631), - [anon_sym_NA_character_] = ACTIONS(631), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(629), - [sym__semicolon] = ACTIONS(629), - [sym__raw_string_literal] = ACTIONS(629), - [sym__external_open_parenthesis] = ACTIONS(629), - [sym__external_open_brace] = ACTIONS(629), - [sym__external_open_bracket] = ACTIONS(629), - [sym__external_open_bracket2] = ACTIONS(629), + [sym__external_open_brace] = ACTIONS(467), + [sym__external_close_bracket2] = ACTIONS(666), }, - [323] = { + [325] = { + [ts_builtin_sym_end] = ACTIONS(645), [sym_identifier] = ACTIONS(643), [anon_sym_BSLASH] = ACTIONS(645), [anon_sym_function] = ACTIONS(643), @@ -30040,284 +30179,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal] = ACTIONS(645), [sym__external_open_parenthesis] = ACTIONS(645), [sym__external_open_brace] = ACTIONS(645), - [sym__external_close_brace] = ACTIONS(645), [sym__external_open_bracket] = ACTIONS(645), [sym__external_open_bracket2] = ACTIONS(645), }, - [324] = { - [sym_identifier] = ACTIONS(609), - [anon_sym_BSLASH] = ACTIONS(607), - [anon_sym_function] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(609), - [anon_sym_if] = ACTIONS(609), - [anon_sym_for] = ACTIONS(609), - [anon_sym_while] = ACTIONS(609), - [anon_sym_repeat] = ACTIONS(609), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_BANG] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(609), - [anon_sym_LT_DASH] = ACTIONS(607), - [anon_sym_LT_LT_DASH] = ACTIONS(607), - [anon_sym_COLON_EQ] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DASH_GT_GT] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(609), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(609), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_STAR_STAR] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(607), - [aux_sym_binary_operator_token1] = ACTIONS(607), - [anon_sym_PIPE_GT] = ACTIONS(607), - [anon_sym_COLON] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(607), - [anon_sym_AT] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_COLON_COLON_COLON] = ACTIONS(607), - [sym__hex_literal] = ACTIONS(607), - [sym__number_literal] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_DQUOTE] = ACTIONS(607), - [sym_dots] = ACTIONS(609), - [sym_dot_dot_i] = ACTIONS(609), - [sym_return] = ACTIONS(609), - [sym_next] = ACTIONS(609), - [sym_break] = ACTIONS(609), - [sym_true] = ACTIONS(609), - [sym_false] = ACTIONS(609), - [sym_null] = ACTIONS(609), - [sym_inf] = ACTIONS(609), - [sym_nan] = ACTIONS(609), - [anon_sym_NA] = ACTIONS(609), - [anon_sym_NA_integer_] = ACTIONS(609), - [anon_sym_NA_real_] = ACTIONS(609), - [anon_sym_NA_complex_] = ACTIONS(609), - [anon_sym_NA_character_] = ACTIONS(609), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(607), - [sym__semicolon] = ACTIONS(607), - [sym__raw_string_literal] = ACTIONS(607), - [sym__external_open_parenthesis] = ACTIONS(607), - [sym__external_open_brace] = ACTIONS(607), - [sym__external_close_brace] = ACTIONS(607), - [sym__external_open_bracket] = ACTIONS(607), - [sym__external_open_bracket2] = ACTIONS(607), - }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(607), - [sym_identifier] = ACTIONS(609), - [anon_sym_BSLASH] = ACTIONS(607), - [anon_sym_function] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(609), - [anon_sym_if] = ACTIONS(609), - [anon_sym_for] = ACTIONS(609), - [anon_sym_while] = ACTIONS(609), - [anon_sym_repeat] = ACTIONS(609), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_BANG] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(609), - [anon_sym_LT_DASH] = ACTIONS(607), - [anon_sym_LT_LT_DASH] = ACTIONS(607), - [anon_sym_COLON_EQ] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DASH_GT_GT] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(609), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(609), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_STAR_STAR] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(607), - [aux_sym_binary_operator_token1] = ACTIONS(607), - [anon_sym_PIPE_GT] = ACTIONS(607), - [anon_sym_COLON] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(607), - [anon_sym_AT] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_COLON_COLON_COLON] = ACTIONS(607), - [sym__hex_literal] = ACTIONS(607), - [sym__number_literal] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_DQUOTE] = ACTIONS(607), - [sym_dots] = ACTIONS(609), - [sym_dot_dot_i] = ACTIONS(609), - [sym_return] = ACTIONS(609), - [sym_next] = ACTIONS(609), - [sym_break] = ACTIONS(609), - [sym_true] = ACTIONS(609), - [sym_false] = ACTIONS(609), - [sym_null] = ACTIONS(609), - [sym_inf] = ACTIONS(609), - [sym_nan] = ACTIONS(609), - [anon_sym_NA] = ACTIONS(609), - [anon_sym_NA_integer_] = ACTIONS(609), - [anon_sym_NA_real_] = ACTIONS(609), - [anon_sym_NA_complex_] = ACTIONS(609), - [anon_sym_NA_character_] = ACTIONS(609), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(607), - [sym__semicolon] = ACTIONS(607), - [sym__raw_string_literal] = ACTIONS(607), - [sym__external_open_parenthesis] = ACTIONS(607), - [sym__external_open_brace] = ACTIONS(607), - [sym__external_open_bracket] = ACTIONS(607), - [sym__external_open_bracket2] = ACTIONS(607), - }, [326] = { - [sym_identifier] = ACTIONS(605), - [anon_sym_BSLASH] = ACTIONS(603), - [anon_sym_function] = ACTIONS(605), - [anon_sym_EQ] = ACTIONS(605), - [anon_sym_if] = ACTIONS(605), - [anon_sym_for] = ACTIONS(605), - [anon_sym_while] = ACTIONS(605), - [anon_sym_repeat] = ACTIONS(605), - [anon_sym_QMARK] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(603), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_LT_DASH] = ACTIONS(603), - [anon_sym_LT_LT_DASH] = ACTIONS(603), - [anon_sym_COLON_EQ] = ACTIONS(603), - [anon_sym_DASH_GT] = ACTIONS(605), - [anon_sym_DASH_GT_GT] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(603), - [anon_sym_STAR_STAR] = ACTIONS(603), - [anon_sym_CARET] = ACTIONS(603), - [aux_sym_binary_operator_token1] = ACTIONS(603), - [anon_sym_PIPE_GT] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(603), - [anon_sym_AT] = ACTIONS(603), - [anon_sym_COLON_COLON] = ACTIONS(605), - [anon_sym_COLON_COLON_COLON] = ACTIONS(603), - [sym__hex_literal] = ACTIONS(603), - [sym__number_literal] = ACTIONS(605), - [anon_sym_SQUOTE] = ACTIONS(603), - [anon_sym_DQUOTE] = ACTIONS(603), - [sym_dots] = ACTIONS(605), - [sym_dot_dot_i] = ACTIONS(605), - [sym_return] = ACTIONS(605), - [sym_next] = ACTIONS(605), - [sym_break] = ACTIONS(605), - [sym_true] = ACTIONS(605), - [sym_false] = ACTIONS(605), - [sym_null] = ACTIONS(605), - [sym_inf] = ACTIONS(605), - [sym_nan] = ACTIONS(605), - [anon_sym_NA] = ACTIONS(605), - [anon_sym_NA_integer_] = ACTIONS(605), - [anon_sym_NA_real_] = ACTIONS(605), - [anon_sym_NA_complex_] = ACTIONS(605), - [anon_sym_NA_character_] = ACTIONS(605), + [ts_builtin_sym_end] = ACTIONS(649), + [sym_identifier] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_function] = ACTIONS(647), + [anon_sym_EQ] = ACTIONS(647), + [anon_sym_if] = ACTIONS(647), + [anon_sym_for] = ACTIONS(647), + [anon_sym_while] = ACTIONS(647), + [anon_sym_repeat] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(649), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(649), + [anon_sym_COLON_EQ] = ACTIONS(649), + [anon_sym_DASH_GT] = ACTIONS(647), + [anon_sym_DASH_GT_GT] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(647), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_EQ] = ACTIONS(649), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_GT_EQ] = ACTIONS(649), + [anon_sym_EQ_EQ] = ACTIONS(649), + [anon_sym_BANG_EQ] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_STAR_STAR] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(649), + [aux_sym_binary_operator_token1] = ACTIONS(649), + [anon_sym_PIPE_GT] = ACTIONS(649), + [anon_sym_COLON] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(649), + [anon_sym_AT] = ACTIONS(649), + [anon_sym_COLON_COLON] = ACTIONS(647), + [anon_sym_COLON_COLON_COLON] = ACTIONS(649), + [sym__hex_literal] = ACTIONS(649), + [sym__number_literal] = ACTIONS(647), + [anon_sym_SQUOTE] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(649), + [sym_dots] = ACTIONS(647), + [sym_dot_dot_i] = ACTIONS(647), + [sym_return] = ACTIONS(647), + [sym_next] = ACTIONS(647), + [sym_break] = ACTIONS(647), + [sym_true] = ACTIONS(647), + [sym_false] = ACTIONS(647), + [sym_null] = ACTIONS(647), + [sym_inf] = ACTIONS(647), + [sym_nan] = ACTIONS(647), + [anon_sym_NA] = ACTIONS(647), + [anon_sym_NA_integer_] = ACTIONS(647), + [anon_sym_NA_real_] = ACTIONS(647), + [anon_sym_NA_complex_] = ACTIONS(647), + [anon_sym_NA_character_] = ACTIONS(647), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(603), - [sym__semicolon] = ACTIONS(603), - [sym__raw_string_literal] = ACTIONS(603), - [sym__external_open_parenthesis] = ACTIONS(603), - [sym__external_open_brace] = ACTIONS(603), - [sym__external_close_brace] = ACTIONS(603), - [sym__external_open_bracket] = ACTIONS(603), - [sym__external_open_bracket2] = ACTIONS(603), + [sym__newline] = ACTIONS(649), + [sym__semicolon] = ACTIONS(649), + [sym__raw_string_literal] = ACTIONS(649), + [sym__external_open_parenthesis] = ACTIONS(649), + [sym__external_open_brace] = ACTIONS(649), + [sym__external_open_bracket] = ACTIONS(649), + [sym__external_open_bracket2] = ACTIONS(649), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(683), - [sym_identifier] = ACTIONS(685), - [anon_sym_BSLASH] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [anon_sym_repeat] = ACTIONS(685), - [anon_sym_QMARK] = ACTIONS(683), - [anon_sym_TILDE] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_LT_DASH] = ACTIONS(683), - [anon_sym_LT_LT_DASH] = ACTIONS(683), - [anon_sym_COLON_EQ] = ACTIONS(683), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_DASH_GT_GT] = ACTIONS(683), - [anon_sym_PIPE] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(683), - [anon_sym_AMP_AMP] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(683), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_GT_EQ] = ACTIONS(683), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(683), - [anon_sym_STAR_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(683), - [aux_sym_binary_operator_token1] = ACTIONS(683), - [anon_sym_PIPE_GT] = ACTIONS(683), - [anon_sym_COLON] = ACTIONS(685), - [anon_sym_DOLLAR] = ACTIONS(683), - [anon_sym_AT] = ACTIONS(683), - [sym__hex_literal] = ACTIONS(683), - [sym__number_literal] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_DQUOTE] = ACTIONS(683), - [sym_dots] = ACTIONS(685), - [sym_dot_dot_i] = ACTIONS(685), - [sym_return] = ACTIONS(685), - [sym_next] = ACTIONS(685), - [sym_break] = ACTIONS(685), - [sym_true] = ACTIONS(685), - [sym_false] = ACTIONS(685), - [sym_null] = ACTIONS(685), - [sym_inf] = ACTIONS(685), - [sym_nan] = ACTIONS(685), - [anon_sym_NA] = ACTIONS(685), - [anon_sym_NA_integer_] = ACTIONS(685), - [anon_sym_NA_real_] = ACTIONS(685), - [anon_sym_NA_complex_] = ACTIONS(685), - [anon_sym_NA_character_] = ACTIONS(685), + [sym_identifier] = ACTIONS(683), + [anon_sym_BSLASH] = ACTIONS(685), + [anon_sym_function] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [anon_sym_repeat] = ACTIONS(683), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_LT_DASH] = ACTIONS(685), + [anon_sym_LT_LT_DASH] = ACTIONS(685), + [anon_sym_COLON_EQ] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(683), + [anon_sym_DASH_GT_GT] = ACTIONS(685), + [anon_sym_PIPE] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(683), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(683), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_SLASH] = ACTIONS(685), + [anon_sym_STAR_STAR] = ACTIONS(685), + [anon_sym_CARET] = ACTIONS(685), + [aux_sym_binary_operator_token1] = ACTIONS(685), + [anon_sym_PIPE_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(683), + [anon_sym_DOLLAR] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [sym__hex_literal] = ACTIONS(685), + [sym__number_literal] = ACTIONS(683), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [sym_dots] = ACTIONS(683), + [sym_dot_dot_i] = ACTIONS(683), + [sym_return] = ACTIONS(683), + [sym_next] = ACTIONS(683), + [sym_break] = ACTIONS(683), + [sym_true] = ACTIONS(683), + [sym_false] = ACTIONS(683), + [sym_null] = ACTIONS(683), + [sym_inf] = ACTIONS(683), + [sym_nan] = ACTIONS(683), + [anon_sym_NA] = ACTIONS(683), + [anon_sym_NA_integer_] = ACTIONS(683), + [anon_sym_NA_real_] = ACTIONS(683), + [anon_sym_NA_complex_] = ACTIONS(683), + [anon_sym_NA_character_] = ACTIONS(683), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(683), - [sym__semicolon] = ACTIONS(683), - [sym__raw_string_literal] = ACTIONS(683), - [sym__external_else] = ACTIONS(683), - [sym__external_open_parenthesis] = ACTIONS(683), - [sym__external_open_brace] = ACTIONS(683), - [sym__external_open_bracket] = ACTIONS(683), - [sym__external_open_bracket2] = ACTIONS(683), + [sym__newline] = ACTIONS(685), + [sym__semicolon] = ACTIONS(685), + [sym__raw_string_literal] = ACTIONS(685), + [sym__external_else] = ACTIONS(685), + [sym__external_open_parenthesis] = ACTIONS(685), + [sym__external_open_brace] = ACTIONS(685), + [sym__external_close_brace] = ACTIONS(685), + [sym__external_open_bracket] = ACTIONS(685), + [sym__external_open_bracket2] = ACTIONS(685), }, [328] = { [sym_identifier] = ACTIONS(687), @@ -30388,412 +30388,412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket2] = ACTIONS(689), }, [329] = { - [aux_sym_function_definition_repeat1] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(655), - [sym_identifier] = ACTIONS(657), - [anon_sym_BSLASH] = ACTIONS(655), - [anon_sym_function] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_if] = ACTIONS(657), - [anon_sym_for] = ACTIONS(657), - [anon_sym_while] = ACTIONS(657), - [anon_sym_repeat] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(655), - [anon_sym_TILDE] = ACTIONS(655), - [anon_sym_BANG] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(657), - [anon_sym_LT_DASH] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(655), - [anon_sym_COLON_EQ] = ACTIONS(655), - [anon_sym_DASH_GT] = ACTIONS(657), - [anon_sym_DASH_GT_GT] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_PIPE_PIPE] = ACTIONS(655), - [anon_sym_AMP_AMP] = ACTIONS(655), - [anon_sym_LT] = ACTIONS(657), - [anon_sym_LT_EQ] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_GT_EQ] = ACTIONS(655), - [anon_sym_EQ_EQ] = ACTIONS(655), - [anon_sym_BANG_EQ] = ACTIONS(655), - [anon_sym_STAR] = ACTIONS(657), - [anon_sym_SLASH] = ACTIONS(655), - [anon_sym_STAR_STAR] = ACTIONS(655), - [anon_sym_CARET] = ACTIONS(655), - [aux_sym_binary_operator_token1] = ACTIONS(655), - [anon_sym_PIPE_GT] = ACTIONS(655), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(655), - [anon_sym_AT] = ACTIONS(655), - [sym__hex_literal] = ACTIONS(655), - [sym__number_literal] = ACTIONS(657), - [anon_sym_SQUOTE] = ACTIONS(655), - [anon_sym_DQUOTE] = ACTIONS(655), - [sym_dots] = ACTIONS(657), - [sym_dot_dot_i] = ACTIONS(657), - [sym_return] = ACTIONS(657), - [sym_next] = ACTIONS(657), - [sym_break] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_null] = ACTIONS(657), - [sym_inf] = ACTIONS(657), - [sym_nan] = ACTIONS(657), - [anon_sym_NA] = ACTIONS(657), - [anon_sym_NA_integer_] = ACTIONS(657), - [anon_sym_NA_real_] = ACTIONS(657), - [anon_sym_NA_complex_] = ACTIONS(657), - [anon_sym_NA_character_] = ACTIONS(657), + [sym_identifier] = ACTIONS(691), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_function] = ACTIONS(691), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_if] = ACTIONS(691), + [anon_sym_for] = ACTIONS(691), + [anon_sym_while] = ACTIONS(691), + [anon_sym_repeat] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_LT_DASH] = ACTIONS(693), + [anon_sym_LT_LT_DASH] = ACTIONS(693), + [anon_sym_COLON_EQ] = ACTIONS(693), + [anon_sym_DASH_GT] = ACTIONS(691), + [anon_sym_DASH_GT_GT] = ACTIONS(693), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE_PIPE] = ACTIONS(693), + [anon_sym_AMP_AMP] = ACTIONS(693), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_LT_EQ] = ACTIONS(693), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(693), + [anon_sym_EQ_EQ] = ACTIONS(693), + [anon_sym_BANG_EQ] = ACTIONS(693), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_STAR_STAR] = ACTIONS(693), + [anon_sym_CARET] = ACTIONS(693), + [aux_sym_binary_operator_token1] = ACTIONS(693), + [anon_sym_PIPE_GT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_AT] = ACTIONS(693), + [sym__hex_literal] = ACTIONS(693), + [sym__number_literal] = ACTIONS(691), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE] = ACTIONS(693), + [sym_dots] = ACTIONS(691), + [sym_dot_dot_i] = ACTIONS(691), + [sym_return] = ACTIONS(691), + [sym_next] = ACTIONS(691), + [sym_break] = ACTIONS(691), + [sym_true] = ACTIONS(691), + [sym_false] = ACTIONS(691), + [sym_null] = ACTIONS(691), + [sym_inf] = ACTIONS(691), + [sym_nan] = ACTIONS(691), + [anon_sym_NA] = ACTIONS(691), + [anon_sym_NA_integer_] = ACTIONS(691), + [anon_sym_NA_real_] = ACTIONS(691), + [anon_sym_NA_complex_] = ACTIONS(691), + [anon_sym_NA_character_] = ACTIONS(691), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(691), - [sym__semicolon] = ACTIONS(655), - [sym__raw_string_literal] = ACTIONS(655), - [sym__external_open_parenthesis] = ACTIONS(655), - [sym__external_open_brace] = ACTIONS(655), - [sym__external_open_bracket] = ACTIONS(655), - [sym__external_open_bracket2] = ACTIONS(655), + [sym__newline] = ACTIONS(693), + [sym__semicolon] = ACTIONS(693), + [sym__raw_string_literal] = ACTIONS(693), + [sym__external_else] = ACTIONS(693), + [sym__external_open_parenthesis] = ACTIONS(693), + [sym__external_open_brace] = ACTIONS(693), + [sym__external_close_brace] = ACTIONS(693), + [sym__external_open_bracket] = ACTIONS(693), + [sym__external_open_bracket2] = ACTIONS(693), }, [330] = { - [ts_builtin_sym_end] = ACTIONS(694), - [sym_identifier] = ACTIONS(696), - [anon_sym_BSLASH] = ACTIONS(694), - [anon_sym_function] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_for] = ACTIONS(696), - [anon_sym_while] = ACTIONS(696), - [anon_sym_repeat] = ACTIONS(696), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(694), - [anon_sym_LT_LT_DASH] = ACTIONS(694), - [anon_sym_COLON_EQ] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(696), - [anon_sym_DASH_GT_GT] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(696), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [aux_sym_binary_operator_token1] = ACTIONS(694), - [anon_sym_PIPE_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_DOLLAR] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [sym__hex_literal] = ACTIONS(694), - [sym__number_literal] = ACTIONS(696), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(694), - [sym_dots] = ACTIONS(696), - [sym_dot_dot_i] = ACTIONS(696), - [sym_return] = ACTIONS(696), - [sym_next] = ACTIONS(696), - [sym_break] = ACTIONS(696), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_null] = ACTIONS(696), - [sym_inf] = ACTIONS(696), - [sym_nan] = ACTIONS(696), - [anon_sym_NA] = ACTIONS(696), - [anon_sym_NA_integer_] = ACTIONS(696), - [anon_sym_NA_real_] = ACTIONS(696), - [anon_sym_NA_complex_] = ACTIONS(696), - [anon_sym_NA_character_] = ACTIONS(696), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(695), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_if] = ACTIONS(695), + [anon_sym_for] = ACTIONS(695), + [anon_sym_while] = ACTIONS(695), + [anon_sym_repeat] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_TILDE] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_LT_DASH] = ACTIONS(697), + [anon_sym_LT_LT_DASH] = ACTIONS(697), + [anon_sym_COLON_EQ] = ACTIONS(697), + [anon_sym_DASH_GT] = ACTIONS(695), + [anon_sym_DASH_GT_GT] = ACTIONS(697), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(697), + [anon_sym_AMP_AMP] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_LT_EQ] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(697), + [anon_sym_EQ_EQ] = ACTIONS(697), + [anon_sym_BANG_EQ] = ACTIONS(697), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(697), + [anon_sym_STAR_STAR] = ACTIONS(697), + [anon_sym_CARET] = ACTIONS(697), + [aux_sym_binary_operator_token1] = ACTIONS(697), + [anon_sym_PIPE_GT] = ACTIONS(697), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [sym__hex_literal] = ACTIONS(697), + [sym__number_literal] = ACTIONS(695), + [anon_sym_SQUOTE] = ACTIONS(697), + [anon_sym_DQUOTE] = ACTIONS(697), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(695), + [sym_return] = ACTIONS(695), + [sym_next] = ACTIONS(695), + [sym_break] = ACTIONS(695), + [sym_true] = ACTIONS(695), + [sym_false] = ACTIONS(695), + [sym_null] = ACTIONS(695), + [sym_inf] = ACTIONS(695), + [sym_nan] = ACTIONS(695), + [anon_sym_NA] = ACTIONS(695), + [anon_sym_NA_integer_] = ACTIONS(695), + [anon_sym_NA_real_] = ACTIONS(695), + [anon_sym_NA_complex_] = ACTIONS(695), + [anon_sym_NA_character_] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(694), - [sym__semicolon] = ACTIONS(694), - [sym__raw_string_literal] = ACTIONS(694), - [sym__external_else] = ACTIONS(694), - [sym__external_open_parenthesis] = ACTIONS(694), - [sym__external_open_brace] = ACTIONS(694), - [sym__external_open_bracket] = ACTIONS(694), - [sym__external_open_bracket2] = ACTIONS(694), + [sym__newline] = ACTIONS(697), + [sym__semicolon] = ACTIONS(697), + [sym__raw_string_literal] = ACTIONS(697), + [sym__external_else] = ACTIONS(697), + [sym__external_open_parenthesis] = ACTIONS(697), + [sym__external_open_brace] = ACTIONS(697), + [sym__external_close_brace] = ACTIONS(697), + [sym__external_open_bracket] = ACTIONS(697), + [sym__external_open_bracket2] = ACTIONS(697), }, [331] = { - [ts_builtin_sym_end] = ACTIONS(698), - [sym_identifier] = ACTIONS(700), - [anon_sym_BSLASH] = ACTIONS(698), - [anon_sym_function] = ACTIONS(700), - [anon_sym_EQ] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [anon_sym_repeat] = ACTIONS(700), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_LT_DASH] = ACTIONS(698), - [anon_sym_LT_LT_DASH] = ACTIONS(698), - [anon_sym_COLON_EQ] = ACTIONS(698), - [anon_sym_DASH_GT] = ACTIONS(700), - [anon_sym_DASH_GT_GT] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(700), - [anon_sym_PIPE_PIPE] = ACTIONS(698), - [anon_sym_AMP_AMP] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(700), - [anon_sym_LT_EQ] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(700), - [anon_sym_GT_EQ] = ACTIONS(698), - [anon_sym_EQ_EQ] = ACTIONS(698), - [anon_sym_BANG_EQ] = ACTIONS(698), - [anon_sym_STAR] = ACTIONS(700), - [anon_sym_SLASH] = ACTIONS(698), - [anon_sym_STAR_STAR] = ACTIONS(698), - [anon_sym_CARET] = ACTIONS(698), - [aux_sym_binary_operator_token1] = ACTIONS(698), - [anon_sym_PIPE_GT] = ACTIONS(698), - [anon_sym_COLON] = ACTIONS(700), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(698), - [sym__hex_literal] = ACTIONS(698), - [sym__number_literal] = ACTIONS(700), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_DQUOTE] = ACTIONS(698), - [sym_dots] = ACTIONS(700), - [sym_dot_dot_i] = ACTIONS(700), - [sym_return] = ACTIONS(700), - [sym_next] = ACTIONS(700), - [sym_break] = ACTIONS(700), - [sym_true] = ACTIONS(700), - [sym_false] = ACTIONS(700), - [sym_null] = ACTIONS(700), - [sym_inf] = ACTIONS(700), - [sym_nan] = ACTIONS(700), - [anon_sym_NA] = ACTIONS(700), - [anon_sym_NA_integer_] = ACTIONS(700), - [anon_sym_NA_real_] = ACTIONS(700), - [anon_sym_NA_complex_] = ACTIONS(700), - [anon_sym_NA_character_] = ACTIONS(700), + [sym_identifier] = ACTIONS(699), + [anon_sym_BSLASH] = ACTIONS(701), + [anon_sym_function] = ACTIONS(699), + [anon_sym_EQ] = ACTIONS(699), + [anon_sym_if] = ACTIONS(699), + [anon_sym_for] = ACTIONS(699), + [anon_sym_while] = ACTIONS(699), + [anon_sym_repeat] = ACTIONS(699), + [anon_sym_QMARK] = ACTIONS(701), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_LT_DASH] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(701), + [anon_sym_COLON_EQ] = ACTIONS(701), + [anon_sym_DASH_GT] = ACTIONS(699), + [anon_sym_DASH_GT_GT] = ACTIONS(701), + [anon_sym_PIPE] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(701), + [anon_sym_AMP_AMP] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(699), + [anon_sym_LT_EQ] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(699), + [anon_sym_GT_EQ] = ACTIONS(701), + [anon_sym_EQ_EQ] = ACTIONS(701), + [anon_sym_BANG_EQ] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(699), + [anon_sym_SLASH] = ACTIONS(701), + [anon_sym_STAR_STAR] = ACTIONS(701), + [anon_sym_CARET] = ACTIONS(701), + [aux_sym_binary_operator_token1] = ACTIONS(701), + [anon_sym_PIPE_GT] = ACTIONS(701), + [anon_sym_COLON] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [anon_sym_AT] = ACTIONS(701), + [sym__hex_literal] = ACTIONS(701), + [sym__number_literal] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(701), + [sym_dots] = ACTIONS(699), + [sym_dot_dot_i] = ACTIONS(699), + [sym_return] = ACTIONS(699), + [sym_next] = ACTIONS(699), + [sym_break] = ACTIONS(699), + [sym_true] = ACTIONS(699), + [sym_false] = ACTIONS(699), + [sym_null] = ACTIONS(699), + [sym_inf] = ACTIONS(699), + [sym_nan] = ACTIONS(699), + [anon_sym_NA] = ACTIONS(699), + [anon_sym_NA_integer_] = ACTIONS(699), + [anon_sym_NA_real_] = ACTIONS(699), + [anon_sym_NA_complex_] = ACTIONS(699), + [anon_sym_NA_character_] = ACTIONS(699), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(698), - [sym__semicolon] = ACTIONS(698), - [sym__raw_string_literal] = ACTIONS(698), - [sym__external_else] = ACTIONS(698), - [sym__external_open_parenthesis] = ACTIONS(698), - [sym__external_open_brace] = ACTIONS(698), - [sym__external_open_bracket] = ACTIONS(698), - [sym__external_open_bracket2] = ACTIONS(698), + [sym__newline] = ACTIONS(701), + [sym__semicolon] = ACTIONS(701), + [sym__raw_string_literal] = ACTIONS(701), + [sym__external_else] = ACTIONS(701), + [sym__external_open_parenthesis] = ACTIONS(701), + [sym__external_open_brace] = ACTIONS(701), + [sym__external_close_brace] = ACTIONS(701), + [sym__external_open_bracket] = ACTIONS(701), + [sym__external_open_bracket2] = ACTIONS(701), }, [332] = { - [ts_builtin_sym_end] = ACTIONS(702), - [sym_identifier] = ACTIONS(704), - [anon_sym_BSLASH] = ACTIONS(702), - [anon_sym_function] = ACTIONS(704), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_if] = ACTIONS(704), - [anon_sym_for] = ACTIONS(704), - [anon_sym_while] = ACTIONS(704), - [anon_sym_repeat] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_LT_DASH] = ACTIONS(702), - [anon_sym_LT_LT_DASH] = ACTIONS(702), - [anon_sym_COLON_EQ] = ACTIONS(702), - [anon_sym_DASH_GT] = ACTIONS(704), - [anon_sym_DASH_GT_GT] = ACTIONS(702), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE_PIPE] = ACTIONS(702), - [anon_sym_AMP_AMP] = ACTIONS(702), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_LT_EQ] = ACTIONS(702), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(702), - [anon_sym_EQ_EQ] = ACTIONS(702), - [anon_sym_BANG_EQ] = ACTIONS(702), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(702), - [anon_sym_STAR_STAR] = ACTIONS(702), - [anon_sym_CARET] = ACTIONS(702), - [aux_sym_binary_operator_token1] = ACTIONS(702), - [anon_sym_PIPE_GT] = ACTIONS(702), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(702), - [anon_sym_AT] = ACTIONS(702), - [sym__hex_literal] = ACTIONS(702), - [sym__number_literal] = ACTIONS(704), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_DQUOTE] = ACTIONS(702), - [sym_dots] = ACTIONS(704), - [sym_dot_dot_i] = ACTIONS(704), - [sym_return] = ACTIONS(704), - [sym_next] = ACTIONS(704), - [sym_break] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_inf] = ACTIONS(704), - [sym_nan] = ACTIONS(704), - [anon_sym_NA] = ACTIONS(704), - [anon_sym_NA_integer_] = ACTIONS(704), - [anon_sym_NA_real_] = ACTIONS(704), - [anon_sym_NA_complex_] = ACTIONS(704), - [anon_sym_NA_character_] = ACTIONS(704), + [ts_builtin_sym_end] = ACTIONS(703), + [sym_identifier] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(703), + [anon_sym_function] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_if] = ACTIONS(705), + [anon_sym_for] = ACTIONS(705), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(703), + [anon_sym_TILDE] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_LT_DASH] = ACTIONS(703), + [anon_sym_LT_LT_DASH] = ACTIONS(703), + [anon_sym_COLON_EQ] = ACTIONS(703), + [anon_sym_DASH_GT] = ACTIONS(705), + [anon_sym_DASH_GT_GT] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(703), + [anon_sym_AMP_AMP] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(705), + [anon_sym_LT_EQ] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_GT_EQ] = ACTIONS(703), + [anon_sym_EQ_EQ] = ACTIONS(703), + [anon_sym_BANG_EQ] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(703), + [anon_sym_STAR_STAR] = ACTIONS(703), + [anon_sym_CARET] = ACTIONS(703), + [aux_sym_binary_operator_token1] = ACTIONS(703), + [anon_sym_PIPE_GT] = ACTIONS(703), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_AT] = ACTIONS(703), + [sym__hex_literal] = ACTIONS(703), + [sym__number_literal] = ACTIONS(705), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_DQUOTE] = ACTIONS(703), + [sym_dots] = ACTIONS(705), + [sym_dot_dot_i] = ACTIONS(705), + [sym_return] = ACTIONS(705), + [sym_next] = ACTIONS(705), + [sym_break] = ACTIONS(705), + [sym_true] = ACTIONS(705), + [sym_false] = ACTIONS(705), + [sym_null] = ACTIONS(705), + [sym_inf] = ACTIONS(705), + [sym_nan] = ACTIONS(705), + [anon_sym_NA] = ACTIONS(705), + [anon_sym_NA_integer_] = ACTIONS(705), + [anon_sym_NA_real_] = ACTIONS(705), + [anon_sym_NA_complex_] = ACTIONS(705), + [anon_sym_NA_character_] = ACTIONS(705), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(702), - [sym__semicolon] = ACTIONS(702), - [sym__raw_string_literal] = ACTIONS(702), - [sym__external_else] = ACTIONS(702), - [sym__external_open_parenthesis] = ACTIONS(702), - [sym__external_open_brace] = ACTIONS(702), - [sym__external_open_bracket] = ACTIONS(702), - [sym__external_open_bracket2] = ACTIONS(702), + [sym__newline] = ACTIONS(703), + [sym__semicolon] = ACTIONS(703), + [sym__raw_string_literal] = ACTIONS(703), + [sym__external_else] = ACTIONS(703), + [sym__external_open_parenthesis] = ACTIONS(703), + [sym__external_open_brace] = ACTIONS(703), + [sym__external_open_bracket] = ACTIONS(703), + [sym__external_open_bracket2] = ACTIONS(703), }, [333] = { - [ts_builtin_sym_end] = ACTIONS(706), - [sym_identifier] = ACTIONS(708), - [anon_sym_BSLASH] = ACTIONS(706), - [anon_sym_function] = ACTIONS(708), - [anon_sym_EQ] = ACTIONS(708), - [anon_sym_if] = ACTIONS(708), - [anon_sym_for] = ACTIONS(708), - [anon_sym_while] = ACTIONS(708), - [anon_sym_repeat] = ACTIONS(708), - [anon_sym_QMARK] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(706), - [anon_sym_BANG] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [anon_sym_LT_DASH] = ACTIONS(706), - [anon_sym_LT_LT_DASH] = ACTIONS(706), - [anon_sym_COLON_EQ] = ACTIONS(706), - [anon_sym_DASH_GT] = ACTIONS(708), - [anon_sym_DASH_GT_GT] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_AMP] = ACTIONS(708), - [anon_sym_PIPE_PIPE] = ACTIONS(706), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_LT] = ACTIONS(708), - [anon_sym_LT_EQ] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(708), - [anon_sym_GT_EQ] = ACTIONS(706), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(706), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [aux_sym_binary_operator_token1] = ACTIONS(706), - [anon_sym_PIPE_GT] = ACTIONS(706), - [anon_sym_COLON] = ACTIONS(708), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_AT] = ACTIONS(706), - [sym__hex_literal] = ACTIONS(706), - [sym__number_literal] = ACTIONS(708), - [anon_sym_SQUOTE] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(706), - [sym_dots] = ACTIONS(708), - [sym_dot_dot_i] = ACTIONS(708), - [sym_return] = ACTIONS(708), - [sym_next] = ACTIONS(708), - [sym_break] = ACTIONS(708), - [sym_true] = ACTIONS(708), - [sym_false] = ACTIONS(708), - [sym_null] = ACTIONS(708), - [sym_inf] = ACTIONS(708), - [sym_nan] = ACTIONS(708), - [anon_sym_NA] = ACTIONS(708), - [anon_sym_NA_integer_] = ACTIONS(708), - [anon_sym_NA_real_] = ACTIONS(708), - [anon_sym_NA_complex_] = ACTIONS(708), - [anon_sym_NA_character_] = ACTIONS(708), + [ts_builtin_sym_end] = ACTIONS(707), + [sym_identifier] = ACTIONS(709), + [anon_sym_BSLASH] = ACTIONS(707), + [anon_sym_function] = ACTIONS(709), + [anon_sym_EQ] = ACTIONS(709), + [anon_sym_if] = ACTIONS(709), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(709), + [anon_sym_repeat] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(707), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_COLON_EQ] = ACTIONS(707), + [anon_sym_DASH_GT] = ACTIONS(709), + [anon_sym_DASH_GT_GT] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(709), + [anon_sym_LT_EQ] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(709), + [anon_sym_GT_EQ] = ACTIONS(707), + [anon_sym_EQ_EQ] = ACTIONS(707), + [anon_sym_BANG_EQ] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_STAR_STAR] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [aux_sym_binary_operator_token1] = ACTIONS(707), + [anon_sym_PIPE_GT] = ACTIONS(707), + [anon_sym_COLON] = ACTIONS(709), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_AT] = ACTIONS(707), + [sym__hex_literal] = ACTIONS(707), + [sym__number_literal] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [sym_dots] = ACTIONS(709), + [sym_dot_dot_i] = ACTIONS(709), + [sym_return] = ACTIONS(709), + [sym_next] = ACTIONS(709), + [sym_break] = ACTIONS(709), + [sym_true] = ACTIONS(709), + [sym_false] = ACTIONS(709), + [sym_null] = ACTIONS(709), + [sym_inf] = ACTIONS(709), + [sym_nan] = ACTIONS(709), + [anon_sym_NA] = ACTIONS(709), + [anon_sym_NA_integer_] = ACTIONS(709), + [anon_sym_NA_real_] = ACTIONS(709), + [anon_sym_NA_complex_] = ACTIONS(709), + [anon_sym_NA_character_] = ACTIONS(709), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(706), - [sym__semicolon] = ACTIONS(706), - [sym__raw_string_literal] = ACTIONS(706), - [sym__external_else] = ACTIONS(706), - [sym__external_open_parenthesis] = ACTIONS(706), - [sym__external_open_brace] = ACTIONS(706), - [sym__external_open_bracket] = ACTIONS(706), - [sym__external_open_bracket2] = ACTIONS(706), + [sym__newline] = ACTIONS(707), + [sym__semicolon] = ACTIONS(707), + [sym__raw_string_literal] = ACTIONS(707), + [sym__external_else] = ACTIONS(707), + [sym__external_open_parenthesis] = ACTIONS(707), + [sym__external_open_brace] = ACTIONS(707), + [sym__external_open_bracket] = ACTIONS(707), + [sym__external_open_bracket2] = ACTIONS(707), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(710), - [sym_identifier] = ACTIONS(712), - [anon_sym_BSLASH] = ACTIONS(710), - [anon_sym_function] = ACTIONS(712), - [anon_sym_EQ] = ACTIONS(712), - [anon_sym_if] = ACTIONS(712), - [anon_sym_for] = ACTIONS(712), - [anon_sym_while] = ACTIONS(712), - [anon_sym_repeat] = ACTIONS(712), - [anon_sym_QMARK] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_BANG] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_LT_DASH] = ACTIONS(710), - [anon_sym_LT_LT_DASH] = ACTIONS(710), - [anon_sym_COLON_EQ] = ACTIONS(710), - [anon_sym_DASH_GT] = ACTIONS(712), - [anon_sym_DASH_GT_GT] = ACTIONS(710), - [anon_sym_PIPE] = ACTIONS(712), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_PIPE_PIPE] = ACTIONS(710), - [anon_sym_AMP_AMP] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(712), - [anon_sym_LT_EQ] = ACTIONS(710), - [anon_sym_GT] = ACTIONS(712), - [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(710), - [anon_sym_BANG_EQ] = ACTIONS(710), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_SLASH] = ACTIONS(710), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [aux_sym_binary_operator_token1] = ACTIONS(710), - [anon_sym_PIPE_GT] = ACTIONS(710), - [anon_sym_COLON] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_AT] = ACTIONS(710), - [sym__hex_literal] = ACTIONS(710), - [sym__number_literal] = ACTIONS(712), - [anon_sym_SQUOTE] = ACTIONS(710), - [anon_sym_DQUOTE] = ACTIONS(710), - [sym_dots] = ACTIONS(712), - [sym_dot_dot_i] = ACTIONS(712), - [sym_return] = ACTIONS(712), - [sym_next] = ACTIONS(712), - [sym_break] = ACTIONS(712), - [sym_true] = ACTIONS(712), - [sym_false] = ACTIONS(712), - [sym_null] = ACTIONS(712), - [sym_inf] = ACTIONS(712), - [sym_nan] = ACTIONS(712), - [anon_sym_NA] = ACTIONS(712), - [anon_sym_NA_integer_] = ACTIONS(712), - [anon_sym_NA_real_] = ACTIONS(712), - [anon_sym_NA_complex_] = ACTIONS(712), - [anon_sym_NA_character_] = ACTIONS(712), + [aux_sym_function_definition_repeat1] = STATE(334), + [sym_identifier] = ACTIONS(661), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_function] = ACTIONS(661), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [anon_sym_repeat] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(659), + [anon_sym_LT_LT_DASH] = ACTIONS(659), + [anon_sym_COLON_EQ] = ACTIONS(659), + [anon_sym_DASH_GT] = ACTIONS(661), + [anon_sym_DASH_GT_GT] = ACTIONS(659), + [anon_sym_PIPE] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_LT_EQ] = ACTIONS(659), + [anon_sym_GT] = ACTIONS(661), + [anon_sym_GT_EQ] = ACTIONS(659), + [anon_sym_EQ_EQ] = ACTIONS(659), + [anon_sym_BANG_EQ] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(659), + [anon_sym_STAR_STAR] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(659), + [aux_sym_binary_operator_token1] = ACTIONS(659), + [anon_sym_PIPE_GT] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(661), + [anon_sym_DOLLAR] = ACTIONS(659), + [anon_sym_AT] = ACTIONS(659), + [sym__hex_literal] = ACTIONS(659), + [sym__number_literal] = ACTIONS(661), + [anon_sym_SQUOTE] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(659), + [sym_dots] = ACTIONS(661), + [sym_dot_dot_i] = ACTIONS(661), + [sym_return] = ACTIONS(661), + [sym_next] = ACTIONS(661), + [sym_break] = ACTIONS(661), + [sym_true] = ACTIONS(661), + [sym_false] = ACTIONS(661), + [sym_null] = ACTIONS(661), + [sym_inf] = ACTIONS(661), + [sym_nan] = ACTIONS(661), + [anon_sym_NA] = ACTIONS(661), + [anon_sym_NA_integer_] = ACTIONS(661), + [anon_sym_NA_real_] = ACTIONS(661), + [anon_sym_NA_complex_] = ACTIONS(661), + [anon_sym_NA_character_] = ACTIONS(661), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(710), - [sym__semicolon] = ACTIONS(710), - [sym__raw_string_literal] = ACTIONS(710), - [sym__external_else] = ACTIONS(710), - [sym__external_open_parenthesis] = ACTIONS(710), - [sym__external_open_brace] = ACTIONS(710), - [sym__external_open_bracket] = ACTIONS(710), - [sym__external_open_bracket2] = ACTIONS(710), + [sym__newline] = ACTIONS(711), + [sym__semicolon] = ACTIONS(659), + [sym__raw_string_literal] = ACTIONS(659), + [sym__external_open_parenthesis] = ACTIONS(659), + [sym__external_open_brace] = ACTIONS(659), + [sym__external_close_brace] = ACTIONS(659), + [sym__external_open_bracket] = ACTIONS(659), + [sym__external_open_bracket2] = ACTIONS(659), }, [335] = { [ts_builtin_sym_end] = ACTIONS(714), @@ -30864,208 +30864,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket2] = ACTIONS(714), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(718), - [sym_identifier] = ACTIONS(720), - [anon_sym_BSLASH] = ACTIONS(718), - [anon_sym_function] = ACTIONS(720), - [anon_sym_EQ] = ACTIONS(720), - [anon_sym_if] = ACTIONS(720), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(720), - [anon_sym_repeat] = ACTIONS(720), - [anon_sym_QMARK] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(718), - [anon_sym_BANG] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_LT_DASH] = ACTIONS(718), - [anon_sym_LT_LT_DASH] = ACTIONS(718), - [anon_sym_COLON_EQ] = ACTIONS(718), - [anon_sym_DASH_GT] = ACTIONS(720), - [anon_sym_DASH_GT_GT] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_PIPE_PIPE] = ACTIONS(718), - [anon_sym_AMP_AMP] = ACTIONS(718), - [anon_sym_LT] = ACTIONS(720), - [anon_sym_LT_EQ] = ACTIONS(718), - [anon_sym_GT] = ACTIONS(720), - [anon_sym_GT_EQ] = ACTIONS(718), - [anon_sym_EQ_EQ] = ACTIONS(718), - [anon_sym_BANG_EQ] = ACTIONS(718), - [anon_sym_STAR] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(718), - [anon_sym_STAR_STAR] = ACTIONS(718), - [anon_sym_CARET] = ACTIONS(718), - [aux_sym_binary_operator_token1] = ACTIONS(718), - [anon_sym_PIPE_GT] = ACTIONS(718), - [anon_sym_COLON] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(718), - [sym__hex_literal] = ACTIONS(718), - [sym__number_literal] = ACTIONS(720), - [anon_sym_SQUOTE] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(718), - [sym_dots] = ACTIONS(720), - [sym_dot_dot_i] = ACTIONS(720), - [sym_return] = ACTIONS(720), - [sym_next] = ACTIONS(720), - [sym_break] = ACTIONS(720), - [sym_true] = ACTIONS(720), - [sym_false] = ACTIONS(720), - [sym_null] = ACTIONS(720), - [sym_inf] = ACTIONS(720), - [sym_nan] = ACTIONS(720), - [anon_sym_NA] = ACTIONS(720), - [anon_sym_NA_integer_] = ACTIONS(720), - [anon_sym_NA_real_] = ACTIONS(720), - [anon_sym_NA_complex_] = ACTIONS(720), - [anon_sym_NA_character_] = ACTIONS(720), + [sym_identifier] = ACTIONS(718), + [anon_sym_BSLASH] = ACTIONS(720), + [anon_sym_function] = ACTIONS(718), + [anon_sym_EQ] = ACTIONS(718), + [anon_sym_if] = ACTIONS(718), + [anon_sym_for] = ACTIONS(718), + [anon_sym_while] = ACTIONS(718), + [anon_sym_repeat] = ACTIONS(718), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_TILDE] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(718), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_DASH] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(720), + [anon_sym_LT_LT_DASH] = ACTIONS(720), + [anon_sym_COLON_EQ] = ACTIONS(720), + [anon_sym_DASH_GT] = ACTIONS(718), + [anon_sym_DASH_GT_GT] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(718), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(718), + [anon_sym_LT_EQ] = ACTIONS(720), + [anon_sym_GT] = ACTIONS(718), + [anon_sym_GT_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(720), + [anon_sym_BANG_EQ] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(718), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_STAR_STAR] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [aux_sym_binary_operator_token1] = ACTIONS(720), + [anon_sym_PIPE_GT] = ACTIONS(720), + [anon_sym_COLON] = ACTIONS(718), + [anon_sym_DOLLAR] = ACTIONS(720), + [anon_sym_AT] = ACTIONS(720), + [sym__hex_literal] = ACTIONS(720), + [sym__number_literal] = ACTIONS(718), + [anon_sym_SQUOTE] = ACTIONS(720), + [anon_sym_DQUOTE] = ACTIONS(720), + [sym_dots] = ACTIONS(718), + [sym_dot_dot_i] = ACTIONS(718), + [sym_return] = ACTIONS(718), + [sym_next] = ACTIONS(718), + [sym_break] = ACTIONS(718), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_null] = ACTIONS(718), + [sym_inf] = ACTIONS(718), + [sym_nan] = ACTIONS(718), + [anon_sym_NA] = ACTIONS(718), + [anon_sym_NA_integer_] = ACTIONS(718), + [anon_sym_NA_real_] = ACTIONS(718), + [anon_sym_NA_complex_] = ACTIONS(718), + [anon_sym_NA_character_] = ACTIONS(718), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(718), - [sym__semicolon] = ACTIONS(718), - [sym__raw_string_literal] = ACTIONS(718), - [sym__external_else] = ACTIONS(718), - [sym__external_open_parenthesis] = ACTIONS(718), - [sym__external_open_brace] = ACTIONS(718), - [sym__external_open_bracket] = ACTIONS(718), - [sym__external_open_bracket2] = ACTIONS(718), + [sym__newline] = ACTIONS(720), + [sym__semicolon] = ACTIONS(720), + [sym__raw_string_literal] = ACTIONS(720), + [sym__external_else] = ACTIONS(720), + [sym__external_open_parenthesis] = ACTIONS(720), + [sym__external_open_brace] = ACTIONS(720), + [sym__external_close_brace] = ACTIONS(720), + [sym__external_open_bracket] = ACTIONS(720), + [sym__external_open_bracket2] = ACTIONS(720), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(722), - [sym_identifier] = ACTIONS(724), - [anon_sym_BSLASH] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_EQ] = ACTIONS(724), - [anon_sym_if] = ACTIONS(724), - [anon_sym_for] = ACTIONS(724), - [anon_sym_while] = ACTIONS(724), - [anon_sym_repeat] = ACTIONS(724), - [anon_sym_QMARK] = ACTIONS(722), - [anon_sym_TILDE] = ACTIONS(722), - [anon_sym_BANG] = ACTIONS(724), - [anon_sym_PLUS] = ACTIONS(722), - [anon_sym_DASH] = ACTIONS(724), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_LT_LT_DASH] = ACTIONS(722), - [anon_sym_COLON_EQ] = ACTIONS(722), - [anon_sym_DASH_GT] = ACTIONS(724), - [anon_sym_DASH_GT_GT] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(724), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(724), - [anon_sym_LT_EQ] = ACTIONS(722), - [anon_sym_GT] = ACTIONS(724), - [anon_sym_GT_EQ] = ACTIONS(722), - [anon_sym_EQ_EQ] = ACTIONS(722), - [anon_sym_BANG_EQ] = ACTIONS(722), - [anon_sym_STAR] = ACTIONS(724), - [anon_sym_SLASH] = ACTIONS(722), - [anon_sym_STAR_STAR] = ACTIONS(722), - [anon_sym_CARET] = ACTIONS(722), - [aux_sym_binary_operator_token1] = ACTIONS(722), - [anon_sym_PIPE_GT] = ACTIONS(722), - [anon_sym_COLON] = ACTIONS(724), - [anon_sym_DOLLAR] = ACTIONS(722), - [anon_sym_AT] = ACTIONS(722), - [sym__hex_literal] = ACTIONS(722), - [sym__number_literal] = ACTIONS(724), - [anon_sym_SQUOTE] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [sym_dots] = ACTIONS(724), - [sym_dot_dot_i] = ACTIONS(724), - [sym_return] = ACTIONS(724), - [sym_next] = ACTIONS(724), - [sym_break] = ACTIONS(724), - [sym_true] = ACTIONS(724), - [sym_false] = ACTIONS(724), - [sym_null] = ACTIONS(724), - [sym_inf] = ACTIONS(724), - [sym_nan] = ACTIONS(724), - [anon_sym_NA] = ACTIONS(724), - [anon_sym_NA_integer_] = ACTIONS(724), - [anon_sym_NA_real_] = ACTIONS(724), - [anon_sym_NA_complex_] = ACTIONS(724), - [anon_sym_NA_character_] = ACTIONS(724), + [sym_identifier] = ACTIONS(722), + [anon_sym_BSLASH] = ACTIONS(724), + [anon_sym_function] = ACTIONS(722), + [anon_sym_EQ] = ACTIONS(722), + [anon_sym_if] = ACTIONS(722), + [anon_sym_for] = ACTIONS(722), + [anon_sym_while] = ACTIONS(722), + [anon_sym_repeat] = ACTIONS(722), + [anon_sym_QMARK] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DASH] = ACTIONS(722), + [anon_sym_LT_DASH] = ACTIONS(724), + [anon_sym_LT_LT_DASH] = ACTIONS(724), + [anon_sym_COLON_EQ] = ACTIONS(724), + [anon_sym_DASH_GT] = ACTIONS(722), + [anon_sym_DASH_GT_GT] = ACTIONS(724), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_PIPE_PIPE] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(724), + [anon_sym_LT] = ACTIONS(722), + [anon_sym_LT_EQ] = ACTIONS(724), + [anon_sym_GT] = ACTIONS(722), + [anon_sym_GT_EQ] = ACTIONS(724), + [anon_sym_EQ_EQ] = ACTIONS(724), + [anon_sym_BANG_EQ] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_SLASH] = ACTIONS(724), + [anon_sym_STAR_STAR] = ACTIONS(724), + [anon_sym_CARET] = ACTIONS(724), + [aux_sym_binary_operator_token1] = ACTIONS(724), + [anon_sym_PIPE_GT] = ACTIONS(724), + [anon_sym_COLON] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(724), + [anon_sym_AT] = ACTIONS(724), + [sym__hex_literal] = ACTIONS(724), + [sym__number_literal] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [sym_dots] = ACTIONS(722), + [sym_dot_dot_i] = ACTIONS(722), + [sym_return] = ACTIONS(722), + [sym_next] = ACTIONS(722), + [sym_break] = ACTIONS(722), + [sym_true] = ACTIONS(722), + [sym_false] = ACTIONS(722), + [sym_null] = ACTIONS(722), + [sym_inf] = ACTIONS(722), + [sym_nan] = ACTIONS(722), + [anon_sym_NA] = ACTIONS(722), + [anon_sym_NA_integer_] = ACTIONS(722), + [anon_sym_NA_real_] = ACTIONS(722), + [anon_sym_NA_complex_] = ACTIONS(722), + [anon_sym_NA_character_] = ACTIONS(722), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(722), - [sym__semicolon] = ACTIONS(722), - [sym__raw_string_literal] = ACTIONS(722), - [sym__external_else] = ACTIONS(722), - [sym__external_open_parenthesis] = ACTIONS(722), - [sym__external_open_brace] = ACTIONS(722), - [sym__external_open_bracket] = ACTIONS(722), - [sym__external_open_bracket2] = ACTIONS(722), + [sym__newline] = ACTIONS(724), + [sym__semicolon] = ACTIONS(724), + [sym__raw_string_literal] = ACTIONS(724), + [sym__external_else] = ACTIONS(724), + [sym__external_open_parenthesis] = ACTIONS(724), + [sym__external_open_brace] = ACTIONS(724), + [sym__external_close_brace] = ACTIONS(724), + [sym__external_open_bracket] = ACTIONS(724), + [sym__external_open_bracket2] = ACTIONS(724), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(726), - [sym_identifier] = ACTIONS(728), - [anon_sym_BSLASH] = ACTIONS(726), - [anon_sym_function] = ACTIONS(728), - [anon_sym_EQ] = ACTIONS(728), - [anon_sym_if] = ACTIONS(728), - [anon_sym_for] = ACTIONS(728), - [anon_sym_while] = ACTIONS(728), - [anon_sym_repeat] = ACTIONS(728), - [anon_sym_QMARK] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [anon_sym_BANG] = ACTIONS(728), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_LT_DASH] = ACTIONS(726), - [anon_sym_LT_LT_DASH] = ACTIONS(726), - [anon_sym_COLON_EQ] = ACTIONS(726), - [anon_sym_DASH_GT] = ACTIONS(728), - [anon_sym_DASH_GT_GT] = ACTIONS(726), - [anon_sym_PIPE] = ACTIONS(728), - [anon_sym_AMP] = ACTIONS(728), - [anon_sym_PIPE_PIPE] = ACTIONS(726), - [anon_sym_AMP_AMP] = ACTIONS(726), - [anon_sym_LT] = ACTIONS(728), - [anon_sym_LT_EQ] = ACTIONS(726), - [anon_sym_GT] = ACTIONS(728), - [anon_sym_GT_EQ] = ACTIONS(726), - [anon_sym_EQ_EQ] = ACTIONS(726), - [anon_sym_BANG_EQ] = ACTIONS(726), - [anon_sym_STAR] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(726), - [anon_sym_STAR_STAR] = ACTIONS(726), - [anon_sym_CARET] = ACTIONS(726), - [aux_sym_binary_operator_token1] = ACTIONS(726), - [anon_sym_PIPE_GT] = ACTIONS(726), - [anon_sym_COLON] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(726), - [anon_sym_AT] = ACTIONS(726), - [sym__hex_literal] = ACTIONS(726), - [sym__number_literal] = ACTIONS(728), - [anon_sym_SQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(726), - [sym_dots] = ACTIONS(728), - [sym_dot_dot_i] = ACTIONS(728), - [sym_return] = ACTIONS(728), - [sym_next] = ACTIONS(728), - [sym_break] = ACTIONS(728), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_null] = ACTIONS(728), - [sym_inf] = ACTIONS(728), - [sym_nan] = ACTIONS(728), - [anon_sym_NA] = ACTIONS(728), - [anon_sym_NA_integer_] = ACTIONS(728), - [anon_sym_NA_real_] = ACTIONS(728), - [anon_sym_NA_complex_] = ACTIONS(728), - [anon_sym_NA_character_] = ACTIONS(728), + [sym_identifier] = ACTIONS(726), + [anon_sym_BSLASH] = ACTIONS(728), + [anon_sym_function] = ACTIONS(726), + [anon_sym_EQ] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_while] = ACTIONS(726), + [anon_sym_repeat] = ACTIONS(726), + [anon_sym_QMARK] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(728), + [anon_sym_BANG] = ACTIONS(726), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(726), + [anon_sym_LT_DASH] = ACTIONS(728), + [anon_sym_LT_LT_DASH] = ACTIONS(728), + [anon_sym_COLON_EQ] = ACTIONS(728), + [anon_sym_DASH_GT] = ACTIONS(726), + [anon_sym_DASH_GT_GT] = ACTIONS(728), + [anon_sym_PIPE] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(726), + [anon_sym_LT_EQ] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(726), + [anon_sym_GT_EQ] = ACTIONS(728), + [anon_sym_EQ_EQ] = ACTIONS(728), + [anon_sym_BANG_EQ] = ACTIONS(728), + [anon_sym_STAR] = ACTIONS(726), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_STAR_STAR] = ACTIONS(728), + [anon_sym_CARET] = ACTIONS(728), + [aux_sym_binary_operator_token1] = ACTIONS(728), + [anon_sym_PIPE_GT] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(728), + [anon_sym_AT] = ACTIONS(728), + [sym__hex_literal] = ACTIONS(728), + [sym__number_literal] = ACTIONS(726), + [anon_sym_SQUOTE] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [sym_dots] = ACTIONS(726), + [sym_dot_dot_i] = ACTIONS(726), + [sym_return] = ACTIONS(726), + [sym_next] = ACTIONS(726), + [sym_break] = ACTIONS(726), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_null] = ACTIONS(726), + [sym_inf] = ACTIONS(726), + [sym_nan] = ACTIONS(726), + [anon_sym_NA] = ACTIONS(726), + [anon_sym_NA_integer_] = ACTIONS(726), + [anon_sym_NA_real_] = ACTIONS(726), + [anon_sym_NA_complex_] = ACTIONS(726), + [anon_sym_NA_character_] = ACTIONS(726), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(726), - [sym__semicolon] = ACTIONS(726), - [sym__raw_string_literal] = ACTIONS(726), - [sym__external_else] = ACTIONS(726), - [sym__external_open_parenthesis] = ACTIONS(726), - [sym__external_open_brace] = ACTIONS(726), - [sym__external_open_bracket] = ACTIONS(726), - [sym__external_open_bracket2] = ACTIONS(726), + [sym__newline] = ACTIONS(728), + [sym__semicolon] = ACTIONS(728), + [sym__raw_string_literal] = ACTIONS(728), + [sym__external_else] = ACTIONS(728), + [sym__external_open_parenthesis] = ACTIONS(728), + [sym__external_open_brace] = ACTIONS(728), + [sym__external_close_brace] = ACTIONS(728), + [sym__external_open_bracket] = ACTIONS(728), + [sym__external_open_bracket2] = ACTIONS(728), }, [339] = { [sym_identifier] = ACTIONS(730), @@ -31194,220 +31194,697 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NA_complex_] = ACTIONS(736), [anon_sym_NA_character_] = ACTIONS(736), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(734), - [sym__semicolon] = ACTIONS(734), - [sym__raw_string_literal] = ACTIONS(734), - [sym__external_else] = ACTIONS(734), - [sym__external_open_parenthesis] = ACTIONS(734), - [sym__external_open_brace] = ACTIONS(734), - [sym__external_open_bracket] = ACTIONS(734), - [sym__external_open_bracket2] = ACTIONS(734), + [sym__newline] = ACTIONS(734), + [sym__semicolon] = ACTIONS(734), + [sym__raw_string_literal] = ACTIONS(734), + [sym__external_else] = ACTIONS(734), + [sym__external_open_parenthesis] = ACTIONS(734), + [sym__external_open_brace] = ACTIONS(734), + [sym__external_open_bracket] = ACTIONS(734), + [sym__external_open_bracket2] = ACTIONS(734), + }, + [341] = { + [sym_identifier] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(740), + [anon_sym_function] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_if] = ACTIONS(738), + [anon_sym_for] = ACTIONS(738), + [anon_sym_while] = ACTIONS(738), + [anon_sym_repeat] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(740), + [anon_sym_LT_LT_DASH] = ACTIONS(740), + [anon_sym_COLON_EQ] = ACTIONS(740), + [anon_sym_DASH_GT] = ACTIONS(738), + [anon_sym_DASH_GT_GT] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), + [anon_sym_PIPE_PIPE] = ACTIONS(740), + [anon_sym_AMP_AMP] = ACTIONS(740), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(740), + [anon_sym_BANG_EQ] = ACTIONS(740), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_STAR_STAR] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(740), + [aux_sym_binary_operator_token1] = ACTIONS(740), + [anon_sym_PIPE_GT] = ACTIONS(740), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(740), + [sym__hex_literal] = ACTIONS(740), + [sym__number_literal] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [sym_dots] = ACTIONS(738), + [sym_dot_dot_i] = ACTIONS(738), + [sym_return] = ACTIONS(738), + [sym_next] = ACTIONS(738), + [sym_break] = ACTIONS(738), + [sym_true] = ACTIONS(738), + [sym_false] = ACTIONS(738), + [sym_null] = ACTIONS(738), + [sym_inf] = ACTIONS(738), + [sym_nan] = ACTIONS(738), + [anon_sym_NA] = ACTIONS(738), + [anon_sym_NA_integer_] = ACTIONS(738), + [anon_sym_NA_real_] = ACTIONS(738), + [anon_sym_NA_complex_] = ACTIONS(738), + [anon_sym_NA_character_] = ACTIONS(738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(740), + [sym__semicolon] = ACTIONS(740), + [sym__raw_string_literal] = ACTIONS(740), + [sym__external_else] = ACTIONS(740), + [sym__external_open_parenthesis] = ACTIONS(740), + [sym__external_open_brace] = ACTIONS(740), + [sym__external_close_brace] = ACTIONS(740), + [sym__external_open_bracket] = ACTIONS(740), + [sym__external_open_bracket2] = ACTIONS(740), + }, + [342] = { + [sym_identifier] = ACTIONS(742), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_function] = ACTIONS(742), + [anon_sym_EQ] = ACTIONS(742), + [anon_sym_if] = ACTIONS(742), + [anon_sym_for] = ACTIONS(742), + [anon_sym_while] = ACTIONS(742), + [anon_sym_repeat] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_LT_DASH] = ACTIONS(744), + [anon_sym_LT_LT_DASH] = ACTIONS(744), + [anon_sym_COLON_EQ] = ACTIONS(744), + [anon_sym_DASH_GT] = ACTIONS(742), + [anon_sym_DASH_GT_GT] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE_PIPE] = ACTIONS(744), + [anon_sym_AMP_AMP] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(742), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(742), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [aux_sym_binary_operator_token1] = ACTIONS(744), + [anon_sym_PIPE_GT] = ACTIONS(744), + [anon_sym_COLON] = ACTIONS(742), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_AT] = ACTIONS(744), + [sym__hex_literal] = ACTIONS(744), + [sym__number_literal] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [sym_dots] = ACTIONS(742), + [sym_dot_dot_i] = ACTIONS(742), + [sym_return] = ACTIONS(742), + [sym_next] = ACTIONS(742), + [sym_break] = ACTIONS(742), + [sym_true] = ACTIONS(742), + [sym_false] = ACTIONS(742), + [sym_null] = ACTIONS(742), + [sym_inf] = ACTIONS(742), + [sym_nan] = ACTIONS(742), + [anon_sym_NA] = ACTIONS(742), + [anon_sym_NA_integer_] = ACTIONS(742), + [anon_sym_NA_real_] = ACTIONS(742), + [anon_sym_NA_complex_] = ACTIONS(742), + [anon_sym_NA_character_] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(744), + [sym__semicolon] = ACTIONS(744), + [sym__raw_string_literal] = ACTIONS(744), + [sym__external_else] = ACTIONS(744), + [sym__external_open_parenthesis] = ACTIONS(744), + [sym__external_open_brace] = ACTIONS(744), + [sym__external_close_brace] = ACTIONS(744), + [sym__external_open_bracket] = ACTIONS(744), + [sym__external_open_bracket2] = ACTIONS(744), + }, + [343] = { + [sym_identifier] = ACTIONS(746), + [anon_sym_BSLASH] = ACTIONS(748), + [anon_sym_function] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(746), + [anon_sym_if] = ACTIONS(746), + [anon_sym_for] = ACTIONS(746), + [anon_sym_while] = ACTIONS(746), + [anon_sym_repeat] = ACTIONS(746), + [anon_sym_QMARK] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(748), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(746), + [anon_sym_LT_DASH] = ACTIONS(748), + [anon_sym_LT_LT_DASH] = ACTIONS(748), + [anon_sym_COLON_EQ] = ACTIONS(748), + [anon_sym_DASH_GT] = ACTIONS(746), + [anon_sym_DASH_GT_GT] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(746), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_PIPE_PIPE] = ACTIONS(748), + [anon_sym_AMP_AMP] = ACTIONS(748), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT_EQ] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(746), + [anon_sym_GT_EQ] = ACTIONS(748), + [anon_sym_EQ_EQ] = ACTIONS(748), + [anon_sym_BANG_EQ] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_SLASH] = ACTIONS(748), + [anon_sym_STAR_STAR] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [aux_sym_binary_operator_token1] = ACTIONS(748), + [anon_sym_PIPE_GT] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(746), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(748), + [sym__hex_literal] = ACTIONS(748), + [sym__number_literal] = ACTIONS(746), + [anon_sym_SQUOTE] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [sym_dots] = ACTIONS(746), + [sym_dot_dot_i] = ACTIONS(746), + [sym_return] = ACTIONS(746), + [sym_next] = ACTIONS(746), + [sym_break] = ACTIONS(746), + [sym_true] = ACTIONS(746), + [sym_false] = ACTIONS(746), + [sym_null] = ACTIONS(746), + [sym_inf] = ACTIONS(746), + [sym_nan] = ACTIONS(746), + [anon_sym_NA] = ACTIONS(746), + [anon_sym_NA_integer_] = ACTIONS(746), + [anon_sym_NA_real_] = ACTIONS(746), + [anon_sym_NA_complex_] = ACTIONS(746), + [anon_sym_NA_character_] = ACTIONS(746), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(748), + [sym__semicolon] = ACTIONS(748), + [sym__raw_string_literal] = ACTIONS(748), + [sym__external_else] = ACTIONS(748), + [sym__external_open_parenthesis] = ACTIONS(748), + [sym__external_open_brace] = ACTIONS(748), + [sym__external_close_brace] = ACTIONS(748), + [sym__external_open_bracket] = ACTIONS(748), + [sym__external_open_bracket2] = ACTIONS(748), + }, + [344] = { + [sym_identifier] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(703), + [anon_sym_function] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_if] = ACTIONS(705), + [anon_sym_for] = ACTIONS(705), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(703), + [anon_sym_TILDE] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_LT_DASH] = ACTIONS(703), + [anon_sym_LT_LT_DASH] = ACTIONS(703), + [anon_sym_COLON_EQ] = ACTIONS(703), + [anon_sym_DASH_GT] = ACTIONS(705), + [anon_sym_DASH_GT_GT] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(703), + [anon_sym_AMP_AMP] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(705), + [anon_sym_LT_EQ] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_GT_EQ] = ACTIONS(703), + [anon_sym_EQ_EQ] = ACTIONS(703), + [anon_sym_BANG_EQ] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(703), + [anon_sym_STAR_STAR] = ACTIONS(703), + [anon_sym_CARET] = ACTIONS(703), + [aux_sym_binary_operator_token1] = ACTIONS(703), + [anon_sym_PIPE_GT] = ACTIONS(703), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_AT] = ACTIONS(703), + [sym__hex_literal] = ACTIONS(703), + [sym__number_literal] = ACTIONS(705), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_DQUOTE] = ACTIONS(703), + [sym_dots] = ACTIONS(705), + [sym_dot_dot_i] = ACTIONS(705), + [sym_return] = ACTIONS(705), + [sym_next] = ACTIONS(705), + [sym_break] = ACTIONS(705), + [sym_true] = ACTIONS(705), + [sym_false] = ACTIONS(705), + [sym_null] = ACTIONS(705), + [sym_inf] = ACTIONS(705), + [sym_nan] = ACTIONS(705), + [anon_sym_NA] = ACTIONS(705), + [anon_sym_NA_integer_] = ACTIONS(705), + [anon_sym_NA_real_] = ACTIONS(705), + [anon_sym_NA_complex_] = ACTIONS(705), + [anon_sym_NA_character_] = ACTIONS(705), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(703), + [sym__semicolon] = ACTIONS(703), + [sym__raw_string_literal] = ACTIONS(703), + [sym__external_else] = ACTIONS(703), + [sym__external_open_parenthesis] = ACTIONS(703), + [sym__external_open_brace] = ACTIONS(703), + [sym__external_close_brace] = ACTIONS(703), + [sym__external_open_bracket] = ACTIONS(703), + [sym__external_open_bracket2] = ACTIONS(703), + }, + [345] = { + [sym_identifier] = ACTIONS(750), + [anon_sym_BSLASH] = ACTIONS(752), + [anon_sym_function] = ACTIONS(750), + [anon_sym_EQ] = ACTIONS(750), + [anon_sym_if] = ACTIONS(750), + [anon_sym_for] = ACTIONS(750), + [anon_sym_while] = ACTIONS(750), + [anon_sym_repeat] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(752), + [anon_sym_TILDE] = ACTIONS(752), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_LT_DASH] = ACTIONS(752), + [anon_sym_LT_LT_DASH] = ACTIONS(752), + [anon_sym_COLON_EQ] = ACTIONS(752), + [anon_sym_DASH_GT] = ACTIONS(750), + [anon_sym_DASH_GT_GT] = ACTIONS(752), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(750), + [anon_sym_PIPE_PIPE] = ACTIONS(752), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_LT] = ACTIONS(750), + [anon_sym_LT_EQ] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(750), + [anon_sym_GT_EQ] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(752), + [anon_sym_BANG_EQ] = ACTIONS(752), + [anon_sym_STAR] = ACTIONS(750), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_STAR_STAR] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [aux_sym_binary_operator_token1] = ACTIONS(752), + [anon_sym_PIPE_GT] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(752), + [sym__hex_literal] = ACTIONS(752), + [sym__number_literal] = ACTIONS(750), + [anon_sym_SQUOTE] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym_dots] = ACTIONS(750), + [sym_dot_dot_i] = ACTIONS(750), + [sym_return] = ACTIONS(750), + [sym_next] = ACTIONS(750), + [sym_break] = ACTIONS(750), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_null] = ACTIONS(750), + [sym_inf] = ACTIONS(750), + [sym_nan] = ACTIONS(750), + [anon_sym_NA] = ACTIONS(750), + [anon_sym_NA_integer_] = ACTIONS(750), + [anon_sym_NA_real_] = ACTIONS(750), + [anon_sym_NA_complex_] = ACTIONS(750), + [anon_sym_NA_character_] = ACTIONS(750), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(752), + [sym__semicolon] = ACTIONS(752), + [sym__raw_string_literal] = ACTIONS(752), + [sym__external_else] = ACTIONS(752), + [sym__external_open_parenthesis] = ACTIONS(752), + [sym__external_open_brace] = ACTIONS(752), + [sym__external_close_brace] = ACTIONS(752), + [sym__external_open_bracket] = ACTIONS(752), + [sym__external_open_bracket2] = ACTIONS(752), + }, + [346] = { + [sym_identifier] = ACTIONS(716), + [anon_sym_BSLASH] = ACTIONS(714), + [anon_sym_function] = ACTIONS(716), + [anon_sym_EQ] = ACTIONS(716), + [anon_sym_if] = ACTIONS(716), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(716), + [anon_sym_repeat] = ACTIONS(716), + [anon_sym_QMARK] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(714), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_PLUS] = ACTIONS(714), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_LT_DASH] = ACTIONS(714), + [anon_sym_LT_LT_DASH] = ACTIONS(714), + [anon_sym_COLON_EQ] = ACTIONS(714), + [anon_sym_DASH_GT] = ACTIONS(716), + [anon_sym_DASH_GT_GT] = ACTIONS(714), + [anon_sym_PIPE] = ACTIONS(716), + [anon_sym_AMP] = ACTIONS(716), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_AMP_AMP] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(716), + [anon_sym_LT_EQ] = ACTIONS(714), + [anon_sym_GT] = ACTIONS(716), + [anon_sym_GT_EQ] = ACTIONS(714), + [anon_sym_EQ_EQ] = ACTIONS(714), + [anon_sym_BANG_EQ] = ACTIONS(714), + [anon_sym_STAR] = ACTIONS(716), + [anon_sym_SLASH] = ACTIONS(714), + [anon_sym_STAR_STAR] = ACTIONS(714), + [anon_sym_CARET] = ACTIONS(714), + [aux_sym_binary_operator_token1] = ACTIONS(714), + [anon_sym_PIPE_GT] = ACTIONS(714), + [anon_sym_COLON] = ACTIONS(716), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_AT] = ACTIONS(714), + [sym__hex_literal] = ACTIONS(714), + [sym__number_literal] = ACTIONS(716), + [anon_sym_SQUOTE] = ACTIONS(714), + [anon_sym_DQUOTE] = ACTIONS(714), + [sym_dots] = ACTIONS(716), + [sym_dot_dot_i] = ACTIONS(716), + [sym_return] = ACTIONS(716), + [sym_next] = ACTIONS(716), + [sym_break] = ACTIONS(716), + [sym_true] = ACTIONS(716), + [sym_false] = ACTIONS(716), + [sym_null] = ACTIONS(716), + [sym_inf] = ACTIONS(716), + [sym_nan] = ACTIONS(716), + [anon_sym_NA] = ACTIONS(716), + [anon_sym_NA_integer_] = ACTIONS(716), + [anon_sym_NA_real_] = ACTIONS(716), + [anon_sym_NA_complex_] = ACTIONS(716), + [anon_sym_NA_character_] = ACTIONS(716), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(714), + [sym__semicolon] = ACTIONS(714), + [sym__raw_string_literal] = ACTIONS(714), + [sym__external_else] = ACTIONS(714), + [sym__external_open_parenthesis] = ACTIONS(714), + [sym__external_open_brace] = ACTIONS(714), + [sym__external_close_brace] = ACTIONS(714), + [sym__external_open_bracket] = ACTIONS(714), + [sym__external_open_bracket2] = ACTIONS(714), }, - [341] = { - [ts_builtin_sym_end] = ACTIONS(738), - [sym_identifier] = ACTIONS(740), - [anon_sym_BSLASH] = ACTIONS(738), - [anon_sym_function] = ACTIONS(740), - [anon_sym_EQ] = ACTIONS(740), - [anon_sym_if] = ACTIONS(740), - [anon_sym_for] = ACTIONS(740), - [anon_sym_while] = ACTIONS(740), - [anon_sym_repeat] = ACTIONS(740), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_PLUS] = ACTIONS(738), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_LT_DASH] = ACTIONS(738), - [anon_sym_LT_LT_DASH] = ACTIONS(738), - [anon_sym_COLON_EQ] = ACTIONS(738), - [anon_sym_DASH_GT] = ACTIONS(740), - [anon_sym_DASH_GT_GT] = ACTIONS(738), - [anon_sym_PIPE] = ACTIONS(740), - [anon_sym_AMP] = ACTIONS(740), - [anon_sym_PIPE_PIPE] = ACTIONS(738), - [anon_sym_AMP_AMP] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_LT_EQ] = ACTIONS(738), - [anon_sym_GT] = ACTIONS(740), - [anon_sym_GT_EQ] = ACTIONS(738), - [anon_sym_EQ_EQ] = ACTIONS(738), - [anon_sym_BANG_EQ] = ACTIONS(738), - [anon_sym_STAR] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(738), - [anon_sym_STAR_STAR] = ACTIONS(738), - [anon_sym_CARET] = ACTIONS(738), - [aux_sym_binary_operator_token1] = ACTIONS(738), - [anon_sym_PIPE_GT] = ACTIONS(738), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(738), - [anon_sym_AT] = ACTIONS(738), - [sym__hex_literal] = ACTIONS(738), - [sym__number_literal] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(738), - [anon_sym_DQUOTE] = ACTIONS(738), - [sym_dots] = ACTIONS(740), - [sym_dot_dot_i] = ACTIONS(740), - [sym_return] = ACTIONS(740), - [sym_next] = ACTIONS(740), - [sym_break] = ACTIONS(740), - [sym_true] = ACTIONS(740), - [sym_false] = ACTIONS(740), - [sym_null] = ACTIONS(740), - [sym_inf] = ACTIONS(740), - [sym_nan] = ACTIONS(740), - [anon_sym_NA] = ACTIONS(740), - [anon_sym_NA_integer_] = ACTIONS(740), - [anon_sym_NA_real_] = ACTIONS(740), - [anon_sym_NA_complex_] = ACTIONS(740), - [anon_sym_NA_character_] = ACTIONS(740), + [347] = { + [sym_identifier] = ACTIONS(754), + [anon_sym_BSLASH] = ACTIONS(756), + [anon_sym_function] = ACTIONS(754), + [anon_sym_EQ] = ACTIONS(754), + [anon_sym_if] = ACTIONS(754), + [anon_sym_for] = ACTIONS(754), + [anon_sym_while] = ACTIONS(754), + [anon_sym_repeat] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_TILDE] = ACTIONS(756), + [anon_sym_BANG] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_LT_DASH] = ACTIONS(756), + [anon_sym_LT_LT_DASH] = ACTIONS(756), + [anon_sym_COLON_EQ] = ACTIONS(756), + [anon_sym_DASH_GT] = ACTIONS(754), + [anon_sym_DASH_GT_GT] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(754), + [anon_sym_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(754), + [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(754), + [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [aux_sym_binary_operator_token1] = ACTIONS(756), + [anon_sym_PIPE_GT] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(754), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_AT] = ACTIONS(756), + [sym__hex_literal] = ACTIONS(756), + [sym__number_literal] = ACTIONS(754), + [anon_sym_SQUOTE] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym_dots] = ACTIONS(754), + [sym_dot_dot_i] = ACTIONS(754), + [sym_return] = ACTIONS(754), + [sym_next] = ACTIONS(754), + [sym_break] = ACTIONS(754), + [sym_true] = ACTIONS(754), + [sym_false] = ACTIONS(754), + [sym_null] = ACTIONS(754), + [sym_inf] = ACTIONS(754), + [sym_nan] = ACTIONS(754), + [anon_sym_NA] = ACTIONS(754), + [anon_sym_NA_integer_] = ACTIONS(754), + [anon_sym_NA_real_] = ACTIONS(754), + [anon_sym_NA_complex_] = ACTIONS(754), + [anon_sym_NA_character_] = ACTIONS(754), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(738), - [sym__semicolon] = ACTIONS(738), - [sym__raw_string_literal] = ACTIONS(738), - [sym__external_else] = ACTIONS(738), - [sym__external_open_parenthesis] = ACTIONS(738), - [sym__external_open_brace] = ACTIONS(738), - [sym__external_open_bracket] = ACTIONS(738), - [sym__external_open_bracket2] = ACTIONS(738), + [sym__newline] = ACTIONS(756), + [sym__semicolon] = ACTIONS(756), + [sym__raw_string_literal] = ACTIONS(756), + [sym__external_else] = ACTIONS(756), + [sym__external_open_parenthesis] = ACTIONS(756), + [sym__external_open_brace] = ACTIONS(756), + [sym__external_close_brace] = ACTIONS(756), + [sym__external_open_bracket] = ACTIONS(756), + [sym__external_open_bracket2] = ACTIONS(756), }, - [342] = { - [sym_identifier] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [anon_sym_function] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_if] = ACTIONS(742), - [anon_sym_for] = ACTIONS(742), - [anon_sym_while] = ACTIONS(742), - [anon_sym_repeat] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(744), - [anon_sym_TILDE] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_LT_DASH] = ACTIONS(744), - [anon_sym_LT_LT_DASH] = ACTIONS(744), - [anon_sym_COLON_EQ] = ACTIONS(744), - [anon_sym_DASH_GT] = ACTIONS(742), - [anon_sym_DASH_GT_GT] = ACTIONS(744), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_PIPE_PIPE] = ACTIONS(744), - [anon_sym_AMP_AMP] = ACTIONS(744), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_LT_EQ] = ACTIONS(744), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_GT_EQ] = ACTIONS(744), - [anon_sym_EQ_EQ] = ACTIONS(744), - [anon_sym_BANG_EQ] = ACTIONS(744), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(744), - [anon_sym_STAR_STAR] = ACTIONS(744), - [anon_sym_CARET] = ACTIONS(744), - [aux_sym_binary_operator_token1] = ACTIONS(744), - [anon_sym_PIPE_GT] = ACTIONS(744), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(744), - [anon_sym_AT] = ACTIONS(744), - [sym__hex_literal] = ACTIONS(744), - [sym__number_literal] = ACTIONS(742), - [anon_sym_SQUOTE] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(744), - [sym_dots] = ACTIONS(742), - [sym_dot_dot_i] = ACTIONS(742), - [sym_return] = ACTIONS(742), - [sym_next] = ACTIONS(742), - [sym_break] = ACTIONS(742), - [sym_true] = ACTIONS(742), - [sym_false] = ACTIONS(742), - [sym_null] = ACTIONS(742), - [sym_inf] = ACTIONS(742), - [sym_nan] = ACTIONS(742), - [anon_sym_NA] = ACTIONS(742), - [anon_sym_NA_integer_] = ACTIONS(742), - [anon_sym_NA_real_] = ACTIONS(742), - [anon_sym_NA_complex_] = ACTIONS(742), - [anon_sym_NA_character_] = ACTIONS(742), + [348] = { + [sym_identifier] = ACTIONS(758), + [anon_sym_BSLASH] = ACTIONS(760), + [anon_sym_function] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [anon_sym_repeat] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_TILDE] = ACTIONS(760), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_LT_DASH] = ACTIONS(760), + [anon_sym_LT_LT_DASH] = ACTIONS(760), + [anon_sym_COLON_EQ] = ACTIONS(760), + [anon_sym_DASH_GT] = ACTIONS(758), + [anon_sym_DASH_GT_GT] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(760), + [anon_sym_STAR_STAR] = ACTIONS(760), + [anon_sym_CARET] = ACTIONS(760), + [aux_sym_binary_operator_token1] = ACTIONS(760), + [anon_sym_PIPE_GT] = ACTIONS(760), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [sym__hex_literal] = ACTIONS(760), + [sym__number_literal] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym_dots] = ACTIONS(758), + [sym_dot_dot_i] = ACTIONS(758), + [sym_return] = ACTIONS(758), + [sym_next] = ACTIONS(758), + [sym_break] = ACTIONS(758), + [sym_true] = ACTIONS(758), + [sym_false] = ACTIONS(758), + [sym_null] = ACTIONS(758), + [sym_inf] = ACTIONS(758), + [sym_nan] = ACTIONS(758), + [anon_sym_NA] = ACTIONS(758), + [anon_sym_NA_integer_] = ACTIONS(758), + [anon_sym_NA_real_] = ACTIONS(758), + [anon_sym_NA_complex_] = ACTIONS(758), + [anon_sym_NA_character_] = ACTIONS(758), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(744), - [sym__semicolon] = ACTIONS(744), - [sym__raw_string_literal] = ACTIONS(744), - [sym__external_else] = ACTIONS(744), - [sym__external_open_parenthesis] = ACTIONS(744), - [sym__external_open_brace] = ACTIONS(744), - [sym__external_close_brace] = ACTIONS(744), - [sym__external_open_bracket] = ACTIONS(744), - [sym__external_open_bracket2] = ACTIONS(744), + [sym__newline] = ACTIONS(760), + [sym__semicolon] = ACTIONS(760), + [sym__raw_string_literal] = ACTIONS(760), + [sym__external_else] = ACTIONS(760), + [sym__external_open_parenthesis] = ACTIONS(760), + [sym__external_open_brace] = ACTIONS(760), + [sym__external_close_brace] = ACTIONS(760), + [sym__external_open_bracket] = ACTIONS(760), + [sym__external_open_bracket2] = ACTIONS(760), }, - [343] = { - [ts_builtin_sym_end] = ACTIONS(746), - [sym_identifier] = ACTIONS(748), - [anon_sym_BSLASH] = ACTIONS(746), - [anon_sym_function] = ACTIONS(748), - [anon_sym_EQ] = ACTIONS(748), - [anon_sym_if] = ACTIONS(748), - [anon_sym_for] = ACTIONS(748), - [anon_sym_while] = ACTIONS(748), - [anon_sym_repeat] = ACTIONS(748), - [anon_sym_QMARK] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LT_DASH] = ACTIONS(746), - [anon_sym_LT_LT_DASH] = ACTIONS(746), - [anon_sym_COLON_EQ] = ACTIONS(746), - [anon_sym_DASH_GT] = ACTIONS(748), - [anon_sym_DASH_GT_GT] = ACTIONS(746), - [anon_sym_PIPE] = ACTIONS(748), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE_PIPE] = ACTIONS(746), - [anon_sym_AMP_AMP] = ACTIONS(746), - [anon_sym_LT] = ACTIONS(748), - [anon_sym_LT_EQ] = ACTIONS(746), - [anon_sym_GT] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(746), - [anon_sym_EQ_EQ] = ACTIONS(746), - [anon_sym_BANG_EQ] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(746), - [anon_sym_STAR_STAR] = ACTIONS(746), - [anon_sym_CARET] = ACTIONS(746), - [aux_sym_binary_operator_token1] = ACTIONS(746), - [anon_sym_PIPE_GT] = ACTIONS(746), - [anon_sym_COLON] = ACTIONS(748), - [anon_sym_DOLLAR] = ACTIONS(746), - [anon_sym_AT] = ACTIONS(746), - [sym__hex_literal] = ACTIONS(746), - [sym__number_literal] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(746), - [anon_sym_DQUOTE] = ACTIONS(746), - [sym_dots] = ACTIONS(748), - [sym_dot_dot_i] = ACTIONS(748), - [sym_return] = ACTIONS(748), - [sym_next] = ACTIONS(748), - [sym_break] = ACTIONS(748), - [sym_true] = ACTIONS(748), - [sym_false] = ACTIONS(748), - [sym_null] = ACTIONS(748), - [sym_inf] = ACTIONS(748), - [sym_nan] = ACTIONS(748), - [anon_sym_NA] = ACTIONS(748), - [anon_sym_NA_integer_] = ACTIONS(748), - [anon_sym_NA_real_] = ACTIONS(748), - [anon_sym_NA_complex_] = ACTIONS(748), - [anon_sym_NA_character_] = ACTIONS(748), + [349] = { + [sym_identifier] = ACTIONS(762), + [anon_sym_BSLASH] = ACTIONS(764), + [anon_sym_function] = ACTIONS(762), + [anon_sym_EQ] = ACTIONS(762), + [anon_sym_if] = ACTIONS(762), + [anon_sym_for] = ACTIONS(762), + [anon_sym_while] = ACTIONS(762), + [anon_sym_repeat] = ACTIONS(762), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_LT_DASH] = ACTIONS(764), + [anon_sym_LT_LT_DASH] = ACTIONS(764), + [anon_sym_COLON_EQ] = ACTIONS(764), + [anon_sym_DASH_GT] = ACTIONS(762), + [anon_sym_DASH_GT_GT] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(762), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(762), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(762), + [anon_sym_SLASH] = ACTIONS(764), + [anon_sym_STAR_STAR] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(764), + [aux_sym_binary_operator_token1] = ACTIONS(764), + [anon_sym_PIPE_GT] = ACTIONS(764), + [anon_sym_COLON] = ACTIONS(762), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [sym__hex_literal] = ACTIONS(764), + [sym__number_literal] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym_dots] = ACTIONS(762), + [sym_dot_dot_i] = ACTIONS(762), + [sym_return] = ACTIONS(762), + [sym_next] = ACTIONS(762), + [sym_break] = ACTIONS(762), + [sym_true] = ACTIONS(762), + [sym_false] = ACTIONS(762), + [sym_null] = ACTIONS(762), + [sym_inf] = ACTIONS(762), + [sym_nan] = ACTIONS(762), + [anon_sym_NA] = ACTIONS(762), + [anon_sym_NA_integer_] = ACTIONS(762), + [anon_sym_NA_real_] = ACTIONS(762), + [anon_sym_NA_complex_] = ACTIONS(762), + [anon_sym_NA_character_] = ACTIONS(762), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(746), - [sym__semicolon] = ACTIONS(746), - [sym__raw_string_literal] = ACTIONS(746), - [sym__external_else] = ACTIONS(746), - [sym__external_open_parenthesis] = ACTIONS(746), - [sym__external_open_brace] = ACTIONS(746), - [sym__external_open_bracket] = ACTIONS(746), - [sym__external_open_bracket2] = ACTIONS(746), + [sym__newline] = ACTIONS(764), + [sym__semicolon] = ACTIONS(764), + [sym__raw_string_literal] = ACTIONS(764), + [sym__external_else] = ACTIONS(764), + [sym__external_open_parenthesis] = ACTIONS(764), + [sym__external_open_brace] = ACTIONS(764), + [sym__external_close_brace] = ACTIONS(764), + [sym__external_open_bracket] = ACTIONS(764), + [sym__external_open_bracket2] = ACTIONS(764), }, - [344] = { + [350] = { + [sym_identifier] = ACTIONS(709), + [anon_sym_BSLASH] = ACTIONS(707), + [anon_sym_function] = ACTIONS(709), + [anon_sym_EQ] = ACTIONS(709), + [anon_sym_if] = ACTIONS(709), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(709), + [anon_sym_repeat] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(707), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_COLON_EQ] = ACTIONS(707), + [anon_sym_DASH_GT] = ACTIONS(709), + [anon_sym_DASH_GT_GT] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(709), + [anon_sym_LT_EQ] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(709), + [anon_sym_GT_EQ] = ACTIONS(707), + [anon_sym_EQ_EQ] = ACTIONS(707), + [anon_sym_BANG_EQ] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_STAR_STAR] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [aux_sym_binary_operator_token1] = ACTIONS(707), + [anon_sym_PIPE_GT] = ACTIONS(707), + [anon_sym_COLON] = ACTIONS(709), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_AT] = ACTIONS(707), + [sym__hex_literal] = ACTIONS(707), + [sym__number_literal] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [sym_dots] = ACTIONS(709), + [sym_dot_dot_i] = ACTIONS(709), + [sym_return] = ACTIONS(709), + [sym_next] = ACTIONS(709), + [sym_break] = ACTIONS(709), + [sym_true] = ACTIONS(709), + [sym_false] = ACTIONS(709), + [sym_null] = ACTIONS(709), + [sym_inf] = ACTIONS(709), + [sym_nan] = ACTIONS(709), + [anon_sym_NA] = ACTIONS(709), + [anon_sym_NA_integer_] = ACTIONS(709), + [anon_sym_NA_real_] = ACTIONS(709), + [anon_sym_NA_complex_] = ACTIONS(709), + [anon_sym_NA_character_] = ACTIONS(709), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(707), + [sym__semicolon] = ACTIONS(707), + [sym__raw_string_literal] = ACTIONS(707), + [sym__external_else] = ACTIONS(707), + [sym__external_open_parenthesis] = ACTIONS(707), + [sym__external_open_brace] = ACTIONS(707), + [sym__external_close_brace] = ACTIONS(707), + [sym__external_open_bracket] = ACTIONS(707), + [sym__external_open_bracket2] = ACTIONS(707), + }, + [351] = { + [ts_builtin_sym_end] = ACTIONS(752), [sym_identifier] = ACTIONS(750), [anon_sym_BSLASH] = ACTIONS(752), [anon_sym_function] = ACTIONS(750), @@ -31471,555 +31948,622 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_else] = ACTIONS(752), [sym__external_open_parenthesis] = ACTIONS(752), [sym__external_open_brace] = ACTIONS(752), - [sym__external_close_brace] = ACTIONS(752), [sym__external_open_bracket] = ACTIONS(752), [sym__external_open_bracket2] = ACTIONS(752), }, - [345] = { - [ts_builtin_sym_end] = ACTIONS(754), - [sym_identifier] = ACTIONS(756), - [anon_sym_BSLASH] = ACTIONS(754), - [anon_sym_function] = ACTIONS(756), - [anon_sym_EQ] = ACTIONS(756), - [anon_sym_if] = ACTIONS(756), - [anon_sym_for] = ACTIONS(756), - [anon_sym_while] = ACTIONS(756), - [anon_sym_repeat] = ACTIONS(756), - [anon_sym_QMARK] = ACTIONS(754), - [anon_sym_TILDE] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_PLUS] = ACTIONS(754), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_LT_DASH] = ACTIONS(754), - [anon_sym_LT_LT_DASH] = ACTIONS(754), - [anon_sym_COLON_EQ] = ACTIONS(754), - [anon_sym_DASH_GT] = ACTIONS(756), - [anon_sym_DASH_GT_GT] = ACTIONS(754), - [anon_sym_PIPE] = ACTIONS(756), - [anon_sym_AMP] = ACTIONS(756), - [anon_sym_PIPE_PIPE] = ACTIONS(754), - [anon_sym_AMP_AMP] = ACTIONS(754), - [anon_sym_LT] = ACTIONS(756), - [anon_sym_LT_EQ] = ACTIONS(754), - [anon_sym_GT] = ACTIONS(756), - [anon_sym_GT_EQ] = ACTIONS(754), - [anon_sym_EQ_EQ] = ACTIONS(754), - [anon_sym_BANG_EQ] = ACTIONS(754), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(754), - [anon_sym_STAR_STAR] = ACTIONS(754), - [anon_sym_CARET] = ACTIONS(754), - [aux_sym_binary_operator_token1] = ACTIONS(754), - [anon_sym_PIPE_GT] = ACTIONS(754), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_DOLLAR] = ACTIONS(754), - [anon_sym_AT] = ACTIONS(754), - [sym__hex_literal] = ACTIONS(754), - [sym__number_literal] = ACTIONS(756), - [anon_sym_SQUOTE] = ACTIONS(754), - [anon_sym_DQUOTE] = ACTIONS(754), - [sym_dots] = ACTIONS(756), - [sym_dot_dot_i] = ACTIONS(756), - [sym_return] = ACTIONS(756), - [sym_next] = ACTIONS(756), - [sym_break] = ACTIONS(756), - [sym_true] = ACTIONS(756), - [sym_false] = ACTIONS(756), - [sym_null] = ACTIONS(756), - [sym_inf] = ACTIONS(756), - [sym_nan] = ACTIONS(756), - [anon_sym_NA] = ACTIONS(756), - [anon_sym_NA_integer_] = ACTIONS(756), - [anon_sym_NA_real_] = ACTIONS(756), - [anon_sym_NA_complex_] = ACTIONS(756), - [anon_sym_NA_character_] = ACTIONS(756), + [352] = { + [sym_identifier] = ACTIONS(766), + [anon_sym_BSLASH] = ACTIONS(768), + [anon_sym_function] = ACTIONS(766), + [anon_sym_EQ] = ACTIONS(766), + [anon_sym_if] = ACTIONS(766), + [anon_sym_for] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [anon_sym_repeat] = ACTIONS(766), + [anon_sym_QMARK] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_LT_DASH] = ACTIONS(768), + [anon_sym_LT_LT_DASH] = ACTIONS(768), + [anon_sym_COLON_EQ] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(766), + [anon_sym_DASH_GT_GT] = ACTIONS(768), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE_PIPE] = ACTIONS(768), + [anon_sym_AMP_AMP] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(768), + [anon_sym_STAR_STAR] = ACTIONS(768), + [anon_sym_CARET] = ACTIONS(768), + [aux_sym_binary_operator_token1] = ACTIONS(768), + [anon_sym_PIPE_GT] = ACTIONS(768), + [anon_sym_COLON] = ACTIONS(766), + [anon_sym_DOLLAR] = ACTIONS(768), + [anon_sym_AT] = ACTIONS(768), + [sym__hex_literal] = ACTIONS(768), + [sym__number_literal] = ACTIONS(766), + [anon_sym_SQUOTE] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(768), + [sym_dots] = ACTIONS(766), + [sym_dot_dot_i] = ACTIONS(766), + [sym_return] = ACTIONS(766), + [sym_next] = ACTIONS(766), + [sym_break] = ACTIONS(766), + [sym_true] = ACTIONS(766), + [sym_false] = ACTIONS(766), + [sym_null] = ACTIONS(766), + [sym_inf] = ACTIONS(766), + [sym_nan] = ACTIONS(766), + [anon_sym_NA] = ACTIONS(766), + [anon_sym_NA_integer_] = ACTIONS(766), + [anon_sym_NA_real_] = ACTIONS(766), + [anon_sym_NA_complex_] = ACTIONS(766), + [anon_sym_NA_character_] = ACTIONS(766), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(754), - [sym__semicolon] = ACTIONS(754), - [sym__raw_string_literal] = ACTIONS(754), - [sym__external_else] = ACTIONS(754), - [sym__external_open_parenthesis] = ACTIONS(754), - [sym__external_open_brace] = ACTIONS(754), - [sym__external_open_bracket] = ACTIONS(754), - [sym__external_open_bracket2] = ACTIONS(754), + [sym__newline] = ACTIONS(768), + [sym__semicolon] = ACTIONS(768), + [sym__raw_string_literal] = ACTIONS(768), + [sym__external_else] = ACTIONS(768), + [sym__external_open_parenthesis] = ACTIONS(768), + [sym__external_open_brace] = ACTIONS(768), + [sym__external_close_brace] = ACTIONS(768), + [sym__external_open_bracket] = ACTIONS(768), + [sym__external_open_bracket2] = ACTIONS(768), }, - [346] = { - [ts_builtin_sym_end] = ACTIONS(758), - [sym_identifier] = ACTIONS(760), - [anon_sym_BSLASH] = ACTIONS(758), - [anon_sym_function] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(760), - [anon_sym_if] = ACTIONS(760), - [anon_sym_for] = ACTIONS(760), - [anon_sym_while] = ACTIONS(760), - [anon_sym_repeat] = ACTIONS(760), - [anon_sym_QMARK] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(758), - [anon_sym_BANG] = ACTIONS(760), - [anon_sym_PLUS] = ACTIONS(758), - [anon_sym_DASH] = ACTIONS(760), - [anon_sym_LT_DASH] = ACTIONS(758), - [anon_sym_LT_LT_DASH] = ACTIONS(758), - [anon_sym_COLON_EQ] = ACTIONS(758), - [anon_sym_DASH_GT] = ACTIONS(760), - [anon_sym_DASH_GT_GT] = ACTIONS(758), - [anon_sym_PIPE] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(758), - [anon_sym_AMP_AMP] = ACTIONS(758), - [anon_sym_LT] = ACTIONS(760), - [anon_sym_LT_EQ] = ACTIONS(758), - [anon_sym_GT] = ACTIONS(760), - [anon_sym_GT_EQ] = ACTIONS(758), - [anon_sym_EQ_EQ] = ACTIONS(758), - [anon_sym_BANG_EQ] = ACTIONS(758), - [anon_sym_STAR] = ACTIONS(760), - [anon_sym_SLASH] = ACTIONS(758), - [anon_sym_STAR_STAR] = ACTIONS(758), - [anon_sym_CARET] = ACTIONS(758), - [aux_sym_binary_operator_token1] = ACTIONS(758), - [anon_sym_PIPE_GT] = ACTIONS(758), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(758), - [anon_sym_AT] = ACTIONS(758), - [sym__hex_literal] = ACTIONS(758), - [sym__number_literal] = ACTIONS(760), - [anon_sym_SQUOTE] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(758), - [sym_dots] = ACTIONS(760), - [sym_dot_dot_i] = ACTIONS(760), - [sym_return] = ACTIONS(760), - [sym_next] = ACTIONS(760), - [sym_break] = ACTIONS(760), - [sym_true] = ACTIONS(760), - [sym_false] = ACTIONS(760), - [sym_null] = ACTIONS(760), - [sym_inf] = ACTIONS(760), - [sym_nan] = ACTIONS(760), - [anon_sym_NA] = ACTIONS(760), - [anon_sym_NA_integer_] = ACTIONS(760), - [anon_sym_NA_real_] = ACTIONS(760), - [anon_sym_NA_complex_] = ACTIONS(760), - [anon_sym_NA_character_] = ACTIONS(760), + [353] = { + [sym_identifier] = ACTIONS(770), + [anon_sym_BSLASH] = ACTIONS(772), + [anon_sym_function] = ACTIONS(770), + [anon_sym_EQ] = ACTIONS(770), + [anon_sym_if] = ACTIONS(770), + [anon_sym_for] = ACTIONS(770), + [anon_sym_while] = ACTIONS(770), + [anon_sym_repeat] = ACTIONS(770), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_LT_DASH] = ACTIONS(772), + [anon_sym_LT_LT_DASH] = ACTIONS(772), + [anon_sym_COLON_EQ] = ACTIONS(772), + [anon_sym_DASH_GT] = ACTIONS(770), + [anon_sym_DASH_GT_GT] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_STAR_STAR] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), + [aux_sym_binary_operator_token1] = ACTIONS(772), + [anon_sym_PIPE_GT] = ACTIONS(772), + [anon_sym_COLON] = ACTIONS(770), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_AT] = ACTIONS(772), + [sym__hex_literal] = ACTIONS(772), + [sym__number_literal] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym_dots] = ACTIONS(770), + [sym_dot_dot_i] = ACTIONS(770), + [sym_return] = ACTIONS(770), + [sym_next] = ACTIONS(770), + [sym_break] = ACTIONS(770), + [sym_true] = ACTIONS(770), + [sym_false] = ACTIONS(770), + [sym_null] = ACTIONS(770), + [sym_inf] = ACTIONS(770), + [sym_nan] = ACTIONS(770), + [anon_sym_NA] = ACTIONS(770), + [anon_sym_NA_integer_] = ACTIONS(770), + [anon_sym_NA_real_] = ACTIONS(770), + [anon_sym_NA_complex_] = ACTIONS(770), + [anon_sym_NA_character_] = ACTIONS(770), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(758), - [sym__semicolon] = ACTIONS(758), - [sym__raw_string_literal] = ACTIONS(758), - [sym__external_else] = ACTIONS(758), - [sym__external_open_parenthesis] = ACTIONS(758), - [sym__external_open_brace] = ACTIONS(758), - [sym__external_open_bracket] = ACTIONS(758), - [sym__external_open_bracket2] = ACTIONS(758), + [sym__newline] = ACTIONS(772), + [sym__semicolon] = ACTIONS(772), + [sym__raw_string_literal] = ACTIONS(772), + [sym__external_else] = ACTIONS(772), + [sym__external_open_parenthesis] = ACTIONS(772), + [sym__external_open_brace] = ACTIONS(772), + [sym__external_close_brace] = ACTIONS(772), + [sym__external_open_bracket] = ACTIONS(772), + [sym__external_open_bracket2] = ACTIONS(772), }, - [347] = { - [ts_builtin_sym_end] = ACTIONS(762), - [sym_identifier] = ACTIONS(764), - [anon_sym_BSLASH] = ACTIONS(762), - [anon_sym_function] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(764), - [anon_sym_if] = ACTIONS(764), - [anon_sym_for] = ACTIONS(764), - [anon_sym_while] = ACTIONS(764), - [anon_sym_repeat] = ACTIONS(764), - [anon_sym_QMARK] = ACTIONS(762), - [anon_sym_TILDE] = ACTIONS(762), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(762), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_LT_DASH] = ACTIONS(762), - [anon_sym_LT_LT_DASH] = ACTIONS(762), - [anon_sym_COLON_EQ] = ACTIONS(762), - [anon_sym_DASH_GT] = ACTIONS(764), - [anon_sym_DASH_GT_GT] = ACTIONS(762), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(764), - [anon_sym_LT_EQ] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(762), - [anon_sym_EQ_EQ] = ACTIONS(762), - [anon_sym_BANG_EQ] = ACTIONS(762), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_STAR_STAR] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [aux_sym_binary_operator_token1] = ACTIONS(762), - [anon_sym_PIPE_GT] = ACTIONS(762), - [anon_sym_COLON] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(762), - [anon_sym_AT] = ACTIONS(762), - [sym__hex_literal] = ACTIONS(762), - [sym__number_literal] = ACTIONS(764), - [anon_sym_SQUOTE] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [sym_dots] = ACTIONS(764), - [sym_dot_dot_i] = ACTIONS(764), - [sym_return] = ACTIONS(764), - [sym_next] = ACTIONS(764), - [sym_break] = ACTIONS(764), - [sym_true] = ACTIONS(764), - [sym_false] = ACTIONS(764), - [sym_null] = ACTIONS(764), - [sym_inf] = ACTIONS(764), - [sym_nan] = ACTIONS(764), - [anon_sym_NA] = ACTIONS(764), - [anon_sym_NA_integer_] = ACTIONS(764), - [anon_sym_NA_real_] = ACTIONS(764), - [anon_sym_NA_complex_] = ACTIONS(764), - [anon_sym_NA_character_] = ACTIONS(764), + [354] = { + [aux_sym_function_definition_repeat1] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(659), + [sym_identifier] = ACTIONS(661), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_function] = ACTIONS(661), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [anon_sym_repeat] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(659), + [anon_sym_LT_LT_DASH] = ACTIONS(659), + [anon_sym_COLON_EQ] = ACTIONS(659), + [anon_sym_DASH_GT] = ACTIONS(661), + [anon_sym_DASH_GT_GT] = ACTIONS(659), + [anon_sym_PIPE] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_LT_EQ] = ACTIONS(659), + [anon_sym_GT] = ACTIONS(661), + [anon_sym_GT_EQ] = ACTIONS(659), + [anon_sym_EQ_EQ] = ACTIONS(659), + [anon_sym_BANG_EQ] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(659), + [anon_sym_STAR_STAR] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(659), + [aux_sym_binary_operator_token1] = ACTIONS(659), + [anon_sym_PIPE_GT] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(661), + [anon_sym_DOLLAR] = ACTIONS(659), + [anon_sym_AT] = ACTIONS(659), + [sym__hex_literal] = ACTIONS(659), + [sym__number_literal] = ACTIONS(661), + [anon_sym_SQUOTE] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(659), + [sym_dots] = ACTIONS(661), + [sym_dot_dot_i] = ACTIONS(661), + [sym_return] = ACTIONS(661), + [sym_next] = ACTIONS(661), + [sym_break] = ACTIONS(661), + [sym_true] = ACTIONS(661), + [sym_false] = ACTIONS(661), + [sym_null] = ACTIONS(661), + [sym_inf] = ACTIONS(661), + [sym_nan] = ACTIONS(661), + [anon_sym_NA] = ACTIONS(661), + [anon_sym_NA_integer_] = ACTIONS(661), + [anon_sym_NA_real_] = ACTIONS(661), + [anon_sym_NA_complex_] = ACTIONS(661), + [anon_sym_NA_character_] = ACTIONS(661), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(762), - [sym__semicolon] = ACTIONS(762), - [sym__raw_string_literal] = ACTIONS(762), - [sym__external_else] = ACTIONS(762), - [sym__external_open_parenthesis] = ACTIONS(762), - [sym__external_open_brace] = ACTIONS(762), - [sym__external_open_bracket] = ACTIONS(762), - [sym__external_open_bracket2] = ACTIONS(762), + [sym__newline] = ACTIONS(774), + [sym__semicolon] = ACTIONS(659), + [sym__raw_string_literal] = ACTIONS(659), + [sym__external_open_parenthesis] = ACTIONS(659), + [sym__external_open_brace] = ACTIONS(659), + [sym__external_open_bracket] = ACTIONS(659), + [sym__external_open_bracket2] = ACTIONS(659), }, - [348] = { - [ts_builtin_sym_end] = ACTIONS(766), - [sym_identifier] = ACTIONS(768), - [anon_sym_BSLASH] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(768), - [anon_sym_if] = ACTIONS(768), - [anon_sym_for] = ACTIONS(768), - [anon_sym_while] = ACTIONS(768), - [anon_sym_repeat] = ACTIONS(768), - [anon_sym_QMARK] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(766), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_LT_DASH] = ACTIONS(766), - [anon_sym_LT_LT_DASH] = ACTIONS(766), - [anon_sym_COLON_EQ] = ACTIONS(766), - [anon_sym_DASH_GT] = ACTIONS(768), - [anon_sym_DASH_GT_GT] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(768), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_LT] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(766), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_GT_EQ] = ACTIONS(766), - [anon_sym_EQ_EQ] = ACTIONS(766), - [anon_sym_BANG_EQ] = ACTIONS(766), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_STAR_STAR] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(766), - [aux_sym_binary_operator_token1] = ACTIONS(766), - [anon_sym_PIPE_GT] = ACTIONS(766), - [anon_sym_COLON] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(766), - [anon_sym_AT] = ACTIONS(766), - [sym__hex_literal] = ACTIONS(766), - [sym__number_literal] = ACTIONS(768), - [anon_sym_SQUOTE] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [sym_dots] = ACTIONS(768), - [sym_dot_dot_i] = ACTIONS(768), - [sym_return] = ACTIONS(768), - [sym_next] = ACTIONS(768), - [sym_break] = ACTIONS(768), - [sym_true] = ACTIONS(768), - [sym_false] = ACTIONS(768), - [sym_null] = ACTIONS(768), - [sym_inf] = ACTIONS(768), - [sym_nan] = ACTIONS(768), - [anon_sym_NA] = ACTIONS(768), - [anon_sym_NA_integer_] = ACTIONS(768), - [anon_sym_NA_real_] = ACTIONS(768), - [anon_sym_NA_complex_] = ACTIONS(768), - [anon_sym_NA_character_] = ACTIONS(768), + [355] = { + [ts_builtin_sym_end] = ACTIONS(756), + [sym_identifier] = ACTIONS(754), + [anon_sym_BSLASH] = ACTIONS(756), + [anon_sym_function] = ACTIONS(754), + [anon_sym_EQ] = ACTIONS(754), + [anon_sym_if] = ACTIONS(754), + [anon_sym_for] = ACTIONS(754), + [anon_sym_while] = ACTIONS(754), + [anon_sym_repeat] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_TILDE] = ACTIONS(756), + [anon_sym_BANG] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_LT_DASH] = ACTIONS(756), + [anon_sym_LT_LT_DASH] = ACTIONS(756), + [anon_sym_COLON_EQ] = ACTIONS(756), + [anon_sym_DASH_GT] = ACTIONS(754), + [anon_sym_DASH_GT_GT] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(754), + [anon_sym_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(754), + [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(754), + [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [aux_sym_binary_operator_token1] = ACTIONS(756), + [anon_sym_PIPE_GT] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(754), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_AT] = ACTIONS(756), + [sym__hex_literal] = ACTIONS(756), + [sym__number_literal] = ACTIONS(754), + [anon_sym_SQUOTE] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym_dots] = ACTIONS(754), + [sym_dot_dot_i] = ACTIONS(754), + [sym_return] = ACTIONS(754), + [sym_next] = ACTIONS(754), + [sym_break] = ACTIONS(754), + [sym_true] = ACTIONS(754), + [sym_false] = ACTIONS(754), + [sym_null] = ACTIONS(754), + [sym_inf] = ACTIONS(754), + [sym_nan] = ACTIONS(754), + [anon_sym_NA] = ACTIONS(754), + [anon_sym_NA_integer_] = ACTIONS(754), + [anon_sym_NA_real_] = ACTIONS(754), + [anon_sym_NA_complex_] = ACTIONS(754), + [anon_sym_NA_character_] = ACTIONS(754), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(766), - [sym__semicolon] = ACTIONS(766), - [sym__raw_string_literal] = ACTIONS(766), - [sym__external_else] = ACTIONS(766), - [sym__external_open_parenthesis] = ACTIONS(766), - [sym__external_open_brace] = ACTIONS(766), - [sym__external_open_bracket] = ACTIONS(766), - [sym__external_open_bracket2] = ACTIONS(766), + [sym__newline] = ACTIONS(756), + [sym__semicolon] = ACTIONS(756), + [sym__raw_string_literal] = ACTIONS(756), + [sym__external_else] = ACTIONS(756), + [sym__external_open_parenthesis] = ACTIONS(756), + [sym__external_open_brace] = ACTIONS(756), + [sym__external_open_bracket] = ACTIONS(756), + [sym__external_open_bracket2] = ACTIONS(756), }, - [349] = { - [aux_sym_function_definition_repeat1] = STATE(349), - [sym_identifier] = ACTIONS(657), - [anon_sym_BSLASH] = ACTIONS(655), - [anon_sym_function] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_if] = ACTIONS(657), - [anon_sym_for] = ACTIONS(657), - [anon_sym_while] = ACTIONS(657), - [anon_sym_repeat] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(655), - [anon_sym_TILDE] = ACTIONS(655), - [anon_sym_BANG] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(657), - [anon_sym_LT_DASH] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(655), - [anon_sym_COLON_EQ] = ACTIONS(655), - [anon_sym_DASH_GT] = ACTIONS(657), - [anon_sym_DASH_GT_GT] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_PIPE_PIPE] = ACTIONS(655), - [anon_sym_AMP_AMP] = ACTIONS(655), - [anon_sym_LT] = ACTIONS(657), - [anon_sym_LT_EQ] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_GT_EQ] = ACTIONS(655), - [anon_sym_EQ_EQ] = ACTIONS(655), - [anon_sym_BANG_EQ] = ACTIONS(655), - [anon_sym_STAR] = ACTIONS(657), - [anon_sym_SLASH] = ACTIONS(655), - [anon_sym_STAR_STAR] = ACTIONS(655), - [anon_sym_CARET] = ACTIONS(655), - [aux_sym_binary_operator_token1] = ACTIONS(655), - [anon_sym_PIPE_GT] = ACTIONS(655), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(655), - [anon_sym_AT] = ACTIONS(655), - [sym__hex_literal] = ACTIONS(655), - [sym__number_literal] = ACTIONS(657), - [anon_sym_SQUOTE] = ACTIONS(655), - [anon_sym_DQUOTE] = ACTIONS(655), - [sym_dots] = ACTIONS(657), - [sym_dot_dot_i] = ACTIONS(657), - [sym_return] = ACTIONS(657), - [sym_next] = ACTIONS(657), - [sym_break] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_null] = ACTIONS(657), - [sym_inf] = ACTIONS(657), - [sym_nan] = ACTIONS(657), - [anon_sym_NA] = ACTIONS(657), - [anon_sym_NA_integer_] = ACTIONS(657), - [anon_sym_NA_real_] = ACTIONS(657), - [anon_sym_NA_complex_] = ACTIONS(657), - [anon_sym_NA_character_] = ACTIONS(657), + [356] = { + [ts_builtin_sym_end] = ACTIONS(720), + [sym_identifier] = ACTIONS(718), + [anon_sym_BSLASH] = ACTIONS(720), + [anon_sym_function] = ACTIONS(718), + [anon_sym_EQ] = ACTIONS(718), + [anon_sym_if] = ACTIONS(718), + [anon_sym_for] = ACTIONS(718), + [anon_sym_while] = ACTIONS(718), + [anon_sym_repeat] = ACTIONS(718), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_TILDE] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(718), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_DASH] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(720), + [anon_sym_LT_LT_DASH] = ACTIONS(720), + [anon_sym_COLON_EQ] = ACTIONS(720), + [anon_sym_DASH_GT] = ACTIONS(718), + [anon_sym_DASH_GT_GT] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(718), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(718), + [anon_sym_LT_EQ] = ACTIONS(720), + [anon_sym_GT] = ACTIONS(718), + [anon_sym_GT_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(720), + [anon_sym_BANG_EQ] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(718), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_STAR_STAR] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [aux_sym_binary_operator_token1] = ACTIONS(720), + [anon_sym_PIPE_GT] = ACTIONS(720), + [anon_sym_COLON] = ACTIONS(718), + [anon_sym_DOLLAR] = ACTIONS(720), + [anon_sym_AT] = ACTIONS(720), + [sym__hex_literal] = ACTIONS(720), + [sym__number_literal] = ACTIONS(718), + [anon_sym_SQUOTE] = ACTIONS(720), + [anon_sym_DQUOTE] = ACTIONS(720), + [sym_dots] = ACTIONS(718), + [sym_dot_dot_i] = ACTIONS(718), + [sym_return] = ACTIONS(718), + [sym_next] = ACTIONS(718), + [sym_break] = ACTIONS(718), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_null] = ACTIONS(718), + [sym_inf] = ACTIONS(718), + [sym_nan] = ACTIONS(718), + [anon_sym_NA] = ACTIONS(718), + [anon_sym_NA_integer_] = ACTIONS(718), + [anon_sym_NA_real_] = ACTIONS(718), + [anon_sym_NA_complex_] = ACTIONS(718), + [anon_sym_NA_character_] = ACTIONS(718), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(770), - [sym__semicolon] = ACTIONS(655), - [sym__raw_string_literal] = ACTIONS(655), - [sym__external_open_parenthesis] = ACTIONS(655), - [sym__external_open_brace] = ACTIONS(655), - [sym__external_close_brace] = ACTIONS(655), - [sym__external_open_bracket] = ACTIONS(655), - [sym__external_open_bracket2] = ACTIONS(655), + [sym__newline] = ACTIONS(720), + [sym__semicolon] = ACTIONS(720), + [sym__raw_string_literal] = ACTIONS(720), + [sym__external_else] = ACTIONS(720), + [sym__external_open_parenthesis] = ACTIONS(720), + [sym__external_open_brace] = ACTIONS(720), + [sym__external_open_bracket] = ACTIONS(720), + [sym__external_open_bracket2] = ACTIONS(720), }, - [350] = { - [sym_identifier] = ACTIONS(773), - [anon_sym_BSLASH] = ACTIONS(775), - [anon_sym_function] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(773), - [anon_sym_if] = ACTIONS(773), - [anon_sym_for] = ACTIONS(773), - [anon_sym_while] = ACTIONS(773), - [anon_sym_repeat] = ACTIONS(773), - [anon_sym_QMARK] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_LT_DASH] = ACTIONS(775), - [anon_sym_LT_LT_DASH] = ACTIONS(775), - [anon_sym_COLON_EQ] = ACTIONS(775), - [anon_sym_DASH_GT] = ACTIONS(773), - [anon_sym_DASH_GT_GT] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_LT_EQ] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_GT_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [aux_sym_binary_operator_token1] = ACTIONS(775), - [anon_sym_PIPE_GT] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(775), - [anon_sym_AT] = ACTIONS(775), - [sym__hex_literal] = ACTIONS(775), - [sym__number_literal] = ACTIONS(773), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(775), - [sym_dots] = ACTIONS(773), - [sym_dot_dot_i] = ACTIONS(773), - [sym_return] = ACTIONS(773), - [sym_next] = ACTIONS(773), - [sym_break] = ACTIONS(773), - [sym_true] = ACTIONS(773), - [sym_false] = ACTIONS(773), - [sym_null] = ACTIONS(773), - [sym_inf] = ACTIONS(773), - [sym_nan] = ACTIONS(773), - [anon_sym_NA] = ACTIONS(773), - [anon_sym_NA_integer_] = ACTIONS(773), - [anon_sym_NA_real_] = ACTIONS(773), - [anon_sym_NA_complex_] = ACTIONS(773), - [anon_sym_NA_character_] = ACTIONS(773), + [357] = { + [ts_builtin_sym_end] = ACTIONS(724), + [sym_identifier] = ACTIONS(722), + [anon_sym_BSLASH] = ACTIONS(724), + [anon_sym_function] = ACTIONS(722), + [anon_sym_EQ] = ACTIONS(722), + [anon_sym_if] = ACTIONS(722), + [anon_sym_for] = ACTIONS(722), + [anon_sym_while] = ACTIONS(722), + [anon_sym_repeat] = ACTIONS(722), + [anon_sym_QMARK] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DASH] = ACTIONS(722), + [anon_sym_LT_DASH] = ACTIONS(724), + [anon_sym_LT_LT_DASH] = ACTIONS(724), + [anon_sym_COLON_EQ] = ACTIONS(724), + [anon_sym_DASH_GT] = ACTIONS(722), + [anon_sym_DASH_GT_GT] = ACTIONS(724), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_PIPE_PIPE] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(724), + [anon_sym_LT] = ACTIONS(722), + [anon_sym_LT_EQ] = ACTIONS(724), + [anon_sym_GT] = ACTIONS(722), + [anon_sym_GT_EQ] = ACTIONS(724), + [anon_sym_EQ_EQ] = ACTIONS(724), + [anon_sym_BANG_EQ] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_SLASH] = ACTIONS(724), + [anon_sym_STAR_STAR] = ACTIONS(724), + [anon_sym_CARET] = ACTIONS(724), + [aux_sym_binary_operator_token1] = ACTIONS(724), + [anon_sym_PIPE_GT] = ACTIONS(724), + [anon_sym_COLON] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(724), + [anon_sym_AT] = ACTIONS(724), + [sym__hex_literal] = ACTIONS(724), + [sym__number_literal] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [sym_dots] = ACTIONS(722), + [sym_dot_dot_i] = ACTIONS(722), + [sym_return] = ACTIONS(722), + [sym_next] = ACTIONS(722), + [sym_break] = ACTIONS(722), + [sym_true] = ACTIONS(722), + [sym_false] = ACTIONS(722), + [sym_null] = ACTIONS(722), + [sym_inf] = ACTIONS(722), + [sym_nan] = ACTIONS(722), + [anon_sym_NA] = ACTIONS(722), + [anon_sym_NA_integer_] = ACTIONS(722), + [anon_sym_NA_real_] = ACTIONS(722), + [anon_sym_NA_complex_] = ACTIONS(722), + [anon_sym_NA_character_] = ACTIONS(722), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(775), - [sym__semicolon] = ACTIONS(775), - [sym__raw_string_literal] = ACTIONS(775), - [sym__external_else] = ACTIONS(775), - [sym__external_open_parenthesis] = ACTIONS(775), - [sym__external_open_brace] = ACTIONS(775), - [sym__external_close_brace] = ACTIONS(775), - [sym__external_open_bracket] = ACTIONS(775), - [sym__external_open_bracket2] = ACTIONS(775), + [sym__newline] = ACTIONS(724), + [sym__semicolon] = ACTIONS(724), + [sym__raw_string_literal] = ACTIONS(724), + [sym__external_else] = ACTIONS(724), + [sym__external_open_parenthesis] = ACTIONS(724), + [sym__external_open_brace] = ACTIONS(724), + [sym__external_open_bracket] = ACTIONS(724), + [sym__external_open_bracket2] = ACTIONS(724), }, - [351] = { - [sym_identifier] = ACTIONS(777), - [anon_sym_BSLASH] = ACTIONS(779), - [anon_sym_function] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(777), - [anon_sym_if] = ACTIONS(777), - [anon_sym_for] = ACTIONS(777), - [anon_sym_while] = ACTIONS(777), - [anon_sym_repeat] = ACTIONS(777), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_BANG] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_LT_DASH] = ACTIONS(779), - [anon_sym_LT_LT_DASH] = ACTIONS(779), - [anon_sym_COLON_EQ] = ACTIONS(779), - [anon_sym_DASH_GT] = ACTIONS(777), - [anon_sym_DASH_GT_GT] = ACTIONS(779), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_AMP] = ACTIONS(777), - [anon_sym_PIPE_PIPE] = ACTIONS(779), - [anon_sym_AMP_AMP] = ACTIONS(779), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_LT_EQ] = ACTIONS(779), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_EQ] = ACTIONS(779), - [anon_sym_EQ_EQ] = ACTIONS(779), - [anon_sym_BANG_EQ] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(779), - [anon_sym_STAR_STAR] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [aux_sym_binary_operator_token1] = ACTIONS(779), - [anon_sym_PIPE_GT] = ACTIONS(779), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(779), - [anon_sym_AT] = ACTIONS(779), - [sym__hex_literal] = ACTIONS(779), - [sym__number_literal] = ACTIONS(777), - [anon_sym_SQUOTE] = ACTIONS(779), - [anon_sym_DQUOTE] = ACTIONS(779), - [sym_dots] = ACTIONS(777), - [sym_dot_dot_i] = ACTIONS(777), - [sym_return] = ACTIONS(777), - [sym_next] = ACTIONS(777), - [sym_break] = ACTIONS(777), - [sym_true] = ACTIONS(777), - [sym_false] = ACTIONS(777), - [sym_null] = ACTIONS(777), - [sym_inf] = ACTIONS(777), - [sym_nan] = ACTIONS(777), - [anon_sym_NA] = ACTIONS(777), - [anon_sym_NA_integer_] = ACTIONS(777), - [anon_sym_NA_real_] = ACTIONS(777), - [anon_sym_NA_complex_] = ACTIONS(777), - [anon_sym_NA_character_] = ACTIONS(777), + [358] = { + [ts_builtin_sym_end] = ACTIONS(732), + [sym_identifier] = ACTIONS(730), + [anon_sym_BSLASH] = ACTIONS(732), + [anon_sym_function] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(730), + [anon_sym_if] = ACTIONS(730), + [anon_sym_for] = ACTIONS(730), + [anon_sym_while] = ACTIONS(730), + [anon_sym_repeat] = ACTIONS(730), + [anon_sym_QMARK] = ACTIONS(732), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(730), + [anon_sym_PLUS] = ACTIONS(732), + [anon_sym_DASH] = ACTIONS(730), + [anon_sym_LT_DASH] = ACTIONS(732), + [anon_sym_LT_LT_DASH] = ACTIONS(732), + [anon_sym_COLON_EQ] = ACTIONS(732), + [anon_sym_DASH_GT] = ACTIONS(730), + [anon_sym_DASH_GT_GT] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(730), + [anon_sym_PIPE_PIPE] = ACTIONS(732), + [anon_sym_AMP_AMP] = ACTIONS(732), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(732), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(732), + [anon_sym_EQ_EQ] = ACTIONS(732), + [anon_sym_BANG_EQ] = ACTIONS(732), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_SLASH] = ACTIONS(732), + [anon_sym_STAR_STAR] = ACTIONS(732), + [anon_sym_CARET] = ACTIONS(732), + [aux_sym_binary_operator_token1] = ACTIONS(732), + [anon_sym_PIPE_GT] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(732), + [anon_sym_AT] = ACTIONS(732), + [sym__hex_literal] = ACTIONS(732), + [sym__number_literal] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(732), + [sym_dots] = ACTIONS(730), + [sym_dot_dot_i] = ACTIONS(730), + [sym_return] = ACTIONS(730), + [sym_next] = ACTIONS(730), + [sym_break] = ACTIONS(730), + [sym_true] = ACTIONS(730), + [sym_false] = ACTIONS(730), + [sym_null] = ACTIONS(730), + [sym_inf] = ACTIONS(730), + [sym_nan] = ACTIONS(730), + [anon_sym_NA] = ACTIONS(730), + [anon_sym_NA_integer_] = ACTIONS(730), + [anon_sym_NA_real_] = ACTIONS(730), + [anon_sym_NA_complex_] = ACTIONS(730), + [anon_sym_NA_character_] = ACTIONS(730), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(779), - [sym__semicolon] = ACTIONS(779), - [sym__raw_string_literal] = ACTIONS(779), - [sym__external_else] = ACTIONS(779), - [sym__external_open_parenthesis] = ACTIONS(779), - [sym__external_open_brace] = ACTIONS(779), - [sym__external_close_brace] = ACTIONS(779), - [sym__external_open_bracket] = ACTIONS(779), - [sym__external_open_bracket2] = ACTIONS(779), + [sym__newline] = ACTIONS(732), + [sym__semicolon] = ACTIONS(732), + [sym__raw_string_literal] = ACTIONS(732), + [sym__external_else] = ACTIONS(732), + [sym__external_open_parenthesis] = ACTIONS(732), + [sym__external_open_brace] = ACTIONS(732), + [sym__external_open_bracket] = ACTIONS(732), + [sym__external_open_bracket2] = ACTIONS(732), }, - [352] = { - [sym_identifier] = ACTIONS(740), - [anon_sym_BSLASH] = ACTIONS(738), - [anon_sym_function] = ACTIONS(740), - [anon_sym_EQ] = ACTIONS(740), - [anon_sym_if] = ACTIONS(740), - [anon_sym_for] = ACTIONS(740), - [anon_sym_while] = ACTIONS(740), - [anon_sym_repeat] = ACTIONS(740), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_PLUS] = ACTIONS(738), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_LT_DASH] = ACTIONS(738), - [anon_sym_LT_LT_DASH] = ACTIONS(738), - [anon_sym_COLON_EQ] = ACTIONS(738), - [anon_sym_DASH_GT] = ACTIONS(740), - [anon_sym_DASH_GT_GT] = ACTIONS(738), - [anon_sym_PIPE] = ACTIONS(740), - [anon_sym_AMP] = ACTIONS(740), - [anon_sym_PIPE_PIPE] = ACTIONS(738), - [anon_sym_AMP_AMP] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_LT_EQ] = ACTIONS(738), - [anon_sym_GT] = ACTIONS(740), - [anon_sym_GT_EQ] = ACTIONS(738), - [anon_sym_EQ_EQ] = ACTIONS(738), - [anon_sym_BANG_EQ] = ACTIONS(738), - [anon_sym_STAR] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(738), - [anon_sym_STAR_STAR] = ACTIONS(738), - [anon_sym_CARET] = ACTIONS(738), - [aux_sym_binary_operator_token1] = ACTIONS(738), - [anon_sym_PIPE_GT] = ACTIONS(738), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(738), - [anon_sym_AT] = ACTIONS(738), - [sym__hex_literal] = ACTIONS(738), - [sym__number_literal] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(738), - [anon_sym_DQUOTE] = ACTIONS(738), - [sym_dots] = ACTIONS(740), - [sym_dot_dot_i] = ACTIONS(740), - [sym_return] = ACTIONS(740), - [sym_next] = ACTIONS(740), - [sym_break] = ACTIONS(740), - [sym_true] = ACTIONS(740), - [sym_false] = ACTIONS(740), - [sym_null] = ACTIONS(740), - [sym_inf] = ACTIONS(740), - [sym_nan] = ACTIONS(740), - [anon_sym_NA] = ACTIONS(740), - [anon_sym_NA_integer_] = ACTIONS(740), - [anon_sym_NA_real_] = ACTIONS(740), - [anon_sym_NA_complex_] = ACTIONS(740), - [anon_sym_NA_character_] = ACTIONS(740), + [359] = { + [ts_builtin_sym_end] = ACTIONS(760), + [sym_identifier] = ACTIONS(758), + [anon_sym_BSLASH] = ACTIONS(760), + [anon_sym_function] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [anon_sym_repeat] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_TILDE] = ACTIONS(760), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_LT_DASH] = ACTIONS(760), + [anon_sym_LT_LT_DASH] = ACTIONS(760), + [anon_sym_COLON_EQ] = ACTIONS(760), + [anon_sym_DASH_GT] = ACTIONS(758), + [anon_sym_DASH_GT_GT] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(760), + [anon_sym_STAR_STAR] = ACTIONS(760), + [anon_sym_CARET] = ACTIONS(760), + [aux_sym_binary_operator_token1] = ACTIONS(760), + [anon_sym_PIPE_GT] = ACTIONS(760), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [sym__hex_literal] = ACTIONS(760), + [sym__number_literal] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym_dots] = ACTIONS(758), + [sym_dot_dot_i] = ACTIONS(758), + [sym_return] = ACTIONS(758), + [sym_next] = ACTIONS(758), + [sym_break] = ACTIONS(758), + [sym_true] = ACTIONS(758), + [sym_false] = ACTIONS(758), + [sym_null] = ACTIONS(758), + [sym_inf] = ACTIONS(758), + [sym_nan] = ACTIONS(758), + [anon_sym_NA] = ACTIONS(758), + [anon_sym_NA_integer_] = ACTIONS(758), + [anon_sym_NA_real_] = ACTIONS(758), + [anon_sym_NA_complex_] = ACTIONS(758), + [anon_sym_NA_character_] = ACTIONS(758), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(738), - [sym__semicolon] = ACTIONS(738), - [sym__raw_string_literal] = ACTIONS(738), - [sym__external_else] = ACTIONS(738), - [sym__external_open_parenthesis] = ACTIONS(738), - [sym__external_open_brace] = ACTIONS(738), - [sym__external_close_brace] = ACTIONS(738), - [sym__external_open_bracket] = ACTIONS(738), - [sym__external_open_bracket2] = ACTIONS(738), + [sym__newline] = ACTIONS(760), + [sym__semicolon] = ACTIONS(760), + [sym__raw_string_literal] = ACTIONS(760), + [sym__external_else] = ACTIONS(760), + [sym__external_open_parenthesis] = ACTIONS(760), + [sym__external_open_brace] = ACTIONS(760), + [sym__external_open_bracket] = ACTIONS(760), + [sym__external_open_bracket2] = ACTIONS(760), }, - [353] = { + [360] = { + [ts_builtin_sym_end] = ACTIONS(728), + [sym_identifier] = ACTIONS(726), + [anon_sym_BSLASH] = ACTIONS(728), + [anon_sym_function] = ACTIONS(726), + [anon_sym_EQ] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_while] = ACTIONS(726), + [anon_sym_repeat] = ACTIONS(726), + [anon_sym_QMARK] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(728), + [anon_sym_BANG] = ACTIONS(726), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(726), + [anon_sym_LT_DASH] = ACTIONS(728), + [anon_sym_LT_LT_DASH] = ACTIONS(728), + [anon_sym_COLON_EQ] = ACTIONS(728), + [anon_sym_DASH_GT] = ACTIONS(726), + [anon_sym_DASH_GT_GT] = ACTIONS(728), + [anon_sym_PIPE] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(726), + [anon_sym_LT_EQ] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(726), + [anon_sym_GT_EQ] = ACTIONS(728), + [anon_sym_EQ_EQ] = ACTIONS(728), + [anon_sym_BANG_EQ] = ACTIONS(728), + [anon_sym_STAR] = ACTIONS(726), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_STAR_STAR] = ACTIONS(728), + [anon_sym_CARET] = ACTIONS(728), + [aux_sym_binary_operator_token1] = ACTIONS(728), + [anon_sym_PIPE_GT] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(728), + [anon_sym_AT] = ACTIONS(728), + [sym__hex_literal] = ACTIONS(728), + [sym__number_literal] = ACTIONS(726), + [anon_sym_SQUOTE] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [sym_dots] = ACTIONS(726), + [sym_dot_dot_i] = ACTIONS(726), + [sym_return] = ACTIONS(726), + [sym_next] = ACTIONS(726), + [sym_break] = ACTIONS(726), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_null] = ACTIONS(726), + [sym_inf] = ACTIONS(726), + [sym_nan] = ACTIONS(726), + [anon_sym_NA] = ACTIONS(726), + [anon_sym_NA_integer_] = ACTIONS(726), + [anon_sym_NA_real_] = ACTIONS(726), + [anon_sym_NA_complex_] = ACTIONS(726), + [anon_sym_NA_character_] = ACTIONS(726), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(728), + [sym__semicolon] = ACTIONS(728), + [sym__raw_string_literal] = ACTIONS(728), + [sym__external_else] = ACTIONS(728), + [sym__external_open_parenthesis] = ACTIONS(728), + [sym__external_open_brace] = ACTIONS(728), + [sym__external_open_bracket] = ACTIONS(728), + [sym__external_open_bracket2] = ACTIONS(728), + }, + [361] = { [sym_identifier] = ACTIONS(736), [anon_sym_BSLASH] = ACTIONS(734), [anon_sym_function] = ACTIONS(736), @@ -32087,143 +32631,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(734), [sym__external_open_bracket2] = ACTIONS(734), }, - [354] = { - [ts_builtin_sym_end] = ACTIONS(752), - [sym_identifier] = ACTIONS(750), - [anon_sym_BSLASH] = ACTIONS(752), - [anon_sym_function] = ACTIONS(750), - [anon_sym_EQ] = ACTIONS(750), - [anon_sym_if] = ACTIONS(750), - [anon_sym_for] = ACTIONS(750), - [anon_sym_while] = ACTIONS(750), - [anon_sym_repeat] = ACTIONS(750), - [anon_sym_QMARK] = ACTIONS(752), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_BANG] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(752), - [anon_sym_LT_LT_DASH] = ACTIONS(752), - [anon_sym_COLON_EQ] = ACTIONS(752), - [anon_sym_DASH_GT] = ACTIONS(750), - [anon_sym_DASH_GT_GT] = ACTIONS(752), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_AMP] = ACTIONS(750), - [anon_sym_PIPE_PIPE] = ACTIONS(752), - [anon_sym_AMP_AMP] = ACTIONS(752), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_EQ] = ACTIONS(752), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_GT_EQ] = ACTIONS(752), - [anon_sym_EQ_EQ] = ACTIONS(752), - [anon_sym_BANG_EQ] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(750), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_STAR_STAR] = ACTIONS(752), - [anon_sym_CARET] = ACTIONS(752), - [aux_sym_binary_operator_token1] = ACTIONS(752), - [anon_sym_PIPE_GT] = ACTIONS(752), - [anon_sym_COLON] = ACTIONS(750), - [anon_sym_DOLLAR] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(752), - [sym__hex_literal] = ACTIONS(752), - [sym__number_literal] = ACTIONS(750), - [anon_sym_SQUOTE] = ACTIONS(752), - [anon_sym_DQUOTE] = ACTIONS(752), - [sym_dots] = ACTIONS(750), - [sym_dot_dot_i] = ACTIONS(750), - [sym_return] = ACTIONS(750), - [sym_next] = ACTIONS(750), - [sym_break] = ACTIONS(750), - [sym_true] = ACTIONS(750), - [sym_false] = ACTIONS(750), - [sym_null] = ACTIONS(750), - [sym_inf] = ACTIONS(750), - [sym_nan] = ACTIONS(750), - [anon_sym_NA] = ACTIONS(750), - [anon_sym_NA_integer_] = ACTIONS(750), - [anon_sym_NA_real_] = ACTIONS(750), - [anon_sym_NA_complex_] = ACTIONS(750), - [anon_sym_NA_character_] = ACTIONS(750), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(752), - [sym__semicolon] = ACTIONS(752), - [sym__raw_string_literal] = ACTIONS(752), - [sym__external_else] = ACTIONS(752), - [sym__external_open_parenthesis] = ACTIONS(752), - [sym__external_open_brace] = ACTIONS(752), - [sym__external_open_bracket] = ACTIONS(752), - [sym__external_open_bracket2] = ACTIONS(752), - }, - [355] = { - [sym_identifier] = ACTIONS(728), - [anon_sym_BSLASH] = ACTIONS(726), - [anon_sym_function] = ACTIONS(728), - [anon_sym_EQ] = ACTIONS(728), - [anon_sym_if] = ACTIONS(728), - [anon_sym_for] = ACTIONS(728), - [anon_sym_while] = ACTIONS(728), - [anon_sym_repeat] = ACTIONS(728), - [anon_sym_QMARK] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [anon_sym_BANG] = ACTIONS(728), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_LT_DASH] = ACTIONS(726), - [anon_sym_LT_LT_DASH] = ACTIONS(726), - [anon_sym_COLON_EQ] = ACTIONS(726), - [anon_sym_DASH_GT] = ACTIONS(728), - [anon_sym_DASH_GT_GT] = ACTIONS(726), - [anon_sym_PIPE] = ACTIONS(728), - [anon_sym_AMP] = ACTIONS(728), - [anon_sym_PIPE_PIPE] = ACTIONS(726), - [anon_sym_AMP_AMP] = ACTIONS(726), - [anon_sym_LT] = ACTIONS(728), - [anon_sym_LT_EQ] = ACTIONS(726), - [anon_sym_GT] = ACTIONS(728), - [anon_sym_GT_EQ] = ACTIONS(726), - [anon_sym_EQ_EQ] = ACTIONS(726), - [anon_sym_BANG_EQ] = ACTIONS(726), - [anon_sym_STAR] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(726), - [anon_sym_STAR_STAR] = ACTIONS(726), - [anon_sym_CARET] = ACTIONS(726), - [aux_sym_binary_operator_token1] = ACTIONS(726), - [anon_sym_PIPE_GT] = ACTIONS(726), - [anon_sym_COLON] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(726), - [anon_sym_AT] = ACTIONS(726), - [sym__hex_literal] = ACTIONS(726), - [sym__number_literal] = ACTIONS(728), - [anon_sym_SQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(726), - [sym_dots] = ACTIONS(728), - [sym_dot_dot_i] = ACTIONS(728), - [sym_return] = ACTIONS(728), - [sym_next] = ACTIONS(728), - [sym_break] = ACTIONS(728), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_null] = ACTIONS(728), - [sym_inf] = ACTIONS(728), - [sym_nan] = ACTIONS(728), - [anon_sym_NA] = ACTIONS(728), - [anon_sym_NA_integer_] = ACTIONS(728), - [anon_sym_NA_real_] = ACTIONS(728), - [anon_sym_NA_complex_] = ACTIONS(728), - [anon_sym_NA_character_] = ACTIONS(728), + [362] = { + [ts_builtin_sym_end] = ACTIONS(777), + [sym_identifier] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_function] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_if] = ACTIONS(779), + [anon_sym_for] = ACTIONS(779), + [anon_sym_while] = ACTIONS(779), + [anon_sym_repeat] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(777), + [anon_sym_BANG] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(777), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_LT_DASH] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(777), + [anon_sym_COLON_EQ] = ACTIONS(777), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_DASH_GT_GT] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(777), + [anon_sym_AMP_AMP] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(779), + [anon_sym_SLASH] = ACTIONS(777), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_CARET] = ACTIONS(777), + [aux_sym_binary_operator_token1] = ACTIONS(777), + [anon_sym_PIPE_GT] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(777), + [anon_sym_AT] = ACTIONS(777), + [sym__hex_literal] = ACTIONS(777), + [sym__number_literal] = ACTIONS(779), + [anon_sym_SQUOTE] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(777), + [sym_dots] = ACTIONS(779), + [sym_dot_dot_i] = ACTIONS(779), + [sym_return] = ACTIONS(779), + [sym_next] = ACTIONS(779), + [sym_break] = ACTIONS(779), + [sym_true] = ACTIONS(779), + [sym_false] = ACTIONS(779), + [sym_null] = ACTIONS(779), + [sym_inf] = ACTIONS(779), + [sym_nan] = ACTIONS(779), + [anon_sym_NA] = ACTIONS(779), + [anon_sym_NA_integer_] = ACTIONS(779), + [anon_sym_NA_real_] = ACTIONS(779), + [anon_sym_NA_complex_] = ACTIONS(779), + [anon_sym_NA_character_] = ACTIONS(779), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(726), - [sym__semicolon] = ACTIONS(726), - [sym__raw_string_literal] = ACTIONS(726), - [sym__external_else] = ACTIONS(726), - [sym__external_open_parenthesis] = ACTIONS(726), - [sym__external_open_brace] = ACTIONS(726), - [sym__external_close_brace] = ACTIONS(726), - [sym__external_open_bracket] = ACTIONS(726), - [sym__external_open_bracket2] = ACTIONS(726), + [sym__newline] = ACTIONS(777), + [sym__semicolon] = ACTIONS(777), + [sym__raw_string_literal] = ACTIONS(777), + [sym__external_else] = ACTIONS(777), + [sym__external_open_parenthesis] = ACTIONS(777), + [sym__external_open_brace] = ACTIONS(777), + [sym__external_open_bracket] = ACTIONS(777), + [sym__external_open_bracket2] = ACTIONS(777), }, - [356] = { + [363] = { [ts_builtin_sym_end] = ACTIONS(781), [sym_identifier] = ACTIONS(783), [anon_sym_BSLASH] = ACTIONS(781), @@ -32291,7 +32767,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(781), [sym__external_open_bracket2] = ACTIONS(781), }, - [357] = { + [364] = { + [ts_builtin_sym_end] = ACTIONS(764), + [sym_identifier] = ACTIONS(762), + [anon_sym_BSLASH] = ACTIONS(764), + [anon_sym_function] = ACTIONS(762), + [anon_sym_EQ] = ACTIONS(762), + [anon_sym_if] = ACTIONS(762), + [anon_sym_for] = ACTIONS(762), + [anon_sym_while] = ACTIONS(762), + [anon_sym_repeat] = ACTIONS(762), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_LT_DASH] = ACTIONS(764), + [anon_sym_LT_LT_DASH] = ACTIONS(764), + [anon_sym_COLON_EQ] = ACTIONS(764), + [anon_sym_DASH_GT] = ACTIONS(762), + [anon_sym_DASH_GT_GT] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(762), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(762), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(762), + [anon_sym_SLASH] = ACTIONS(764), + [anon_sym_STAR_STAR] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(764), + [aux_sym_binary_operator_token1] = ACTIONS(764), + [anon_sym_PIPE_GT] = ACTIONS(764), + [anon_sym_COLON] = ACTIONS(762), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [sym__hex_literal] = ACTIONS(764), + [sym__number_literal] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym_dots] = ACTIONS(762), + [sym_dot_dot_i] = ACTIONS(762), + [sym_return] = ACTIONS(762), + [sym_next] = ACTIONS(762), + [sym_break] = ACTIONS(762), + [sym_true] = ACTIONS(762), + [sym_false] = ACTIONS(762), + [sym_null] = ACTIONS(762), + [sym_inf] = ACTIONS(762), + [sym_nan] = ACTIONS(762), + [anon_sym_NA] = ACTIONS(762), + [anon_sym_NA_integer_] = ACTIONS(762), + [anon_sym_NA_real_] = ACTIONS(762), + [anon_sym_NA_complex_] = ACTIONS(762), + [anon_sym_NA_character_] = ACTIONS(762), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(764), + [sym__semicolon] = ACTIONS(764), + [sym__raw_string_literal] = ACTIONS(764), + [sym__external_else] = ACTIONS(764), + [sym__external_open_parenthesis] = ACTIONS(764), + [sym__external_open_brace] = ACTIONS(764), + [sym__external_open_bracket] = ACTIONS(764), + [sym__external_open_bracket2] = ACTIONS(764), + }, + [365] = { [ts_builtin_sym_end] = ACTIONS(689), [sym_identifier] = ACTIONS(687), [anon_sym_BSLASH] = ACTIONS(689), @@ -32359,7 +32903,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(689), [sym__external_open_bracket2] = ACTIONS(689), }, - [358] = { + [366] = { + [ts_builtin_sym_end] = ACTIONS(693), + [sym_identifier] = ACTIONS(691), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_function] = ACTIONS(691), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_if] = ACTIONS(691), + [anon_sym_for] = ACTIONS(691), + [anon_sym_while] = ACTIONS(691), + [anon_sym_repeat] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_LT_DASH] = ACTIONS(693), + [anon_sym_LT_LT_DASH] = ACTIONS(693), + [anon_sym_COLON_EQ] = ACTIONS(693), + [anon_sym_DASH_GT] = ACTIONS(691), + [anon_sym_DASH_GT_GT] = ACTIONS(693), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE_PIPE] = ACTIONS(693), + [anon_sym_AMP_AMP] = ACTIONS(693), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_LT_EQ] = ACTIONS(693), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(693), + [anon_sym_EQ_EQ] = ACTIONS(693), + [anon_sym_BANG_EQ] = ACTIONS(693), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_STAR_STAR] = ACTIONS(693), + [anon_sym_CARET] = ACTIONS(693), + [aux_sym_binary_operator_token1] = ACTIONS(693), + [anon_sym_PIPE_GT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_AT] = ACTIONS(693), + [sym__hex_literal] = ACTIONS(693), + [sym__number_literal] = ACTIONS(691), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE] = ACTIONS(693), + [sym_dots] = ACTIONS(691), + [sym_dot_dot_i] = ACTIONS(691), + [sym_return] = ACTIONS(691), + [sym_next] = ACTIONS(691), + [sym_break] = ACTIONS(691), + [sym_true] = ACTIONS(691), + [sym_false] = ACTIONS(691), + [sym_null] = ACTIONS(691), + [sym_inf] = ACTIONS(691), + [sym_nan] = ACTIONS(691), + [anon_sym_NA] = ACTIONS(691), + [anon_sym_NA_integer_] = ACTIONS(691), + [anon_sym_NA_real_] = ACTIONS(691), + [anon_sym_NA_complex_] = ACTIONS(691), + [anon_sym_NA_character_] = ACTIONS(691), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(693), + [sym__semicolon] = ACTIONS(693), + [sym__raw_string_literal] = ACTIONS(693), + [sym__external_else] = ACTIONS(693), + [sym__external_open_parenthesis] = ACTIONS(693), + [sym__external_open_brace] = ACTIONS(693), + [sym__external_open_bracket] = ACTIONS(693), + [sym__external_open_bracket2] = ACTIONS(693), + }, + [367] = { + [ts_builtin_sym_end] = ACTIONS(697), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(695), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_if] = ACTIONS(695), + [anon_sym_for] = ACTIONS(695), + [anon_sym_while] = ACTIONS(695), + [anon_sym_repeat] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_TILDE] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_LT_DASH] = ACTIONS(697), + [anon_sym_LT_LT_DASH] = ACTIONS(697), + [anon_sym_COLON_EQ] = ACTIONS(697), + [anon_sym_DASH_GT] = ACTIONS(695), + [anon_sym_DASH_GT_GT] = ACTIONS(697), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(697), + [anon_sym_AMP_AMP] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_LT_EQ] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(697), + [anon_sym_EQ_EQ] = ACTIONS(697), + [anon_sym_BANG_EQ] = ACTIONS(697), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(697), + [anon_sym_STAR_STAR] = ACTIONS(697), + [anon_sym_CARET] = ACTIONS(697), + [aux_sym_binary_operator_token1] = ACTIONS(697), + [anon_sym_PIPE_GT] = ACTIONS(697), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [sym__hex_literal] = ACTIONS(697), + [sym__number_literal] = ACTIONS(695), + [anon_sym_SQUOTE] = ACTIONS(697), + [anon_sym_DQUOTE] = ACTIONS(697), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(695), + [sym_return] = ACTIONS(695), + [sym_next] = ACTIONS(695), + [sym_break] = ACTIONS(695), + [sym_true] = ACTIONS(695), + [sym_false] = ACTIONS(695), + [sym_null] = ACTIONS(695), + [sym_inf] = ACTIONS(695), + [sym_nan] = ACTIONS(695), + [anon_sym_NA] = ACTIONS(695), + [anon_sym_NA_integer_] = ACTIONS(695), + [anon_sym_NA_real_] = ACTIONS(695), + [anon_sym_NA_complex_] = ACTIONS(695), + [anon_sym_NA_character_] = ACTIONS(695), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(697), + [sym__semicolon] = ACTIONS(697), + [sym__raw_string_literal] = ACTIONS(697), + [sym__external_else] = ACTIONS(697), + [sym__external_open_parenthesis] = ACTIONS(697), + [sym__external_open_brace] = ACTIONS(697), + [sym__external_open_bracket] = ACTIONS(697), + [sym__external_open_bracket2] = ACTIONS(697), + }, + [368] = { + [ts_builtin_sym_end] = ACTIONS(701), + [sym_identifier] = ACTIONS(699), + [anon_sym_BSLASH] = ACTIONS(701), + [anon_sym_function] = ACTIONS(699), + [anon_sym_EQ] = ACTIONS(699), + [anon_sym_if] = ACTIONS(699), + [anon_sym_for] = ACTIONS(699), + [anon_sym_while] = ACTIONS(699), + [anon_sym_repeat] = ACTIONS(699), + [anon_sym_QMARK] = ACTIONS(701), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_LT_DASH] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(701), + [anon_sym_COLON_EQ] = ACTIONS(701), + [anon_sym_DASH_GT] = ACTIONS(699), + [anon_sym_DASH_GT_GT] = ACTIONS(701), + [anon_sym_PIPE] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(701), + [anon_sym_AMP_AMP] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(699), + [anon_sym_LT_EQ] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(699), + [anon_sym_GT_EQ] = ACTIONS(701), + [anon_sym_EQ_EQ] = ACTIONS(701), + [anon_sym_BANG_EQ] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(699), + [anon_sym_SLASH] = ACTIONS(701), + [anon_sym_STAR_STAR] = ACTIONS(701), + [anon_sym_CARET] = ACTIONS(701), + [aux_sym_binary_operator_token1] = ACTIONS(701), + [anon_sym_PIPE_GT] = ACTIONS(701), + [anon_sym_COLON] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [anon_sym_AT] = ACTIONS(701), + [sym__hex_literal] = ACTIONS(701), + [sym__number_literal] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(701), + [sym_dots] = ACTIONS(699), + [sym_dot_dot_i] = ACTIONS(699), + [sym_return] = ACTIONS(699), + [sym_next] = ACTIONS(699), + [sym_break] = ACTIONS(699), + [sym_true] = ACTIONS(699), + [sym_false] = ACTIONS(699), + [sym_null] = ACTIONS(699), + [sym_inf] = ACTIONS(699), + [sym_nan] = ACTIONS(699), + [anon_sym_NA] = ACTIONS(699), + [anon_sym_NA_integer_] = ACTIONS(699), + [anon_sym_NA_real_] = ACTIONS(699), + [anon_sym_NA_complex_] = ACTIONS(699), + [anon_sym_NA_character_] = ACTIONS(699), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(701), + [sym__semicolon] = ACTIONS(701), + [sym__raw_string_literal] = ACTIONS(701), + [sym__external_else] = ACTIONS(701), + [sym__external_open_parenthesis] = ACTIONS(701), + [sym__external_open_brace] = ACTIONS(701), + [sym__external_open_bracket] = ACTIONS(701), + [sym__external_open_bracket2] = ACTIONS(701), + }, + [369] = { + [ts_builtin_sym_end] = ACTIONS(685), + [sym_identifier] = ACTIONS(683), + [anon_sym_BSLASH] = ACTIONS(685), + [anon_sym_function] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [anon_sym_repeat] = ACTIONS(683), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_LT_DASH] = ACTIONS(685), + [anon_sym_LT_LT_DASH] = ACTIONS(685), + [anon_sym_COLON_EQ] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(683), + [anon_sym_DASH_GT_GT] = ACTIONS(685), + [anon_sym_PIPE] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(683), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(683), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_SLASH] = ACTIONS(685), + [anon_sym_STAR_STAR] = ACTIONS(685), + [anon_sym_CARET] = ACTIONS(685), + [aux_sym_binary_operator_token1] = ACTIONS(685), + [anon_sym_PIPE_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(683), + [anon_sym_DOLLAR] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [sym__hex_literal] = ACTIONS(685), + [sym__number_literal] = ACTIONS(683), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [sym_dots] = ACTIONS(683), + [sym_dot_dot_i] = ACTIONS(683), + [sym_return] = ACTIONS(683), + [sym_next] = ACTIONS(683), + [sym_break] = ACTIONS(683), + [sym_true] = ACTIONS(683), + [sym_false] = ACTIONS(683), + [sym_null] = ACTIONS(683), + [sym_inf] = ACTIONS(683), + [sym_nan] = ACTIONS(683), + [anon_sym_NA] = ACTIONS(683), + [anon_sym_NA_integer_] = ACTIONS(683), + [anon_sym_NA_real_] = ACTIONS(683), + [anon_sym_NA_complex_] = ACTIONS(683), + [anon_sym_NA_character_] = ACTIONS(683), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(685), + [sym__semicolon] = ACTIONS(685), + [sym__raw_string_literal] = ACTIONS(685), + [sym__external_else] = ACTIONS(685), + [sym__external_open_parenthesis] = ACTIONS(685), + [sym__external_open_brace] = ACTIONS(685), + [sym__external_open_bracket] = ACTIONS(685), + [sym__external_open_bracket2] = ACTIONS(685), + }, + [370] = { + [ts_builtin_sym_end] = ACTIONS(768), + [sym_identifier] = ACTIONS(766), + [anon_sym_BSLASH] = ACTIONS(768), + [anon_sym_function] = ACTIONS(766), + [anon_sym_EQ] = ACTIONS(766), + [anon_sym_if] = ACTIONS(766), + [anon_sym_for] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [anon_sym_repeat] = ACTIONS(766), + [anon_sym_QMARK] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_LT_DASH] = ACTIONS(768), + [anon_sym_LT_LT_DASH] = ACTIONS(768), + [anon_sym_COLON_EQ] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(766), + [anon_sym_DASH_GT_GT] = ACTIONS(768), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE_PIPE] = ACTIONS(768), + [anon_sym_AMP_AMP] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(768), + [anon_sym_STAR_STAR] = ACTIONS(768), + [anon_sym_CARET] = ACTIONS(768), + [aux_sym_binary_operator_token1] = ACTIONS(768), + [anon_sym_PIPE_GT] = ACTIONS(768), + [anon_sym_COLON] = ACTIONS(766), + [anon_sym_DOLLAR] = ACTIONS(768), + [anon_sym_AT] = ACTIONS(768), + [sym__hex_literal] = ACTIONS(768), + [sym__number_literal] = ACTIONS(766), + [anon_sym_SQUOTE] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(768), + [sym_dots] = ACTIONS(766), + [sym_dot_dot_i] = ACTIONS(766), + [sym_return] = ACTIONS(766), + [sym_next] = ACTIONS(766), + [sym_break] = ACTIONS(766), + [sym_true] = ACTIONS(766), + [sym_false] = ACTIONS(766), + [sym_null] = ACTIONS(766), + [sym_inf] = ACTIONS(766), + [sym_nan] = ACTIONS(766), + [anon_sym_NA] = ACTIONS(766), + [anon_sym_NA_integer_] = ACTIONS(766), + [anon_sym_NA_real_] = ACTIONS(766), + [anon_sym_NA_complex_] = ACTIONS(766), + [anon_sym_NA_character_] = ACTIONS(766), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(768), + [sym__semicolon] = ACTIONS(768), + [sym__raw_string_literal] = ACTIONS(768), + [sym__external_else] = ACTIONS(768), + [sym__external_open_parenthesis] = ACTIONS(768), + [sym__external_open_brace] = ACTIONS(768), + [sym__external_open_bracket] = ACTIONS(768), + [sym__external_open_bracket2] = ACTIONS(768), + }, + [371] = { [sym_identifier] = ACTIONS(783), [anon_sym_BSLASH] = ACTIONS(781), [anon_sym_function] = ACTIONS(783), @@ -32427,415 +33311,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(781), [sym__external_open_bracket2] = ACTIONS(781), }, - [359] = { - [sym_identifier] = ACTIONS(685), - [anon_sym_BSLASH] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [anon_sym_repeat] = ACTIONS(685), - [anon_sym_QMARK] = ACTIONS(683), - [anon_sym_TILDE] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_LT_DASH] = ACTIONS(683), - [anon_sym_LT_LT_DASH] = ACTIONS(683), - [anon_sym_COLON_EQ] = ACTIONS(683), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_DASH_GT_GT] = ACTIONS(683), - [anon_sym_PIPE] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(683), - [anon_sym_AMP_AMP] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(683), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_GT_EQ] = ACTIONS(683), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(683), - [anon_sym_STAR_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(683), - [aux_sym_binary_operator_token1] = ACTIONS(683), - [anon_sym_PIPE_GT] = ACTIONS(683), - [anon_sym_COLON] = ACTIONS(685), - [anon_sym_DOLLAR] = ACTIONS(683), - [anon_sym_AT] = ACTIONS(683), - [sym__hex_literal] = ACTIONS(683), - [sym__number_literal] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_DQUOTE] = ACTIONS(683), - [sym_dots] = ACTIONS(685), - [sym_dot_dot_i] = ACTIONS(685), - [sym_return] = ACTIONS(685), - [sym_next] = ACTIONS(685), - [sym_break] = ACTIONS(685), - [sym_true] = ACTIONS(685), - [sym_false] = ACTIONS(685), - [sym_null] = ACTIONS(685), - [sym_inf] = ACTIONS(685), - [sym_nan] = ACTIONS(685), - [anon_sym_NA] = ACTIONS(685), - [anon_sym_NA_integer_] = ACTIONS(685), - [anon_sym_NA_real_] = ACTIONS(685), - [anon_sym_NA_complex_] = ACTIONS(685), - [anon_sym_NA_character_] = ACTIONS(685), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(683), - [sym__semicolon] = ACTIONS(683), - [sym__raw_string_literal] = ACTIONS(683), - [sym__external_else] = ACTIONS(683), - [sym__external_open_parenthesis] = ACTIONS(683), - [sym__external_open_brace] = ACTIONS(683), - [sym__external_close_brace] = ACTIONS(683), - [sym__external_open_bracket] = ACTIONS(683), - [sym__external_open_bracket2] = ACTIONS(683), - }, - [360] = { - [sym_identifier] = ACTIONS(748), - [anon_sym_BSLASH] = ACTIONS(746), - [anon_sym_function] = ACTIONS(748), - [anon_sym_EQ] = ACTIONS(748), - [anon_sym_if] = ACTIONS(748), - [anon_sym_for] = ACTIONS(748), - [anon_sym_while] = ACTIONS(748), - [anon_sym_repeat] = ACTIONS(748), - [anon_sym_QMARK] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LT_DASH] = ACTIONS(746), - [anon_sym_LT_LT_DASH] = ACTIONS(746), - [anon_sym_COLON_EQ] = ACTIONS(746), - [anon_sym_DASH_GT] = ACTIONS(748), - [anon_sym_DASH_GT_GT] = ACTIONS(746), - [anon_sym_PIPE] = ACTIONS(748), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE_PIPE] = ACTIONS(746), - [anon_sym_AMP_AMP] = ACTIONS(746), - [anon_sym_LT] = ACTIONS(748), - [anon_sym_LT_EQ] = ACTIONS(746), - [anon_sym_GT] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(746), - [anon_sym_EQ_EQ] = ACTIONS(746), - [anon_sym_BANG_EQ] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(746), - [anon_sym_STAR_STAR] = ACTIONS(746), - [anon_sym_CARET] = ACTIONS(746), - [aux_sym_binary_operator_token1] = ACTIONS(746), - [anon_sym_PIPE_GT] = ACTIONS(746), - [anon_sym_COLON] = ACTIONS(748), - [anon_sym_DOLLAR] = ACTIONS(746), - [anon_sym_AT] = ACTIONS(746), - [sym__hex_literal] = ACTIONS(746), - [sym__number_literal] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(746), - [anon_sym_DQUOTE] = ACTIONS(746), - [sym_dots] = ACTIONS(748), - [sym_dot_dot_i] = ACTIONS(748), - [sym_return] = ACTIONS(748), - [sym_next] = ACTIONS(748), - [sym_break] = ACTIONS(748), - [sym_true] = ACTIONS(748), - [sym_false] = ACTIONS(748), - [sym_null] = ACTIONS(748), - [sym_inf] = ACTIONS(748), - [sym_nan] = ACTIONS(748), - [anon_sym_NA] = ACTIONS(748), - [anon_sym_NA_integer_] = ACTIONS(748), - [anon_sym_NA_real_] = ACTIONS(748), - [anon_sym_NA_complex_] = ACTIONS(748), - [anon_sym_NA_character_] = ACTIONS(748), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(746), - [sym__semicolon] = ACTIONS(746), - [sym__raw_string_literal] = ACTIONS(746), - [sym__external_else] = ACTIONS(746), - [sym__external_open_parenthesis] = ACTIONS(746), - [sym__external_open_brace] = ACTIONS(746), - [sym__external_close_brace] = ACTIONS(746), - [sym__external_open_bracket] = ACTIONS(746), - [sym__external_open_bracket2] = ACTIONS(746), - }, - [361] = { - [sym_identifier] = ACTIONS(760), - [anon_sym_BSLASH] = ACTIONS(758), - [anon_sym_function] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(760), - [anon_sym_if] = ACTIONS(760), - [anon_sym_for] = ACTIONS(760), - [anon_sym_while] = ACTIONS(760), - [anon_sym_repeat] = ACTIONS(760), - [anon_sym_QMARK] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(758), - [anon_sym_BANG] = ACTIONS(760), - [anon_sym_PLUS] = ACTIONS(758), - [anon_sym_DASH] = ACTIONS(760), - [anon_sym_LT_DASH] = ACTIONS(758), - [anon_sym_LT_LT_DASH] = ACTIONS(758), - [anon_sym_COLON_EQ] = ACTIONS(758), - [anon_sym_DASH_GT] = ACTIONS(760), - [anon_sym_DASH_GT_GT] = ACTIONS(758), - [anon_sym_PIPE] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(758), - [anon_sym_AMP_AMP] = ACTIONS(758), - [anon_sym_LT] = ACTIONS(760), - [anon_sym_LT_EQ] = ACTIONS(758), - [anon_sym_GT] = ACTIONS(760), - [anon_sym_GT_EQ] = ACTIONS(758), - [anon_sym_EQ_EQ] = ACTIONS(758), - [anon_sym_BANG_EQ] = ACTIONS(758), - [anon_sym_STAR] = ACTIONS(760), - [anon_sym_SLASH] = ACTIONS(758), - [anon_sym_STAR_STAR] = ACTIONS(758), - [anon_sym_CARET] = ACTIONS(758), - [aux_sym_binary_operator_token1] = ACTIONS(758), - [anon_sym_PIPE_GT] = ACTIONS(758), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(758), - [anon_sym_AT] = ACTIONS(758), - [sym__hex_literal] = ACTIONS(758), - [sym__number_literal] = ACTIONS(760), - [anon_sym_SQUOTE] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(758), - [sym_dots] = ACTIONS(760), - [sym_dot_dot_i] = ACTIONS(760), - [sym_return] = ACTIONS(760), - [sym_next] = ACTIONS(760), - [sym_break] = ACTIONS(760), - [sym_true] = ACTIONS(760), - [sym_false] = ACTIONS(760), - [sym_null] = ACTIONS(760), - [sym_inf] = ACTIONS(760), - [sym_nan] = ACTIONS(760), - [anon_sym_NA] = ACTIONS(760), - [anon_sym_NA_integer_] = ACTIONS(760), - [anon_sym_NA_real_] = ACTIONS(760), - [anon_sym_NA_complex_] = ACTIONS(760), - [anon_sym_NA_character_] = ACTIONS(760), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(758), - [sym__semicolon] = ACTIONS(758), - [sym__raw_string_literal] = ACTIONS(758), - [sym__external_else] = ACTIONS(758), - [sym__external_open_parenthesis] = ACTIONS(758), - [sym__external_open_brace] = ACTIONS(758), - [sym__external_close_brace] = ACTIONS(758), - [sym__external_open_bracket] = ACTIONS(758), - [sym__external_open_bracket2] = ACTIONS(758), - }, - [362] = { - [ts_builtin_sym_end] = ACTIONS(779), - [sym_identifier] = ACTIONS(777), - [anon_sym_BSLASH] = ACTIONS(779), - [anon_sym_function] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(777), - [anon_sym_if] = ACTIONS(777), - [anon_sym_for] = ACTIONS(777), - [anon_sym_while] = ACTIONS(777), - [anon_sym_repeat] = ACTIONS(777), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_BANG] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_LT_DASH] = ACTIONS(779), - [anon_sym_LT_LT_DASH] = ACTIONS(779), - [anon_sym_COLON_EQ] = ACTIONS(779), - [anon_sym_DASH_GT] = ACTIONS(777), - [anon_sym_DASH_GT_GT] = ACTIONS(779), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_AMP] = ACTIONS(777), - [anon_sym_PIPE_PIPE] = ACTIONS(779), - [anon_sym_AMP_AMP] = ACTIONS(779), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_LT_EQ] = ACTIONS(779), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_EQ] = ACTIONS(779), - [anon_sym_EQ_EQ] = ACTIONS(779), - [anon_sym_BANG_EQ] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(779), - [anon_sym_STAR_STAR] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [aux_sym_binary_operator_token1] = ACTIONS(779), - [anon_sym_PIPE_GT] = ACTIONS(779), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(779), - [anon_sym_AT] = ACTIONS(779), - [sym__hex_literal] = ACTIONS(779), - [sym__number_literal] = ACTIONS(777), - [anon_sym_SQUOTE] = ACTIONS(779), - [anon_sym_DQUOTE] = ACTIONS(779), - [sym_dots] = ACTIONS(777), - [sym_dot_dot_i] = ACTIONS(777), - [sym_return] = ACTIONS(777), - [sym_next] = ACTIONS(777), - [sym_break] = ACTIONS(777), - [sym_true] = ACTIONS(777), - [sym_false] = ACTIONS(777), - [sym_null] = ACTIONS(777), - [sym_inf] = ACTIONS(777), - [sym_nan] = ACTIONS(777), - [anon_sym_NA] = ACTIONS(777), - [anon_sym_NA_integer_] = ACTIONS(777), - [anon_sym_NA_real_] = ACTIONS(777), - [anon_sym_NA_complex_] = ACTIONS(777), - [anon_sym_NA_character_] = ACTIONS(777), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(779), - [sym__semicolon] = ACTIONS(779), - [sym__raw_string_literal] = ACTIONS(779), - [sym__external_else] = ACTIONS(779), - [sym__external_open_parenthesis] = ACTIONS(779), - [sym__external_open_brace] = ACTIONS(779), - [sym__external_open_bracket] = ACTIONS(779), - [sym__external_open_bracket2] = ACTIONS(779), - }, - [363] = { - [ts_builtin_sym_end] = ACTIONS(775), - [sym_identifier] = ACTIONS(773), - [anon_sym_BSLASH] = ACTIONS(775), - [anon_sym_function] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(773), - [anon_sym_if] = ACTIONS(773), - [anon_sym_for] = ACTIONS(773), - [anon_sym_while] = ACTIONS(773), - [anon_sym_repeat] = ACTIONS(773), - [anon_sym_QMARK] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_LT_DASH] = ACTIONS(775), - [anon_sym_LT_LT_DASH] = ACTIONS(775), - [anon_sym_COLON_EQ] = ACTIONS(775), - [anon_sym_DASH_GT] = ACTIONS(773), - [anon_sym_DASH_GT_GT] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_LT_EQ] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_GT_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [aux_sym_binary_operator_token1] = ACTIONS(775), - [anon_sym_PIPE_GT] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(775), - [anon_sym_AT] = ACTIONS(775), - [sym__hex_literal] = ACTIONS(775), - [sym__number_literal] = ACTIONS(773), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(775), - [sym_dots] = ACTIONS(773), - [sym_dot_dot_i] = ACTIONS(773), - [sym_return] = ACTIONS(773), - [sym_next] = ACTIONS(773), - [sym_break] = ACTIONS(773), - [sym_true] = ACTIONS(773), - [sym_false] = ACTIONS(773), - [sym_null] = ACTIONS(773), - [sym_inf] = ACTIONS(773), - [sym_nan] = ACTIONS(773), - [anon_sym_NA] = ACTIONS(773), - [anon_sym_NA_integer_] = ACTIONS(773), - [anon_sym_NA_real_] = ACTIONS(773), - [anon_sym_NA_complex_] = ACTIONS(773), - [anon_sym_NA_character_] = ACTIONS(773), + [372] = { + [ts_builtin_sym_end] = ACTIONS(772), + [sym_identifier] = ACTIONS(770), + [anon_sym_BSLASH] = ACTIONS(772), + [anon_sym_function] = ACTIONS(770), + [anon_sym_EQ] = ACTIONS(770), + [anon_sym_if] = ACTIONS(770), + [anon_sym_for] = ACTIONS(770), + [anon_sym_while] = ACTIONS(770), + [anon_sym_repeat] = ACTIONS(770), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_LT_DASH] = ACTIONS(772), + [anon_sym_LT_LT_DASH] = ACTIONS(772), + [anon_sym_COLON_EQ] = ACTIONS(772), + [anon_sym_DASH_GT] = ACTIONS(770), + [anon_sym_DASH_GT_GT] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_STAR_STAR] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), + [aux_sym_binary_operator_token1] = ACTIONS(772), + [anon_sym_PIPE_GT] = ACTIONS(772), + [anon_sym_COLON] = ACTIONS(770), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_AT] = ACTIONS(772), + [sym__hex_literal] = ACTIONS(772), + [sym__number_literal] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym_dots] = ACTIONS(770), + [sym_dot_dot_i] = ACTIONS(770), + [sym_return] = ACTIONS(770), + [sym_next] = ACTIONS(770), + [sym_break] = ACTIONS(770), + [sym_true] = ACTIONS(770), + [sym_false] = ACTIONS(770), + [sym_null] = ACTIONS(770), + [sym_inf] = ACTIONS(770), + [sym_nan] = ACTIONS(770), + [anon_sym_NA] = ACTIONS(770), + [anon_sym_NA_integer_] = ACTIONS(770), + [anon_sym_NA_real_] = ACTIONS(770), + [anon_sym_NA_complex_] = ACTIONS(770), + [anon_sym_NA_character_] = ACTIONS(770), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(775), - [sym__semicolon] = ACTIONS(775), - [sym__raw_string_literal] = ACTIONS(775), - [sym__external_else] = ACTIONS(775), - [sym__external_open_parenthesis] = ACTIONS(775), - [sym__external_open_brace] = ACTIONS(775), - [sym__external_open_bracket] = ACTIONS(775), - [sym__external_open_bracket2] = ACTIONS(775), + [sym__newline] = ACTIONS(772), + [sym__semicolon] = ACTIONS(772), + [sym__raw_string_literal] = ACTIONS(772), + [sym__external_else] = ACTIONS(772), + [sym__external_open_parenthesis] = ACTIONS(772), + [sym__external_open_brace] = ACTIONS(772), + [sym__external_open_bracket] = ACTIONS(772), + [sym__external_open_bracket2] = ACTIONS(772), }, - [364] = { - [sym_identifier] = ACTIONS(756), - [anon_sym_BSLASH] = ACTIONS(754), - [anon_sym_function] = ACTIONS(756), - [anon_sym_EQ] = ACTIONS(756), - [anon_sym_if] = ACTIONS(756), - [anon_sym_for] = ACTIONS(756), - [anon_sym_while] = ACTIONS(756), - [anon_sym_repeat] = ACTIONS(756), - [anon_sym_QMARK] = ACTIONS(754), - [anon_sym_TILDE] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_PLUS] = ACTIONS(754), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_LT_DASH] = ACTIONS(754), - [anon_sym_LT_LT_DASH] = ACTIONS(754), - [anon_sym_COLON_EQ] = ACTIONS(754), - [anon_sym_DASH_GT] = ACTIONS(756), - [anon_sym_DASH_GT_GT] = ACTIONS(754), - [anon_sym_PIPE] = ACTIONS(756), - [anon_sym_AMP] = ACTIONS(756), - [anon_sym_PIPE_PIPE] = ACTIONS(754), - [anon_sym_AMP_AMP] = ACTIONS(754), - [anon_sym_LT] = ACTIONS(756), - [anon_sym_LT_EQ] = ACTIONS(754), - [anon_sym_GT] = ACTIONS(756), - [anon_sym_GT_EQ] = ACTIONS(754), - [anon_sym_EQ_EQ] = ACTIONS(754), - [anon_sym_BANG_EQ] = ACTIONS(754), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(754), - [anon_sym_STAR_STAR] = ACTIONS(754), - [anon_sym_CARET] = ACTIONS(754), - [aux_sym_binary_operator_token1] = ACTIONS(754), - [anon_sym_PIPE_GT] = ACTIONS(754), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_DOLLAR] = ACTIONS(754), - [anon_sym_AT] = ACTIONS(754), - [sym__hex_literal] = ACTIONS(754), - [sym__number_literal] = ACTIONS(756), - [anon_sym_SQUOTE] = ACTIONS(754), - [anon_sym_DQUOTE] = ACTIONS(754), - [sym_dots] = ACTIONS(756), - [sym_dot_dot_i] = ACTIONS(756), - [sym_return] = ACTIONS(756), - [sym_next] = ACTIONS(756), - [sym_break] = ACTIONS(756), - [sym_true] = ACTIONS(756), - [sym_false] = ACTIONS(756), - [sym_null] = ACTIONS(756), - [sym_inf] = ACTIONS(756), - [sym_nan] = ACTIONS(756), - [anon_sym_NA] = ACTIONS(756), - [anon_sym_NA_integer_] = ACTIONS(756), - [anon_sym_NA_real_] = ACTIONS(756), - [anon_sym_NA_complex_] = ACTIONS(756), - [anon_sym_NA_character_] = ACTIONS(756), + [373] = { + [ts_builtin_sym_end] = ACTIONS(740), + [sym_identifier] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(740), + [anon_sym_function] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_if] = ACTIONS(738), + [anon_sym_for] = ACTIONS(738), + [anon_sym_while] = ACTIONS(738), + [anon_sym_repeat] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(740), + [anon_sym_LT_LT_DASH] = ACTIONS(740), + [anon_sym_COLON_EQ] = ACTIONS(740), + [anon_sym_DASH_GT] = ACTIONS(738), + [anon_sym_DASH_GT_GT] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), + [anon_sym_PIPE_PIPE] = ACTIONS(740), + [anon_sym_AMP_AMP] = ACTIONS(740), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(740), + [anon_sym_BANG_EQ] = ACTIONS(740), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_STAR_STAR] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(740), + [aux_sym_binary_operator_token1] = ACTIONS(740), + [anon_sym_PIPE_GT] = ACTIONS(740), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(740), + [sym__hex_literal] = ACTIONS(740), + [sym__number_literal] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [sym_dots] = ACTIONS(738), + [sym_dot_dot_i] = ACTIONS(738), + [sym_return] = ACTIONS(738), + [sym_next] = ACTIONS(738), + [sym_break] = ACTIONS(738), + [sym_true] = ACTIONS(738), + [sym_false] = ACTIONS(738), + [sym_null] = ACTIONS(738), + [sym_inf] = ACTIONS(738), + [sym_nan] = ACTIONS(738), + [anon_sym_NA] = ACTIONS(738), + [anon_sym_NA_integer_] = ACTIONS(738), + [anon_sym_NA_real_] = ACTIONS(738), + [anon_sym_NA_complex_] = ACTIONS(738), + [anon_sym_NA_character_] = ACTIONS(738), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(754), - [sym__semicolon] = ACTIONS(754), - [sym__raw_string_literal] = ACTIONS(754), - [sym__external_else] = ACTIONS(754), - [sym__external_open_parenthesis] = ACTIONS(754), - [sym__external_open_brace] = ACTIONS(754), - [sym__external_close_brace] = ACTIONS(754), - [sym__external_open_bracket] = ACTIONS(754), - [sym__external_open_bracket2] = ACTIONS(754), + [sym__newline] = ACTIONS(740), + [sym__semicolon] = ACTIONS(740), + [sym__raw_string_literal] = ACTIONS(740), + [sym__external_else] = ACTIONS(740), + [sym__external_open_parenthesis] = ACTIONS(740), + [sym__external_open_brace] = ACTIONS(740), + [sym__external_open_bracket] = ACTIONS(740), + [sym__external_open_bracket2] = ACTIONS(740), }, - [365] = { + [374] = { [ts_builtin_sym_end] = ACTIONS(744), [sym_identifier] = ACTIONS(742), [anon_sym_BSLASH] = ACTIONS(744), @@ -32903,279 +33515,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(744), [sym__external_open_bracket2] = ACTIONS(744), }, - [366] = { - [sym_identifier] = ACTIONS(716), - [anon_sym_BSLASH] = ACTIONS(714), - [anon_sym_function] = ACTIONS(716), - [anon_sym_EQ] = ACTIONS(716), - [anon_sym_if] = ACTIONS(716), - [anon_sym_for] = ACTIONS(716), - [anon_sym_while] = ACTIONS(716), - [anon_sym_repeat] = ACTIONS(716), - [anon_sym_QMARK] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(714), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_PLUS] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_LT_DASH] = ACTIONS(714), - [anon_sym_LT_LT_DASH] = ACTIONS(714), - [anon_sym_COLON_EQ] = ACTIONS(714), - [anon_sym_DASH_GT] = ACTIONS(716), - [anon_sym_DASH_GT_GT] = ACTIONS(714), - [anon_sym_PIPE] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(716), - [anon_sym_PIPE_PIPE] = ACTIONS(714), - [anon_sym_AMP_AMP] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(716), - [anon_sym_LT_EQ] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(714), - [anon_sym_EQ_EQ] = ACTIONS(714), - [anon_sym_BANG_EQ] = ACTIONS(714), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_SLASH] = ACTIONS(714), - [anon_sym_STAR_STAR] = ACTIONS(714), - [anon_sym_CARET] = ACTIONS(714), - [aux_sym_binary_operator_token1] = ACTIONS(714), - [anon_sym_PIPE_GT] = ACTIONS(714), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_DOLLAR] = ACTIONS(714), - [anon_sym_AT] = ACTIONS(714), - [sym__hex_literal] = ACTIONS(714), - [sym__number_literal] = ACTIONS(716), - [anon_sym_SQUOTE] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(714), - [sym_dots] = ACTIONS(716), - [sym_dot_dot_i] = ACTIONS(716), - [sym_return] = ACTIONS(716), - [sym_next] = ACTIONS(716), - [sym_break] = ACTIONS(716), - [sym_true] = ACTIONS(716), - [sym_false] = ACTIONS(716), - [sym_null] = ACTIONS(716), - [sym_inf] = ACTIONS(716), - [sym_nan] = ACTIONS(716), - [anon_sym_NA] = ACTIONS(716), - [anon_sym_NA_integer_] = ACTIONS(716), - [anon_sym_NA_real_] = ACTIONS(716), - [anon_sym_NA_complex_] = ACTIONS(716), - [anon_sym_NA_character_] = ACTIONS(716), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(714), - [sym__semicolon] = ACTIONS(714), - [sym__raw_string_literal] = ACTIONS(714), - [sym__external_else] = ACTIONS(714), - [sym__external_open_parenthesis] = ACTIONS(714), - [sym__external_open_brace] = ACTIONS(714), - [sym__external_close_brace] = ACTIONS(714), - [sym__external_open_bracket] = ACTIONS(714), - [sym__external_open_bracket2] = ACTIONS(714), - }, - [367] = { - [sym_identifier] = ACTIONS(712), - [anon_sym_BSLASH] = ACTIONS(710), - [anon_sym_function] = ACTIONS(712), - [anon_sym_EQ] = ACTIONS(712), - [anon_sym_if] = ACTIONS(712), - [anon_sym_for] = ACTIONS(712), - [anon_sym_while] = ACTIONS(712), - [anon_sym_repeat] = ACTIONS(712), - [anon_sym_QMARK] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_BANG] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_LT_DASH] = ACTIONS(710), - [anon_sym_LT_LT_DASH] = ACTIONS(710), - [anon_sym_COLON_EQ] = ACTIONS(710), - [anon_sym_DASH_GT] = ACTIONS(712), - [anon_sym_DASH_GT_GT] = ACTIONS(710), - [anon_sym_PIPE] = ACTIONS(712), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_PIPE_PIPE] = ACTIONS(710), - [anon_sym_AMP_AMP] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(712), - [anon_sym_LT_EQ] = ACTIONS(710), - [anon_sym_GT] = ACTIONS(712), - [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(710), - [anon_sym_BANG_EQ] = ACTIONS(710), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_SLASH] = ACTIONS(710), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [aux_sym_binary_operator_token1] = ACTIONS(710), - [anon_sym_PIPE_GT] = ACTIONS(710), - [anon_sym_COLON] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_AT] = ACTIONS(710), - [sym__hex_literal] = ACTIONS(710), - [sym__number_literal] = ACTIONS(712), - [anon_sym_SQUOTE] = ACTIONS(710), - [anon_sym_DQUOTE] = ACTIONS(710), - [sym_dots] = ACTIONS(712), - [sym_dot_dot_i] = ACTIONS(712), - [sym_return] = ACTIONS(712), - [sym_next] = ACTIONS(712), - [sym_break] = ACTIONS(712), - [sym_true] = ACTIONS(712), - [sym_false] = ACTIONS(712), - [sym_null] = ACTIONS(712), - [sym_inf] = ACTIONS(712), - [sym_nan] = ACTIONS(712), - [anon_sym_NA] = ACTIONS(712), - [anon_sym_NA_integer_] = ACTIONS(712), - [anon_sym_NA_real_] = ACTIONS(712), - [anon_sym_NA_complex_] = ACTIONS(712), - [anon_sym_NA_character_] = ACTIONS(712), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(710), - [sym__semicolon] = ACTIONS(710), - [sym__raw_string_literal] = ACTIONS(710), - [sym__external_else] = ACTIONS(710), - [sym__external_open_parenthesis] = ACTIONS(710), - [sym__external_open_brace] = ACTIONS(710), - [sym__external_close_brace] = ACTIONS(710), - [sym__external_open_bracket] = ACTIONS(710), - [sym__external_open_bracket2] = ACTIONS(710), - }, - [368] = { - [sym_identifier] = ACTIONS(764), - [anon_sym_BSLASH] = ACTIONS(762), - [anon_sym_function] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(764), - [anon_sym_if] = ACTIONS(764), - [anon_sym_for] = ACTIONS(764), - [anon_sym_while] = ACTIONS(764), - [anon_sym_repeat] = ACTIONS(764), - [anon_sym_QMARK] = ACTIONS(762), - [anon_sym_TILDE] = ACTIONS(762), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(762), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_LT_DASH] = ACTIONS(762), - [anon_sym_LT_LT_DASH] = ACTIONS(762), - [anon_sym_COLON_EQ] = ACTIONS(762), - [anon_sym_DASH_GT] = ACTIONS(764), - [anon_sym_DASH_GT_GT] = ACTIONS(762), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(764), - [anon_sym_LT_EQ] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(762), - [anon_sym_EQ_EQ] = ACTIONS(762), - [anon_sym_BANG_EQ] = ACTIONS(762), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_STAR_STAR] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [aux_sym_binary_operator_token1] = ACTIONS(762), - [anon_sym_PIPE_GT] = ACTIONS(762), - [anon_sym_COLON] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(762), - [anon_sym_AT] = ACTIONS(762), - [sym__hex_literal] = ACTIONS(762), - [sym__number_literal] = ACTIONS(764), - [anon_sym_SQUOTE] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [sym_dots] = ACTIONS(764), - [sym_dot_dot_i] = ACTIONS(764), - [sym_return] = ACTIONS(764), - [sym_next] = ACTIONS(764), - [sym_break] = ACTIONS(764), - [sym_true] = ACTIONS(764), - [sym_false] = ACTIONS(764), - [sym_null] = ACTIONS(764), - [sym_inf] = ACTIONS(764), - [sym_nan] = ACTIONS(764), - [anon_sym_NA] = ACTIONS(764), - [anon_sym_NA_integer_] = ACTIONS(764), - [anon_sym_NA_real_] = ACTIONS(764), - [anon_sym_NA_complex_] = ACTIONS(764), - [anon_sym_NA_character_] = ACTIONS(764), + [375] = { + [ts_builtin_sym_end] = ACTIONS(748), + [sym_identifier] = ACTIONS(746), + [anon_sym_BSLASH] = ACTIONS(748), + [anon_sym_function] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(746), + [anon_sym_if] = ACTIONS(746), + [anon_sym_for] = ACTIONS(746), + [anon_sym_while] = ACTIONS(746), + [anon_sym_repeat] = ACTIONS(746), + [anon_sym_QMARK] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(748), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(746), + [anon_sym_LT_DASH] = ACTIONS(748), + [anon_sym_LT_LT_DASH] = ACTIONS(748), + [anon_sym_COLON_EQ] = ACTIONS(748), + [anon_sym_DASH_GT] = ACTIONS(746), + [anon_sym_DASH_GT_GT] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(746), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_PIPE_PIPE] = ACTIONS(748), + [anon_sym_AMP_AMP] = ACTIONS(748), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT_EQ] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(746), + [anon_sym_GT_EQ] = ACTIONS(748), + [anon_sym_EQ_EQ] = ACTIONS(748), + [anon_sym_BANG_EQ] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_SLASH] = ACTIONS(748), + [anon_sym_STAR_STAR] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [aux_sym_binary_operator_token1] = ACTIONS(748), + [anon_sym_PIPE_GT] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(746), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(748), + [sym__hex_literal] = ACTIONS(748), + [sym__number_literal] = ACTIONS(746), + [anon_sym_SQUOTE] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [sym_dots] = ACTIONS(746), + [sym_dot_dot_i] = ACTIONS(746), + [sym_return] = ACTIONS(746), + [sym_next] = ACTIONS(746), + [sym_break] = ACTIONS(746), + [sym_true] = ACTIONS(746), + [sym_false] = ACTIONS(746), + [sym_null] = ACTIONS(746), + [sym_inf] = ACTIONS(746), + [sym_nan] = ACTIONS(746), + [anon_sym_NA] = ACTIONS(746), + [anon_sym_NA_integer_] = ACTIONS(746), + [anon_sym_NA_real_] = ACTIONS(746), + [anon_sym_NA_complex_] = ACTIONS(746), + [anon_sym_NA_character_] = ACTIONS(746), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(762), - [sym__semicolon] = ACTIONS(762), - [sym__raw_string_literal] = ACTIONS(762), - [sym__external_else] = ACTIONS(762), - [sym__external_open_parenthesis] = ACTIONS(762), - [sym__external_open_brace] = ACTIONS(762), - [sym__external_close_brace] = ACTIONS(762), - [sym__external_open_bracket] = ACTIONS(762), - [sym__external_open_bracket2] = ACTIONS(762), + [sym__newline] = ACTIONS(748), + [sym__semicolon] = ACTIONS(748), + [sym__raw_string_literal] = ACTIONS(748), + [sym__external_else] = ACTIONS(748), + [sym__external_open_parenthesis] = ACTIONS(748), + [sym__external_open_brace] = ACTIONS(748), + [sym__external_open_bracket] = ACTIONS(748), + [sym__external_open_bracket2] = ACTIONS(748), }, - [369] = { - [sym_identifier] = ACTIONS(708), - [anon_sym_BSLASH] = ACTIONS(706), - [anon_sym_function] = ACTIONS(708), - [anon_sym_EQ] = ACTIONS(708), - [anon_sym_if] = ACTIONS(708), - [anon_sym_for] = ACTIONS(708), - [anon_sym_while] = ACTIONS(708), - [anon_sym_repeat] = ACTIONS(708), - [anon_sym_QMARK] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(706), - [anon_sym_BANG] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [anon_sym_LT_DASH] = ACTIONS(706), - [anon_sym_LT_LT_DASH] = ACTIONS(706), - [anon_sym_COLON_EQ] = ACTIONS(706), - [anon_sym_DASH_GT] = ACTIONS(708), - [anon_sym_DASH_GT_GT] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_AMP] = ACTIONS(708), - [anon_sym_PIPE_PIPE] = ACTIONS(706), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_LT] = ACTIONS(708), - [anon_sym_LT_EQ] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(708), - [anon_sym_GT_EQ] = ACTIONS(706), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(706), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [aux_sym_binary_operator_token1] = ACTIONS(706), - [anon_sym_PIPE_GT] = ACTIONS(706), - [anon_sym_COLON] = ACTIONS(708), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_AT] = ACTIONS(706), - [sym__hex_literal] = ACTIONS(706), - [sym__number_literal] = ACTIONS(708), - [anon_sym_SQUOTE] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(706), - [sym_dots] = ACTIONS(708), - [sym_dot_dot_i] = ACTIONS(708), - [sym_return] = ACTIONS(708), - [sym_next] = ACTIONS(708), - [sym_break] = ACTIONS(708), - [sym_true] = ACTIONS(708), - [sym_false] = ACTIONS(708), - [sym_null] = ACTIONS(708), - [sym_inf] = ACTIONS(708), - [sym_nan] = ACTIONS(708), - [anon_sym_NA] = ACTIONS(708), - [anon_sym_NA_integer_] = ACTIONS(708), - [anon_sym_NA_real_] = ACTIONS(708), - [anon_sym_NA_complex_] = ACTIONS(708), - [anon_sym_NA_character_] = ACTIONS(708), + [376] = { + [sym_identifier] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_function] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_if] = ACTIONS(779), + [anon_sym_for] = ACTIONS(779), + [anon_sym_while] = ACTIONS(779), + [anon_sym_repeat] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(777), + [anon_sym_BANG] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(777), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_LT_DASH] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(777), + [anon_sym_COLON_EQ] = ACTIONS(777), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_DASH_GT_GT] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(777), + [anon_sym_AMP_AMP] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(779), + [anon_sym_SLASH] = ACTIONS(777), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_CARET] = ACTIONS(777), + [aux_sym_binary_operator_token1] = ACTIONS(777), + [anon_sym_PIPE_GT] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(777), + [anon_sym_AT] = ACTIONS(777), + [sym__hex_literal] = ACTIONS(777), + [sym__number_literal] = ACTIONS(779), + [anon_sym_SQUOTE] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(777), + [sym_dots] = ACTIONS(779), + [sym_dot_dot_i] = ACTIONS(779), + [sym_return] = ACTIONS(779), + [sym_next] = ACTIONS(779), + [sym_break] = ACTIONS(779), + [sym_true] = ACTIONS(779), + [sym_false] = ACTIONS(779), + [sym_null] = ACTIONS(779), + [sym_inf] = ACTIONS(779), + [sym_nan] = ACTIONS(779), + [anon_sym_NA] = ACTIONS(779), + [anon_sym_NA_integer_] = ACTIONS(779), + [anon_sym_NA_real_] = ACTIONS(779), + [anon_sym_NA_complex_] = ACTIONS(779), + [anon_sym_NA_character_] = ACTIONS(779), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(706), - [sym__semicolon] = ACTIONS(706), - [sym__raw_string_literal] = ACTIONS(706), - [sym__external_else] = ACTIONS(706), - [sym__external_open_parenthesis] = ACTIONS(706), - [sym__external_open_brace] = ACTIONS(706), - [sym__external_close_brace] = ACTIONS(706), - [sym__external_open_bracket] = ACTIONS(706), - [sym__external_open_bracket2] = ACTIONS(706), + [sym__newline] = ACTIONS(777), + [sym__semicolon] = ACTIONS(777), + [sym__raw_string_literal] = ACTIONS(777), + [sym__external_else] = ACTIONS(777), + [sym__external_open_parenthesis] = ACTIONS(777), + [sym__external_open_brace] = ACTIONS(777), + [sym__external_close_brace] = ACTIONS(777), + [sym__external_open_bracket] = ACTIONS(777), + [sym__external_open_bracket2] = ACTIONS(777), }, - [370] = { + [377] = { [ts_builtin_sym_end] = ACTIONS(732), [sym_identifier] = ACTIONS(730), [anon_sym_BSLASH] = ACTIONS(732), @@ -33237,514 +33713,574 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(732), [sym__semicolon] = ACTIONS(732), [sym__raw_string_literal] = ACTIONS(732), - [sym__external_else] = ACTIONS(732), [sym__external_open_parenthesis] = ACTIONS(732), [sym__external_open_brace] = ACTIONS(732), [sym__external_open_bracket] = ACTIONS(732), [sym__external_open_bracket2] = ACTIONS(732), }, - [371] = { - [sym_identifier] = ACTIONS(768), - [anon_sym_BSLASH] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(768), - [anon_sym_if] = ACTIONS(768), - [anon_sym_for] = ACTIONS(768), - [anon_sym_while] = ACTIONS(768), - [anon_sym_repeat] = ACTIONS(768), - [anon_sym_QMARK] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(766), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_LT_DASH] = ACTIONS(766), - [anon_sym_LT_LT_DASH] = ACTIONS(766), - [anon_sym_COLON_EQ] = ACTIONS(766), - [anon_sym_DASH_GT] = ACTIONS(768), - [anon_sym_DASH_GT_GT] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(768), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_LT] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(766), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_GT_EQ] = ACTIONS(766), - [anon_sym_EQ_EQ] = ACTIONS(766), - [anon_sym_BANG_EQ] = ACTIONS(766), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_STAR_STAR] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(766), - [aux_sym_binary_operator_token1] = ACTIONS(766), - [anon_sym_PIPE_GT] = ACTIONS(766), - [anon_sym_COLON] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(766), - [anon_sym_AT] = ACTIONS(766), - [sym__hex_literal] = ACTIONS(766), - [sym__number_literal] = ACTIONS(768), - [anon_sym_SQUOTE] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [sym_dots] = ACTIONS(768), - [sym_dot_dot_i] = ACTIONS(768), - [sym_return] = ACTIONS(768), - [sym_next] = ACTIONS(768), - [sym_break] = ACTIONS(768), - [sym_true] = ACTIONS(768), - [sym_false] = ACTIONS(768), - [sym_null] = ACTIONS(768), - [sym_inf] = ACTIONS(768), - [sym_nan] = ACTIONS(768), - [anon_sym_NA] = ACTIONS(768), - [anon_sym_NA_integer_] = ACTIONS(768), - [anon_sym_NA_real_] = ACTIONS(768), - [anon_sym_NA_complex_] = ACTIONS(768), - [anon_sym_NA_character_] = ACTIONS(768), + [378] = { + [ts_builtin_sym_end] = ACTIONS(777), + [sym_identifier] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_function] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_if] = ACTIONS(779), + [anon_sym_for] = ACTIONS(779), + [anon_sym_while] = ACTIONS(779), + [anon_sym_repeat] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(777), + [anon_sym_BANG] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(777), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_LT_DASH] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(777), + [anon_sym_COLON_EQ] = ACTIONS(777), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_DASH_GT_GT] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(777), + [anon_sym_AMP_AMP] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(779), + [anon_sym_SLASH] = ACTIONS(777), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_CARET] = ACTIONS(777), + [aux_sym_binary_operator_token1] = ACTIONS(777), + [anon_sym_PIPE_GT] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(777), + [anon_sym_AT] = ACTIONS(777), + [sym__hex_literal] = ACTIONS(777), + [sym__number_literal] = ACTIONS(779), + [anon_sym_SQUOTE] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(777), + [sym_dots] = ACTIONS(779), + [sym_dot_dot_i] = ACTIONS(779), + [sym_return] = ACTIONS(779), + [sym_next] = ACTIONS(779), + [sym_break] = ACTIONS(779), + [sym_true] = ACTIONS(779), + [sym_false] = ACTIONS(779), + [sym_null] = ACTIONS(779), + [sym_inf] = ACTIONS(779), + [sym_nan] = ACTIONS(779), + [anon_sym_NA] = ACTIONS(779), + [anon_sym_NA_integer_] = ACTIONS(779), + [anon_sym_NA_real_] = ACTIONS(779), + [anon_sym_NA_complex_] = ACTIONS(779), + [anon_sym_NA_character_] = ACTIONS(779), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(766), - [sym__semicolon] = ACTIONS(766), - [sym__raw_string_literal] = ACTIONS(766), - [sym__external_else] = ACTIONS(766), - [sym__external_open_parenthesis] = ACTIONS(766), - [sym__external_open_brace] = ACTIONS(766), - [sym__external_close_brace] = ACTIONS(766), - [sym__external_open_bracket] = ACTIONS(766), - [sym__external_open_bracket2] = ACTIONS(766), + [sym__newline] = ACTIONS(777), + [sym__semicolon] = ACTIONS(777), + [sym__raw_string_literal] = ACTIONS(777), + [sym__external_open_parenthesis] = ACTIONS(777), + [sym__external_open_brace] = ACTIONS(777), + [sym__external_open_bracket] = ACTIONS(777), + [sym__external_open_bracket2] = ACTIONS(777), }, - [372] = { - [sym_identifier] = ACTIONS(724), - [anon_sym_BSLASH] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_EQ] = ACTIONS(724), - [anon_sym_if] = ACTIONS(724), - [anon_sym_for] = ACTIONS(724), - [anon_sym_while] = ACTIONS(724), - [anon_sym_repeat] = ACTIONS(724), - [anon_sym_QMARK] = ACTIONS(722), - [anon_sym_TILDE] = ACTIONS(722), - [anon_sym_BANG] = ACTIONS(724), - [anon_sym_PLUS] = ACTIONS(722), - [anon_sym_DASH] = ACTIONS(724), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_LT_LT_DASH] = ACTIONS(722), - [anon_sym_COLON_EQ] = ACTIONS(722), - [anon_sym_DASH_GT] = ACTIONS(724), - [anon_sym_DASH_GT_GT] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(724), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(724), - [anon_sym_LT_EQ] = ACTIONS(722), - [anon_sym_GT] = ACTIONS(724), - [anon_sym_GT_EQ] = ACTIONS(722), - [anon_sym_EQ_EQ] = ACTIONS(722), - [anon_sym_BANG_EQ] = ACTIONS(722), - [anon_sym_STAR] = ACTIONS(724), - [anon_sym_SLASH] = ACTIONS(722), - [anon_sym_STAR_STAR] = ACTIONS(722), - [anon_sym_CARET] = ACTIONS(722), - [aux_sym_binary_operator_token1] = ACTIONS(722), - [anon_sym_PIPE_GT] = ACTIONS(722), - [anon_sym_COLON] = ACTIONS(724), - [anon_sym_DOLLAR] = ACTIONS(722), - [anon_sym_AT] = ACTIONS(722), - [sym__hex_literal] = ACTIONS(722), - [sym__number_literal] = ACTIONS(724), - [anon_sym_SQUOTE] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [sym_dots] = ACTIONS(724), - [sym_dot_dot_i] = ACTIONS(724), - [sym_return] = ACTIONS(724), - [sym_next] = ACTIONS(724), - [sym_break] = ACTIONS(724), - [sym_true] = ACTIONS(724), - [sym_false] = ACTIONS(724), - [sym_null] = ACTIONS(724), - [sym_inf] = ACTIONS(724), - [sym_nan] = ACTIONS(724), - [anon_sym_NA] = ACTIONS(724), - [anon_sym_NA_integer_] = ACTIONS(724), - [anon_sym_NA_real_] = ACTIONS(724), - [anon_sym_NA_complex_] = ACTIONS(724), - [anon_sym_NA_character_] = ACTIONS(724), + [379] = { + [ts_builtin_sym_end] = ACTIONS(748), + [sym_identifier] = ACTIONS(746), + [anon_sym_BSLASH] = ACTIONS(748), + [anon_sym_function] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(746), + [anon_sym_if] = ACTIONS(746), + [anon_sym_for] = ACTIONS(746), + [anon_sym_while] = ACTIONS(746), + [anon_sym_repeat] = ACTIONS(746), + [anon_sym_QMARK] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(748), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(746), + [anon_sym_LT_DASH] = ACTIONS(748), + [anon_sym_LT_LT_DASH] = ACTIONS(748), + [anon_sym_COLON_EQ] = ACTIONS(748), + [anon_sym_DASH_GT] = ACTIONS(746), + [anon_sym_DASH_GT_GT] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(746), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_PIPE_PIPE] = ACTIONS(748), + [anon_sym_AMP_AMP] = ACTIONS(748), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT_EQ] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(746), + [anon_sym_GT_EQ] = ACTIONS(748), + [anon_sym_EQ_EQ] = ACTIONS(748), + [anon_sym_BANG_EQ] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_SLASH] = ACTIONS(748), + [anon_sym_STAR_STAR] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [aux_sym_binary_operator_token1] = ACTIONS(748), + [anon_sym_PIPE_GT] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(746), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(748), + [sym__hex_literal] = ACTIONS(748), + [sym__number_literal] = ACTIONS(746), + [anon_sym_SQUOTE] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [sym_dots] = ACTIONS(746), + [sym_dot_dot_i] = ACTIONS(746), + [sym_return] = ACTIONS(746), + [sym_next] = ACTIONS(746), + [sym_break] = ACTIONS(746), + [sym_true] = ACTIONS(746), + [sym_false] = ACTIONS(746), + [sym_null] = ACTIONS(746), + [sym_inf] = ACTIONS(746), + [sym_nan] = ACTIONS(746), + [anon_sym_NA] = ACTIONS(746), + [anon_sym_NA_integer_] = ACTIONS(746), + [anon_sym_NA_real_] = ACTIONS(746), + [anon_sym_NA_complex_] = ACTIONS(746), + [anon_sym_NA_character_] = ACTIONS(746), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(722), - [sym__semicolon] = ACTIONS(722), - [sym__raw_string_literal] = ACTIONS(722), - [sym__external_else] = ACTIONS(722), - [sym__external_open_parenthesis] = ACTIONS(722), - [sym__external_open_brace] = ACTIONS(722), - [sym__external_close_brace] = ACTIONS(722), - [sym__external_open_bracket] = ACTIONS(722), - [sym__external_open_bracket2] = ACTIONS(722), + [sym__newline] = ACTIONS(748), + [sym__semicolon] = ACTIONS(748), + [sym__raw_string_literal] = ACTIONS(748), + [sym__external_open_parenthesis] = ACTIONS(748), + [sym__external_open_brace] = ACTIONS(748), + [sym__external_open_bracket] = ACTIONS(748), + [sym__external_open_bracket2] = ACTIONS(748), }, - [373] = { - [sym_identifier] = ACTIONS(720), - [anon_sym_BSLASH] = ACTIONS(718), - [anon_sym_function] = ACTIONS(720), - [anon_sym_EQ] = ACTIONS(720), - [anon_sym_if] = ACTIONS(720), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(720), - [anon_sym_repeat] = ACTIONS(720), - [anon_sym_QMARK] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(718), - [anon_sym_BANG] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_LT_DASH] = ACTIONS(718), - [anon_sym_LT_LT_DASH] = ACTIONS(718), - [anon_sym_COLON_EQ] = ACTIONS(718), - [anon_sym_DASH_GT] = ACTIONS(720), - [anon_sym_DASH_GT_GT] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_PIPE_PIPE] = ACTIONS(718), - [anon_sym_AMP_AMP] = ACTIONS(718), - [anon_sym_LT] = ACTIONS(720), - [anon_sym_LT_EQ] = ACTIONS(718), - [anon_sym_GT] = ACTIONS(720), - [anon_sym_GT_EQ] = ACTIONS(718), - [anon_sym_EQ_EQ] = ACTIONS(718), - [anon_sym_BANG_EQ] = ACTIONS(718), - [anon_sym_STAR] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(718), - [anon_sym_STAR_STAR] = ACTIONS(718), - [anon_sym_CARET] = ACTIONS(718), - [aux_sym_binary_operator_token1] = ACTIONS(718), - [anon_sym_PIPE_GT] = ACTIONS(718), - [anon_sym_COLON] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(718), - [sym__hex_literal] = ACTIONS(718), - [sym__number_literal] = ACTIONS(720), - [anon_sym_SQUOTE] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(718), - [sym_dots] = ACTIONS(720), - [sym_dot_dot_i] = ACTIONS(720), - [sym_return] = ACTIONS(720), - [sym_next] = ACTIONS(720), - [sym_break] = ACTIONS(720), - [sym_true] = ACTIONS(720), - [sym_false] = ACTIONS(720), - [sym_null] = ACTIONS(720), - [sym_inf] = ACTIONS(720), - [sym_nan] = ACTIONS(720), - [anon_sym_NA] = ACTIONS(720), - [anon_sym_NA_integer_] = ACTIONS(720), - [anon_sym_NA_real_] = ACTIONS(720), - [anon_sym_NA_complex_] = ACTIONS(720), - [anon_sym_NA_character_] = ACTIONS(720), + [380] = { + [ts_builtin_sym_end] = ACTIONS(703), + [sym_identifier] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(703), + [anon_sym_function] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_if] = ACTIONS(705), + [anon_sym_for] = ACTIONS(705), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(703), + [anon_sym_TILDE] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_LT_DASH] = ACTIONS(703), + [anon_sym_LT_LT_DASH] = ACTIONS(703), + [anon_sym_COLON_EQ] = ACTIONS(703), + [anon_sym_DASH_GT] = ACTIONS(705), + [anon_sym_DASH_GT_GT] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(703), + [anon_sym_AMP_AMP] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(705), + [anon_sym_LT_EQ] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_GT_EQ] = ACTIONS(703), + [anon_sym_EQ_EQ] = ACTIONS(703), + [anon_sym_BANG_EQ] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(703), + [anon_sym_STAR_STAR] = ACTIONS(703), + [anon_sym_CARET] = ACTIONS(703), + [aux_sym_binary_operator_token1] = ACTIONS(703), + [anon_sym_PIPE_GT] = ACTIONS(703), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_AT] = ACTIONS(703), + [sym__hex_literal] = ACTIONS(703), + [sym__number_literal] = ACTIONS(705), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_DQUOTE] = ACTIONS(703), + [sym_dots] = ACTIONS(705), + [sym_dot_dot_i] = ACTIONS(705), + [sym_return] = ACTIONS(705), + [sym_next] = ACTIONS(705), + [sym_break] = ACTIONS(705), + [sym_true] = ACTIONS(705), + [sym_false] = ACTIONS(705), + [sym_null] = ACTIONS(705), + [sym_inf] = ACTIONS(705), + [sym_nan] = ACTIONS(705), + [anon_sym_NA] = ACTIONS(705), + [anon_sym_NA_integer_] = ACTIONS(705), + [anon_sym_NA_real_] = ACTIONS(705), + [anon_sym_NA_complex_] = ACTIONS(705), + [anon_sym_NA_character_] = ACTIONS(705), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(718), - [sym__semicolon] = ACTIONS(718), - [sym__raw_string_literal] = ACTIONS(718), - [sym__external_else] = ACTIONS(718), - [sym__external_open_parenthesis] = ACTIONS(718), - [sym__external_open_brace] = ACTIONS(718), - [sym__external_close_brace] = ACTIONS(718), - [sym__external_open_bracket] = ACTIONS(718), - [sym__external_open_bracket2] = ACTIONS(718), + [sym__newline] = ACTIONS(703), + [sym__semicolon] = ACTIONS(703), + [sym__raw_string_literal] = ACTIONS(703), + [sym__external_open_parenthesis] = ACTIONS(703), + [sym__external_open_brace] = ACTIONS(703), + [sym__external_open_bracket] = ACTIONS(703), + [sym__external_open_bracket2] = ACTIONS(703), }, - [374] = { - [sym_identifier] = ACTIONS(704), - [anon_sym_BSLASH] = ACTIONS(702), - [anon_sym_function] = ACTIONS(704), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_if] = ACTIONS(704), - [anon_sym_for] = ACTIONS(704), - [anon_sym_while] = ACTIONS(704), - [anon_sym_repeat] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_LT_DASH] = ACTIONS(702), - [anon_sym_LT_LT_DASH] = ACTIONS(702), - [anon_sym_COLON_EQ] = ACTIONS(702), - [anon_sym_DASH_GT] = ACTIONS(704), - [anon_sym_DASH_GT_GT] = ACTIONS(702), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE_PIPE] = ACTIONS(702), - [anon_sym_AMP_AMP] = ACTIONS(702), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_LT_EQ] = ACTIONS(702), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(702), - [anon_sym_EQ_EQ] = ACTIONS(702), - [anon_sym_BANG_EQ] = ACTIONS(702), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(702), - [anon_sym_STAR_STAR] = ACTIONS(702), - [anon_sym_CARET] = ACTIONS(702), - [aux_sym_binary_operator_token1] = ACTIONS(702), - [anon_sym_PIPE_GT] = ACTIONS(702), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(702), - [anon_sym_AT] = ACTIONS(702), - [sym__hex_literal] = ACTIONS(702), - [sym__number_literal] = ACTIONS(704), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_DQUOTE] = ACTIONS(702), - [sym_dots] = ACTIONS(704), - [sym_dot_dot_i] = ACTIONS(704), - [sym_return] = ACTIONS(704), - [sym_next] = ACTIONS(704), - [sym_break] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_inf] = ACTIONS(704), - [sym_nan] = ACTIONS(704), - [anon_sym_NA] = ACTIONS(704), - [anon_sym_NA_integer_] = ACTIONS(704), - [anon_sym_NA_real_] = ACTIONS(704), - [anon_sym_NA_complex_] = ACTIONS(704), - [anon_sym_NA_character_] = ACTIONS(704), + [381] = { + [ts_builtin_sym_end] = ACTIONS(752), + [sym_identifier] = ACTIONS(750), + [anon_sym_BSLASH] = ACTIONS(752), + [anon_sym_function] = ACTIONS(750), + [anon_sym_EQ] = ACTIONS(750), + [anon_sym_if] = ACTIONS(750), + [anon_sym_for] = ACTIONS(750), + [anon_sym_while] = ACTIONS(750), + [anon_sym_repeat] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(752), + [anon_sym_TILDE] = ACTIONS(752), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_LT_DASH] = ACTIONS(752), + [anon_sym_LT_LT_DASH] = ACTIONS(752), + [anon_sym_COLON_EQ] = ACTIONS(752), + [anon_sym_DASH_GT] = ACTIONS(750), + [anon_sym_DASH_GT_GT] = ACTIONS(752), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(750), + [anon_sym_PIPE_PIPE] = ACTIONS(752), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_LT] = ACTIONS(750), + [anon_sym_LT_EQ] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(750), + [anon_sym_GT_EQ] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(752), + [anon_sym_BANG_EQ] = ACTIONS(752), + [anon_sym_STAR] = ACTIONS(750), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_STAR_STAR] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [aux_sym_binary_operator_token1] = ACTIONS(752), + [anon_sym_PIPE_GT] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(752), + [sym__hex_literal] = ACTIONS(752), + [sym__number_literal] = ACTIONS(750), + [anon_sym_SQUOTE] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym_dots] = ACTIONS(750), + [sym_dot_dot_i] = ACTIONS(750), + [sym_return] = ACTIONS(750), + [sym_next] = ACTIONS(750), + [sym_break] = ACTIONS(750), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_null] = ACTIONS(750), + [sym_inf] = ACTIONS(750), + [sym_nan] = ACTIONS(750), + [anon_sym_NA] = ACTIONS(750), + [anon_sym_NA_integer_] = ACTIONS(750), + [anon_sym_NA_real_] = ACTIONS(750), + [anon_sym_NA_complex_] = ACTIONS(750), + [anon_sym_NA_character_] = ACTIONS(750), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(702), - [sym__semicolon] = ACTIONS(702), - [sym__raw_string_literal] = ACTIONS(702), - [sym__external_else] = ACTIONS(702), - [sym__external_open_parenthesis] = ACTIONS(702), - [sym__external_open_brace] = ACTIONS(702), - [sym__external_close_brace] = ACTIONS(702), - [sym__external_open_bracket] = ACTIONS(702), - [sym__external_open_bracket2] = ACTIONS(702), + [sym__newline] = ACTIONS(752), + [sym__semicolon] = ACTIONS(752), + [sym__raw_string_literal] = ACTIONS(752), + [sym__external_open_parenthesis] = ACTIONS(752), + [sym__external_open_brace] = ACTIONS(752), + [sym__external_open_bracket] = ACTIONS(752), + [sym__external_open_bracket2] = ACTIONS(752), }, - [375] = { - [sym_identifier] = ACTIONS(700), - [anon_sym_BSLASH] = ACTIONS(698), - [anon_sym_function] = ACTIONS(700), - [anon_sym_EQ] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [anon_sym_repeat] = ACTIONS(700), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_LT_DASH] = ACTIONS(698), - [anon_sym_LT_LT_DASH] = ACTIONS(698), - [anon_sym_COLON_EQ] = ACTIONS(698), - [anon_sym_DASH_GT] = ACTIONS(700), - [anon_sym_DASH_GT_GT] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(700), - [anon_sym_PIPE_PIPE] = ACTIONS(698), - [anon_sym_AMP_AMP] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(700), - [anon_sym_LT_EQ] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(700), - [anon_sym_GT_EQ] = ACTIONS(698), - [anon_sym_EQ_EQ] = ACTIONS(698), - [anon_sym_BANG_EQ] = ACTIONS(698), - [anon_sym_STAR] = ACTIONS(700), - [anon_sym_SLASH] = ACTIONS(698), - [anon_sym_STAR_STAR] = ACTIONS(698), - [anon_sym_CARET] = ACTIONS(698), - [aux_sym_binary_operator_token1] = ACTIONS(698), - [anon_sym_PIPE_GT] = ACTIONS(698), - [anon_sym_COLON] = ACTIONS(700), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(698), - [sym__hex_literal] = ACTIONS(698), - [sym__number_literal] = ACTIONS(700), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_DQUOTE] = ACTIONS(698), - [sym_dots] = ACTIONS(700), - [sym_dot_dot_i] = ACTIONS(700), - [sym_return] = ACTIONS(700), - [sym_next] = ACTIONS(700), - [sym_break] = ACTIONS(700), - [sym_true] = ACTIONS(700), - [sym_false] = ACTIONS(700), - [sym_null] = ACTIONS(700), - [sym_inf] = ACTIONS(700), - [sym_nan] = ACTIONS(700), - [anon_sym_NA] = ACTIONS(700), - [anon_sym_NA_integer_] = ACTIONS(700), - [anon_sym_NA_real_] = ACTIONS(700), - [anon_sym_NA_complex_] = ACTIONS(700), - [anon_sym_NA_character_] = ACTIONS(700), + [382] = { + [ts_builtin_sym_end] = ACTIONS(714), + [sym_identifier] = ACTIONS(716), + [anon_sym_BSLASH] = ACTIONS(714), + [anon_sym_function] = ACTIONS(716), + [anon_sym_EQ] = ACTIONS(716), + [anon_sym_if] = ACTIONS(716), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(716), + [anon_sym_repeat] = ACTIONS(716), + [anon_sym_QMARK] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(714), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_PLUS] = ACTIONS(714), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_LT_DASH] = ACTIONS(714), + [anon_sym_LT_LT_DASH] = ACTIONS(714), + [anon_sym_COLON_EQ] = ACTIONS(714), + [anon_sym_DASH_GT] = ACTIONS(716), + [anon_sym_DASH_GT_GT] = ACTIONS(714), + [anon_sym_PIPE] = ACTIONS(716), + [anon_sym_AMP] = ACTIONS(716), + [anon_sym_PIPE_PIPE] = ACTIONS(714), + [anon_sym_AMP_AMP] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(716), + [anon_sym_LT_EQ] = ACTIONS(714), + [anon_sym_GT] = ACTIONS(716), + [anon_sym_GT_EQ] = ACTIONS(714), + [anon_sym_EQ_EQ] = ACTIONS(714), + [anon_sym_BANG_EQ] = ACTIONS(714), + [anon_sym_STAR] = ACTIONS(716), + [anon_sym_SLASH] = ACTIONS(714), + [anon_sym_STAR_STAR] = ACTIONS(714), + [anon_sym_CARET] = ACTIONS(714), + [aux_sym_binary_operator_token1] = ACTIONS(714), + [anon_sym_PIPE_GT] = ACTIONS(714), + [anon_sym_COLON] = ACTIONS(716), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_AT] = ACTIONS(714), + [sym__hex_literal] = ACTIONS(714), + [sym__number_literal] = ACTIONS(716), + [anon_sym_SQUOTE] = ACTIONS(714), + [anon_sym_DQUOTE] = ACTIONS(714), + [sym_dots] = ACTIONS(716), + [sym_dot_dot_i] = ACTIONS(716), + [sym_return] = ACTIONS(716), + [sym_next] = ACTIONS(716), + [sym_break] = ACTIONS(716), + [sym_true] = ACTIONS(716), + [sym_false] = ACTIONS(716), + [sym_null] = ACTIONS(716), + [sym_inf] = ACTIONS(716), + [sym_nan] = ACTIONS(716), + [anon_sym_NA] = ACTIONS(716), + [anon_sym_NA_integer_] = ACTIONS(716), + [anon_sym_NA_real_] = ACTIONS(716), + [anon_sym_NA_complex_] = ACTIONS(716), + [anon_sym_NA_character_] = ACTIONS(716), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(714), + [sym__semicolon] = ACTIONS(714), + [sym__raw_string_literal] = ACTIONS(714), + [sym__external_open_parenthesis] = ACTIONS(714), + [sym__external_open_brace] = ACTIONS(714), + [sym__external_open_bracket] = ACTIONS(714), + [sym__external_open_bracket2] = ACTIONS(714), + }, + [383] = { + [ts_builtin_sym_end] = ACTIONS(756), + [sym_identifier] = ACTIONS(754), + [anon_sym_BSLASH] = ACTIONS(756), + [anon_sym_function] = ACTIONS(754), + [anon_sym_EQ] = ACTIONS(754), + [anon_sym_if] = ACTIONS(754), + [anon_sym_for] = ACTIONS(754), + [anon_sym_while] = ACTIONS(754), + [anon_sym_repeat] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_TILDE] = ACTIONS(756), + [anon_sym_BANG] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_LT_DASH] = ACTIONS(756), + [anon_sym_LT_LT_DASH] = ACTIONS(756), + [anon_sym_COLON_EQ] = ACTIONS(756), + [anon_sym_DASH_GT] = ACTIONS(754), + [anon_sym_DASH_GT_GT] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(754), + [anon_sym_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(754), + [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(754), + [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [aux_sym_binary_operator_token1] = ACTIONS(756), + [anon_sym_PIPE_GT] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(754), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_AT] = ACTIONS(756), + [sym__hex_literal] = ACTIONS(756), + [sym__number_literal] = ACTIONS(754), + [anon_sym_SQUOTE] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym_dots] = ACTIONS(754), + [sym_dot_dot_i] = ACTIONS(754), + [sym_return] = ACTIONS(754), + [sym_next] = ACTIONS(754), + [sym_break] = ACTIONS(754), + [sym_true] = ACTIONS(754), + [sym_false] = ACTIONS(754), + [sym_null] = ACTIONS(754), + [sym_inf] = ACTIONS(754), + [sym_nan] = ACTIONS(754), + [anon_sym_NA] = ACTIONS(754), + [anon_sym_NA_integer_] = ACTIONS(754), + [anon_sym_NA_real_] = ACTIONS(754), + [anon_sym_NA_complex_] = ACTIONS(754), + [anon_sym_NA_character_] = ACTIONS(754), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(698), - [sym__semicolon] = ACTIONS(698), - [sym__raw_string_literal] = ACTIONS(698), - [sym__external_else] = ACTIONS(698), - [sym__external_open_parenthesis] = ACTIONS(698), - [sym__external_open_brace] = ACTIONS(698), - [sym__external_close_brace] = ACTIONS(698), - [sym__external_open_bracket] = ACTIONS(698), - [sym__external_open_bracket2] = ACTIONS(698), + [sym__newline] = ACTIONS(756), + [sym__semicolon] = ACTIONS(756), + [sym__raw_string_literal] = ACTIONS(756), + [sym__external_open_parenthesis] = ACTIONS(756), + [sym__external_open_brace] = ACTIONS(756), + [sym__external_open_bracket] = ACTIONS(756), + [sym__external_open_bracket2] = ACTIONS(756), }, - [376] = { - [sym_identifier] = ACTIONS(696), - [anon_sym_BSLASH] = ACTIONS(694), - [anon_sym_function] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_for] = ACTIONS(696), - [anon_sym_while] = ACTIONS(696), - [anon_sym_repeat] = ACTIONS(696), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(694), - [anon_sym_LT_LT_DASH] = ACTIONS(694), - [anon_sym_COLON_EQ] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(696), - [anon_sym_DASH_GT_GT] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(696), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [aux_sym_binary_operator_token1] = ACTIONS(694), - [anon_sym_PIPE_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_DOLLAR] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [sym__hex_literal] = ACTIONS(694), - [sym__number_literal] = ACTIONS(696), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(694), - [sym_dots] = ACTIONS(696), - [sym_dot_dot_i] = ACTIONS(696), - [sym_return] = ACTIONS(696), - [sym_next] = ACTIONS(696), - [sym_break] = ACTIONS(696), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_null] = ACTIONS(696), - [sym_inf] = ACTIONS(696), - [sym_nan] = ACTIONS(696), - [anon_sym_NA] = ACTIONS(696), - [anon_sym_NA_integer_] = ACTIONS(696), - [anon_sym_NA_real_] = ACTIONS(696), - [anon_sym_NA_complex_] = ACTIONS(696), - [anon_sym_NA_character_] = ACTIONS(696), + [384] = { + [ts_builtin_sym_end] = ACTIONS(768), + [sym_identifier] = ACTIONS(766), + [anon_sym_BSLASH] = ACTIONS(768), + [anon_sym_function] = ACTIONS(766), + [anon_sym_EQ] = ACTIONS(766), + [anon_sym_if] = ACTIONS(766), + [anon_sym_for] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [anon_sym_repeat] = ACTIONS(766), + [anon_sym_QMARK] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_LT_DASH] = ACTIONS(768), + [anon_sym_LT_LT_DASH] = ACTIONS(768), + [anon_sym_COLON_EQ] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(766), + [anon_sym_DASH_GT_GT] = ACTIONS(768), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE_PIPE] = ACTIONS(768), + [anon_sym_AMP_AMP] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(768), + [anon_sym_STAR_STAR] = ACTIONS(768), + [anon_sym_CARET] = ACTIONS(768), + [aux_sym_binary_operator_token1] = ACTIONS(768), + [anon_sym_PIPE_GT] = ACTIONS(768), + [anon_sym_COLON] = ACTIONS(766), + [anon_sym_DOLLAR] = ACTIONS(768), + [anon_sym_AT] = ACTIONS(768), + [sym__hex_literal] = ACTIONS(768), + [sym__number_literal] = ACTIONS(766), + [anon_sym_SQUOTE] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(768), + [sym_dots] = ACTIONS(766), + [sym_dot_dot_i] = ACTIONS(766), + [sym_return] = ACTIONS(766), + [sym_next] = ACTIONS(766), + [sym_break] = ACTIONS(766), + [sym_true] = ACTIONS(766), + [sym_false] = ACTIONS(766), + [sym_null] = ACTIONS(766), + [sym_inf] = ACTIONS(766), + [sym_nan] = ACTIONS(766), + [anon_sym_NA] = ACTIONS(766), + [anon_sym_NA_integer_] = ACTIONS(766), + [anon_sym_NA_real_] = ACTIONS(766), + [anon_sym_NA_complex_] = ACTIONS(766), + [anon_sym_NA_character_] = ACTIONS(766), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(694), - [sym__semicolon] = ACTIONS(694), - [sym__raw_string_literal] = ACTIONS(694), - [sym__external_else] = ACTIONS(694), - [sym__external_open_parenthesis] = ACTIONS(694), - [sym__external_open_brace] = ACTIONS(694), - [sym__external_close_brace] = ACTIONS(694), - [sym__external_open_bracket] = ACTIONS(694), - [sym__external_open_bracket2] = ACTIONS(694), + [sym__newline] = ACTIONS(768), + [sym__semicolon] = ACTIONS(768), + [sym__raw_string_literal] = ACTIONS(768), + [sym__external_open_parenthesis] = ACTIONS(768), + [sym__external_open_brace] = ACTIONS(768), + [sym__external_open_bracket] = ACTIONS(768), + [sym__external_open_bracket2] = ACTIONS(768), }, - [377] = { - [sym_identifier] = ACTIONS(748), - [anon_sym_BSLASH] = ACTIONS(746), - [anon_sym_function] = ACTIONS(748), - [anon_sym_EQ] = ACTIONS(748), - [anon_sym_if] = ACTIONS(748), - [anon_sym_for] = ACTIONS(748), - [anon_sym_while] = ACTIONS(748), - [anon_sym_repeat] = ACTIONS(748), - [anon_sym_QMARK] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LT_DASH] = ACTIONS(746), - [anon_sym_LT_LT_DASH] = ACTIONS(746), - [anon_sym_COLON_EQ] = ACTIONS(746), - [anon_sym_DASH_GT] = ACTIONS(748), - [anon_sym_DASH_GT_GT] = ACTIONS(746), - [anon_sym_PIPE] = ACTIONS(748), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE_PIPE] = ACTIONS(746), - [anon_sym_AMP_AMP] = ACTIONS(746), - [anon_sym_LT] = ACTIONS(748), - [anon_sym_LT_EQ] = ACTIONS(746), - [anon_sym_GT] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(746), - [anon_sym_EQ_EQ] = ACTIONS(746), - [anon_sym_BANG_EQ] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(746), - [anon_sym_STAR_STAR] = ACTIONS(746), - [anon_sym_CARET] = ACTIONS(746), - [aux_sym_binary_operator_token1] = ACTIONS(746), - [anon_sym_PIPE_GT] = ACTIONS(746), - [anon_sym_COLON] = ACTIONS(748), - [anon_sym_DOLLAR] = ACTIONS(746), - [anon_sym_AT] = ACTIONS(746), - [sym__hex_literal] = ACTIONS(746), - [sym__number_literal] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(746), - [anon_sym_DQUOTE] = ACTIONS(746), - [sym_dots] = ACTIONS(748), - [sym_dot_dot_i] = ACTIONS(748), - [sym_return] = ACTIONS(748), - [sym_next] = ACTIONS(748), - [sym_break] = ACTIONS(748), - [sym_true] = ACTIONS(748), - [sym_false] = ACTIONS(748), - [sym_null] = ACTIONS(748), - [sym_inf] = ACTIONS(748), - [sym_nan] = ACTIONS(748), - [anon_sym_NA] = ACTIONS(748), - [anon_sym_NA_integer_] = ACTIONS(748), - [anon_sym_NA_real_] = ACTIONS(748), - [anon_sym_NA_complex_] = ACTIONS(748), - [anon_sym_NA_character_] = ACTIONS(748), + [385] = { + [sym_identifier] = ACTIONS(762), + [anon_sym_BSLASH] = ACTIONS(764), + [anon_sym_function] = ACTIONS(762), + [anon_sym_EQ] = ACTIONS(762), + [anon_sym_if] = ACTIONS(762), + [anon_sym_for] = ACTIONS(762), + [anon_sym_while] = ACTIONS(762), + [anon_sym_repeat] = ACTIONS(762), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_LT_DASH] = ACTIONS(764), + [anon_sym_LT_LT_DASH] = ACTIONS(764), + [anon_sym_COLON_EQ] = ACTIONS(764), + [anon_sym_DASH_GT] = ACTIONS(762), + [anon_sym_DASH_GT_GT] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(762), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(762), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(762), + [anon_sym_SLASH] = ACTIONS(764), + [anon_sym_STAR_STAR] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(764), + [aux_sym_binary_operator_token1] = ACTIONS(764), + [anon_sym_PIPE_GT] = ACTIONS(764), + [anon_sym_COLON] = ACTIONS(762), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [sym__hex_literal] = ACTIONS(764), + [sym__number_literal] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym_dots] = ACTIONS(762), + [sym_dot_dot_i] = ACTIONS(762), + [sym_return] = ACTIONS(762), + [sym_next] = ACTIONS(762), + [sym_break] = ACTIONS(762), + [sym_true] = ACTIONS(762), + [sym_false] = ACTIONS(762), + [sym_null] = ACTIONS(762), + [sym_inf] = ACTIONS(762), + [sym_nan] = ACTIONS(762), + [anon_sym_NA] = ACTIONS(762), + [anon_sym_NA_integer_] = ACTIONS(762), + [anon_sym_NA_real_] = ACTIONS(762), + [anon_sym_NA_complex_] = ACTIONS(762), + [anon_sym_NA_character_] = ACTIONS(762), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(746), - [sym__semicolon] = ACTIONS(746), - [sym__raw_string_literal] = ACTIONS(746), - [sym__external_open_parenthesis] = ACTIONS(746), - [sym__external_open_brace] = ACTIONS(746), - [sym__external_close_brace] = ACTIONS(746), - [sym__external_open_bracket] = ACTIONS(746), - [sym__external_open_bracket2] = ACTIONS(746), + [sym__newline] = ACTIONS(764), + [sym__semicolon] = ACTIONS(764), + [sym__raw_string_literal] = ACTIONS(764), + [sym__external_open_parenthesis] = ACTIONS(764), + [sym__external_open_brace] = ACTIONS(764), + [sym__external_close_brace] = ACTIONS(764), + [sym__external_open_bracket] = ACTIONS(764), + [sym__external_open_bracket2] = ACTIONS(764), }, - [378] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(1671), + [386] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(1687), [aux_sym_braced_expression_repeat1] = STATE(445), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), @@ -33760,8 +34296,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -33780,240 +34316,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), + [sym__raw_string_literal] = ACTIONS(477), [sym__external_open_parenthesis] = ACTIONS(817), [sym__external_open_brace] = ACTIONS(819), [sym__external_close_brace] = ACTIONS(821), }, - [379] = { - [sym_identifier] = ACTIONS(740), - [anon_sym_BSLASH] = ACTIONS(738), - [anon_sym_function] = ACTIONS(740), - [anon_sym_EQ] = ACTIONS(740), - [anon_sym_if] = ACTIONS(740), - [anon_sym_for] = ACTIONS(740), - [anon_sym_while] = ACTIONS(740), - [anon_sym_repeat] = ACTIONS(740), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_PLUS] = ACTIONS(738), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_LT_DASH] = ACTIONS(738), - [anon_sym_LT_LT_DASH] = ACTIONS(738), - [anon_sym_COLON_EQ] = ACTIONS(738), - [anon_sym_DASH_GT] = ACTIONS(740), - [anon_sym_DASH_GT_GT] = ACTIONS(738), - [anon_sym_PIPE] = ACTIONS(740), - [anon_sym_AMP] = ACTIONS(740), - [anon_sym_PIPE_PIPE] = ACTIONS(738), - [anon_sym_AMP_AMP] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_LT_EQ] = ACTIONS(738), - [anon_sym_GT] = ACTIONS(740), - [anon_sym_GT_EQ] = ACTIONS(738), - [anon_sym_EQ_EQ] = ACTIONS(738), - [anon_sym_BANG_EQ] = ACTIONS(738), - [anon_sym_STAR] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(738), - [anon_sym_STAR_STAR] = ACTIONS(738), - [anon_sym_CARET] = ACTIONS(738), - [aux_sym_binary_operator_token1] = ACTIONS(738), - [anon_sym_PIPE_GT] = ACTIONS(738), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(738), - [anon_sym_AT] = ACTIONS(738), - [sym__hex_literal] = ACTIONS(738), - [sym__number_literal] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(738), - [anon_sym_DQUOTE] = ACTIONS(738), - [sym_dots] = ACTIONS(740), - [sym_dot_dot_i] = ACTIONS(740), - [sym_return] = ACTIONS(740), - [sym_next] = ACTIONS(740), - [sym_break] = ACTIONS(740), - [sym_true] = ACTIONS(740), - [sym_false] = ACTIONS(740), - [sym_null] = ACTIONS(740), - [sym_inf] = ACTIONS(740), - [sym_nan] = ACTIONS(740), - [anon_sym_NA] = ACTIONS(740), - [anon_sym_NA_integer_] = ACTIONS(740), - [anon_sym_NA_real_] = ACTIONS(740), - [anon_sym_NA_complex_] = ACTIONS(740), - [anon_sym_NA_character_] = ACTIONS(740), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(738), - [sym__semicolon] = ACTIONS(738), - [sym__raw_string_literal] = ACTIONS(738), - [sym__external_open_parenthesis] = ACTIONS(738), - [sym__external_open_brace] = ACTIONS(738), - [sym__external_close_brace] = ACTIONS(738), - [sym__external_open_bracket] = ACTIONS(738), - [sym__external_open_bracket2] = ACTIONS(738), - }, - [380] = { - [sym_identifier] = ACTIONS(736), - [anon_sym_BSLASH] = ACTIONS(734), - [anon_sym_function] = ACTIONS(736), - [anon_sym_EQ] = ACTIONS(736), - [anon_sym_if] = ACTIONS(736), - [anon_sym_for] = ACTIONS(736), - [anon_sym_while] = ACTIONS(736), - [anon_sym_repeat] = ACTIONS(736), - [anon_sym_QMARK] = ACTIONS(734), - [anon_sym_TILDE] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(736), - [anon_sym_PLUS] = ACTIONS(734), - [anon_sym_DASH] = ACTIONS(736), - [anon_sym_LT_DASH] = ACTIONS(734), - [anon_sym_LT_LT_DASH] = ACTIONS(734), - [anon_sym_COLON_EQ] = ACTIONS(734), - [anon_sym_DASH_GT] = ACTIONS(736), - [anon_sym_DASH_GT_GT] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_AMP] = ACTIONS(736), - [anon_sym_PIPE_PIPE] = ACTIONS(734), - [anon_sym_AMP_AMP] = ACTIONS(734), - [anon_sym_LT] = ACTIONS(736), - [anon_sym_LT_EQ] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(736), - [anon_sym_GT_EQ] = ACTIONS(734), - [anon_sym_EQ_EQ] = ACTIONS(734), - [anon_sym_BANG_EQ] = ACTIONS(734), - [anon_sym_STAR] = ACTIONS(736), - [anon_sym_SLASH] = ACTIONS(734), - [anon_sym_STAR_STAR] = ACTIONS(734), - [anon_sym_CARET] = ACTIONS(734), - [aux_sym_binary_operator_token1] = ACTIONS(734), - [anon_sym_PIPE_GT] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(736), - [anon_sym_DOLLAR] = ACTIONS(734), - [anon_sym_AT] = ACTIONS(734), - [sym__hex_literal] = ACTIONS(734), - [sym__number_literal] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE] = ACTIONS(734), - [sym_dots] = ACTIONS(736), - [sym_dot_dot_i] = ACTIONS(736), - [sym_return] = ACTIONS(736), - [sym_next] = ACTIONS(736), - [sym_break] = ACTIONS(736), - [sym_true] = ACTIONS(736), - [sym_false] = ACTIONS(736), - [sym_null] = ACTIONS(736), - [sym_inf] = ACTIONS(736), - [sym_nan] = ACTIONS(736), - [anon_sym_NA] = ACTIONS(736), - [anon_sym_NA_integer_] = ACTIONS(736), - [anon_sym_NA_real_] = ACTIONS(736), - [anon_sym_NA_complex_] = ACTIONS(736), - [anon_sym_NA_character_] = ACTIONS(736), + [387] = { + [ts_builtin_sym_end] = ACTIONS(697), + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(695), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_if] = ACTIONS(695), + [anon_sym_for] = ACTIONS(695), + [anon_sym_while] = ACTIONS(695), + [anon_sym_repeat] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_TILDE] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_LT_DASH] = ACTIONS(697), + [anon_sym_LT_LT_DASH] = ACTIONS(697), + [anon_sym_COLON_EQ] = ACTIONS(697), + [anon_sym_DASH_GT] = ACTIONS(695), + [anon_sym_DASH_GT_GT] = ACTIONS(697), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(697), + [anon_sym_AMP_AMP] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_LT_EQ] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(697), + [anon_sym_EQ_EQ] = ACTIONS(697), + [anon_sym_BANG_EQ] = ACTIONS(697), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(697), + [anon_sym_STAR_STAR] = ACTIONS(697), + [anon_sym_CARET] = ACTIONS(697), + [aux_sym_binary_operator_token1] = ACTIONS(697), + [anon_sym_PIPE_GT] = ACTIONS(697), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [sym__hex_literal] = ACTIONS(697), + [sym__number_literal] = ACTIONS(695), + [anon_sym_SQUOTE] = ACTIONS(697), + [anon_sym_DQUOTE] = ACTIONS(697), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(695), + [sym_return] = ACTIONS(695), + [sym_next] = ACTIONS(695), + [sym_break] = ACTIONS(695), + [sym_true] = ACTIONS(695), + [sym_false] = ACTIONS(695), + [sym_null] = ACTIONS(695), + [sym_inf] = ACTIONS(695), + [sym_nan] = ACTIONS(695), + [anon_sym_NA] = ACTIONS(695), + [anon_sym_NA_integer_] = ACTIONS(695), + [anon_sym_NA_real_] = ACTIONS(695), + [anon_sym_NA_complex_] = ACTIONS(695), + [anon_sym_NA_character_] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(734), - [sym__semicolon] = ACTIONS(734), - [sym__raw_string_literal] = ACTIONS(734), - [sym__external_open_parenthesis] = ACTIONS(734), - [sym__external_open_brace] = ACTIONS(734), - [sym__external_close_brace] = ACTIONS(734), - [sym__external_open_bracket] = ACTIONS(734), - [sym__external_open_bracket2] = ACTIONS(734), + [sym__newline] = ACTIONS(697), + [sym__semicolon] = ACTIONS(697), + [sym__raw_string_literal] = ACTIONS(697), + [sym__external_open_parenthesis] = ACTIONS(697), + [sym__external_open_brace] = ACTIONS(697), + [sym__external_open_bracket] = ACTIONS(697), + [sym__external_open_bracket2] = ACTIONS(697), }, - [381] = { - [sym_identifier] = ACTIONS(728), - [anon_sym_BSLASH] = ACTIONS(726), - [anon_sym_function] = ACTIONS(728), - [anon_sym_EQ] = ACTIONS(728), - [anon_sym_if] = ACTIONS(728), - [anon_sym_for] = ACTIONS(728), - [anon_sym_while] = ACTIONS(728), - [anon_sym_repeat] = ACTIONS(728), - [anon_sym_QMARK] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [anon_sym_BANG] = ACTIONS(728), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_LT_DASH] = ACTIONS(726), - [anon_sym_LT_LT_DASH] = ACTIONS(726), - [anon_sym_COLON_EQ] = ACTIONS(726), - [anon_sym_DASH_GT] = ACTIONS(728), - [anon_sym_DASH_GT_GT] = ACTIONS(726), - [anon_sym_PIPE] = ACTIONS(728), - [anon_sym_AMP] = ACTIONS(728), - [anon_sym_PIPE_PIPE] = ACTIONS(726), - [anon_sym_AMP_AMP] = ACTIONS(726), - [anon_sym_LT] = ACTIONS(728), - [anon_sym_LT_EQ] = ACTIONS(726), - [anon_sym_GT] = ACTIONS(728), - [anon_sym_GT_EQ] = ACTIONS(726), - [anon_sym_EQ_EQ] = ACTIONS(726), - [anon_sym_BANG_EQ] = ACTIONS(726), - [anon_sym_STAR] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(726), - [anon_sym_STAR_STAR] = ACTIONS(726), - [anon_sym_CARET] = ACTIONS(726), - [aux_sym_binary_operator_token1] = ACTIONS(726), - [anon_sym_PIPE_GT] = ACTIONS(726), - [anon_sym_COLON] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(726), - [anon_sym_AT] = ACTIONS(726), - [sym__hex_literal] = ACTIONS(726), - [sym__number_literal] = ACTIONS(728), - [anon_sym_SQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(726), - [sym_dots] = ACTIONS(728), - [sym_dot_dot_i] = ACTIONS(728), - [sym_return] = ACTIONS(728), - [sym_next] = ACTIONS(728), - [sym_break] = ACTIONS(728), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_null] = ACTIONS(728), - [sym_inf] = ACTIONS(728), - [sym_nan] = ACTIONS(728), - [anon_sym_NA] = ACTIONS(728), - [anon_sym_NA_integer_] = ACTIONS(728), - [anon_sym_NA_real_] = ACTIONS(728), - [anon_sym_NA_complex_] = ACTIONS(728), - [anon_sym_NA_character_] = ACTIONS(728), + [388] = { + [sym_identifier] = ACTIONS(709), + [anon_sym_BSLASH] = ACTIONS(707), + [anon_sym_function] = ACTIONS(709), + [anon_sym_EQ] = ACTIONS(709), + [anon_sym_if] = ACTIONS(709), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(709), + [anon_sym_repeat] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(707), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_COLON_EQ] = ACTIONS(707), + [anon_sym_DASH_GT] = ACTIONS(709), + [anon_sym_DASH_GT_GT] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(709), + [anon_sym_LT_EQ] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(709), + [anon_sym_GT_EQ] = ACTIONS(707), + [anon_sym_EQ_EQ] = ACTIONS(707), + [anon_sym_BANG_EQ] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_STAR_STAR] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [aux_sym_binary_operator_token1] = ACTIONS(707), + [anon_sym_PIPE_GT] = ACTIONS(707), + [anon_sym_COLON] = ACTIONS(709), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_AT] = ACTIONS(707), + [sym__hex_literal] = ACTIONS(707), + [sym__number_literal] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [sym_dots] = ACTIONS(709), + [sym_dot_dot_i] = ACTIONS(709), + [sym_return] = ACTIONS(709), + [sym_next] = ACTIONS(709), + [sym_break] = ACTIONS(709), + [sym_true] = ACTIONS(709), + [sym_false] = ACTIONS(709), + [sym_null] = ACTIONS(709), + [sym_inf] = ACTIONS(709), + [sym_nan] = ACTIONS(709), + [anon_sym_NA] = ACTIONS(709), + [anon_sym_NA_integer_] = ACTIONS(709), + [anon_sym_NA_real_] = ACTIONS(709), + [anon_sym_NA_complex_] = ACTIONS(709), + [anon_sym_NA_character_] = ACTIONS(709), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(726), - [sym__semicolon] = ACTIONS(726), - [sym__raw_string_literal] = ACTIONS(726), - [sym__external_open_parenthesis] = ACTIONS(726), - [sym__external_open_brace] = ACTIONS(726), - [sym__external_close_brace] = ACTIONS(726), - [sym__external_open_bracket] = ACTIONS(726), - [sym__external_open_bracket2] = ACTIONS(726), + [sym__newline] = ACTIONS(707), + [sym__semicolon] = ACTIONS(707), + [sym__raw_string_literal] = ACTIONS(707), + [sym__external_open_parenthesis] = ACTIONS(707), + [sym__external_open_brace] = ACTIONS(707), + [sym__external_close_brace] = ACTIONS(707), + [sym__external_open_bracket] = ACTIONS(707), + [sym__external_open_bracket2] = ACTIONS(707), }, - [382] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(330), - [aux_sym_braced_expression_repeat1] = STATE(441), + [389] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(397), + [aux_sym_braced_expression_repeat1] = STATE(398), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), [anon_sym_function] = ACTIONS(789), @@ -34028,8 +34497,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -34048,172 +34517,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), + [sym__raw_string_literal] = ACTIONS(477), [sym__external_open_parenthesis] = ACTIONS(817), [sym__external_open_brace] = ACTIONS(819), [sym__external_close_brace] = ACTIONS(823), }, - [383] = { - [sym_identifier] = ACTIONS(724), - [anon_sym_BSLASH] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_EQ] = ACTIONS(724), - [anon_sym_if] = ACTIONS(724), - [anon_sym_for] = ACTIONS(724), - [anon_sym_while] = ACTIONS(724), - [anon_sym_repeat] = ACTIONS(724), - [anon_sym_QMARK] = ACTIONS(722), - [anon_sym_TILDE] = ACTIONS(722), - [anon_sym_BANG] = ACTIONS(724), - [anon_sym_PLUS] = ACTIONS(722), - [anon_sym_DASH] = ACTIONS(724), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_LT_LT_DASH] = ACTIONS(722), - [anon_sym_COLON_EQ] = ACTIONS(722), - [anon_sym_DASH_GT] = ACTIONS(724), - [anon_sym_DASH_GT_GT] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(724), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(724), - [anon_sym_LT_EQ] = ACTIONS(722), - [anon_sym_GT] = ACTIONS(724), - [anon_sym_GT_EQ] = ACTIONS(722), - [anon_sym_EQ_EQ] = ACTIONS(722), - [anon_sym_BANG_EQ] = ACTIONS(722), - [anon_sym_STAR] = ACTIONS(724), - [anon_sym_SLASH] = ACTIONS(722), - [anon_sym_STAR_STAR] = ACTIONS(722), - [anon_sym_CARET] = ACTIONS(722), - [aux_sym_binary_operator_token1] = ACTIONS(722), - [anon_sym_PIPE_GT] = ACTIONS(722), - [anon_sym_COLON] = ACTIONS(724), - [anon_sym_DOLLAR] = ACTIONS(722), - [anon_sym_AT] = ACTIONS(722), - [sym__hex_literal] = ACTIONS(722), - [sym__number_literal] = ACTIONS(724), - [anon_sym_SQUOTE] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [sym_dots] = ACTIONS(724), - [sym_dot_dot_i] = ACTIONS(724), - [sym_return] = ACTIONS(724), - [sym_next] = ACTIONS(724), - [sym_break] = ACTIONS(724), - [sym_true] = ACTIONS(724), - [sym_false] = ACTIONS(724), - [sym_null] = ACTIONS(724), - [sym_inf] = ACTIONS(724), - [sym_nan] = ACTIONS(724), - [anon_sym_NA] = ACTIONS(724), - [anon_sym_NA_integer_] = ACTIONS(724), - [anon_sym_NA_real_] = ACTIONS(724), - [anon_sym_NA_complex_] = ACTIONS(724), - [anon_sym_NA_character_] = ACTIONS(724), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(722), - [sym__semicolon] = ACTIONS(722), - [sym__raw_string_literal] = ACTIONS(722), - [sym__external_open_parenthesis] = ACTIONS(722), - [sym__external_open_brace] = ACTIONS(722), - [sym__external_close_brace] = ACTIONS(722), - [sym__external_open_bracket] = ACTIONS(722), - [sym__external_open_bracket2] = ACTIONS(722), - }, - [384] = { - [sym_identifier] = ACTIONS(720), - [anon_sym_BSLASH] = ACTIONS(718), - [anon_sym_function] = ACTIONS(720), - [anon_sym_EQ] = ACTIONS(720), - [anon_sym_if] = ACTIONS(720), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(720), - [anon_sym_repeat] = ACTIONS(720), - [anon_sym_QMARK] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(718), - [anon_sym_BANG] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_LT_DASH] = ACTIONS(718), - [anon_sym_LT_LT_DASH] = ACTIONS(718), - [anon_sym_COLON_EQ] = ACTIONS(718), - [anon_sym_DASH_GT] = ACTIONS(720), - [anon_sym_DASH_GT_GT] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_PIPE_PIPE] = ACTIONS(718), - [anon_sym_AMP_AMP] = ACTIONS(718), - [anon_sym_LT] = ACTIONS(720), - [anon_sym_LT_EQ] = ACTIONS(718), - [anon_sym_GT] = ACTIONS(720), - [anon_sym_GT_EQ] = ACTIONS(718), - [anon_sym_EQ_EQ] = ACTIONS(718), - [anon_sym_BANG_EQ] = ACTIONS(718), - [anon_sym_STAR] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(718), - [anon_sym_STAR_STAR] = ACTIONS(718), - [anon_sym_CARET] = ACTIONS(718), - [aux_sym_binary_operator_token1] = ACTIONS(718), - [anon_sym_PIPE_GT] = ACTIONS(718), - [anon_sym_COLON] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(718), - [sym__hex_literal] = ACTIONS(718), - [sym__number_literal] = ACTIONS(720), - [anon_sym_SQUOTE] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(718), - [sym_dots] = ACTIONS(720), - [sym_dot_dot_i] = ACTIONS(720), - [sym_return] = ACTIONS(720), - [sym_next] = ACTIONS(720), - [sym_break] = ACTIONS(720), - [sym_true] = ACTIONS(720), - [sym_false] = ACTIONS(720), - [sym_null] = ACTIONS(720), - [sym_inf] = ACTIONS(720), - [sym_nan] = ACTIONS(720), - [anon_sym_NA] = ACTIONS(720), - [anon_sym_NA_integer_] = ACTIONS(720), - [anon_sym_NA_real_] = ACTIONS(720), - [anon_sym_NA_complex_] = ACTIONS(720), - [anon_sym_NA_character_] = ACTIONS(720), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(718), - [sym__semicolon] = ACTIONS(718), - [sym__raw_string_literal] = ACTIONS(718), - [sym__external_open_parenthesis] = ACTIONS(718), - [sym__external_open_brace] = ACTIONS(718), - [sym__external_close_brace] = ACTIONS(718), - [sym__external_open_bracket] = ACTIONS(718), - [sym__external_open_bracket2] = ACTIONS(718), - }, - [385] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(339), + [390] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(1753), [aux_sym_braced_expression_repeat1] = STATE(445), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), @@ -34229,8 +34564,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -34249,39 +34584,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), + [sym__raw_string_literal] = ACTIONS(477), [sym__external_open_parenthesis] = ACTIONS(817), [sym__external_open_brace] = ACTIONS(819), [sym__external_close_brace] = ACTIONS(825), }, - [386] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(1668), - [aux_sym_braced_expression_repeat1] = STATE(416), + [391] = { + [ts_builtin_sym_end] = ACTIONS(760), + [sym_identifier] = ACTIONS(758), + [anon_sym_BSLASH] = ACTIONS(760), + [anon_sym_function] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [anon_sym_repeat] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_TILDE] = ACTIONS(760), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_LT_DASH] = ACTIONS(760), + [anon_sym_LT_LT_DASH] = ACTIONS(760), + [anon_sym_COLON_EQ] = ACTIONS(760), + [anon_sym_DASH_GT] = ACTIONS(758), + [anon_sym_DASH_GT_GT] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(760), + [anon_sym_STAR_STAR] = ACTIONS(760), + [anon_sym_CARET] = ACTIONS(760), + [aux_sym_binary_operator_token1] = ACTIONS(760), + [anon_sym_PIPE_GT] = ACTIONS(760), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [sym__hex_literal] = ACTIONS(760), + [sym__number_literal] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym_dots] = ACTIONS(758), + [sym_dot_dot_i] = ACTIONS(758), + [sym_return] = ACTIONS(758), + [sym_next] = ACTIONS(758), + [sym_break] = ACTIONS(758), + [sym_true] = ACTIONS(758), + [sym_false] = ACTIONS(758), + [sym_null] = ACTIONS(758), + [sym_inf] = ACTIONS(758), + [sym_nan] = ACTIONS(758), + [anon_sym_NA] = ACTIONS(758), + [anon_sym_NA_integer_] = ACTIONS(758), + [anon_sym_NA_real_] = ACTIONS(758), + [anon_sym_NA_complex_] = ACTIONS(758), + [anon_sym_NA_character_] = ACTIONS(758), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(760), + [sym__semicolon] = ACTIONS(760), + [sym__raw_string_literal] = ACTIONS(760), + [sym__external_open_parenthesis] = ACTIONS(760), + [sym__external_open_brace] = ACTIONS(760), + [sym__external_open_bracket] = ACTIONS(760), + [sym__external_open_bracket2] = ACTIONS(760), + }, + [392] = { + [ts_builtin_sym_end] = ACTIONS(764), + [sym_identifier] = ACTIONS(762), + [anon_sym_BSLASH] = ACTIONS(764), + [anon_sym_function] = ACTIONS(762), + [anon_sym_EQ] = ACTIONS(762), + [anon_sym_if] = ACTIONS(762), + [anon_sym_for] = ACTIONS(762), + [anon_sym_while] = ACTIONS(762), + [anon_sym_repeat] = ACTIONS(762), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_LT_DASH] = ACTIONS(764), + [anon_sym_LT_LT_DASH] = ACTIONS(764), + [anon_sym_COLON_EQ] = ACTIONS(764), + [anon_sym_DASH_GT] = ACTIONS(762), + [anon_sym_DASH_GT_GT] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(762), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(762), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(762), + [anon_sym_SLASH] = ACTIONS(764), + [anon_sym_STAR_STAR] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(764), + [aux_sym_binary_operator_token1] = ACTIONS(764), + [anon_sym_PIPE_GT] = ACTIONS(764), + [anon_sym_COLON] = ACTIONS(762), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [sym__hex_literal] = ACTIONS(764), + [sym__number_literal] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [sym_dots] = ACTIONS(762), + [sym_dot_dot_i] = ACTIONS(762), + [sym_return] = ACTIONS(762), + [sym_next] = ACTIONS(762), + [sym_break] = ACTIONS(762), + [sym_true] = ACTIONS(762), + [sym_false] = ACTIONS(762), + [sym_null] = ACTIONS(762), + [sym_inf] = ACTIONS(762), + [sym_nan] = ACTIONS(762), + [anon_sym_NA] = ACTIONS(762), + [anon_sym_NA_integer_] = ACTIONS(762), + [anon_sym_NA_real_] = ACTIONS(762), + [anon_sym_NA_complex_] = ACTIONS(762), + [anon_sym_NA_character_] = ACTIONS(762), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(764), + [sym__semicolon] = ACTIONS(764), + [sym__raw_string_literal] = ACTIONS(764), + [sym__external_open_parenthesis] = ACTIONS(764), + [sym__external_open_brace] = ACTIONS(764), + [sym__external_open_bracket] = ACTIONS(764), + [sym__external_open_bracket2] = ACTIONS(764), + }, + [393] = { + [ts_builtin_sym_end] = ACTIONS(707), + [sym_identifier] = ACTIONS(709), + [anon_sym_BSLASH] = ACTIONS(707), + [anon_sym_function] = ACTIONS(709), + [anon_sym_EQ] = ACTIONS(709), + [anon_sym_if] = ACTIONS(709), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(709), + [anon_sym_repeat] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(707), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_COLON_EQ] = ACTIONS(707), + [anon_sym_DASH_GT] = ACTIONS(709), + [anon_sym_DASH_GT_GT] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(709), + [anon_sym_LT_EQ] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(709), + [anon_sym_GT_EQ] = ACTIONS(707), + [anon_sym_EQ_EQ] = ACTIONS(707), + [anon_sym_BANG_EQ] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_STAR_STAR] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [aux_sym_binary_operator_token1] = ACTIONS(707), + [anon_sym_PIPE_GT] = ACTIONS(707), + [anon_sym_COLON] = ACTIONS(709), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_AT] = ACTIONS(707), + [sym__hex_literal] = ACTIONS(707), + [sym__number_literal] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [sym_dots] = ACTIONS(709), + [sym_dot_dot_i] = ACTIONS(709), + [sym_return] = ACTIONS(709), + [sym_next] = ACTIONS(709), + [sym_break] = ACTIONS(709), + [sym_true] = ACTIONS(709), + [sym_false] = ACTIONS(709), + [sym_null] = ACTIONS(709), + [sym_inf] = ACTIONS(709), + [sym_nan] = ACTIONS(709), + [anon_sym_NA] = ACTIONS(709), + [anon_sym_NA_integer_] = ACTIONS(709), + [anon_sym_NA_real_] = ACTIONS(709), + [anon_sym_NA_complex_] = ACTIONS(709), + [anon_sym_NA_character_] = ACTIONS(709), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(707), + [sym__semicolon] = ACTIONS(707), + [sym__raw_string_literal] = ACTIONS(707), + [sym__external_open_parenthesis] = ACTIONS(707), + [sym__external_open_brace] = ACTIONS(707), + [sym__external_open_bracket] = ACTIONS(707), + [sym__external_open_bracket2] = ACTIONS(707), + }, + [394] = { + [sym_identifier] = ACTIONS(726), + [anon_sym_BSLASH] = ACTIONS(728), + [anon_sym_function] = ACTIONS(726), + [anon_sym_EQ] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_while] = ACTIONS(726), + [anon_sym_repeat] = ACTIONS(726), + [anon_sym_QMARK] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(728), + [anon_sym_BANG] = ACTIONS(726), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(726), + [anon_sym_LT_DASH] = ACTIONS(728), + [anon_sym_LT_LT_DASH] = ACTIONS(728), + [anon_sym_COLON_EQ] = ACTIONS(728), + [anon_sym_DASH_GT] = ACTIONS(726), + [anon_sym_DASH_GT_GT] = ACTIONS(728), + [anon_sym_PIPE] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(726), + [anon_sym_LT_EQ] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(726), + [anon_sym_GT_EQ] = ACTIONS(728), + [anon_sym_EQ_EQ] = ACTIONS(728), + [anon_sym_BANG_EQ] = ACTIONS(728), + [anon_sym_STAR] = ACTIONS(726), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_STAR_STAR] = ACTIONS(728), + [anon_sym_CARET] = ACTIONS(728), + [aux_sym_binary_operator_token1] = ACTIONS(728), + [anon_sym_PIPE_GT] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(728), + [anon_sym_AT] = ACTIONS(728), + [sym__hex_literal] = ACTIONS(728), + [sym__number_literal] = ACTIONS(726), + [anon_sym_SQUOTE] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [sym_dots] = ACTIONS(726), + [sym_dot_dot_i] = ACTIONS(726), + [sym_return] = ACTIONS(726), + [sym_next] = ACTIONS(726), + [sym_break] = ACTIONS(726), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_null] = ACTIONS(726), + [sym_inf] = ACTIONS(726), + [sym_nan] = ACTIONS(726), + [anon_sym_NA] = ACTIONS(726), + [anon_sym_NA_integer_] = ACTIONS(726), + [anon_sym_NA_real_] = ACTIONS(726), + [anon_sym_NA_complex_] = ACTIONS(726), + [anon_sym_NA_character_] = ACTIONS(726), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(728), + [sym__semicolon] = ACTIONS(728), + [sym__raw_string_literal] = ACTIONS(728), + [sym__external_open_parenthesis] = ACTIONS(728), + [sym__external_open_brace] = ACTIONS(728), + [sym__external_close_brace] = ACTIONS(728), + [sym__external_open_bracket] = ACTIONS(728), + [sym__external_open_bracket2] = ACTIONS(728), + }, + [395] = { + [ts_builtin_sym_end] = ACTIONS(701), + [sym_identifier] = ACTIONS(699), + [anon_sym_BSLASH] = ACTIONS(701), + [anon_sym_function] = ACTIONS(699), + [anon_sym_EQ] = ACTIONS(699), + [anon_sym_if] = ACTIONS(699), + [anon_sym_for] = ACTIONS(699), + [anon_sym_while] = ACTIONS(699), + [anon_sym_repeat] = ACTIONS(699), + [anon_sym_QMARK] = ACTIONS(701), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_LT_DASH] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(701), + [anon_sym_COLON_EQ] = ACTIONS(701), + [anon_sym_DASH_GT] = ACTIONS(699), + [anon_sym_DASH_GT_GT] = ACTIONS(701), + [anon_sym_PIPE] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(701), + [anon_sym_AMP_AMP] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(699), + [anon_sym_LT_EQ] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(699), + [anon_sym_GT_EQ] = ACTIONS(701), + [anon_sym_EQ_EQ] = ACTIONS(701), + [anon_sym_BANG_EQ] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(699), + [anon_sym_SLASH] = ACTIONS(701), + [anon_sym_STAR_STAR] = ACTIONS(701), + [anon_sym_CARET] = ACTIONS(701), + [aux_sym_binary_operator_token1] = ACTIONS(701), + [anon_sym_PIPE_GT] = ACTIONS(701), + [anon_sym_COLON] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [anon_sym_AT] = ACTIONS(701), + [sym__hex_literal] = ACTIONS(701), + [sym__number_literal] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(701), + [sym_dots] = ACTIONS(699), + [sym_dot_dot_i] = ACTIONS(699), + [sym_return] = ACTIONS(699), + [sym_next] = ACTIONS(699), + [sym_break] = ACTIONS(699), + [sym_true] = ACTIONS(699), + [sym_false] = ACTIONS(699), + [sym_null] = ACTIONS(699), + [sym_inf] = ACTIONS(699), + [sym_nan] = ACTIONS(699), + [anon_sym_NA] = ACTIONS(699), + [anon_sym_NA_integer_] = ACTIONS(699), + [anon_sym_NA_real_] = ACTIONS(699), + [anon_sym_NA_complex_] = ACTIONS(699), + [anon_sym_NA_character_] = ACTIONS(699), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(701), + [sym__semicolon] = ACTIONS(701), + [sym__raw_string_literal] = ACTIONS(701), + [sym__external_open_parenthesis] = ACTIONS(701), + [sym__external_open_brace] = ACTIONS(701), + [sym__external_open_bracket] = ACTIONS(701), + [sym__external_open_bracket2] = ACTIONS(701), + }, + [396] = { + [ts_builtin_sym_end] = ACTIONS(685), + [sym_identifier] = ACTIONS(683), + [anon_sym_BSLASH] = ACTIONS(685), + [anon_sym_function] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [anon_sym_repeat] = ACTIONS(683), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_LT_DASH] = ACTIONS(685), + [anon_sym_LT_LT_DASH] = ACTIONS(685), + [anon_sym_COLON_EQ] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(683), + [anon_sym_DASH_GT_GT] = ACTIONS(685), + [anon_sym_PIPE] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(683), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(683), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_SLASH] = ACTIONS(685), + [anon_sym_STAR_STAR] = ACTIONS(685), + [anon_sym_CARET] = ACTIONS(685), + [aux_sym_binary_operator_token1] = ACTIONS(685), + [anon_sym_PIPE_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(683), + [anon_sym_DOLLAR] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [sym__hex_literal] = ACTIONS(685), + [sym__number_literal] = ACTIONS(683), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [sym_dots] = ACTIONS(683), + [sym_dot_dot_i] = ACTIONS(683), + [sym_return] = ACTIONS(683), + [sym_next] = ACTIONS(683), + [sym_break] = ACTIONS(683), + [sym_true] = ACTIONS(683), + [sym_false] = ACTIONS(683), + [sym_null] = ACTIONS(683), + [sym_inf] = ACTIONS(683), + [sym_nan] = ACTIONS(683), + [anon_sym_NA] = ACTIONS(683), + [anon_sym_NA_integer_] = ACTIONS(683), + [anon_sym_NA_real_] = ACTIONS(683), + [anon_sym_NA_complex_] = ACTIONS(683), + [anon_sym_NA_character_] = ACTIONS(683), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(685), + [sym__semicolon] = ACTIONS(685), + [sym__raw_string_literal] = ACTIONS(685), + [sym__external_open_parenthesis] = ACTIONS(685), + [sym__external_open_brace] = ACTIONS(685), + [sym__external_open_bracket] = ACTIONS(685), + [sym__external_open_bracket2] = ACTIONS(685), + }, + [397] = { + [ts_builtin_sym_end] = ACTIONS(772), + [sym_identifier] = ACTIONS(770), + [anon_sym_BSLASH] = ACTIONS(772), + [anon_sym_function] = ACTIONS(770), + [anon_sym_EQ] = ACTIONS(770), + [anon_sym_if] = ACTIONS(770), + [anon_sym_for] = ACTIONS(770), + [anon_sym_while] = ACTIONS(770), + [anon_sym_repeat] = ACTIONS(770), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_LT_DASH] = ACTIONS(772), + [anon_sym_LT_LT_DASH] = ACTIONS(772), + [anon_sym_COLON_EQ] = ACTIONS(772), + [anon_sym_DASH_GT] = ACTIONS(770), + [anon_sym_DASH_GT_GT] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_STAR_STAR] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), + [aux_sym_binary_operator_token1] = ACTIONS(772), + [anon_sym_PIPE_GT] = ACTIONS(772), + [anon_sym_COLON] = ACTIONS(770), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_AT] = ACTIONS(772), + [sym__hex_literal] = ACTIONS(772), + [sym__number_literal] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym_dots] = ACTIONS(770), + [sym_dot_dot_i] = ACTIONS(770), + [sym_return] = ACTIONS(770), + [sym_next] = ACTIONS(770), + [sym_break] = ACTIONS(770), + [sym_true] = ACTIONS(770), + [sym_false] = ACTIONS(770), + [sym_null] = ACTIONS(770), + [sym_inf] = ACTIONS(770), + [sym_nan] = ACTIONS(770), + [anon_sym_NA] = ACTIONS(770), + [anon_sym_NA_integer_] = ACTIONS(770), + [anon_sym_NA_real_] = ACTIONS(770), + [anon_sym_NA_complex_] = ACTIONS(770), + [anon_sym_NA_character_] = ACTIONS(770), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(772), + [sym__semicolon] = ACTIONS(772), + [sym__raw_string_literal] = ACTIONS(772), + [sym__external_open_parenthesis] = ACTIONS(772), + [sym__external_open_brace] = ACTIONS(772), + [sym__external_open_bracket] = ACTIONS(772), + [sym__external_open_bracket2] = ACTIONS(772), + }, + [398] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(396), + [aux_sym_braced_expression_repeat1] = STATE(445), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), [anon_sym_function] = ACTIONS(789), @@ -34296,8 +35100,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -34316,105 +35120,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), + [sym__raw_string_literal] = ACTIONS(477), [sym__external_open_parenthesis] = ACTIONS(817), [sym__external_open_brace] = ACTIONS(819), [sym__external_close_brace] = ACTIONS(827), }, - [387] = { - [ts_builtin_sym_end] = ACTIONS(781), - [sym_identifier] = ACTIONS(783), - [anon_sym_BSLASH] = ACTIONS(781), - [anon_sym_function] = ACTIONS(783), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_if] = ACTIONS(783), - [anon_sym_for] = ACTIONS(783), - [anon_sym_while] = ACTIONS(783), - [anon_sym_repeat] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_LT_DASH] = ACTIONS(781), - [anon_sym_LT_LT_DASH] = ACTIONS(781), - [anon_sym_COLON_EQ] = ACTIONS(781), - [anon_sym_DASH_GT] = ACTIONS(783), - [anon_sym_DASH_GT_GT] = ACTIONS(781), - [anon_sym_PIPE] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_PIPE_PIPE] = ACTIONS(781), - [anon_sym_AMP_AMP] = ACTIONS(781), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_LT_EQ] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(783), - [anon_sym_GT_EQ] = ACTIONS(781), - [anon_sym_EQ_EQ] = ACTIONS(781), - [anon_sym_BANG_EQ] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(781), - [anon_sym_STAR_STAR] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [aux_sym_binary_operator_token1] = ACTIONS(781), - [anon_sym_PIPE_GT] = ACTIONS(781), - [anon_sym_COLON] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_AT] = ACTIONS(781), - [sym__hex_literal] = ACTIONS(781), - [sym__number_literal] = ACTIONS(783), - [anon_sym_SQUOTE] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym_dots] = ACTIONS(783), - [sym_dot_dot_i] = ACTIONS(783), - [sym_return] = ACTIONS(783), - [sym_next] = ACTIONS(783), - [sym_break] = ACTIONS(783), - [sym_true] = ACTIONS(783), - [sym_false] = ACTIONS(783), - [sym_null] = ACTIONS(783), - [sym_inf] = ACTIONS(783), - [sym_nan] = ACTIONS(783), - [anon_sym_NA] = ACTIONS(783), - [anon_sym_NA_integer_] = ACTIONS(783), - [anon_sym_NA_real_] = ACTIONS(783), - [anon_sym_NA_complex_] = ACTIONS(783), - [anon_sym_NA_character_] = ACTIONS(783), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(781), - [sym__semicolon] = ACTIONS(781), - [sym__raw_string_literal] = ACTIONS(781), - [sym__external_open_parenthesis] = ACTIONS(781), - [sym__external_open_brace] = ACTIONS(781), - [sym__external_open_bracket] = ACTIONS(781), - [sym__external_open_bracket2] = ACTIONS(781), - }, - [388] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(1675), + [399] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(1708), [aux_sym_braced_expression_repeat1] = STATE(445), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), @@ -34430,8 +35167,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -34450,240 +35187,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), + [sym__raw_string_literal] = ACTIONS(477), [sym__external_open_parenthesis] = ACTIONS(817), [sym__external_open_brace] = ACTIONS(819), [sym__external_close_brace] = ACTIONS(829), }, - [389] = { - [ts_builtin_sym_end] = ACTIONS(766), - [sym_identifier] = ACTIONS(768), - [anon_sym_BSLASH] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(768), - [anon_sym_if] = ACTIONS(768), - [anon_sym_for] = ACTIONS(768), - [anon_sym_while] = ACTIONS(768), - [anon_sym_repeat] = ACTIONS(768), - [anon_sym_QMARK] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(766), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_LT_DASH] = ACTIONS(766), - [anon_sym_LT_LT_DASH] = ACTIONS(766), - [anon_sym_COLON_EQ] = ACTIONS(766), - [anon_sym_DASH_GT] = ACTIONS(768), - [anon_sym_DASH_GT_GT] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(768), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_LT] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(766), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_GT_EQ] = ACTIONS(766), - [anon_sym_EQ_EQ] = ACTIONS(766), - [anon_sym_BANG_EQ] = ACTIONS(766), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_STAR_STAR] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(766), - [aux_sym_binary_operator_token1] = ACTIONS(766), - [anon_sym_PIPE_GT] = ACTIONS(766), - [anon_sym_COLON] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(766), - [anon_sym_AT] = ACTIONS(766), - [sym__hex_literal] = ACTIONS(766), - [sym__number_literal] = ACTIONS(768), - [anon_sym_SQUOTE] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [sym_dots] = ACTIONS(768), - [sym_dot_dot_i] = ACTIONS(768), - [sym_return] = ACTIONS(768), - [sym_next] = ACTIONS(768), - [sym_break] = ACTIONS(768), - [sym_true] = ACTIONS(768), - [sym_false] = ACTIONS(768), - [sym_null] = ACTIONS(768), - [sym_inf] = ACTIONS(768), - [sym_nan] = ACTIONS(768), - [anon_sym_NA] = ACTIONS(768), - [anon_sym_NA_integer_] = ACTIONS(768), - [anon_sym_NA_real_] = ACTIONS(768), - [anon_sym_NA_complex_] = ACTIONS(768), - [anon_sym_NA_character_] = ACTIONS(768), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(766), - [sym__semicolon] = ACTIONS(766), - [sym__raw_string_literal] = ACTIONS(766), - [sym__external_open_parenthesis] = ACTIONS(766), - [sym__external_open_brace] = ACTIONS(766), - [sym__external_open_bracket] = ACTIONS(766), - [sym__external_open_bracket2] = ACTIONS(766), - }, - [390] = { - [ts_builtin_sym_end] = ACTIONS(762), - [sym_identifier] = ACTIONS(764), - [anon_sym_BSLASH] = ACTIONS(762), - [anon_sym_function] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(764), - [anon_sym_if] = ACTIONS(764), - [anon_sym_for] = ACTIONS(764), - [anon_sym_while] = ACTIONS(764), - [anon_sym_repeat] = ACTIONS(764), - [anon_sym_QMARK] = ACTIONS(762), - [anon_sym_TILDE] = ACTIONS(762), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(762), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_LT_DASH] = ACTIONS(762), - [anon_sym_LT_LT_DASH] = ACTIONS(762), - [anon_sym_COLON_EQ] = ACTIONS(762), - [anon_sym_DASH_GT] = ACTIONS(764), - [anon_sym_DASH_GT_GT] = ACTIONS(762), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(764), - [anon_sym_LT_EQ] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(762), - [anon_sym_EQ_EQ] = ACTIONS(762), - [anon_sym_BANG_EQ] = ACTIONS(762), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_STAR_STAR] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [aux_sym_binary_operator_token1] = ACTIONS(762), - [anon_sym_PIPE_GT] = ACTIONS(762), - [anon_sym_COLON] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(762), - [anon_sym_AT] = ACTIONS(762), - [sym__hex_literal] = ACTIONS(762), - [sym__number_literal] = ACTIONS(764), - [anon_sym_SQUOTE] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [sym_dots] = ACTIONS(764), - [sym_dot_dot_i] = ACTIONS(764), - [sym_return] = ACTIONS(764), - [sym_next] = ACTIONS(764), - [sym_break] = ACTIONS(764), - [sym_true] = ACTIONS(764), - [sym_false] = ACTIONS(764), - [sym_null] = ACTIONS(764), - [sym_inf] = ACTIONS(764), - [sym_nan] = ACTIONS(764), - [anon_sym_NA] = ACTIONS(764), - [anon_sym_NA_integer_] = ACTIONS(764), - [anon_sym_NA_real_] = ACTIONS(764), - [anon_sym_NA_complex_] = ACTIONS(764), - [anon_sym_NA_character_] = ACTIONS(764), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(762), - [sym__semicolon] = ACTIONS(762), - [sym__raw_string_literal] = ACTIONS(762), - [sym__external_open_parenthesis] = ACTIONS(762), - [sym__external_open_brace] = ACTIONS(762), - [sym__external_open_bracket] = ACTIONS(762), - [sym__external_open_bracket2] = ACTIONS(762), - }, - [391] = { - [ts_builtin_sym_end] = ACTIONS(754), - [sym_identifier] = ACTIONS(756), - [anon_sym_BSLASH] = ACTIONS(754), - [anon_sym_function] = ACTIONS(756), - [anon_sym_EQ] = ACTIONS(756), - [anon_sym_if] = ACTIONS(756), - [anon_sym_for] = ACTIONS(756), - [anon_sym_while] = ACTIONS(756), - [anon_sym_repeat] = ACTIONS(756), - [anon_sym_QMARK] = ACTIONS(754), - [anon_sym_TILDE] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_PLUS] = ACTIONS(754), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_LT_DASH] = ACTIONS(754), - [anon_sym_LT_LT_DASH] = ACTIONS(754), - [anon_sym_COLON_EQ] = ACTIONS(754), - [anon_sym_DASH_GT] = ACTIONS(756), - [anon_sym_DASH_GT_GT] = ACTIONS(754), - [anon_sym_PIPE] = ACTIONS(756), - [anon_sym_AMP] = ACTIONS(756), - [anon_sym_PIPE_PIPE] = ACTIONS(754), - [anon_sym_AMP_AMP] = ACTIONS(754), - [anon_sym_LT] = ACTIONS(756), - [anon_sym_LT_EQ] = ACTIONS(754), - [anon_sym_GT] = ACTIONS(756), - [anon_sym_GT_EQ] = ACTIONS(754), - [anon_sym_EQ_EQ] = ACTIONS(754), - [anon_sym_BANG_EQ] = ACTIONS(754), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(754), - [anon_sym_STAR_STAR] = ACTIONS(754), - [anon_sym_CARET] = ACTIONS(754), - [aux_sym_binary_operator_token1] = ACTIONS(754), - [anon_sym_PIPE_GT] = ACTIONS(754), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_DOLLAR] = ACTIONS(754), - [anon_sym_AT] = ACTIONS(754), - [sym__hex_literal] = ACTIONS(754), - [sym__number_literal] = ACTIONS(756), - [anon_sym_SQUOTE] = ACTIONS(754), - [anon_sym_DQUOTE] = ACTIONS(754), - [sym_dots] = ACTIONS(756), - [sym_dot_dot_i] = ACTIONS(756), - [sym_return] = ACTIONS(756), - [sym_next] = ACTIONS(756), - [sym_break] = ACTIONS(756), - [sym_true] = ACTIONS(756), - [sym_false] = ACTIONS(756), - [sym_null] = ACTIONS(756), - [sym_inf] = ACTIONS(756), - [sym_nan] = ACTIONS(756), - [anon_sym_NA] = ACTIONS(756), - [anon_sym_NA_integer_] = ACTIONS(756), - [anon_sym_NA_real_] = ACTIONS(756), - [anon_sym_NA_complex_] = ACTIONS(756), - [anon_sym_NA_character_] = ACTIONS(756), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(754), - [sym__semicolon] = ACTIONS(754), - [sym__raw_string_literal] = ACTIONS(754), - [sym__external_open_parenthesis] = ACTIONS(754), - [sym__external_open_brace] = ACTIONS(754), - [sym__external_open_bracket] = ACTIONS(754), - [sym__external_open_bracket2] = ACTIONS(754), - }, - [392] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(1762), - [aux_sym_braced_expression_repeat1] = STATE(431), + [400] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(1682), + [aux_sym_braced_expression_repeat1] = STATE(445), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), [anon_sym_function] = ACTIONS(789), @@ -34698,8 +35234,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -34718,39 +35254,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), + [sym__raw_string_literal] = ACTIONS(477), [sym__external_open_parenthesis] = ACTIONS(817), [sym__external_open_brace] = ACTIONS(819), [sym__external_close_brace] = ACTIONS(831), }, - [393] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(1713), - [aux_sym_braced_expression_repeat1] = STATE(445), + [401] = { + [ts_builtin_sym_end] = ACTIONS(781), + [sym_identifier] = ACTIONS(783), + [anon_sym_BSLASH] = ACTIONS(781), + [anon_sym_function] = ACTIONS(783), + [anon_sym_EQ] = ACTIONS(783), + [anon_sym_if] = ACTIONS(783), + [anon_sym_for] = ACTIONS(783), + [anon_sym_while] = ACTIONS(783), + [anon_sym_repeat] = ACTIONS(783), + [anon_sym_QMARK] = ACTIONS(781), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_LT_DASH] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(781), + [anon_sym_COLON_EQ] = ACTIONS(781), + [anon_sym_DASH_GT] = ACTIONS(783), + [anon_sym_DASH_GT_GT] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(783), + [anon_sym_AMP] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(781), + [anon_sym_AMP_AMP] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(783), + [anon_sym_LT_EQ] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(783), + [anon_sym_GT_EQ] = ACTIONS(781), + [anon_sym_EQ_EQ] = ACTIONS(781), + [anon_sym_BANG_EQ] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(781), + [anon_sym_STAR_STAR] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [aux_sym_binary_operator_token1] = ACTIONS(781), + [anon_sym_PIPE_GT] = ACTIONS(781), + [anon_sym_COLON] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(781), + [anon_sym_AT] = ACTIONS(781), + [sym__hex_literal] = ACTIONS(781), + [sym__number_literal] = ACTIONS(783), + [anon_sym_SQUOTE] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(781), + [sym_dots] = ACTIONS(783), + [sym_dot_dot_i] = ACTIONS(783), + [sym_return] = ACTIONS(783), + [sym_next] = ACTIONS(783), + [sym_break] = ACTIONS(783), + [sym_true] = ACTIONS(783), + [sym_false] = ACTIONS(783), + [sym_null] = ACTIONS(783), + [sym_inf] = ACTIONS(783), + [sym_nan] = ACTIONS(783), + [anon_sym_NA] = ACTIONS(783), + [anon_sym_NA_integer_] = ACTIONS(783), + [anon_sym_NA_real_] = ACTIONS(783), + [anon_sym_NA_complex_] = ACTIONS(783), + [anon_sym_NA_character_] = ACTIONS(783), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(781), + [sym__semicolon] = ACTIONS(781), + [sym__raw_string_literal] = ACTIONS(781), + [sym__external_open_parenthesis] = ACTIONS(781), + [sym__external_open_brace] = ACTIONS(781), + [sym__external_open_bracket] = ACTIONS(781), + [sym__external_open_bracket2] = ACTIONS(781), + }, + [402] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(1710), + [aux_sym_braced_expression_repeat1] = STATE(390), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), [anon_sym_function] = ACTIONS(789), @@ -34765,8 +35368,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -34778,782 +35381,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inf] = ACTIONS(811), [sym_nan] = ACTIONS(811), [anon_sym_NA] = ACTIONS(813), - [anon_sym_NA_integer_] = ACTIONS(813), - [anon_sym_NA_real_] = ACTIONS(813), - [anon_sym_NA_complex_] = ACTIONS(813), - [anon_sym_NA_character_] = ACTIONS(813), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(815), - [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), - [sym__external_open_parenthesis] = ACTIONS(817), - [sym__external_open_brace] = ACTIONS(819), - [sym__external_close_brace] = ACTIONS(833), - }, - [394] = { - [sym_identifier] = ACTIONS(756), - [anon_sym_BSLASH] = ACTIONS(754), - [anon_sym_function] = ACTIONS(756), - [anon_sym_EQ] = ACTIONS(756), - [anon_sym_if] = ACTIONS(756), - [anon_sym_for] = ACTIONS(756), - [anon_sym_while] = ACTIONS(756), - [anon_sym_repeat] = ACTIONS(756), - [anon_sym_QMARK] = ACTIONS(754), - [anon_sym_TILDE] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_PLUS] = ACTIONS(754), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_LT_DASH] = ACTIONS(754), - [anon_sym_LT_LT_DASH] = ACTIONS(754), - [anon_sym_COLON_EQ] = ACTIONS(754), - [anon_sym_DASH_GT] = ACTIONS(756), - [anon_sym_DASH_GT_GT] = ACTIONS(754), - [anon_sym_PIPE] = ACTIONS(756), - [anon_sym_AMP] = ACTIONS(756), - [anon_sym_PIPE_PIPE] = ACTIONS(754), - [anon_sym_AMP_AMP] = ACTIONS(754), - [anon_sym_LT] = ACTIONS(756), - [anon_sym_LT_EQ] = ACTIONS(754), - [anon_sym_GT] = ACTIONS(756), - [anon_sym_GT_EQ] = ACTIONS(754), - [anon_sym_EQ_EQ] = ACTIONS(754), - [anon_sym_BANG_EQ] = ACTIONS(754), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(754), - [anon_sym_STAR_STAR] = ACTIONS(754), - [anon_sym_CARET] = ACTIONS(754), - [aux_sym_binary_operator_token1] = ACTIONS(754), - [anon_sym_PIPE_GT] = ACTIONS(754), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_DOLLAR] = ACTIONS(754), - [anon_sym_AT] = ACTIONS(754), - [sym__hex_literal] = ACTIONS(754), - [sym__number_literal] = ACTIONS(756), - [anon_sym_SQUOTE] = ACTIONS(754), - [anon_sym_DQUOTE] = ACTIONS(754), - [sym_dots] = ACTIONS(756), - [sym_dot_dot_i] = ACTIONS(756), - [sym_return] = ACTIONS(756), - [sym_next] = ACTIONS(756), - [sym_break] = ACTIONS(756), - [sym_true] = ACTIONS(756), - [sym_false] = ACTIONS(756), - [sym_null] = ACTIONS(756), - [sym_inf] = ACTIONS(756), - [sym_nan] = ACTIONS(756), - [anon_sym_NA] = ACTIONS(756), - [anon_sym_NA_integer_] = ACTIONS(756), - [anon_sym_NA_real_] = ACTIONS(756), - [anon_sym_NA_complex_] = ACTIONS(756), - [anon_sym_NA_character_] = ACTIONS(756), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(754), - [sym__semicolon] = ACTIONS(754), - [sym__raw_string_literal] = ACTIONS(754), - [sym__external_open_parenthesis] = ACTIONS(754), - [sym__external_open_brace] = ACTIONS(754), - [sym__external_close_brace] = ACTIONS(754), - [sym__external_open_bracket] = ACTIONS(754), - [sym__external_open_bracket2] = ACTIONS(754), - }, - [395] = { - [sym_identifier] = ACTIONS(764), - [anon_sym_BSLASH] = ACTIONS(762), - [anon_sym_function] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(764), - [anon_sym_if] = ACTIONS(764), - [anon_sym_for] = ACTIONS(764), - [anon_sym_while] = ACTIONS(764), - [anon_sym_repeat] = ACTIONS(764), - [anon_sym_QMARK] = ACTIONS(762), - [anon_sym_TILDE] = ACTIONS(762), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(762), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_LT_DASH] = ACTIONS(762), - [anon_sym_LT_LT_DASH] = ACTIONS(762), - [anon_sym_COLON_EQ] = ACTIONS(762), - [anon_sym_DASH_GT] = ACTIONS(764), - [anon_sym_DASH_GT_GT] = ACTIONS(762), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(764), - [anon_sym_LT_EQ] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(762), - [anon_sym_EQ_EQ] = ACTIONS(762), - [anon_sym_BANG_EQ] = ACTIONS(762), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_STAR_STAR] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [aux_sym_binary_operator_token1] = ACTIONS(762), - [anon_sym_PIPE_GT] = ACTIONS(762), - [anon_sym_COLON] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(762), - [anon_sym_AT] = ACTIONS(762), - [sym__hex_literal] = ACTIONS(762), - [sym__number_literal] = ACTIONS(764), - [anon_sym_SQUOTE] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [sym_dots] = ACTIONS(764), - [sym_dot_dot_i] = ACTIONS(764), - [sym_return] = ACTIONS(764), - [sym_next] = ACTIONS(764), - [sym_break] = ACTIONS(764), - [sym_true] = ACTIONS(764), - [sym_false] = ACTIONS(764), - [sym_null] = ACTIONS(764), - [sym_inf] = ACTIONS(764), - [sym_nan] = ACTIONS(764), - [anon_sym_NA] = ACTIONS(764), - [anon_sym_NA_integer_] = ACTIONS(764), - [anon_sym_NA_real_] = ACTIONS(764), - [anon_sym_NA_complex_] = ACTIONS(764), - [anon_sym_NA_character_] = ACTIONS(764), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(762), - [sym__semicolon] = ACTIONS(762), - [sym__raw_string_literal] = ACTIONS(762), - [sym__external_open_parenthesis] = ACTIONS(762), - [sym__external_open_brace] = ACTIONS(762), - [sym__external_close_brace] = ACTIONS(762), - [sym__external_open_bracket] = ACTIONS(762), - [sym__external_open_bracket2] = ACTIONS(762), - }, - [396] = { - [ts_builtin_sym_end] = ACTIONS(752), - [sym_identifier] = ACTIONS(750), - [anon_sym_BSLASH] = ACTIONS(752), - [anon_sym_function] = ACTIONS(750), - [anon_sym_EQ] = ACTIONS(750), - [anon_sym_if] = ACTIONS(750), - [anon_sym_for] = ACTIONS(750), - [anon_sym_while] = ACTIONS(750), - [anon_sym_repeat] = ACTIONS(750), - [anon_sym_QMARK] = ACTIONS(752), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_BANG] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(752), - [anon_sym_LT_LT_DASH] = ACTIONS(752), - [anon_sym_COLON_EQ] = ACTIONS(752), - [anon_sym_DASH_GT] = ACTIONS(750), - [anon_sym_DASH_GT_GT] = ACTIONS(752), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_AMP] = ACTIONS(750), - [anon_sym_PIPE_PIPE] = ACTIONS(752), - [anon_sym_AMP_AMP] = ACTIONS(752), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_EQ] = ACTIONS(752), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_GT_EQ] = ACTIONS(752), - [anon_sym_EQ_EQ] = ACTIONS(752), - [anon_sym_BANG_EQ] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(750), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_STAR_STAR] = ACTIONS(752), - [anon_sym_CARET] = ACTIONS(752), - [aux_sym_binary_operator_token1] = ACTIONS(752), - [anon_sym_PIPE_GT] = ACTIONS(752), - [anon_sym_COLON] = ACTIONS(750), - [anon_sym_DOLLAR] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(752), - [sym__hex_literal] = ACTIONS(752), - [sym__number_literal] = ACTIONS(750), - [anon_sym_SQUOTE] = ACTIONS(752), - [anon_sym_DQUOTE] = ACTIONS(752), - [sym_dots] = ACTIONS(750), - [sym_dot_dot_i] = ACTIONS(750), - [sym_return] = ACTIONS(750), - [sym_next] = ACTIONS(750), - [sym_break] = ACTIONS(750), - [sym_true] = ACTIONS(750), - [sym_false] = ACTIONS(750), - [sym_null] = ACTIONS(750), - [sym_inf] = ACTIONS(750), - [sym_nan] = ACTIONS(750), - [anon_sym_NA] = ACTIONS(750), - [anon_sym_NA_integer_] = ACTIONS(750), - [anon_sym_NA_real_] = ACTIONS(750), - [anon_sym_NA_complex_] = ACTIONS(750), - [anon_sym_NA_character_] = ACTIONS(750), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(752), - [sym__semicolon] = ACTIONS(752), - [sym__raw_string_literal] = ACTIONS(752), - [sym__external_open_parenthesis] = ACTIONS(752), - [sym__external_open_brace] = ACTIONS(752), - [sym__external_open_bracket] = ACTIONS(752), - [sym__external_open_bracket2] = ACTIONS(752), - }, - [397] = { - [ts_builtin_sym_end] = ACTIONS(746), - [sym_identifier] = ACTIONS(748), - [anon_sym_BSLASH] = ACTIONS(746), - [anon_sym_function] = ACTIONS(748), - [anon_sym_EQ] = ACTIONS(748), - [anon_sym_if] = ACTIONS(748), - [anon_sym_for] = ACTIONS(748), - [anon_sym_while] = ACTIONS(748), - [anon_sym_repeat] = ACTIONS(748), - [anon_sym_QMARK] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_LT_DASH] = ACTIONS(746), - [anon_sym_LT_LT_DASH] = ACTIONS(746), - [anon_sym_COLON_EQ] = ACTIONS(746), - [anon_sym_DASH_GT] = ACTIONS(748), - [anon_sym_DASH_GT_GT] = ACTIONS(746), - [anon_sym_PIPE] = ACTIONS(748), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE_PIPE] = ACTIONS(746), - [anon_sym_AMP_AMP] = ACTIONS(746), - [anon_sym_LT] = ACTIONS(748), - [anon_sym_LT_EQ] = ACTIONS(746), - [anon_sym_GT] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(746), - [anon_sym_EQ_EQ] = ACTIONS(746), - [anon_sym_BANG_EQ] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(746), - [anon_sym_STAR_STAR] = ACTIONS(746), - [anon_sym_CARET] = ACTIONS(746), - [aux_sym_binary_operator_token1] = ACTIONS(746), - [anon_sym_PIPE_GT] = ACTIONS(746), - [anon_sym_COLON] = ACTIONS(748), - [anon_sym_DOLLAR] = ACTIONS(746), - [anon_sym_AT] = ACTIONS(746), - [sym__hex_literal] = ACTIONS(746), - [sym__number_literal] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(746), - [anon_sym_DQUOTE] = ACTIONS(746), - [sym_dots] = ACTIONS(748), - [sym_dot_dot_i] = ACTIONS(748), - [sym_return] = ACTIONS(748), - [sym_next] = ACTIONS(748), - [sym_break] = ACTIONS(748), - [sym_true] = ACTIONS(748), - [sym_false] = ACTIONS(748), - [sym_null] = ACTIONS(748), - [sym_inf] = ACTIONS(748), - [sym_nan] = ACTIONS(748), - [anon_sym_NA] = ACTIONS(748), - [anon_sym_NA_integer_] = ACTIONS(748), - [anon_sym_NA_real_] = ACTIONS(748), - [anon_sym_NA_complex_] = ACTIONS(748), - [anon_sym_NA_character_] = ACTIONS(748), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(746), - [sym__semicolon] = ACTIONS(746), - [sym__raw_string_literal] = ACTIONS(746), - [sym__external_open_parenthesis] = ACTIONS(746), - [sym__external_open_brace] = ACTIONS(746), - [sym__external_open_bracket] = ACTIONS(746), - [sym__external_open_bracket2] = ACTIONS(746), - }, - [398] = { - [sym_identifier] = ACTIONS(768), - [anon_sym_BSLASH] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(768), - [anon_sym_if] = ACTIONS(768), - [anon_sym_for] = ACTIONS(768), - [anon_sym_while] = ACTIONS(768), - [anon_sym_repeat] = ACTIONS(768), - [anon_sym_QMARK] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(766), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_LT_DASH] = ACTIONS(766), - [anon_sym_LT_LT_DASH] = ACTIONS(766), - [anon_sym_COLON_EQ] = ACTIONS(766), - [anon_sym_DASH_GT] = ACTIONS(768), - [anon_sym_DASH_GT_GT] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(768), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_LT] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(766), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_GT_EQ] = ACTIONS(766), - [anon_sym_EQ_EQ] = ACTIONS(766), - [anon_sym_BANG_EQ] = ACTIONS(766), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_STAR_STAR] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(766), - [aux_sym_binary_operator_token1] = ACTIONS(766), - [anon_sym_PIPE_GT] = ACTIONS(766), - [anon_sym_COLON] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(766), - [anon_sym_AT] = ACTIONS(766), - [sym__hex_literal] = ACTIONS(766), - [sym__number_literal] = ACTIONS(768), - [anon_sym_SQUOTE] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [sym_dots] = ACTIONS(768), - [sym_dot_dot_i] = ACTIONS(768), - [sym_return] = ACTIONS(768), - [sym_next] = ACTIONS(768), - [sym_break] = ACTIONS(768), - [sym_true] = ACTIONS(768), - [sym_false] = ACTIONS(768), - [sym_null] = ACTIONS(768), - [sym_inf] = ACTIONS(768), - [sym_nan] = ACTIONS(768), - [anon_sym_NA] = ACTIONS(768), - [anon_sym_NA_integer_] = ACTIONS(768), - [anon_sym_NA_real_] = ACTIONS(768), - [anon_sym_NA_complex_] = ACTIONS(768), - [anon_sym_NA_character_] = ACTIONS(768), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(766), - [sym__semicolon] = ACTIONS(766), - [sym__raw_string_literal] = ACTIONS(766), - [sym__external_open_parenthesis] = ACTIONS(766), - [sym__external_open_brace] = ACTIONS(766), - [sym__external_close_brace] = ACTIONS(766), - [sym__external_open_bracket] = ACTIONS(766), - [sym__external_open_bracket2] = ACTIONS(766), - }, - [399] = { - [ts_builtin_sym_end] = ACTIONS(683), - [sym_identifier] = ACTIONS(685), - [anon_sym_BSLASH] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [anon_sym_repeat] = ACTIONS(685), - [anon_sym_QMARK] = ACTIONS(683), - [anon_sym_TILDE] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_LT_DASH] = ACTIONS(683), - [anon_sym_LT_LT_DASH] = ACTIONS(683), - [anon_sym_COLON_EQ] = ACTIONS(683), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_DASH_GT_GT] = ACTIONS(683), - [anon_sym_PIPE] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(683), - [anon_sym_AMP_AMP] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(683), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_GT_EQ] = ACTIONS(683), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(683), - [anon_sym_STAR_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(683), - [aux_sym_binary_operator_token1] = ACTIONS(683), - [anon_sym_PIPE_GT] = ACTIONS(683), - [anon_sym_COLON] = ACTIONS(685), - [anon_sym_DOLLAR] = ACTIONS(683), - [anon_sym_AT] = ACTIONS(683), - [sym__hex_literal] = ACTIONS(683), - [sym__number_literal] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_DQUOTE] = ACTIONS(683), - [sym_dots] = ACTIONS(685), - [sym_dot_dot_i] = ACTIONS(685), - [sym_return] = ACTIONS(685), - [sym_next] = ACTIONS(685), - [sym_break] = ACTIONS(685), - [sym_true] = ACTIONS(685), - [sym_false] = ACTIONS(685), - [sym_null] = ACTIONS(685), - [sym_inf] = ACTIONS(685), - [sym_nan] = ACTIONS(685), - [anon_sym_NA] = ACTIONS(685), - [anon_sym_NA_integer_] = ACTIONS(685), - [anon_sym_NA_real_] = ACTIONS(685), - [anon_sym_NA_complex_] = ACTIONS(685), - [anon_sym_NA_character_] = ACTIONS(685), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(683), - [sym__semicolon] = ACTIONS(683), - [sym__raw_string_literal] = ACTIONS(683), - [sym__external_open_parenthesis] = ACTIONS(683), - [sym__external_open_brace] = ACTIONS(683), - [sym__external_open_bracket] = ACTIONS(683), - [sym__external_open_bracket2] = ACTIONS(683), - }, - [400] = { - [sym_identifier] = ACTIONS(730), - [anon_sym_BSLASH] = ACTIONS(732), - [anon_sym_function] = ACTIONS(730), - [anon_sym_EQ] = ACTIONS(730), - [anon_sym_if] = ACTIONS(730), - [anon_sym_for] = ACTIONS(730), - [anon_sym_while] = ACTIONS(730), - [anon_sym_repeat] = ACTIONS(730), - [anon_sym_QMARK] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_BANG] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(730), - [anon_sym_LT_DASH] = ACTIONS(732), - [anon_sym_LT_LT_DASH] = ACTIONS(732), - [anon_sym_COLON_EQ] = ACTIONS(732), - [anon_sym_DASH_GT] = ACTIONS(730), - [anon_sym_DASH_GT_GT] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(730), - [anon_sym_AMP] = ACTIONS(730), - [anon_sym_PIPE_PIPE] = ACTIONS(732), - [anon_sym_AMP_AMP] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(730), - [anon_sym_LT_EQ] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(730), - [anon_sym_GT_EQ] = ACTIONS(732), - [anon_sym_EQ_EQ] = ACTIONS(732), - [anon_sym_BANG_EQ] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(730), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_STAR_STAR] = ACTIONS(732), - [anon_sym_CARET] = ACTIONS(732), - [aux_sym_binary_operator_token1] = ACTIONS(732), - [anon_sym_PIPE_GT] = ACTIONS(732), - [anon_sym_COLON] = ACTIONS(730), - [anon_sym_DOLLAR] = ACTIONS(732), - [anon_sym_AT] = ACTIONS(732), - [sym__hex_literal] = ACTIONS(732), - [sym__number_literal] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_dots] = ACTIONS(730), - [sym_dot_dot_i] = ACTIONS(730), - [sym_return] = ACTIONS(730), - [sym_next] = ACTIONS(730), - [sym_break] = ACTIONS(730), - [sym_true] = ACTIONS(730), - [sym_false] = ACTIONS(730), - [sym_null] = ACTIONS(730), - [sym_inf] = ACTIONS(730), - [sym_nan] = ACTIONS(730), - [anon_sym_NA] = ACTIONS(730), - [anon_sym_NA_integer_] = ACTIONS(730), - [anon_sym_NA_real_] = ACTIONS(730), - [anon_sym_NA_complex_] = ACTIONS(730), - [anon_sym_NA_character_] = ACTIONS(730), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(732), - [sym__semicolon] = ACTIONS(732), - [sym__raw_string_literal] = ACTIONS(732), - [sym__external_open_parenthesis] = ACTIONS(732), - [sym__external_open_brace] = ACTIONS(732), - [sym__external_close_brace] = ACTIONS(732), - [sym__external_open_bracket] = ACTIONS(732), - [sym__external_open_bracket2] = ACTIONS(732), - }, - [401] = { - [sym_identifier] = ACTIONS(742), - [anon_sym_BSLASH] = ACTIONS(744), - [anon_sym_function] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_if] = ACTIONS(742), - [anon_sym_for] = ACTIONS(742), - [anon_sym_while] = ACTIONS(742), - [anon_sym_repeat] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(744), - [anon_sym_TILDE] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_LT_DASH] = ACTIONS(744), - [anon_sym_LT_LT_DASH] = ACTIONS(744), - [anon_sym_COLON_EQ] = ACTIONS(744), - [anon_sym_DASH_GT] = ACTIONS(742), - [anon_sym_DASH_GT_GT] = ACTIONS(744), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_PIPE_PIPE] = ACTIONS(744), - [anon_sym_AMP_AMP] = ACTIONS(744), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_LT_EQ] = ACTIONS(744), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_GT_EQ] = ACTIONS(744), - [anon_sym_EQ_EQ] = ACTIONS(744), - [anon_sym_BANG_EQ] = ACTIONS(744), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(744), - [anon_sym_STAR_STAR] = ACTIONS(744), - [anon_sym_CARET] = ACTIONS(744), - [aux_sym_binary_operator_token1] = ACTIONS(744), - [anon_sym_PIPE_GT] = ACTIONS(744), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(744), - [anon_sym_AT] = ACTIONS(744), - [sym__hex_literal] = ACTIONS(744), - [sym__number_literal] = ACTIONS(742), - [anon_sym_SQUOTE] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(744), - [sym_dots] = ACTIONS(742), - [sym_dot_dot_i] = ACTIONS(742), - [sym_return] = ACTIONS(742), - [sym_next] = ACTIONS(742), - [sym_break] = ACTIONS(742), - [sym_true] = ACTIONS(742), - [sym_false] = ACTIONS(742), - [sym_null] = ACTIONS(742), - [sym_inf] = ACTIONS(742), - [sym_nan] = ACTIONS(742), - [anon_sym_NA] = ACTIONS(742), - [anon_sym_NA_integer_] = ACTIONS(742), - [anon_sym_NA_real_] = ACTIONS(742), - [anon_sym_NA_complex_] = ACTIONS(742), - [anon_sym_NA_character_] = ACTIONS(742), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(744), - [sym__semicolon] = ACTIONS(744), - [sym__raw_string_literal] = ACTIONS(744), - [sym__external_open_parenthesis] = ACTIONS(744), - [sym__external_open_brace] = ACTIONS(744), - [sym__external_close_brace] = ACTIONS(744), - [sym__external_open_bracket] = ACTIONS(744), - [sym__external_open_bracket2] = ACTIONS(744), - }, - [402] = { - [sym_identifier] = ACTIONS(773), - [anon_sym_BSLASH] = ACTIONS(775), - [anon_sym_function] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(773), - [anon_sym_if] = ACTIONS(773), - [anon_sym_for] = ACTIONS(773), - [anon_sym_while] = ACTIONS(773), - [anon_sym_repeat] = ACTIONS(773), - [anon_sym_QMARK] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_LT_DASH] = ACTIONS(775), - [anon_sym_LT_LT_DASH] = ACTIONS(775), - [anon_sym_COLON_EQ] = ACTIONS(775), - [anon_sym_DASH_GT] = ACTIONS(773), - [anon_sym_DASH_GT_GT] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_LT_EQ] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_GT_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [aux_sym_binary_operator_token1] = ACTIONS(775), - [anon_sym_PIPE_GT] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(775), - [anon_sym_AT] = ACTIONS(775), - [sym__hex_literal] = ACTIONS(775), - [sym__number_literal] = ACTIONS(773), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(775), - [sym_dots] = ACTIONS(773), - [sym_dot_dot_i] = ACTIONS(773), - [sym_return] = ACTIONS(773), - [sym_next] = ACTIONS(773), - [sym_break] = ACTIONS(773), - [sym_true] = ACTIONS(773), - [sym_false] = ACTIONS(773), - [sym_null] = ACTIONS(773), - [sym_inf] = ACTIONS(773), - [sym_nan] = ACTIONS(773), - [anon_sym_NA] = ACTIONS(773), - [anon_sym_NA_integer_] = ACTIONS(773), - [anon_sym_NA_real_] = ACTIONS(773), - [anon_sym_NA_complex_] = ACTIONS(773), - [anon_sym_NA_character_] = ACTIONS(773), + [anon_sym_NA_integer_] = ACTIONS(813), + [anon_sym_NA_real_] = ACTIONS(813), + [anon_sym_NA_complex_] = ACTIONS(813), + [anon_sym_NA_character_] = ACTIONS(813), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(775), - [sym__semicolon] = ACTIONS(775), - [sym__raw_string_literal] = ACTIONS(775), - [sym__external_open_parenthesis] = ACTIONS(775), - [sym__external_open_brace] = ACTIONS(775), - [sym__external_close_brace] = ACTIONS(775), - [sym__external_open_bracket] = ACTIONS(775), - [sym__external_open_bracket2] = ACTIONS(775), + [sym__newline] = ACTIONS(815), + [sym__semicolon] = ACTIONS(815), + [sym__raw_string_literal] = ACTIONS(477), + [sym__external_open_parenthesis] = ACTIONS(817), + [sym__external_open_brace] = ACTIONS(819), + [sym__external_close_brace] = ACTIONS(833), }, [403] = { - [sym_identifier] = ACTIONS(777), - [anon_sym_BSLASH] = ACTIONS(779), - [anon_sym_function] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(777), - [anon_sym_if] = ACTIONS(777), - [anon_sym_for] = ACTIONS(777), - [anon_sym_while] = ACTIONS(777), - [anon_sym_repeat] = ACTIONS(777), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_BANG] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_LT_DASH] = ACTIONS(779), - [anon_sym_LT_LT_DASH] = ACTIONS(779), - [anon_sym_COLON_EQ] = ACTIONS(779), - [anon_sym_DASH_GT] = ACTIONS(777), - [anon_sym_DASH_GT_GT] = ACTIONS(779), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_AMP] = ACTIONS(777), - [anon_sym_PIPE_PIPE] = ACTIONS(779), - [anon_sym_AMP_AMP] = ACTIONS(779), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_LT_EQ] = ACTIONS(779), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_EQ] = ACTIONS(779), - [anon_sym_EQ_EQ] = ACTIONS(779), - [anon_sym_BANG_EQ] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(779), - [anon_sym_STAR_STAR] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [aux_sym_binary_operator_token1] = ACTIONS(779), - [anon_sym_PIPE_GT] = ACTIONS(779), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(779), - [anon_sym_AT] = ACTIONS(779), - [sym__hex_literal] = ACTIONS(779), - [sym__number_literal] = ACTIONS(777), - [anon_sym_SQUOTE] = ACTIONS(779), - [anon_sym_DQUOTE] = ACTIONS(779), - [sym_dots] = ACTIONS(777), - [sym_dot_dot_i] = ACTIONS(777), - [sym_return] = ACTIONS(777), - [sym_next] = ACTIONS(777), - [sym_break] = ACTIONS(777), - [sym_true] = ACTIONS(777), - [sym_false] = ACTIONS(777), - [sym_null] = ACTIONS(777), - [sym_inf] = ACTIONS(777), - [sym_nan] = ACTIONS(777), - [anon_sym_NA] = ACTIONS(777), - [anon_sym_NA_integer_] = ACTIONS(777), - [anon_sym_NA_real_] = ACTIONS(777), - [anon_sym_NA_complex_] = ACTIONS(777), - [anon_sym_NA_character_] = ACTIONS(777), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(779), - [sym__semicolon] = ACTIONS(779), - [sym__raw_string_literal] = ACTIONS(779), - [sym__external_open_parenthesis] = ACTIONS(779), - [sym__external_open_brace] = ACTIONS(779), - [sym__external_close_brace] = ACTIONS(779), - [sym__external_open_bracket] = ACTIONS(779), - [sym__external_open_bracket2] = ACTIONS(779), - }, - [404] = { - [sym_identifier] = ACTIONS(687), - [anon_sym_BSLASH] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_repeat] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_LT_DASH] = ACTIONS(689), - [anon_sym_LT_LT_DASH] = ACTIONS(689), - [anon_sym_COLON_EQ] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_DASH_GT_GT] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_EQ] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(689), - [anon_sym_EQ_EQ] = ACTIONS(689), - [anon_sym_BANG_EQ] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_STAR_STAR] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [aux_sym_binary_operator_token1] = ACTIONS(689), - [anon_sym_PIPE_GT] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_AT] = ACTIONS(689), - [sym__hex_literal] = ACTIONS(689), - [sym__number_literal] = ACTIONS(687), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(689), - [sym_dots] = ACTIONS(687), - [sym_dot_dot_i] = ACTIONS(687), - [sym_return] = ACTIONS(687), - [sym_next] = ACTIONS(687), - [sym_break] = ACTIONS(687), - [sym_true] = ACTIONS(687), - [sym_false] = ACTIONS(687), - [sym_null] = ACTIONS(687), - [sym_inf] = ACTIONS(687), - [sym_nan] = ACTIONS(687), - [anon_sym_NA] = ACTIONS(687), - [anon_sym_NA_integer_] = ACTIONS(687), - [anon_sym_NA_real_] = ACTIONS(687), - [anon_sym_NA_complex_] = ACTIONS(687), - [anon_sym_NA_character_] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(689), - [sym__semicolon] = ACTIONS(689), - [sym__raw_string_literal] = ACTIONS(689), - [sym__external_open_parenthesis] = ACTIONS(689), - [sym__external_open_brace] = ACTIONS(689), - [sym__external_close_brace] = ACTIONS(689), - [sym__external_open_bracket] = ACTIONS(689), - [sym__external_open_bracket2] = ACTIONS(689), - }, - [405] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(434), + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(327), [aux_sym_braced_expression_repeat1] = STATE(445), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), @@ -35569,8 +35435,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -35589,79 +35455,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), + [sym__raw_string_literal] = ACTIONS(477), [sym__external_open_parenthesis] = ACTIONS(817), [sym__external_open_brace] = ACTIONS(819), [sym__external_close_brace] = ACTIONS(835), }, - [406] = { - [ts_builtin_sym_end] = ACTIONS(738), - [sym_identifier] = ACTIONS(740), - [anon_sym_BSLASH] = ACTIONS(738), - [anon_sym_function] = ACTIONS(740), - [anon_sym_EQ] = ACTIONS(740), - [anon_sym_if] = ACTIONS(740), - [anon_sym_for] = ACTIONS(740), - [anon_sym_while] = ACTIONS(740), - [anon_sym_repeat] = ACTIONS(740), - [anon_sym_QMARK] = ACTIONS(738), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_PLUS] = ACTIONS(738), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_LT_DASH] = ACTIONS(738), - [anon_sym_LT_LT_DASH] = ACTIONS(738), - [anon_sym_COLON_EQ] = ACTIONS(738), - [anon_sym_DASH_GT] = ACTIONS(740), - [anon_sym_DASH_GT_GT] = ACTIONS(738), - [anon_sym_PIPE] = ACTIONS(740), - [anon_sym_AMP] = ACTIONS(740), - [anon_sym_PIPE_PIPE] = ACTIONS(738), - [anon_sym_AMP_AMP] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(740), - [anon_sym_LT_EQ] = ACTIONS(738), - [anon_sym_GT] = ACTIONS(740), - [anon_sym_GT_EQ] = ACTIONS(738), - [anon_sym_EQ_EQ] = ACTIONS(738), - [anon_sym_BANG_EQ] = ACTIONS(738), - [anon_sym_STAR] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(738), - [anon_sym_STAR_STAR] = ACTIONS(738), - [anon_sym_CARET] = ACTIONS(738), - [aux_sym_binary_operator_token1] = ACTIONS(738), - [anon_sym_PIPE_GT] = ACTIONS(738), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(738), - [anon_sym_AT] = ACTIONS(738), - [sym__hex_literal] = ACTIONS(738), - [sym__number_literal] = ACTIONS(740), - [anon_sym_SQUOTE] = ACTIONS(738), - [anon_sym_DQUOTE] = ACTIONS(738), - [sym_dots] = ACTIONS(740), - [sym_dot_dot_i] = ACTIONS(740), - [sym_return] = ACTIONS(740), - [sym_next] = ACTIONS(740), - [sym_break] = ACTIONS(740), - [sym_true] = ACTIONS(740), - [sym_false] = ACTIONS(740), - [sym_null] = ACTIONS(740), - [sym_inf] = ACTIONS(740), - [sym_nan] = ACTIONS(740), - [anon_sym_NA] = ACTIONS(740), - [anon_sym_NA_integer_] = ACTIONS(740), - [anon_sym_NA_real_] = ACTIONS(740), - [anon_sym_NA_complex_] = ACTIONS(740), - [anon_sym_NA_character_] = ACTIONS(740), + [404] = { + [sym_identifier] = ACTIONS(750), + [anon_sym_BSLASH] = ACTIONS(752), + [anon_sym_function] = ACTIONS(750), + [anon_sym_EQ] = ACTIONS(750), + [anon_sym_if] = ACTIONS(750), + [anon_sym_for] = ACTIONS(750), + [anon_sym_while] = ACTIONS(750), + [anon_sym_repeat] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(752), + [anon_sym_TILDE] = ACTIONS(752), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_LT_DASH] = ACTIONS(752), + [anon_sym_LT_LT_DASH] = ACTIONS(752), + [anon_sym_COLON_EQ] = ACTIONS(752), + [anon_sym_DASH_GT] = ACTIONS(750), + [anon_sym_DASH_GT_GT] = ACTIONS(752), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(750), + [anon_sym_PIPE_PIPE] = ACTIONS(752), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_LT] = ACTIONS(750), + [anon_sym_LT_EQ] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(750), + [anon_sym_GT_EQ] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(752), + [anon_sym_BANG_EQ] = ACTIONS(752), + [anon_sym_STAR] = ACTIONS(750), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_STAR_STAR] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [aux_sym_binary_operator_token1] = ACTIONS(752), + [anon_sym_PIPE_GT] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(752), + [sym__hex_literal] = ACTIONS(752), + [sym__number_literal] = ACTIONS(750), + [anon_sym_SQUOTE] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym_dots] = ACTIONS(750), + [sym_dot_dot_i] = ACTIONS(750), + [sym_return] = ACTIONS(750), + [sym_next] = ACTIONS(750), + [sym_break] = ACTIONS(750), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_null] = ACTIONS(750), + [sym_inf] = ACTIONS(750), + [sym_nan] = ACTIONS(750), + [anon_sym_NA] = ACTIONS(750), + [anon_sym_NA_integer_] = ACTIONS(750), + [anon_sym_NA_real_] = ACTIONS(750), + [anon_sym_NA_complex_] = ACTIONS(750), + [anon_sym_NA_character_] = ACTIONS(750), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(738), - [sym__semicolon] = ACTIONS(738), - [sym__raw_string_literal] = ACTIONS(738), - [sym__external_open_parenthesis] = ACTIONS(738), - [sym__external_open_brace] = ACTIONS(738), - [sym__external_open_bracket] = ACTIONS(738), - [sym__external_open_bracket2] = ACTIONS(738), + [sym__newline] = ACTIONS(752), + [sym__semicolon] = ACTIONS(752), + [sym__raw_string_literal] = ACTIONS(752), + [sym__external_open_parenthesis] = ACTIONS(752), + [sym__external_open_brace] = ACTIONS(752), + [sym__external_close_brace] = ACTIONS(752), + [sym__external_open_bracket] = ACTIONS(752), + [sym__external_open_bracket2] = ACTIONS(752), }, - [407] = { + [405] = { [sym_identifier] = ACTIONS(783), [anon_sym_BSLASH] = ACTIONS(781), [anon_sym_function] = ACTIONS(783), @@ -35728,8 +35594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_open_bracket] = ACTIONS(781), [sym__external_open_bracket2] = ACTIONS(781), }, - [408] = { - [ts_builtin_sym_end] = ACTIONS(734), + [406] = { [sym_identifier] = ACTIONS(736), [anon_sym_BSLASH] = ACTIONS(734), [anon_sym_function] = ACTIONS(736), @@ -35792,1217 +35657,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal] = ACTIONS(734), [sym__external_open_parenthesis] = ACTIONS(734), [sym__external_open_brace] = ACTIONS(734), + [sym__external_close_brace] = ACTIONS(734), [sym__external_open_bracket] = ACTIONS(734), [sym__external_open_bracket2] = ACTIONS(734), }, - [409] = { - [ts_builtin_sym_end] = ACTIONS(694), - [sym_identifier] = ACTIONS(696), - [anon_sym_BSLASH] = ACTIONS(694), - [anon_sym_function] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_for] = ACTIONS(696), - [anon_sym_while] = ACTIONS(696), - [anon_sym_repeat] = ACTIONS(696), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(694), - [anon_sym_LT_LT_DASH] = ACTIONS(694), - [anon_sym_COLON_EQ] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(696), - [anon_sym_DASH_GT_GT] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(696), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [aux_sym_binary_operator_token1] = ACTIONS(694), - [anon_sym_PIPE_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_DOLLAR] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [sym__hex_literal] = ACTIONS(694), - [sym__number_literal] = ACTIONS(696), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(694), - [sym_dots] = ACTIONS(696), - [sym_dot_dot_i] = ACTIONS(696), - [sym_return] = ACTIONS(696), - [sym_next] = ACTIONS(696), - [sym_break] = ACTIONS(696), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_null] = ACTIONS(696), - [sym_inf] = ACTIONS(696), - [sym_nan] = ACTIONS(696), - [anon_sym_NA] = ACTIONS(696), - [anon_sym_NA_integer_] = ACTIONS(696), - [anon_sym_NA_real_] = ACTIONS(696), - [anon_sym_NA_complex_] = ACTIONS(696), - [anon_sym_NA_character_] = ACTIONS(696), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(694), - [sym__semicolon] = ACTIONS(694), - [sym__raw_string_literal] = ACTIONS(694), - [sym__external_open_parenthesis] = ACTIONS(694), - [sym__external_open_brace] = ACTIONS(694), - [sym__external_open_bracket] = ACTIONS(694), - [sym__external_open_bracket2] = ACTIONS(694), - }, - [410] = { - [ts_builtin_sym_end] = ACTIONS(726), - [sym_identifier] = ACTIONS(728), - [anon_sym_BSLASH] = ACTIONS(726), - [anon_sym_function] = ACTIONS(728), - [anon_sym_EQ] = ACTIONS(728), - [anon_sym_if] = ACTIONS(728), - [anon_sym_for] = ACTIONS(728), - [anon_sym_while] = ACTIONS(728), - [anon_sym_repeat] = ACTIONS(728), - [anon_sym_QMARK] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [anon_sym_BANG] = ACTIONS(728), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_LT_DASH] = ACTIONS(726), - [anon_sym_LT_LT_DASH] = ACTIONS(726), - [anon_sym_COLON_EQ] = ACTIONS(726), - [anon_sym_DASH_GT] = ACTIONS(728), - [anon_sym_DASH_GT_GT] = ACTIONS(726), - [anon_sym_PIPE] = ACTIONS(728), - [anon_sym_AMP] = ACTIONS(728), - [anon_sym_PIPE_PIPE] = ACTIONS(726), - [anon_sym_AMP_AMP] = ACTIONS(726), - [anon_sym_LT] = ACTIONS(728), - [anon_sym_LT_EQ] = ACTIONS(726), - [anon_sym_GT] = ACTIONS(728), - [anon_sym_GT_EQ] = ACTIONS(726), - [anon_sym_EQ_EQ] = ACTIONS(726), - [anon_sym_BANG_EQ] = ACTIONS(726), - [anon_sym_STAR] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(726), - [anon_sym_STAR_STAR] = ACTIONS(726), - [anon_sym_CARET] = ACTIONS(726), - [aux_sym_binary_operator_token1] = ACTIONS(726), - [anon_sym_PIPE_GT] = ACTIONS(726), - [anon_sym_COLON] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(726), - [anon_sym_AT] = ACTIONS(726), - [sym__hex_literal] = ACTIONS(726), - [sym__number_literal] = ACTIONS(728), - [anon_sym_SQUOTE] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(726), - [sym_dots] = ACTIONS(728), - [sym_dot_dot_i] = ACTIONS(728), - [sym_return] = ACTIONS(728), - [sym_next] = ACTIONS(728), - [sym_break] = ACTIONS(728), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_null] = ACTIONS(728), - [sym_inf] = ACTIONS(728), - [sym_nan] = ACTIONS(728), - [anon_sym_NA] = ACTIONS(728), - [anon_sym_NA_integer_] = ACTIONS(728), - [anon_sym_NA_real_] = ACTIONS(728), - [anon_sym_NA_complex_] = ACTIONS(728), - [anon_sym_NA_character_] = ACTIONS(728), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(726), - [sym__semicolon] = ACTIONS(726), - [sym__raw_string_literal] = ACTIONS(726), - [sym__external_open_parenthesis] = ACTIONS(726), - [sym__external_open_brace] = ACTIONS(726), - [sym__external_open_bracket] = ACTIONS(726), - [sym__external_open_bracket2] = ACTIONS(726), - }, - [411] = { - [sym_identifier] = ACTIONS(750), - [anon_sym_BSLASH] = ACTIONS(752), - [anon_sym_function] = ACTIONS(750), - [anon_sym_EQ] = ACTIONS(750), - [anon_sym_if] = ACTIONS(750), - [anon_sym_for] = ACTIONS(750), - [anon_sym_while] = ACTIONS(750), - [anon_sym_repeat] = ACTIONS(750), - [anon_sym_QMARK] = ACTIONS(752), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_BANG] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(752), - [anon_sym_LT_LT_DASH] = ACTIONS(752), - [anon_sym_COLON_EQ] = ACTIONS(752), - [anon_sym_DASH_GT] = ACTIONS(750), - [anon_sym_DASH_GT_GT] = ACTIONS(752), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_AMP] = ACTIONS(750), - [anon_sym_PIPE_PIPE] = ACTIONS(752), - [anon_sym_AMP_AMP] = ACTIONS(752), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_EQ] = ACTIONS(752), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_GT_EQ] = ACTIONS(752), - [anon_sym_EQ_EQ] = ACTIONS(752), - [anon_sym_BANG_EQ] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(750), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_STAR_STAR] = ACTIONS(752), - [anon_sym_CARET] = ACTIONS(752), - [aux_sym_binary_operator_token1] = ACTIONS(752), - [anon_sym_PIPE_GT] = ACTIONS(752), - [anon_sym_COLON] = ACTIONS(750), - [anon_sym_DOLLAR] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(752), - [sym__hex_literal] = ACTIONS(752), - [sym__number_literal] = ACTIONS(750), - [anon_sym_SQUOTE] = ACTIONS(752), - [anon_sym_DQUOTE] = ACTIONS(752), - [sym_dots] = ACTIONS(750), - [sym_dot_dot_i] = ACTIONS(750), - [sym_return] = ACTIONS(750), - [sym_next] = ACTIONS(750), - [sym_break] = ACTIONS(750), - [sym_true] = ACTIONS(750), - [sym_false] = ACTIONS(750), - [sym_null] = ACTIONS(750), - [sym_inf] = ACTIONS(750), - [sym_nan] = ACTIONS(750), - [anon_sym_NA] = ACTIONS(750), - [anon_sym_NA_integer_] = ACTIONS(750), - [anon_sym_NA_real_] = ACTIONS(750), - [anon_sym_NA_complex_] = ACTIONS(750), - [anon_sym_NA_character_] = ACTIONS(750), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(752), - [sym__semicolon] = ACTIONS(752), - [sym__raw_string_literal] = ACTIONS(752), - [sym__external_open_parenthesis] = ACTIONS(752), - [sym__external_open_brace] = ACTIONS(752), - [sym__external_close_brace] = ACTIONS(752), - [sym__external_open_bracket] = ACTIONS(752), - [sym__external_open_bracket2] = ACTIONS(752), - }, - [412] = { - [ts_builtin_sym_end] = ACTIONS(722), - [sym_identifier] = ACTIONS(724), - [anon_sym_BSLASH] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_EQ] = ACTIONS(724), - [anon_sym_if] = ACTIONS(724), - [anon_sym_for] = ACTIONS(724), - [anon_sym_while] = ACTIONS(724), - [anon_sym_repeat] = ACTIONS(724), - [anon_sym_QMARK] = ACTIONS(722), - [anon_sym_TILDE] = ACTIONS(722), - [anon_sym_BANG] = ACTIONS(724), - [anon_sym_PLUS] = ACTIONS(722), - [anon_sym_DASH] = ACTIONS(724), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_LT_LT_DASH] = ACTIONS(722), - [anon_sym_COLON_EQ] = ACTIONS(722), - [anon_sym_DASH_GT] = ACTIONS(724), - [anon_sym_DASH_GT_GT] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(724), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(724), - [anon_sym_LT_EQ] = ACTIONS(722), - [anon_sym_GT] = ACTIONS(724), - [anon_sym_GT_EQ] = ACTIONS(722), - [anon_sym_EQ_EQ] = ACTIONS(722), - [anon_sym_BANG_EQ] = ACTIONS(722), - [anon_sym_STAR] = ACTIONS(724), - [anon_sym_SLASH] = ACTIONS(722), - [anon_sym_STAR_STAR] = ACTIONS(722), - [anon_sym_CARET] = ACTIONS(722), - [aux_sym_binary_operator_token1] = ACTIONS(722), - [anon_sym_PIPE_GT] = ACTIONS(722), - [anon_sym_COLON] = ACTIONS(724), - [anon_sym_DOLLAR] = ACTIONS(722), - [anon_sym_AT] = ACTIONS(722), - [sym__hex_literal] = ACTIONS(722), - [sym__number_literal] = ACTIONS(724), - [anon_sym_SQUOTE] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [sym_dots] = ACTIONS(724), - [sym_dot_dot_i] = ACTIONS(724), - [sym_return] = ACTIONS(724), - [sym_next] = ACTIONS(724), - [sym_break] = ACTIONS(724), - [sym_true] = ACTIONS(724), - [sym_false] = ACTIONS(724), - [sym_null] = ACTIONS(724), - [sym_inf] = ACTIONS(724), - [sym_nan] = ACTIONS(724), - [anon_sym_NA] = ACTIONS(724), - [anon_sym_NA_integer_] = ACTIONS(724), - [anon_sym_NA_real_] = ACTIONS(724), - [anon_sym_NA_complex_] = ACTIONS(724), - [anon_sym_NA_character_] = ACTIONS(724), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(722), - [sym__semicolon] = ACTIONS(722), - [sym__raw_string_literal] = ACTIONS(722), - [sym__external_open_parenthesis] = ACTIONS(722), - [sym__external_open_brace] = ACTIONS(722), - [sym__external_open_bracket] = ACTIONS(722), - [sym__external_open_bracket2] = ACTIONS(722), - }, - [413] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(409), - [aux_sym_braced_expression_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(785), - [anon_sym_BSLASH] = ACTIONS(787), - [anon_sym_function] = ACTIONS(789), - [anon_sym_if] = ACTIONS(791), - [anon_sym_for] = ACTIONS(793), - [anon_sym_while] = ACTIONS(795), - [anon_sym_repeat] = ACTIONS(797), - [anon_sym_QMARK] = ACTIONS(799), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [sym__hex_literal] = ACTIONS(807), - [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), - [sym_dots] = ACTIONS(785), - [sym_dot_dot_i] = ACTIONS(785), - [sym_return] = ACTIONS(811), - [sym_next] = ACTIONS(811), - [sym_break] = ACTIONS(811), - [sym_true] = ACTIONS(811), - [sym_false] = ACTIONS(811), - [sym_null] = ACTIONS(811), - [sym_inf] = ACTIONS(811), - [sym_nan] = ACTIONS(811), - [anon_sym_NA] = ACTIONS(813), - [anon_sym_NA_integer_] = ACTIONS(813), - [anon_sym_NA_real_] = ACTIONS(813), - [anon_sym_NA_complex_] = ACTIONS(813), - [anon_sym_NA_character_] = ACTIONS(813), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(815), - [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), - [sym__external_open_parenthesis] = ACTIONS(817), - [sym__external_open_brace] = ACTIONS(819), - [sym__external_close_brace] = ACTIONS(837), - }, - [414] = { - [ts_builtin_sym_end] = ACTIONS(718), - [sym_identifier] = ACTIONS(720), - [anon_sym_BSLASH] = ACTIONS(718), - [anon_sym_function] = ACTIONS(720), - [anon_sym_EQ] = ACTIONS(720), - [anon_sym_if] = ACTIONS(720), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(720), - [anon_sym_repeat] = ACTIONS(720), - [anon_sym_QMARK] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(718), - [anon_sym_BANG] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_LT_DASH] = ACTIONS(718), - [anon_sym_LT_LT_DASH] = ACTIONS(718), - [anon_sym_COLON_EQ] = ACTIONS(718), - [anon_sym_DASH_GT] = ACTIONS(720), - [anon_sym_DASH_GT_GT] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_PIPE_PIPE] = ACTIONS(718), - [anon_sym_AMP_AMP] = ACTIONS(718), - [anon_sym_LT] = ACTIONS(720), - [anon_sym_LT_EQ] = ACTIONS(718), - [anon_sym_GT] = ACTIONS(720), - [anon_sym_GT_EQ] = ACTIONS(718), - [anon_sym_EQ_EQ] = ACTIONS(718), - [anon_sym_BANG_EQ] = ACTIONS(718), - [anon_sym_STAR] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(718), - [anon_sym_STAR_STAR] = ACTIONS(718), - [anon_sym_CARET] = ACTIONS(718), - [aux_sym_binary_operator_token1] = ACTIONS(718), - [anon_sym_PIPE_GT] = ACTIONS(718), - [anon_sym_COLON] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(718), - [sym__hex_literal] = ACTIONS(718), - [sym__number_literal] = ACTIONS(720), - [anon_sym_SQUOTE] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(718), - [sym_dots] = ACTIONS(720), - [sym_dot_dot_i] = ACTIONS(720), - [sym_return] = ACTIONS(720), - [sym_next] = ACTIONS(720), - [sym_break] = ACTIONS(720), - [sym_true] = ACTIONS(720), - [sym_false] = ACTIONS(720), - [sym_null] = ACTIONS(720), - [sym_inf] = ACTIONS(720), - [sym_nan] = ACTIONS(720), - [anon_sym_NA] = ACTIONS(720), - [anon_sym_NA_integer_] = ACTIONS(720), - [anon_sym_NA_real_] = ACTIONS(720), - [anon_sym_NA_complex_] = ACTIONS(720), - [anon_sym_NA_character_] = ACTIONS(720), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(718), - [sym__semicolon] = ACTIONS(718), - [sym__raw_string_literal] = ACTIONS(718), - [sym__external_open_parenthesis] = ACTIONS(718), - [sym__external_open_brace] = ACTIONS(718), - [sym__external_open_bracket] = ACTIONS(718), - [sym__external_open_bracket2] = ACTIONS(718), - }, - [415] = { - [sym_identifier] = ACTIONS(685), - [anon_sym_BSLASH] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [anon_sym_repeat] = ACTIONS(685), - [anon_sym_QMARK] = ACTIONS(683), - [anon_sym_TILDE] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_LT_DASH] = ACTIONS(683), - [anon_sym_LT_LT_DASH] = ACTIONS(683), - [anon_sym_COLON_EQ] = ACTIONS(683), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_DASH_GT_GT] = ACTIONS(683), - [anon_sym_PIPE] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(683), - [anon_sym_AMP_AMP] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(683), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_GT_EQ] = ACTIONS(683), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(683), - [anon_sym_STAR_STAR] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(683), - [aux_sym_binary_operator_token1] = ACTIONS(683), - [anon_sym_PIPE_GT] = ACTIONS(683), - [anon_sym_COLON] = ACTIONS(685), - [anon_sym_DOLLAR] = ACTIONS(683), - [anon_sym_AT] = ACTIONS(683), - [sym__hex_literal] = ACTIONS(683), - [sym__number_literal] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_DQUOTE] = ACTIONS(683), - [sym_dots] = ACTIONS(685), - [sym_dot_dot_i] = ACTIONS(685), - [sym_return] = ACTIONS(685), - [sym_next] = ACTIONS(685), - [sym_break] = ACTIONS(685), - [sym_true] = ACTIONS(685), - [sym_false] = ACTIONS(685), - [sym_null] = ACTIONS(685), - [sym_inf] = ACTIONS(685), - [sym_nan] = ACTIONS(685), - [anon_sym_NA] = ACTIONS(685), - [anon_sym_NA_integer_] = ACTIONS(685), - [anon_sym_NA_real_] = ACTIONS(685), - [anon_sym_NA_complex_] = ACTIONS(685), - [anon_sym_NA_character_] = ACTIONS(685), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(683), - [sym__semicolon] = ACTIONS(683), - [sym__raw_string_literal] = ACTIONS(683), - [sym__external_open_parenthesis] = ACTIONS(683), - [sym__external_open_brace] = ACTIONS(683), - [sym__external_close_brace] = ACTIONS(683), - [sym__external_open_bracket] = ACTIONS(683), - [sym__external_open_bracket2] = ACTIONS(683), - }, - [416] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(1647), - [aux_sym_braced_expression_repeat1] = STATE(445), - [sym_identifier] = ACTIONS(785), - [anon_sym_BSLASH] = ACTIONS(787), - [anon_sym_function] = ACTIONS(789), - [anon_sym_if] = ACTIONS(791), - [anon_sym_for] = ACTIONS(793), - [anon_sym_while] = ACTIONS(795), - [anon_sym_repeat] = ACTIONS(797), - [anon_sym_QMARK] = ACTIONS(799), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [sym__hex_literal] = ACTIONS(807), - [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), - [sym_dots] = ACTIONS(785), - [sym_dot_dot_i] = ACTIONS(785), - [sym_return] = ACTIONS(811), - [sym_next] = ACTIONS(811), - [sym_break] = ACTIONS(811), - [sym_true] = ACTIONS(811), - [sym_false] = ACTIONS(811), - [sym_null] = ACTIONS(811), - [sym_inf] = ACTIONS(811), - [sym_nan] = ACTIONS(811), - [anon_sym_NA] = ACTIONS(813), - [anon_sym_NA_integer_] = ACTIONS(813), - [anon_sym_NA_real_] = ACTIONS(813), - [anon_sym_NA_complex_] = ACTIONS(813), - [anon_sym_NA_character_] = ACTIONS(813), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(815), - [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), - [sym__external_open_parenthesis] = ACTIONS(817), - [sym__external_open_brace] = ACTIONS(819), - [sym__external_close_brace] = ACTIONS(839), - }, - [417] = { - [ts_builtin_sym_end] = ACTIONS(758), - [sym_identifier] = ACTIONS(760), - [anon_sym_BSLASH] = ACTIONS(758), - [anon_sym_function] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(760), - [anon_sym_if] = ACTIONS(760), - [anon_sym_for] = ACTIONS(760), - [anon_sym_while] = ACTIONS(760), - [anon_sym_repeat] = ACTIONS(760), - [anon_sym_QMARK] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(758), - [anon_sym_BANG] = ACTIONS(760), - [anon_sym_PLUS] = ACTIONS(758), - [anon_sym_DASH] = ACTIONS(760), - [anon_sym_LT_DASH] = ACTIONS(758), - [anon_sym_LT_LT_DASH] = ACTIONS(758), - [anon_sym_COLON_EQ] = ACTIONS(758), - [anon_sym_DASH_GT] = ACTIONS(760), - [anon_sym_DASH_GT_GT] = ACTIONS(758), - [anon_sym_PIPE] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(758), - [anon_sym_AMP_AMP] = ACTIONS(758), - [anon_sym_LT] = ACTIONS(760), - [anon_sym_LT_EQ] = ACTIONS(758), - [anon_sym_GT] = ACTIONS(760), - [anon_sym_GT_EQ] = ACTIONS(758), - [anon_sym_EQ_EQ] = ACTIONS(758), - [anon_sym_BANG_EQ] = ACTIONS(758), - [anon_sym_STAR] = ACTIONS(760), - [anon_sym_SLASH] = ACTIONS(758), - [anon_sym_STAR_STAR] = ACTIONS(758), - [anon_sym_CARET] = ACTIONS(758), - [aux_sym_binary_operator_token1] = ACTIONS(758), - [anon_sym_PIPE_GT] = ACTIONS(758), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(758), - [anon_sym_AT] = ACTIONS(758), - [sym__hex_literal] = ACTIONS(758), - [sym__number_literal] = ACTIONS(760), - [anon_sym_SQUOTE] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(758), - [sym_dots] = ACTIONS(760), - [sym_dot_dot_i] = ACTIONS(760), - [sym_return] = ACTIONS(760), - [sym_next] = ACTIONS(760), - [sym_break] = ACTIONS(760), - [sym_true] = ACTIONS(760), - [sym_false] = ACTIONS(760), - [sym_null] = ACTIONS(760), - [sym_inf] = ACTIONS(760), - [sym_nan] = ACTIONS(760), - [anon_sym_NA] = ACTIONS(760), - [anon_sym_NA_integer_] = ACTIONS(760), - [anon_sym_NA_real_] = ACTIONS(760), - [anon_sym_NA_complex_] = ACTIONS(760), - [anon_sym_NA_character_] = ACTIONS(760), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(758), - [sym__semicolon] = ACTIONS(758), - [sym__raw_string_literal] = ACTIONS(758), - [sym__external_open_parenthesis] = ACTIONS(758), - [sym__external_open_brace] = ACTIONS(758), - [sym__external_open_bracket] = ACTIONS(758), - [sym__external_open_bracket2] = ACTIONS(758), - }, - [418] = { - [sym_identifier] = ACTIONS(708), - [anon_sym_BSLASH] = ACTIONS(706), - [anon_sym_function] = ACTIONS(708), - [anon_sym_EQ] = ACTIONS(708), - [anon_sym_if] = ACTIONS(708), - [anon_sym_for] = ACTIONS(708), - [anon_sym_while] = ACTIONS(708), - [anon_sym_repeat] = ACTIONS(708), - [anon_sym_QMARK] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(706), - [anon_sym_BANG] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [anon_sym_LT_DASH] = ACTIONS(706), - [anon_sym_LT_LT_DASH] = ACTIONS(706), - [anon_sym_COLON_EQ] = ACTIONS(706), - [anon_sym_DASH_GT] = ACTIONS(708), - [anon_sym_DASH_GT_GT] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_AMP] = ACTIONS(708), - [anon_sym_PIPE_PIPE] = ACTIONS(706), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_LT] = ACTIONS(708), - [anon_sym_LT_EQ] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(708), - [anon_sym_GT_EQ] = ACTIONS(706), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(706), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [aux_sym_binary_operator_token1] = ACTIONS(706), - [anon_sym_PIPE_GT] = ACTIONS(706), - [anon_sym_COLON] = ACTIONS(708), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_AT] = ACTIONS(706), - [sym__hex_literal] = ACTIONS(706), - [sym__number_literal] = ACTIONS(708), - [anon_sym_SQUOTE] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(706), - [sym_dots] = ACTIONS(708), - [sym_dot_dot_i] = ACTIONS(708), - [sym_return] = ACTIONS(708), - [sym_next] = ACTIONS(708), - [sym_break] = ACTIONS(708), - [sym_true] = ACTIONS(708), - [sym_false] = ACTIONS(708), - [sym_null] = ACTIONS(708), - [sym_inf] = ACTIONS(708), - [sym_nan] = ACTIONS(708), - [anon_sym_NA] = ACTIONS(708), - [anon_sym_NA_integer_] = ACTIONS(708), - [anon_sym_NA_real_] = ACTIONS(708), - [anon_sym_NA_complex_] = ACTIONS(708), - [anon_sym_NA_character_] = ACTIONS(708), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(706), - [sym__semicolon] = ACTIONS(706), - [sym__raw_string_literal] = ACTIONS(706), - [sym__external_open_parenthesis] = ACTIONS(706), - [sym__external_open_brace] = ACTIONS(706), - [sym__external_close_brace] = ACTIONS(706), - [sym__external_open_bracket] = ACTIONS(706), - [sym__external_open_bracket2] = ACTIONS(706), - }, - [419] = { - [ts_builtin_sym_end] = ACTIONS(698), - [sym_identifier] = ACTIONS(700), - [anon_sym_BSLASH] = ACTIONS(698), - [anon_sym_function] = ACTIONS(700), - [anon_sym_EQ] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [anon_sym_repeat] = ACTIONS(700), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_LT_DASH] = ACTIONS(698), - [anon_sym_LT_LT_DASH] = ACTIONS(698), - [anon_sym_COLON_EQ] = ACTIONS(698), - [anon_sym_DASH_GT] = ACTIONS(700), - [anon_sym_DASH_GT_GT] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(700), - [anon_sym_PIPE_PIPE] = ACTIONS(698), - [anon_sym_AMP_AMP] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(700), - [anon_sym_LT_EQ] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(700), - [anon_sym_GT_EQ] = ACTIONS(698), - [anon_sym_EQ_EQ] = ACTIONS(698), - [anon_sym_BANG_EQ] = ACTIONS(698), - [anon_sym_STAR] = ACTIONS(700), - [anon_sym_SLASH] = ACTIONS(698), - [anon_sym_STAR_STAR] = ACTIONS(698), - [anon_sym_CARET] = ACTIONS(698), - [aux_sym_binary_operator_token1] = ACTIONS(698), - [anon_sym_PIPE_GT] = ACTIONS(698), - [anon_sym_COLON] = ACTIONS(700), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(698), - [sym__hex_literal] = ACTIONS(698), - [sym__number_literal] = ACTIONS(700), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_DQUOTE] = ACTIONS(698), - [sym_dots] = ACTIONS(700), - [sym_dot_dot_i] = ACTIONS(700), - [sym_return] = ACTIONS(700), - [sym_next] = ACTIONS(700), - [sym_break] = ACTIONS(700), - [sym_true] = ACTIONS(700), - [sym_false] = ACTIONS(700), - [sym_null] = ACTIONS(700), - [sym_inf] = ACTIONS(700), - [sym_nan] = ACTIONS(700), - [anon_sym_NA] = ACTIONS(700), - [anon_sym_NA_integer_] = ACTIONS(700), - [anon_sym_NA_real_] = ACTIONS(700), - [anon_sym_NA_complex_] = ACTIONS(700), - [anon_sym_NA_character_] = ACTIONS(700), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(698), - [sym__semicolon] = ACTIONS(698), - [sym__raw_string_literal] = ACTIONS(698), - [sym__external_open_parenthesis] = ACTIONS(698), - [sym__external_open_brace] = ACTIONS(698), - [sym__external_open_bracket] = ACTIONS(698), - [sym__external_open_bracket2] = ACTIONS(698), - }, - [420] = { - [sym_identifier] = ACTIONS(760), - [anon_sym_BSLASH] = ACTIONS(758), - [anon_sym_function] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(760), - [anon_sym_if] = ACTIONS(760), - [anon_sym_for] = ACTIONS(760), - [anon_sym_while] = ACTIONS(760), - [anon_sym_repeat] = ACTIONS(760), - [anon_sym_QMARK] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(758), - [anon_sym_BANG] = ACTIONS(760), - [anon_sym_PLUS] = ACTIONS(758), - [anon_sym_DASH] = ACTIONS(760), - [anon_sym_LT_DASH] = ACTIONS(758), - [anon_sym_LT_LT_DASH] = ACTIONS(758), - [anon_sym_COLON_EQ] = ACTIONS(758), - [anon_sym_DASH_GT] = ACTIONS(760), - [anon_sym_DASH_GT_GT] = ACTIONS(758), - [anon_sym_PIPE] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(758), - [anon_sym_AMP_AMP] = ACTIONS(758), - [anon_sym_LT] = ACTIONS(760), - [anon_sym_LT_EQ] = ACTIONS(758), - [anon_sym_GT] = ACTIONS(760), - [anon_sym_GT_EQ] = ACTIONS(758), - [anon_sym_EQ_EQ] = ACTIONS(758), - [anon_sym_BANG_EQ] = ACTIONS(758), - [anon_sym_STAR] = ACTIONS(760), - [anon_sym_SLASH] = ACTIONS(758), - [anon_sym_STAR_STAR] = ACTIONS(758), - [anon_sym_CARET] = ACTIONS(758), - [aux_sym_binary_operator_token1] = ACTIONS(758), - [anon_sym_PIPE_GT] = ACTIONS(758), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(758), - [anon_sym_AT] = ACTIONS(758), - [sym__hex_literal] = ACTIONS(758), - [sym__number_literal] = ACTIONS(760), - [anon_sym_SQUOTE] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(758), - [sym_dots] = ACTIONS(760), - [sym_dot_dot_i] = ACTIONS(760), - [sym_return] = ACTIONS(760), - [sym_next] = ACTIONS(760), - [sym_break] = ACTIONS(760), - [sym_true] = ACTIONS(760), - [sym_false] = ACTIONS(760), - [sym_null] = ACTIONS(760), - [sym_inf] = ACTIONS(760), - [sym_nan] = ACTIONS(760), - [anon_sym_NA] = ACTIONS(760), - [anon_sym_NA_integer_] = ACTIONS(760), - [anon_sym_NA_real_] = ACTIONS(760), - [anon_sym_NA_complex_] = ACTIONS(760), - [anon_sym_NA_character_] = ACTIONS(760), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(758), - [sym__semicolon] = ACTIONS(758), - [sym__raw_string_literal] = ACTIONS(758), - [sym__external_open_parenthesis] = ACTIONS(758), - [sym__external_open_brace] = ACTIONS(758), - [sym__external_close_brace] = ACTIONS(758), - [sym__external_open_bracket] = ACTIONS(758), - [sym__external_open_bracket2] = ACTIONS(758), - }, - [421] = { - [ts_builtin_sym_end] = ACTIONS(702), - [sym_identifier] = ACTIONS(704), - [anon_sym_BSLASH] = ACTIONS(702), - [anon_sym_function] = ACTIONS(704), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_if] = ACTIONS(704), - [anon_sym_for] = ACTIONS(704), - [anon_sym_while] = ACTIONS(704), - [anon_sym_repeat] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_LT_DASH] = ACTIONS(702), - [anon_sym_LT_LT_DASH] = ACTIONS(702), - [anon_sym_COLON_EQ] = ACTIONS(702), - [anon_sym_DASH_GT] = ACTIONS(704), - [anon_sym_DASH_GT_GT] = ACTIONS(702), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE_PIPE] = ACTIONS(702), - [anon_sym_AMP_AMP] = ACTIONS(702), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_LT_EQ] = ACTIONS(702), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(702), - [anon_sym_EQ_EQ] = ACTIONS(702), - [anon_sym_BANG_EQ] = ACTIONS(702), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(702), - [anon_sym_STAR_STAR] = ACTIONS(702), - [anon_sym_CARET] = ACTIONS(702), - [aux_sym_binary_operator_token1] = ACTIONS(702), - [anon_sym_PIPE_GT] = ACTIONS(702), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(702), - [anon_sym_AT] = ACTIONS(702), - [sym__hex_literal] = ACTIONS(702), - [sym__number_literal] = ACTIONS(704), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_DQUOTE] = ACTIONS(702), - [sym_dots] = ACTIONS(704), - [sym_dot_dot_i] = ACTIONS(704), - [sym_return] = ACTIONS(704), - [sym_next] = ACTIONS(704), - [sym_break] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_inf] = ACTIONS(704), - [sym_nan] = ACTIONS(704), - [anon_sym_NA] = ACTIONS(704), - [anon_sym_NA_integer_] = ACTIONS(704), - [anon_sym_NA_real_] = ACTIONS(704), - [anon_sym_NA_complex_] = ACTIONS(704), - [anon_sym_NA_character_] = ACTIONS(704), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(702), - [sym__semicolon] = ACTIONS(702), - [sym__raw_string_literal] = ACTIONS(702), - [sym__external_open_parenthesis] = ACTIONS(702), - [sym__external_open_brace] = ACTIONS(702), - [sym__external_open_bracket] = ACTIONS(702), - [sym__external_open_bracket2] = ACTIONS(702), - }, - [422] = { - [ts_builtin_sym_end] = ACTIONS(706), - [sym_identifier] = ACTIONS(708), - [anon_sym_BSLASH] = ACTIONS(706), - [anon_sym_function] = ACTIONS(708), - [anon_sym_EQ] = ACTIONS(708), - [anon_sym_if] = ACTIONS(708), - [anon_sym_for] = ACTIONS(708), - [anon_sym_while] = ACTIONS(708), - [anon_sym_repeat] = ACTIONS(708), - [anon_sym_QMARK] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(706), - [anon_sym_BANG] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [anon_sym_LT_DASH] = ACTIONS(706), - [anon_sym_LT_LT_DASH] = ACTIONS(706), - [anon_sym_COLON_EQ] = ACTIONS(706), - [anon_sym_DASH_GT] = ACTIONS(708), - [anon_sym_DASH_GT_GT] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_AMP] = ACTIONS(708), - [anon_sym_PIPE_PIPE] = ACTIONS(706), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_LT] = ACTIONS(708), - [anon_sym_LT_EQ] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(708), - [anon_sym_GT_EQ] = ACTIONS(706), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(706), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [aux_sym_binary_operator_token1] = ACTIONS(706), - [anon_sym_PIPE_GT] = ACTIONS(706), - [anon_sym_COLON] = ACTIONS(708), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_AT] = ACTIONS(706), - [sym__hex_literal] = ACTIONS(706), - [sym__number_literal] = ACTIONS(708), - [anon_sym_SQUOTE] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(706), - [sym_dots] = ACTIONS(708), - [sym_dot_dot_i] = ACTIONS(708), - [sym_return] = ACTIONS(708), - [sym_next] = ACTIONS(708), - [sym_break] = ACTIONS(708), - [sym_true] = ACTIONS(708), - [sym_false] = ACTIONS(708), - [sym_null] = ACTIONS(708), - [sym_inf] = ACTIONS(708), - [sym_nan] = ACTIONS(708), - [anon_sym_NA] = ACTIONS(708), - [anon_sym_NA_integer_] = ACTIONS(708), - [anon_sym_NA_real_] = ACTIONS(708), - [anon_sym_NA_complex_] = ACTIONS(708), - [anon_sym_NA_character_] = ACTIONS(708), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(706), - [sym__semicolon] = ACTIONS(706), - [sym__raw_string_literal] = ACTIONS(706), - [sym__external_open_parenthesis] = ACTIONS(706), - [sym__external_open_brace] = ACTIONS(706), - [sym__external_open_bracket] = ACTIONS(706), - [sym__external_open_bracket2] = ACTIONS(706), - }, - [423] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(1771), - [aux_sym_braced_expression_repeat1] = STATE(393), - [sym_identifier] = ACTIONS(785), - [anon_sym_BSLASH] = ACTIONS(787), - [anon_sym_function] = ACTIONS(789), - [anon_sym_if] = ACTIONS(791), - [anon_sym_for] = ACTIONS(793), - [anon_sym_while] = ACTIONS(795), - [anon_sym_repeat] = ACTIONS(797), - [anon_sym_QMARK] = ACTIONS(799), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [sym__hex_literal] = ACTIONS(807), - [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), - [sym_dots] = ACTIONS(785), - [sym_dot_dot_i] = ACTIONS(785), - [sym_return] = ACTIONS(811), - [sym_next] = ACTIONS(811), - [sym_break] = ACTIONS(811), - [sym_true] = ACTIONS(811), - [sym_false] = ACTIONS(811), - [sym_null] = ACTIONS(811), - [sym_inf] = ACTIONS(811), - [sym_nan] = ACTIONS(811), - [anon_sym_NA] = ACTIONS(813), - [anon_sym_NA_integer_] = ACTIONS(813), - [anon_sym_NA_real_] = ACTIONS(813), - [anon_sym_NA_complex_] = ACTIONS(813), - [anon_sym_NA_character_] = ACTIONS(813), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(815), - [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), - [sym__external_open_parenthesis] = ACTIONS(817), - [sym__external_open_brace] = ACTIONS(819), - [sym__external_close_brace] = ACTIONS(841), - }, - [424] = { - [sym_identifier] = ACTIONS(704), - [anon_sym_BSLASH] = ACTIONS(702), - [anon_sym_function] = ACTIONS(704), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_if] = ACTIONS(704), - [anon_sym_for] = ACTIONS(704), - [anon_sym_while] = ACTIONS(704), - [anon_sym_repeat] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_LT_DASH] = ACTIONS(702), - [anon_sym_LT_LT_DASH] = ACTIONS(702), - [anon_sym_COLON_EQ] = ACTIONS(702), - [anon_sym_DASH_GT] = ACTIONS(704), - [anon_sym_DASH_GT_GT] = ACTIONS(702), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE_PIPE] = ACTIONS(702), - [anon_sym_AMP_AMP] = ACTIONS(702), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_LT_EQ] = ACTIONS(702), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(702), - [anon_sym_EQ_EQ] = ACTIONS(702), - [anon_sym_BANG_EQ] = ACTIONS(702), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(702), - [anon_sym_STAR_STAR] = ACTIONS(702), - [anon_sym_CARET] = ACTIONS(702), - [aux_sym_binary_operator_token1] = ACTIONS(702), - [anon_sym_PIPE_GT] = ACTIONS(702), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(702), - [anon_sym_AT] = ACTIONS(702), - [sym__hex_literal] = ACTIONS(702), - [sym__number_literal] = ACTIONS(704), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_DQUOTE] = ACTIONS(702), - [sym_dots] = ACTIONS(704), - [sym_dot_dot_i] = ACTIONS(704), - [sym_return] = ACTIONS(704), - [sym_next] = ACTIONS(704), - [sym_break] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_inf] = ACTIONS(704), - [sym_nan] = ACTIONS(704), - [anon_sym_NA] = ACTIONS(704), - [anon_sym_NA_integer_] = ACTIONS(704), - [anon_sym_NA_real_] = ACTIONS(704), - [anon_sym_NA_complex_] = ACTIONS(704), - [anon_sym_NA_character_] = ACTIONS(704), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(702), - [sym__semicolon] = ACTIONS(702), - [sym__raw_string_literal] = ACTIONS(702), - [sym__external_open_parenthesis] = ACTIONS(702), - [sym__external_open_brace] = ACTIONS(702), - [sym__external_close_brace] = ACTIONS(702), - [sym__external_open_bracket] = ACTIONS(702), - [sym__external_open_bracket2] = ACTIONS(702), - }, - [425] = { - [ts_builtin_sym_end] = ACTIONS(710), - [sym_identifier] = ACTIONS(712), - [anon_sym_BSLASH] = ACTIONS(710), - [anon_sym_function] = ACTIONS(712), - [anon_sym_EQ] = ACTIONS(712), - [anon_sym_if] = ACTIONS(712), - [anon_sym_for] = ACTIONS(712), - [anon_sym_while] = ACTIONS(712), - [anon_sym_repeat] = ACTIONS(712), - [anon_sym_QMARK] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_BANG] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_LT_DASH] = ACTIONS(710), - [anon_sym_LT_LT_DASH] = ACTIONS(710), - [anon_sym_COLON_EQ] = ACTIONS(710), - [anon_sym_DASH_GT] = ACTIONS(712), - [anon_sym_DASH_GT_GT] = ACTIONS(710), - [anon_sym_PIPE] = ACTIONS(712), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_PIPE_PIPE] = ACTIONS(710), - [anon_sym_AMP_AMP] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(712), - [anon_sym_LT_EQ] = ACTIONS(710), - [anon_sym_GT] = ACTIONS(712), - [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(710), - [anon_sym_BANG_EQ] = ACTIONS(710), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_SLASH] = ACTIONS(710), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [aux_sym_binary_operator_token1] = ACTIONS(710), - [anon_sym_PIPE_GT] = ACTIONS(710), - [anon_sym_COLON] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_AT] = ACTIONS(710), - [sym__hex_literal] = ACTIONS(710), - [sym__number_literal] = ACTIONS(712), - [anon_sym_SQUOTE] = ACTIONS(710), - [anon_sym_DQUOTE] = ACTIONS(710), - [sym_dots] = ACTIONS(712), - [sym_dot_dot_i] = ACTIONS(712), - [sym_return] = ACTIONS(712), - [sym_next] = ACTIONS(712), - [sym_break] = ACTIONS(712), - [sym_true] = ACTIONS(712), - [sym_false] = ACTIONS(712), - [sym_null] = ACTIONS(712), - [sym_inf] = ACTIONS(712), - [sym_nan] = ACTIONS(712), - [anon_sym_NA] = ACTIONS(712), - [anon_sym_NA_integer_] = ACTIONS(712), - [anon_sym_NA_real_] = ACTIONS(712), - [anon_sym_NA_complex_] = ACTIONS(712), - [anon_sym_NA_character_] = ACTIONS(712), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(710), - [sym__semicolon] = ACTIONS(710), - [sym__raw_string_literal] = ACTIONS(710), - [sym__external_open_parenthesis] = ACTIONS(710), - [sym__external_open_brace] = ACTIONS(710), - [sym__external_open_bracket] = ACTIONS(710), - [sym__external_open_bracket2] = ACTIONS(710), - }, - [426] = { - [sym_identifier] = ACTIONS(700), - [anon_sym_BSLASH] = ACTIONS(698), - [anon_sym_function] = ACTIONS(700), - [anon_sym_EQ] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [anon_sym_repeat] = ACTIONS(700), - [anon_sym_QMARK] = ACTIONS(698), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_LT_DASH] = ACTIONS(698), - [anon_sym_LT_LT_DASH] = ACTIONS(698), - [anon_sym_COLON_EQ] = ACTIONS(698), - [anon_sym_DASH_GT] = ACTIONS(700), - [anon_sym_DASH_GT_GT] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(700), - [anon_sym_PIPE_PIPE] = ACTIONS(698), - [anon_sym_AMP_AMP] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(700), - [anon_sym_LT_EQ] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(700), - [anon_sym_GT_EQ] = ACTIONS(698), - [anon_sym_EQ_EQ] = ACTIONS(698), - [anon_sym_BANG_EQ] = ACTIONS(698), - [anon_sym_STAR] = ACTIONS(700), - [anon_sym_SLASH] = ACTIONS(698), - [anon_sym_STAR_STAR] = ACTIONS(698), - [anon_sym_CARET] = ACTIONS(698), - [aux_sym_binary_operator_token1] = ACTIONS(698), - [anon_sym_PIPE_GT] = ACTIONS(698), - [anon_sym_COLON] = ACTIONS(700), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(698), - [sym__hex_literal] = ACTIONS(698), - [sym__number_literal] = ACTIONS(700), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_DQUOTE] = ACTIONS(698), - [sym_dots] = ACTIONS(700), - [sym_dot_dot_i] = ACTIONS(700), - [sym_return] = ACTIONS(700), - [sym_next] = ACTIONS(700), - [sym_break] = ACTIONS(700), - [sym_true] = ACTIONS(700), - [sym_false] = ACTIONS(700), - [sym_null] = ACTIONS(700), - [sym_inf] = ACTIONS(700), - [sym_nan] = ACTIONS(700), - [anon_sym_NA] = ACTIONS(700), - [anon_sym_NA_integer_] = ACTIONS(700), - [anon_sym_NA_real_] = ACTIONS(700), - [anon_sym_NA_complex_] = ACTIONS(700), - [anon_sym_NA_character_] = ACTIONS(700), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(698), - [sym__semicolon] = ACTIONS(698), - [sym__raw_string_literal] = ACTIONS(698), - [sym__external_open_parenthesis] = ACTIONS(698), - [sym__external_open_brace] = ACTIONS(698), - [sym__external_close_brace] = ACTIONS(698), - [sym__external_open_bracket] = ACTIONS(698), - [sym__external_open_bracket2] = ACTIONS(698), - }, - [427] = { - [ts_builtin_sym_end] = ACTIONS(714), + [407] = { [sym_identifier] = ACTIONS(716), [anon_sym_BSLASH] = ACTIONS(714), [anon_sym_function] = ACTIONS(716), @@ -37065,104 +35724,440 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal] = ACTIONS(714), [sym__external_open_parenthesis] = ACTIONS(714), [sym__external_open_brace] = ACTIONS(714), + [sym__external_close_brace] = ACTIONS(714), [sym__external_open_bracket] = ACTIONS(714), [sym__external_open_bracket2] = ACTIONS(714), }, - [428] = { - [sym_identifier] = ACTIONS(696), - [anon_sym_BSLASH] = ACTIONS(694), - [anon_sym_function] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_for] = ACTIONS(696), - [anon_sym_while] = ACTIONS(696), - [anon_sym_repeat] = ACTIONS(696), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(694), - [anon_sym_LT_LT_DASH] = ACTIONS(694), - [anon_sym_COLON_EQ] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(696), - [anon_sym_DASH_GT_GT] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(696), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [aux_sym_binary_operator_token1] = ACTIONS(694), - [anon_sym_PIPE_GT] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_DOLLAR] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [sym__hex_literal] = ACTIONS(694), - [sym__number_literal] = ACTIONS(696), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(694), - [sym_dots] = ACTIONS(696), - [sym_dot_dot_i] = ACTIONS(696), - [sym_return] = ACTIONS(696), - [sym_next] = ACTIONS(696), - [sym_break] = ACTIONS(696), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_null] = ACTIONS(696), - [sym_inf] = ACTIONS(696), - [sym_nan] = ACTIONS(696), - [anon_sym_NA] = ACTIONS(696), - [anon_sym_NA_integer_] = ACTIONS(696), - [anon_sym_NA_real_] = ACTIONS(696), - [anon_sym_NA_complex_] = ACTIONS(696), - [anon_sym_NA_character_] = ACTIONS(696), + [408] = { + [ts_builtin_sym_end] = ACTIONS(728), + [sym_identifier] = ACTIONS(726), + [anon_sym_BSLASH] = ACTIONS(728), + [anon_sym_function] = ACTIONS(726), + [anon_sym_EQ] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_while] = ACTIONS(726), + [anon_sym_repeat] = ACTIONS(726), + [anon_sym_QMARK] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(728), + [anon_sym_BANG] = ACTIONS(726), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(726), + [anon_sym_LT_DASH] = ACTIONS(728), + [anon_sym_LT_LT_DASH] = ACTIONS(728), + [anon_sym_COLON_EQ] = ACTIONS(728), + [anon_sym_DASH_GT] = ACTIONS(726), + [anon_sym_DASH_GT_GT] = ACTIONS(728), + [anon_sym_PIPE] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(726), + [anon_sym_LT_EQ] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(726), + [anon_sym_GT_EQ] = ACTIONS(728), + [anon_sym_EQ_EQ] = ACTIONS(728), + [anon_sym_BANG_EQ] = ACTIONS(728), + [anon_sym_STAR] = ACTIONS(726), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_STAR_STAR] = ACTIONS(728), + [anon_sym_CARET] = ACTIONS(728), + [aux_sym_binary_operator_token1] = ACTIONS(728), + [anon_sym_PIPE_GT] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(728), + [anon_sym_AT] = ACTIONS(728), + [sym__hex_literal] = ACTIONS(728), + [sym__number_literal] = ACTIONS(726), + [anon_sym_SQUOTE] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [sym_dots] = ACTIONS(726), + [sym_dot_dot_i] = ACTIONS(726), + [sym_return] = ACTIONS(726), + [sym_next] = ACTIONS(726), + [sym_break] = ACTIONS(726), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_null] = ACTIONS(726), + [sym_inf] = ACTIONS(726), + [sym_nan] = ACTIONS(726), + [anon_sym_NA] = ACTIONS(726), + [anon_sym_NA_integer_] = ACTIONS(726), + [anon_sym_NA_real_] = ACTIONS(726), + [anon_sym_NA_complex_] = ACTIONS(726), + [anon_sym_NA_character_] = ACTIONS(726), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(728), + [sym__semicolon] = ACTIONS(728), + [sym__raw_string_literal] = ACTIONS(728), + [sym__external_open_parenthesis] = ACTIONS(728), + [sym__external_open_brace] = ACTIONS(728), + [sym__external_open_bracket] = ACTIONS(728), + [sym__external_open_bracket2] = ACTIONS(728), + }, + [409] = { + [sym_identifier] = ACTIONS(754), + [anon_sym_BSLASH] = ACTIONS(756), + [anon_sym_function] = ACTIONS(754), + [anon_sym_EQ] = ACTIONS(754), + [anon_sym_if] = ACTIONS(754), + [anon_sym_for] = ACTIONS(754), + [anon_sym_while] = ACTIONS(754), + [anon_sym_repeat] = ACTIONS(754), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_TILDE] = ACTIONS(756), + [anon_sym_BANG] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_LT_DASH] = ACTIONS(756), + [anon_sym_LT_LT_DASH] = ACTIONS(756), + [anon_sym_COLON_EQ] = ACTIONS(756), + [anon_sym_DASH_GT] = ACTIONS(754), + [anon_sym_DASH_GT_GT] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(754), + [anon_sym_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(754), + [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(754), + [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_STAR_STAR] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [aux_sym_binary_operator_token1] = ACTIONS(756), + [anon_sym_PIPE_GT] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(754), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_AT] = ACTIONS(756), + [sym__hex_literal] = ACTIONS(756), + [sym__number_literal] = ACTIONS(754), + [anon_sym_SQUOTE] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [sym_dots] = ACTIONS(754), + [sym_dot_dot_i] = ACTIONS(754), + [sym_return] = ACTIONS(754), + [sym_next] = ACTIONS(754), + [sym_break] = ACTIONS(754), + [sym_true] = ACTIONS(754), + [sym_false] = ACTIONS(754), + [sym_null] = ACTIONS(754), + [sym_inf] = ACTIONS(754), + [sym_nan] = ACTIONS(754), + [anon_sym_NA] = ACTIONS(754), + [anon_sym_NA_integer_] = ACTIONS(754), + [anon_sym_NA_real_] = ACTIONS(754), + [anon_sym_NA_complex_] = ACTIONS(754), + [anon_sym_NA_character_] = ACTIONS(754), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(756), + [sym__semicolon] = ACTIONS(756), + [sym__raw_string_literal] = ACTIONS(756), + [sym__external_open_parenthesis] = ACTIONS(756), + [sym__external_open_brace] = ACTIONS(756), + [sym__external_close_brace] = ACTIONS(756), + [sym__external_open_bracket] = ACTIONS(756), + [sym__external_open_bracket2] = ACTIONS(756), + }, + [410] = { + [sym_identifier] = ACTIONS(718), + [anon_sym_BSLASH] = ACTIONS(720), + [anon_sym_function] = ACTIONS(718), + [anon_sym_EQ] = ACTIONS(718), + [anon_sym_if] = ACTIONS(718), + [anon_sym_for] = ACTIONS(718), + [anon_sym_while] = ACTIONS(718), + [anon_sym_repeat] = ACTIONS(718), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_TILDE] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(718), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_DASH] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(720), + [anon_sym_LT_LT_DASH] = ACTIONS(720), + [anon_sym_COLON_EQ] = ACTIONS(720), + [anon_sym_DASH_GT] = ACTIONS(718), + [anon_sym_DASH_GT_GT] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(718), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(718), + [anon_sym_LT_EQ] = ACTIONS(720), + [anon_sym_GT] = ACTIONS(718), + [anon_sym_GT_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(720), + [anon_sym_BANG_EQ] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(718), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_STAR_STAR] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [aux_sym_binary_operator_token1] = ACTIONS(720), + [anon_sym_PIPE_GT] = ACTIONS(720), + [anon_sym_COLON] = ACTIONS(718), + [anon_sym_DOLLAR] = ACTIONS(720), + [anon_sym_AT] = ACTIONS(720), + [sym__hex_literal] = ACTIONS(720), + [sym__number_literal] = ACTIONS(718), + [anon_sym_SQUOTE] = ACTIONS(720), + [anon_sym_DQUOTE] = ACTIONS(720), + [sym_dots] = ACTIONS(718), + [sym_dot_dot_i] = ACTIONS(718), + [sym_return] = ACTIONS(718), + [sym_next] = ACTIONS(718), + [sym_break] = ACTIONS(718), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_null] = ACTIONS(718), + [sym_inf] = ACTIONS(718), + [sym_nan] = ACTIONS(718), + [anon_sym_NA] = ACTIONS(718), + [anon_sym_NA_integer_] = ACTIONS(718), + [anon_sym_NA_real_] = ACTIONS(718), + [anon_sym_NA_complex_] = ACTIONS(718), + [anon_sym_NA_character_] = ACTIONS(718), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(720), + [sym__semicolon] = ACTIONS(720), + [sym__raw_string_literal] = ACTIONS(720), + [sym__external_open_parenthesis] = ACTIONS(720), + [sym__external_open_brace] = ACTIONS(720), + [sym__external_close_brace] = ACTIONS(720), + [sym__external_open_bracket] = ACTIONS(720), + [sym__external_open_bracket2] = ACTIONS(720), + }, + [411] = { + [sym_identifier] = ACTIONS(722), + [anon_sym_BSLASH] = ACTIONS(724), + [anon_sym_function] = ACTIONS(722), + [anon_sym_EQ] = ACTIONS(722), + [anon_sym_if] = ACTIONS(722), + [anon_sym_for] = ACTIONS(722), + [anon_sym_while] = ACTIONS(722), + [anon_sym_repeat] = ACTIONS(722), + [anon_sym_QMARK] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DASH] = ACTIONS(722), + [anon_sym_LT_DASH] = ACTIONS(724), + [anon_sym_LT_LT_DASH] = ACTIONS(724), + [anon_sym_COLON_EQ] = ACTIONS(724), + [anon_sym_DASH_GT] = ACTIONS(722), + [anon_sym_DASH_GT_GT] = ACTIONS(724), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_PIPE_PIPE] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(724), + [anon_sym_LT] = ACTIONS(722), + [anon_sym_LT_EQ] = ACTIONS(724), + [anon_sym_GT] = ACTIONS(722), + [anon_sym_GT_EQ] = ACTIONS(724), + [anon_sym_EQ_EQ] = ACTIONS(724), + [anon_sym_BANG_EQ] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_SLASH] = ACTIONS(724), + [anon_sym_STAR_STAR] = ACTIONS(724), + [anon_sym_CARET] = ACTIONS(724), + [aux_sym_binary_operator_token1] = ACTIONS(724), + [anon_sym_PIPE_GT] = ACTIONS(724), + [anon_sym_COLON] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(724), + [anon_sym_AT] = ACTIONS(724), + [sym__hex_literal] = ACTIONS(724), + [sym__number_literal] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [sym_dots] = ACTIONS(722), + [sym_dot_dot_i] = ACTIONS(722), + [sym_return] = ACTIONS(722), + [sym_next] = ACTIONS(722), + [sym_break] = ACTIONS(722), + [sym_true] = ACTIONS(722), + [sym_false] = ACTIONS(722), + [sym_null] = ACTIONS(722), + [sym_inf] = ACTIONS(722), + [sym_nan] = ACTIONS(722), + [anon_sym_NA] = ACTIONS(722), + [anon_sym_NA_integer_] = ACTIONS(722), + [anon_sym_NA_real_] = ACTIONS(722), + [anon_sym_NA_complex_] = ACTIONS(722), + [anon_sym_NA_character_] = ACTIONS(722), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(724), + [sym__semicolon] = ACTIONS(724), + [sym__raw_string_literal] = ACTIONS(724), + [sym__external_open_parenthesis] = ACTIONS(724), + [sym__external_open_brace] = ACTIONS(724), + [sym__external_close_brace] = ACTIONS(724), + [sym__external_open_bracket] = ACTIONS(724), + [sym__external_open_bracket2] = ACTIONS(724), + }, + [412] = { + [ts_builtin_sym_end] = ACTIONS(744), + [sym_identifier] = ACTIONS(742), + [anon_sym_BSLASH] = ACTIONS(744), + [anon_sym_function] = ACTIONS(742), + [anon_sym_EQ] = ACTIONS(742), + [anon_sym_if] = ACTIONS(742), + [anon_sym_for] = ACTIONS(742), + [anon_sym_while] = ACTIONS(742), + [anon_sym_repeat] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_LT_DASH] = ACTIONS(744), + [anon_sym_LT_LT_DASH] = ACTIONS(744), + [anon_sym_COLON_EQ] = ACTIONS(744), + [anon_sym_DASH_GT] = ACTIONS(742), + [anon_sym_DASH_GT_GT] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE_PIPE] = ACTIONS(744), + [anon_sym_AMP_AMP] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(742), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(742), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [aux_sym_binary_operator_token1] = ACTIONS(744), + [anon_sym_PIPE_GT] = ACTIONS(744), + [anon_sym_COLON] = ACTIONS(742), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_AT] = ACTIONS(744), + [sym__hex_literal] = ACTIONS(744), + [sym__number_literal] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [sym_dots] = ACTIONS(742), + [sym_dot_dot_i] = ACTIONS(742), + [sym_return] = ACTIONS(742), + [sym_next] = ACTIONS(742), + [sym_break] = ACTIONS(742), + [sym_true] = ACTIONS(742), + [sym_false] = ACTIONS(742), + [sym_null] = ACTIONS(742), + [sym_inf] = ACTIONS(742), + [sym_nan] = ACTIONS(742), + [anon_sym_NA] = ACTIONS(742), + [anon_sym_NA_integer_] = ACTIONS(742), + [anon_sym_NA_real_] = ACTIONS(742), + [anon_sym_NA_complex_] = ACTIONS(742), + [anon_sym_NA_character_] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(744), + [sym__semicolon] = ACTIONS(744), + [sym__raw_string_literal] = ACTIONS(744), + [sym__external_open_parenthesis] = ACTIONS(744), + [sym__external_open_brace] = ACTIONS(744), + [sym__external_open_bracket] = ACTIONS(744), + [sym__external_open_bracket2] = ACTIONS(744), + }, + [413] = { + [sym_identifier] = ACTIONS(730), + [anon_sym_BSLASH] = ACTIONS(732), + [anon_sym_function] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(730), + [anon_sym_if] = ACTIONS(730), + [anon_sym_for] = ACTIONS(730), + [anon_sym_while] = ACTIONS(730), + [anon_sym_repeat] = ACTIONS(730), + [anon_sym_QMARK] = ACTIONS(732), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(730), + [anon_sym_PLUS] = ACTIONS(732), + [anon_sym_DASH] = ACTIONS(730), + [anon_sym_LT_DASH] = ACTIONS(732), + [anon_sym_LT_LT_DASH] = ACTIONS(732), + [anon_sym_COLON_EQ] = ACTIONS(732), + [anon_sym_DASH_GT] = ACTIONS(730), + [anon_sym_DASH_GT_GT] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(730), + [anon_sym_PIPE_PIPE] = ACTIONS(732), + [anon_sym_AMP_AMP] = ACTIONS(732), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(732), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_GT_EQ] = ACTIONS(732), + [anon_sym_EQ_EQ] = ACTIONS(732), + [anon_sym_BANG_EQ] = ACTIONS(732), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_SLASH] = ACTIONS(732), + [anon_sym_STAR_STAR] = ACTIONS(732), + [anon_sym_CARET] = ACTIONS(732), + [aux_sym_binary_operator_token1] = ACTIONS(732), + [anon_sym_PIPE_GT] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(732), + [anon_sym_AT] = ACTIONS(732), + [sym__hex_literal] = ACTIONS(732), + [sym__number_literal] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(732), + [sym_dots] = ACTIONS(730), + [sym_dot_dot_i] = ACTIONS(730), + [sym_return] = ACTIONS(730), + [sym_next] = ACTIONS(730), + [sym_break] = ACTIONS(730), + [sym_true] = ACTIONS(730), + [sym_false] = ACTIONS(730), + [sym_null] = ACTIONS(730), + [sym_inf] = ACTIONS(730), + [sym_nan] = ACTIONS(730), + [anon_sym_NA] = ACTIONS(730), + [anon_sym_NA_integer_] = ACTIONS(730), + [anon_sym_NA_real_] = ACTIONS(730), + [anon_sym_NA_complex_] = ACTIONS(730), + [anon_sym_NA_character_] = ACTIONS(730), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(694), - [sym__semicolon] = ACTIONS(694), - [sym__raw_string_literal] = ACTIONS(694), - [sym__external_open_parenthesis] = ACTIONS(694), - [sym__external_open_brace] = ACTIONS(694), - [sym__external_close_brace] = ACTIONS(694), - [sym__external_open_bracket] = ACTIONS(694), - [sym__external_open_bracket2] = ACTIONS(694), + [sym__newline] = ACTIONS(732), + [sym__semicolon] = ACTIONS(732), + [sym__raw_string_literal] = ACTIONS(732), + [sym__external_open_parenthesis] = ACTIONS(732), + [sym__external_open_brace] = ACTIONS(732), + [sym__external_close_brace] = ACTIONS(732), + [sym__external_open_bracket] = ACTIONS(732), + [sym__external_open_bracket2] = ACTIONS(732), }, - [429] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(1742), - [aux_sym_braced_expression_repeat1] = STATE(445), + [414] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(416), + [aux_sym_braced_expression_repeat1] = STATE(433), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), [anon_sym_function] = ACTIONS(789), @@ -37177,8 +36172,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -37197,38 +36192,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), + [sym__raw_string_literal] = ACTIONS(477), [sym__external_open_parenthesis] = ACTIONS(817), [sym__external_open_brace] = ACTIONS(819), - [sym__external_close_brace] = ACTIONS(843), + [sym__external_close_brace] = ACTIONS(837), }, - [430] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(400), + [415] = { + [sym_identifier] = ACTIONS(766), + [anon_sym_BSLASH] = ACTIONS(768), + [anon_sym_function] = ACTIONS(766), + [anon_sym_EQ] = ACTIONS(766), + [anon_sym_if] = ACTIONS(766), + [anon_sym_for] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [anon_sym_repeat] = ACTIONS(766), + [anon_sym_QMARK] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_LT_DASH] = ACTIONS(768), + [anon_sym_LT_LT_DASH] = ACTIONS(768), + [anon_sym_COLON_EQ] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(766), + [anon_sym_DASH_GT_GT] = ACTIONS(768), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE_PIPE] = ACTIONS(768), + [anon_sym_AMP_AMP] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(768), + [anon_sym_STAR_STAR] = ACTIONS(768), + [anon_sym_CARET] = ACTIONS(768), + [aux_sym_binary_operator_token1] = ACTIONS(768), + [anon_sym_PIPE_GT] = ACTIONS(768), + [anon_sym_COLON] = ACTIONS(766), + [anon_sym_DOLLAR] = ACTIONS(768), + [anon_sym_AT] = ACTIONS(768), + [sym__hex_literal] = ACTIONS(768), + [sym__number_literal] = ACTIONS(766), + [anon_sym_SQUOTE] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(768), + [sym_dots] = ACTIONS(766), + [sym_dot_dot_i] = ACTIONS(766), + [sym_return] = ACTIONS(766), + [sym_next] = ACTIONS(766), + [sym_break] = ACTIONS(766), + [sym_true] = ACTIONS(766), + [sym_false] = ACTIONS(766), + [sym_null] = ACTIONS(766), + [sym_inf] = ACTIONS(766), + [sym_nan] = ACTIONS(766), + [anon_sym_NA] = ACTIONS(766), + [anon_sym_NA_integer_] = ACTIONS(766), + [anon_sym_NA_real_] = ACTIONS(766), + [anon_sym_NA_complex_] = ACTIONS(766), + [anon_sym_NA_character_] = ACTIONS(766), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(768), + [sym__semicolon] = ACTIONS(768), + [sym__raw_string_literal] = ACTIONS(768), + [sym__external_open_parenthesis] = ACTIONS(768), + [sym__external_open_brace] = ACTIONS(768), + [sym__external_close_brace] = ACTIONS(768), + [sym__external_open_bracket] = ACTIONS(768), + [sym__external_open_bracket2] = ACTIONS(768), + }, + [416] = { + [sym_identifier] = ACTIONS(770), + [anon_sym_BSLASH] = ACTIONS(772), + [anon_sym_function] = ACTIONS(770), + [anon_sym_EQ] = ACTIONS(770), + [anon_sym_if] = ACTIONS(770), + [anon_sym_for] = ACTIONS(770), + [anon_sym_while] = ACTIONS(770), + [anon_sym_repeat] = ACTIONS(770), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_LT_DASH] = ACTIONS(772), + [anon_sym_LT_LT_DASH] = ACTIONS(772), + [anon_sym_COLON_EQ] = ACTIONS(772), + [anon_sym_DASH_GT] = ACTIONS(770), + [anon_sym_DASH_GT_GT] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_STAR_STAR] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), + [aux_sym_binary_operator_token1] = ACTIONS(772), + [anon_sym_PIPE_GT] = ACTIONS(772), + [anon_sym_COLON] = ACTIONS(770), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_AT] = ACTIONS(772), + [sym__hex_literal] = ACTIONS(772), + [sym__number_literal] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [sym_dots] = ACTIONS(770), + [sym_dot_dot_i] = ACTIONS(770), + [sym_return] = ACTIONS(770), + [sym_next] = ACTIONS(770), + [sym_break] = ACTIONS(770), + [sym_true] = ACTIONS(770), + [sym_false] = ACTIONS(770), + [sym_null] = ACTIONS(770), + [sym_inf] = ACTIONS(770), + [sym_nan] = ACTIONS(770), + [anon_sym_NA] = ACTIONS(770), + [anon_sym_NA_integer_] = ACTIONS(770), + [anon_sym_NA_real_] = ACTIONS(770), + [anon_sym_NA_complex_] = ACTIONS(770), + [anon_sym_NA_character_] = ACTIONS(770), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(772), + [sym__semicolon] = ACTIONS(772), + [sym__raw_string_literal] = ACTIONS(772), + [sym__external_open_parenthesis] = ACTIONS(772), + [sym__external_open_brace] = ACTIONS(772), + [sym__external_close_brace] = ACTIONS(772), + [sym__external_open_bracket] = ACTIONS(772), + [sym__external_open_bracket2] = ACTIONS(772), + }, + [417] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(1746), [aux_sym_braced_expression_repeat1] = STATE(445), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), @@ -37244,8 +36373,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -37264,39 +36393,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), + [sym__raw_string_literal] = ACTIONS(477), [sym__external_open_parenthesis] = ACTIONS(817), [sym__external_open_brace] = ACTIONS(819), - [sym__external_close_brace] = ACTIONS(845), + [sym__external_close_brace] = ACTIONS(839), }, - [431] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(1749), - [aux_sym_braced_expression_repeat1] = STATE(445), + [418] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(1730), + [aux_sym_braced_expression_repeat1] = STATE(417), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), [anon_sym_function] = ACTIONS(789), @@ -37311,8 +36440,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -37331,39 +36460,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), + [sym__raw_string_literal] = ACTIONS(477), [sym__external_open_parenthesis] = ACTIONS(817), [sym__external_open_brace] = ACTIONS(819), - [sym__external_close_brace] = ACTIONS(847), + [sym__external_close_brace] = ACTIONS(841), }, - [432] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(1708), - [aux_sym_braced_expression_repeat1] = STATE(378), + [419] = { + [ts_builtin_sym_end] = ACTIONS(720), + [sym_identifier] = ACTIONS(718), + [anon_sym_BSLASH] = ACTIONS(720), + [anon_sym_function] = ACTIONS(718), + [anon_sym_EQ] = ACTIONS(718), + [anon_sym_if] = ACTIONS(718), + [anon_sym_for] = ACTIONS(718), + [anon_sym_while] = ACTIONS(718), + [anon_sym_repeat] = ACTIONS(718), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_TILDE] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(718), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_DASH] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(720), + [anon_sym_LT_LT_DASH] = ACTIONS(720), + [anon_sym_COLON_EQ] = ACTIONS(720), + [anon_sym_DASH_GT] = ACTIONS(718), + [anon_sym_DASH_GT_GT] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(718), + [anon_sym_AMP] = ACTIONS(718), + [anon_sym_PIPE_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(718), + [anon_sym_LT_EQ] = ACTIONS(720), + [anon_sym_GT] = ACTIONS(718), + [anon_sym_GT_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(720), + [anon_sym_BANG_EQ] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(718), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_STAR_STAR] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [aux_sym_binary_operator_token1] = ACTIONS(720), + [anon_sym_PIPE_GT] = ACTIONS(720), + [anon_sym_COLON] = ACTIONS(718), + [anon_sym_DOLLAR] = ACTIONS(720), + [anon_sym_AT] = ACTIONS(720), + [sym__hex_literal] = ACTIONS(720), + [sym__number_literal] = ACTIONS(718), + [anon_sym_SQUOTE] = ACTIONS(720), + [anon_sym_DQUOTE] = ACTIONS(720), + [sym_dots] = ACTIONS(718), + [sym_dot_dot_i] = ACTIONS(718), + [sym_return] = ACTIONS(718), + [sym_next] = ACTIONS(718), + [sym_break] = ACTIONS(718), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_null] = ACTIONS(718), + [sym_inf] = ACTIONS(718), + [sym_nan] = ACTIONS(718), + [anon_sym_NA] = ACTIONS(718), + [anon_sym_NA_integer_] = ACTIONS(718), + [anon_sym_NA_real_] = ACTIONS(718), + [anon_sym_NA_complex_] = ACTIONS(718), + [anon_sym_NA_character_] = ACTIONS(718), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(720), + [sym__semicolon] = ACTIONS(720), + [sym__raw_string_literal] = ACTIONS(720), + [sym__external_open_parenthesis] = ACTIONS(720), + [sym__external_open_brace] = ACTIONS(720), + [sym__external_open_bracket] = ACTIONS(720), + [sym__external_open_bracket2] = ACTIONS(720), + }, + [420] = { + [ts_builtin_sym_end] = ACTIONS(740), + [sym_identifier] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(740), + [anon_sym_function] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_if] = ACTIONS(738), + [anon_sym_for] = ACTIONS(738), + [anon_sym_while] = ACTIONS(738), + [anon_sym_repeat] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(740), + [anon_sym_LT_LT_DASH] = ACTIONS(740), + [anon_sym_COLON_EQ] = ACTIONS(740), + [anon_sym_DASH_GT] = ACTIONS(738), + [anon_sym_DASH_GT_GT] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), + [anon_sym_PIPE_PIPE] = ACTIONS(740), + [anon_sym_AMP_AMP] = ACTIONS(740), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(740), + [anon_sym_BANG_EQ] = ACTIONS(740), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_STAR_STAR] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(740), + [aux_sym_binary_operator_token1] = ACTIONS(740), + [anon_sym_PIPE_GT] = ACTIONS(740), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(740), + [sym__hex_literal] = ACTIONS(740), + [sym__number_literal] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [sym_dots] = ACTIONS(738), + [sym_dot_dot_i] = ACTIONS(738), + [sym_return] = ACTIONS(738), + [sym_next] = ACTIONS(738), + [sym_break] = ACTIONS(738), + [sym_true] = ACTIONS(738), + [sym_false] = ACTIONS(738), + [sym_null] = ACTIONS(738), + [sym_inf] = ACTIONS(738), + [sym_nan] = ACTIONS(738), + [anon_sym_NA] = ACTIONS(738), + [anon_sym_NA_integer_] = ACTIONS(738), + [anon_sym_NA_real_] = ACTIONS(738), + [anon_sym_NA_complex_] = ACTIONS(738), + [anon_sym_NA_character_] = ACTIONS(738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(740), + [sym__semicolon] = ACTIONS(740), + [sym__raw_string_literal] = ACTIONS(740), + [sym__external_open_parenthesis] = ACTIONS(740), + [sym__external_open_brace] = ACTIONS(740), + [sym__external_open_bracket] = ACTIONS(740), + [sym__external_open_bracket2] = ACTIONS(740), + }, + [421] = { + [ts_builtin_sym_end] = ACTIONS(724), + [sym_identifier] = ACTIONS(722), + [anon_sym_BSLASH] = ACTIONS(724), + [anon_sym_function] = ACTIONS(722), + [anon_sym_EQ] = ACTIONS(722), + [anon_sym_if] = ACTIONS(722), + [anon_sym_for] = ACTIONS(722), + [anon_sym_while] = ACTIONS(722), + [anon_sym_repeat] = ACTIONS(722), + [anon_sym_QMARK] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DASH] = ACTIONS(722), + [anon_sym_LT_DASH] = ACTIONS(724), + [anon_sym_LT_LT_DASH] = ACTIONS(724), + [anon_sym_COLON_EQ] = ACTIONS(724), + [anon_sym_DASH_GT] = ACTIONS(722), + [anon_sym_DASH_GT_GT] = ACTIONS(724), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_PIPE_PIPE] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(724), + [anon_sym_LT] = ACTIONS(722), + [anon_sym_LT_EQ] = ACTIONS(724), + [anon_sym_GT] = ACTIONS(722), + [anon_sym_GT_EQ] = ACTIONS(724), + [anon_sym_EQ_EQ] = ACTIONS(724), + [anon_sym_BANG_EQ] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_SLASH] = ACTIONS(724), + [anon_sym_STAR_STAR] = ACTIONS(724), + [anon_sym_CARET] = ACTIONS(724), + [aux_sym_binary_operator_token1] = ACTIONS(724), + [anon_sym_PIPE_GT] = ACTIONS(724), + [anon_sym_COLON] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(724), + [anon_sym_AT] = ACTIONS(724), + [sym__hex_literal] = ACTIONS(724), + [sym__number_literal] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [sym_dots] = ACTIONS(722), + [sym_dot_dot_i] = ACTIONS(722), + [sym_return] = ACTIONS(722), + [sym_next] = ACTIONS(722), + [sym_break] = ACTIONS(722), + [sym_true] = ACTIONS(722), + [sym_false] = ACTIONS(722), + [sym_null] = ACTIONS(722), + [sym_inf] = ACTIONS(722), + [sym_nan] = ACTIONS(722), + [anon_sym_NA] = ACTIONS(722), + [anon_sym_NA_integer_] = ACTIONS(722), + [anon_sym_NA_real_] = ACTIONS(722), + [anon_sym_NA_complex_] = ACTIONS(722), + [anon_sym_NA_character_] = ACTIONS(722), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(724), + [sym__semicolon] = ACTIONS(724), + [sym__raw_string_literal] = ACTIONS(724), + [sym__external_open_parenthesis] = ACTIONS(724), + [sym__external_open_brace] = ACTIONS(724), + [sym__external_open_bracket] = ACTIONS(724), + [sym__external_open_bracket2] = ACTIONS(724), + }, + [422] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(1736), + [aux_sym_braced_expression_repeat1] = STATE(439), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), [anon_sym_function] = ACTIONS(789), @@ -37378,8 +36708,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -37398,13 +36728,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), + [sym__raw_string_literal] = ACTIONS(477), [sym__external_open_parenthesis] = ACTIONS(817), [sym__external_open_brace] = ACTIONS(819), - [sym__external_close_brace] = ACTIONS(849), + [sym__external_close_brace] = ACTIONS(843), }, - [433] = { - [ts_builtin_sym_end] = ACTIONS(689), + [423] = { [sym_identifier] = ACTIONS(687), [anon_sym_BSLASH] = ACTIONS(689), [anon_sym_function] = ACTIONS(687), @@ -37467,104 +36796,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal] = ACTIONS(689), [sym__external_open_parenthesis] = ACTIONS(689), [sym__external_open_brace] = ACTIONS(689), + [sym__external_close_brace] = ACTIONS(689), [sym__external_open_bracket] = ACTIONS(689), [sym__external_open_bracket2] = ACTIONS(689), }, - [434] = { - [ts_builtin_sym_end] = ACTIONS(732), - [sym_identifier] = ACTIONS(730), - [anon_sym_BSLASH] = ACTIONS(732), - [anon_sym_function] = ACTIONS(730), - [anon_sym_EQ] = ACTIONS(730), - [anon_sym_if] = ACTIONS(730), - [anon_sym_for] = ACTIONS(730), - [anon_sym_while] = ACTIONS(730), - [anon_sym_repeat] = ACTIONS(730), - [anon_sym_QMARK] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_BANG] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(730), - [anon_sym_LT_DASH] = ACTIONS(732), - [anon_sym_LT_LT_DASH] = ACTIONS(732), - [anon_sym_COLON_EQ] = ACTIONS(732), - [anon_sym_DASH_GT] = ACTIONS(730), - [anon_sym_DASH_GT_GT] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(730), - [anon_sym_AMP] = ACTIONS(730), - [anon_sym_PIPE_PIPE] = ACTIONS(732), - [anon_sym_AMP_AMP] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(730), - [anon_sym_LT_EQ] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(730), - [anon_sym_GT_EQ] = ACTIONS(732), - [anon_sym_EQ_EQ] = ACTIONS(732), - [anon_sym_BANG_EQ] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(730), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_STAR_STAR] = ACTIONS(732), - [anon_sym_CARET] = ACTIONS(732), - [aux_sym_binary_operator_token1] = ACTIONS(732), - [anon_sym_PIPE_GT] = ACTIONS(732), - [anon_sym_COLON] = ACTIONS(730), - [anon_sym_DOLLAR] = ACTIONS(732), - [anon_sym_AT] = ACTIONS(732), - [sym__hex_literal] = ACTIONS(732), - [sym__number_literal] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(732), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym_dots] = ACTIONS(730), - [sym_dot_dot_i] = ACTIONS(730), - [sym_return] = ACTIONS(730), - [sym_next] = ACTIONS(730), - [sym_break] = ACTIONS(730), - [sym_true] = ACTIONS(730), - [sym_false] = ACTIONS(730), - [sym_null] = ACTIONS(730), - [sym_inf] = ACTIONS(730), - [sym_nan] = ACTIONS(730), - [anon_sym_NA] = ACTIONS(730), - [anon_sym_NA_integer_] = ACTIONS(730), - [anon_sym_NA_real_] = ACTIONS(730), - [anon_sym_NA_complex_] = ACTIONS(730), - [anon_sym_NA_character_] = ACTIONS(730), + [424] = { + [sym_identifier] = ACTIONS(691), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_function] = ACTIONS(691), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_if] = ACTIONS(691), + [anon_sym_for] = ACTIONS(691), + [anon_sym_while] = ACTIONS(691), + [anon_sym_repeat] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_LT_DASH] = ACTIONS(693), + [anon_sym_LT_LT_DASH] = ACTIONS(693), + [anon_sym_COLON_EQ] = ACTIONS(693), + [anon_sym_DASH_GT] = ACTIONS(691), + [anon_sym_DASH_GT_GT] = ACTIONS(693), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE_PIPE] = ACTIONS(693), + [anon_sym_AMP_AMP] = ACTIONS(693), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_LT_EQ] = ACTIONS(693), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(693), + [anon_sym_EQ_EQ] = ACTIONS(693), + [anon_sym_BANG_EQ] = ACTIONS(693), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_STAR_STAR] = ACTIONS(693), + [anon_sym_CARET] = ACTIONS(693), + [aux_sym_binary_operator_token1] = ACTIONS(693), + [anon_sym_PIPE_GT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_AT] = ACTIONS(693), + [sym__hex_literal] = ACTIONS(693), + [sym__number_literal] = ACTIONS(691), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE] = ACTIONS(693), + [sym_dots] = ACTIONS(691), + [sym_dot_dot_i] = ACTIONS(691), + [sym_return] = ACTIONS(691), + [sym_next] = ACTIONS(691), + [sym_break] = ACTIONS(691), + [sym_true] = ACTIONS(691), + [sym_false] = ACTIONS(691), + [sym_null] = ACTIONS(691), + [sym_inf] = ACTIONS(691), + [sym_nan] = ACTIONS(691), + [anon_sym_NA] = ACTIONS(691), + [anon_sym_NA_integer_] = ACTIONS(691), + [anon_sym_NA_real_] = ACTIONS(691), + [anon_sym_NA_complex_] = ACTIONS(691), + [anon_sym_NA_character_] = ACTIONS(691), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(732), - [sym__semicolon] = ACTIONS(732), - [sym__raw_string_literal] = ACTIONS(732), - [sym__external_open_parenthesis] = ACTIONS(732), - [sym__external_open_brace] = ACTIONS(732), - [sym__external_open_bracket] = ACTIONS(732), - [sym__external_open_bracket2] = ACTIONS(732), + [sym__newline] = ACTIONS(693), + [sym__semicolon] = ACTIONS(693), + [sym__raw_string_literal] = ACTIONS(693), + [sym__external_open_parenthesis] = ACTIONS(693), + [sym__external_open_brace] = ACTIONS(693), + [sym__external_close_brace] = ACTIONS(693), + [sym__external_open_bracket] = ACTIONS(693), + [sym__external_open_bracket2] = ACTIONS(693), }, - [435] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(1691), - [aux_sym_braced_expression_repeat1] = STATE(388), + [425] = { + [sym_identifier] = ACTIONS(758), + [anon_sym_BSLASH] = ACTIONS(760), + [anon_sym_function] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [anon_sym_repeat] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_TILDE] = ACTIONS(760), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_LT_DASH] = ACTIONS(760), + [anon_sym_LT_LT_DASH] = ACTIONS(760), + [anon_sym_COLON_EQ] = ACTIONS(760), + [anon_sym_DASH_GT] = ACTIONS(758), + [anon_sym_DASH_GT_GT] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(760), + [anon_sym_STAR_STAR] = ACTIONS(760), + [anon_sym_CARET] = ACTIONS(760), + [aux_sym_binary_operator_token1] = ACTIONS(760), + [anon_sym_PIPE_GT] = ACTIONS(760), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [sym__hex_literal] = ACTIONS(760), + [sym__number_literal] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym_dots] = ACTIONS(758), + [sym_dot_dot_i] = ACTIONS(758), + [sym_return] = ACTIONS(758), + [sym_next] = ACTIONS(758), + [sym_break] = ACTIONS(758), + [sym_true] = ACTIONS(758), + [sym_false] = ACTIONS(758), + [sym_null] = ACTIONS(758), + [sym_inf] = ACTIONS(758), + [sym_nan] = ACTIONS(758), + [anon_sym_NA] = ACTIONS(758), + [anon_sym_NA_integer_] = ACTIONS(758), + [anon_sym_NA_real_] = ACTIONS(758), + [anon_sym_NA_complex_] = ACTIONS(758), + [anon_sym_NA_character_] = ACTIONS(758), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(760), + [sym__semicolon] = ACTIONS(760), + [sym__raw_string_literal] = ACTIONS(760), + [sym__external_open_parenthesis] = ACTIONS(760), + [sym__external_open_brace] = ACTIONS(760), + [sym__external_close_brace] = ACTIONS(760), + [sym__external_open_bracket] = ACTIONS(760), + [sym__external_open_bracket2] = ACTIONS(760), + }, + [426] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(372), + [aux_sym_braced_expression_repeat1] = STATE(444), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), [anon_sym_function] = ACTIONS(789), @@ -37579,8 +36976,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -37599,39 +36996,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), + [sym__raw_string_literal] = ACTIONS(477), [sym__external_open_parenthesis] = ACTIONS(817), [sym__external_open_brace] = ACTIONS(819), - [sym__external_close_brace] = ACTIONS(851), + [sym__external_close_brace] = ACTIONS(845), }, - [436] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(1781), - [aux_sym_braced_expression_repeat1] = STATE(429), + [427] = { + [sym_identifier] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_function] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_if] = ACTIONS(779), + [anon_sym_for] = ACTIONS(779), + [anon_sym_while] = ACTIONS(779), + [anon_sym_repeat] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(777), + [anon_sym_BANG] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(777), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_LT_DASH] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(777), + [anon_sym_COLON_EQ] = ACTIONS(777), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_DASH_GT_GT] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(777), + [anon_sym_AMP_AMP] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(779), + [anon_sym_SLASH] = ACTIONS(777), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_CARET] = ACTIONS(777), + [aux_sym_binary_operator_token1] = ACTIONS(777), + [anon_sym_PIPE_GT] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(777), + [anon_sym_AT] = ACTIONS(777), + [sym__hex_literal] = ACTIONS(777), + [sym__number_literal] = ACTIONS(779), + [anon_sym_SQUOTE] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(777), + [sym_dots] = ACTIONS(779), + [sym_dot_dot_i] = ACTIONS(779), + [sym_return] = ACTIONS(779), + [sym_next] = ACTIONS(779), + [sym_break] = ACTIONS(779), + [sym_true] = ACTIONS(779), + [sym_false] = ACTIONS(779), + [sym_null] = ACTIONS(779), + [sym_inf] = ACTIONS(779), + [sym_nan] = ACTIONS(779), + [anon_sym_NA] = ACTIONS(779), + [anon_sym_NA_integer_] = ACTIONS(779), + [anon_sym_NA_real_] = ACTIONS(779), + [anon_sym_NA_complex_] = ACTIONS(779), + [anon_sym_NA_character_] = ACTIONS(779), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(777), + [sym__semicolon] = ACTIONS(777), + [sym__raw_string_literal] = ACTIONS(777), + [sym__external_open_parenthesis] = ACTIONS(777), + [sym__external_open_brace] = ACTIONS(777), + [sym__external_close_brace] = ACTIONS(777), + [sym__external_open_bracket] = ACTIONS(777), + [sym__external_open_bracket2] = ACTIONS(777), + }, + [428] = { + [ts_builtin_sym_end] = ACTIONS(734), + [sym_identifier] = ACTIONS(736), + [anon_sym_BSLASH] = ACTIONS(734), + [anon_sym_function] = ACTIONS(736), + [anon_sym_EQ] = ACTIONS(736), + [anon_sym_if] = ACTIONS(736), + [anon_sym_for] = ACTIONS(736), + [anon_sym_while] = ACTIONS(736), + [anon_sym_repeat] = ACTIONS(736), + [anon_sym_QMARK] = ACTIONS(734), + [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_LT_DASH] = ACTIONS(734), + [anon_sym_LT_LT_DASH] = ACTIONS(734), + [anon_sym_COLON_EQ] = ACTIONS(734), + [anon_sym_DASH_GT] = ACTIONS(736), + [anon_sym_DASH_GT_GT] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(736), + [anon_sym_AMP] = ACTIONS(736), + [anon_sym_PIPE_PIPE] = ACTIONS(734), + [anon_sym_AMP_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(736), + [anon_sym_LT_EQ] = ACTIONS(734), + [anon_sym_GT] = ACTIONS(736), + [anon_sym_GT_EQ] = ACTIONS(734), + [anon_sym_EQ_EQ] = ACTIONS(734), + [anon_sym_BANG_EQ] = ACTIONS(734), + [anon_sym_STAR] = ACTIONS(736), + [anon_sym_SLASH] = ACTIONS(734), + [anon_sym_STAR_STAR] = ACTIONS(734), + [anon_sym_CARET] = ACTIONS(734), + [aux_sym_binary_operator_token1] = ACTIONS(734), + [anon_sym_PIPE_GT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(734), + [sym__hex_literal] = ACTIONS(734), + [sym__number_literal] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(734), + [sym_dots] = ACTIONS(736), + [sym_dot_dot_i] = ACTIONS(736), + [sym_return] = ACTIONS(736), + [sym_next] = ACTIONS(736), + [sym_break] = ACTIONS(736), + [sym_true] = ACTIONS(736), + [sym_false] = ACTIONS(736), + [sym_null] = ACTIONS(736), + [sym_inf] = ACTIONS(736), + [sym_nan] = ACTIONS(736), + [anon_sym_NA] = ACTIONS(736), + [anon_sym_NA_integer_] = ACTIONS(736), + [anon_sym_NA_real_] = ACTIONS(736), + [anon_sym_NA_complex_] = ACTIONS(736), + [anon_sym_NA_character_] = ACTIONS(736), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(734), + [sym__semicolon] = ACTIONS(734), + [sym__raw_string_literal] = ACTIONS(734), + [sym__external_open_parenthesis] = ACTIONS(734), + [sym__external_open_brace] = ACTIONS(734), + [sym__external_open_bracket] = ACTIONS(734), + [sym__external_open_bracket2] = ACTIONS(734), + }, + [429] = { + [sym_identifier] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_function] = ACTIONS(695), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_if] = ACTIONS(695), + [anon_sym_for] = ACTIONS(695), + [anon_sym_while] = ACTIONS(695), + [anon_sym_repeat] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(697), + [anon_sym_TILDE] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_LT_DASH] = ACTIONS(697), + [anon_sym_LT_LT_DASH] = ACTIONS(697), + [anon_sym_COLON_EQ] = ACTIONS(697), + [anon_sym_DASH_GT] = ACTIONS(695), + [anon_sym_DASH_GT_GT] = ACTIONS(697), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(697), + [anon_sym_AMP_AMP] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_LT_EQ] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(697), + [anon_sym_EQ_EQ] = ACTIONS(697), + [anon_sym_BANG_EQ] = ACTIONS(697), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(697), + [anon_sym_STAR_STAR] = ACTIONS(697), + [anon_sym_CARET] = ACTIONS(697), + [aux_sym_binary_operator_token1] = ACTIONS(697), + [anon_sym_PIPE_GT] = ACTIONS(697), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [sym__hex_literal] = ACTIONS(697), + [sym__number_literal] = ACTIONS(695), + [anon_sym_SQUOTE] = ACTIONS(697), + [anon_sym_DQUOTE] = ACTIONS(697), + [sym_dots] = ACTIONS(695), + [sym_dot_dot_i] = ACTIONS(695), + [sym_return] = ACTIONS(695), + [sym_next] = ACTIONS(695), + [sym_break] = ACTIONS(695), + [sym_true] = ACTIONS(695), + [sym_false] = ACTIONS(695), + [sym_null] = ACTIONS(695), + [sym_inf] = ACTIONS(695), + [sym_nan] = ACTIONS(695), + [anon_sym_NA] = ACTIONS(695), + [anon_sym_NA_integer_] = ACTIONS(695), + [anon_sym_NA_real_] = ACTIONS(695), + [anon_sym_NA_complex_] = ACTIONS(695), + [anon_sym_NA_character_] = ACTIONS(695), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(697), + [sym__semicolon] = ACTIONS(697), + [sym__raw_string_literal] = ACTIONS(697), + [sym__external_open_parenthesis] = ACTIONS(697), + [sym__external_open_brace] = ACTIONS(697), + [sym__external_close_brace] = ACTIONS(697), + [sym__external_open_bracket] = ACTIONS(697), + [sym__external_open_bracket2] = ACTIONS(697), + }, + [430] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(1684), + [aux_sym_braced_expression_repeat1] = STATE(386), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), [anon_sym_function] = ACTIONS(789), @@ -37646,8 +37244,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -37666,13 +37264,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), + [sym__raw_string_literal] = ACTIONS(477), [sym__external_open_parenthesis] = ACTIONS(817), [sym__external_open_brace] = ACTIONS(819), - [sym__external_close_brace] = ACTIONS(853), + [sym__external_close_brace] = ACTIONS(847), }, - [437] = { - [ts_builtin_sym_end] = ACTIONS(744), + [431] = { + [sym_identifier] = ACTIONS(699), + [anon_sym_BSLASH] = ACTIONS(701), + [anon_sym_function] = ACTIONS(699), + [anon_sym_EQ] = ACTIONS(699), + [anon_sym_if] = ACTIONS(699), + [anon_sym_for] = ACTIONS(699), + [anon_sym_while] = ACTIONS(699), + [anon_sym_repeat] = ACTIONS(699), + [anon_sym_QMARK] = ACTIONS(701), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_LT_DASH] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(701), + [anon_sym_COLON_EQ] = ACTIONS(701), + [anon_sym_DASH_GT] = ACTIONS(699), + [anon_sym_DASH_GT_GT] = ACTIONS(701), + [anon_sym_PIPE] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(701), + [anon_sym_AMP_AMP] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(699), + [anon_sym_LT_EQ] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(699), + [anon_sym_GT_EQ] = ACTIONS(701), + [anon_sym_EQ_EQ] = ACTIONS(701), + [anon_sym_BANG_EQ] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(699), + [anon_sym_SLASH] = ACTIONS(701), + [anon_sym_STAR_STAR] = ACTIONS(701), + [anon_sym_CARET] = ACTIONS(701), + [aux_sym_binary_operator_token1] = ACTIONS(701), + [anon_sym_PIPE_GT] = ACTIONS(701), + [anon_sym_COLON] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [anon_sym_AT] = ACTIONS(701), + [sym__hex_literal] = ACTIONS(701), + [sym__number_literal] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(701), + [sym_dots] = ACTIONS(699), + [sym_dot_dot_i] = ACTIONS(699), + [sym_return] = ACTIONS(699), + [sym_next] = ACTIONS(699), + [sym_break] = ACTIONS(699), + [sym_true] = ACTIONS(699), + [sym_false] = ACTIONS(699), + [sym_null] = ACTIONS(699), + [sym_inf] = ACTIONS(699), + [sym_nan] = ACTIONS(699), + [anon_sym_NA] = ACTIONS(699), + [anon_sym_NA_integer_] = ACTIONS(699), + [anon_sym_NA_real_] = ACTIONS(699), + [anon_sym_NA_complex_] = ACTIONS(699), + [anon_sym_NA_character_] = ACTIONS(699), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(701), + [sym__semicolon] = ACTIONS(701), + [sym__raw_string_literal] = ACTIONS(701), + [sym__external_open_parenthesis] = ACTIONS(701), + [sym__external_open_brace] = ACTIONS(701), + [sym__external_close_brace] = ACTIONS(701), + [sym__external_open_bracket] = ACTIONS(701), + [sym__external_open_bracket2] = ACTIONS(701), + }, + [432] = { + [sym_identifier] = ACTIONS(683), + [anon_sym_BSLASH] = ACTIONS(685), + [anon_sym_function] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [anon_sym_repeat] = ACTIONS(683), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_LT_DASH] = ACTIONS(685), + [anon_sym_LT_LT_DASH] = ACTIONS(685), + [anon_sym_COLON_EQ] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(683), + [anon_sym_DASH_GT_GT] = ACTIONS(685), + [anon_sym_PIPE] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(683), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(683), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_SLASH] = ACTIONS(685), + [anon_sym_STAR_STAR] = ACTIONS(685), + [anon_sym_CARET] = ACTIONS(685), + [aux_sym_binary_operator_token1] = ACTIONS(685), + [anon_sym_PIPE_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(683), + [anon_sym_DOLLAR] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [sym__hex_literal] = ACTIONS(685), + [sym__number_literal] = ACTIONS(683), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [sym_dots] = ACTIONS(683), + [sym_dot_dot_i] = ACTIONS(683), + [sym_return] = ACTIONS(683), + [sym_next] = ACTIONS(683), + [sym_break] = ACTIONS(683), + [sym_true] = ACTIONS(683), + [sym_false] = ACTIONS(683), + [sym_null] = ACTIONS(683), + [sym_inf] = ACTIONS(683), + [sym_nan] = ACTIONS(683), + [anon_sym_NA] = ACTIONS(683), + [anon_sym_NA_integer_] = ACTIONS(683), + [anon_sym_NA_real_] = ACTIONS(683), + [anon_sym_NA_complex_] = ACTIONS(683), + [anon_sym_NA_character_] = ACTIONS(683), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(685), + [sym__semicolon] = ACTIONS(685), + [sym__raw_string_literal] = ACTIONS(685), + [sym__external_open_parenthesis] = ACTIONS(685), + [sym__external_open_brace] = ACTIONS(685), + [sym__external_close_brace] = ACTIONS(685), + [sym__external_open_bracket] = ACTIONS(685), + [sym__external_open_bracket2] = ACTIONS(685), + }, + [433] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(432), + [aux_sym_braced_expression_repeat1] = STATE(445), + [sym_identifier] = ACTIONS(785), + [anon_sym_BSLASH] = ACTIONS(787), + [anon_sym_function] = ACTIONS(789), + [anon_sym_if] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), + [anon_sym_while] = ACTIONS(795), + [anon_sym_repeat] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(799), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [sym__hex_literal] = ACTIONS(807), + [sym__number_literal] = ACTIONS(809), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), + [sym_dots] = ACTIONS(785), + [sym_dot_dot_i] = ACTIONS(785), + [sym_return] = ACTIONS(811), + [sym_next] = ACTIONS(811), + [sym_break] = ACTIONS(811), + [sym_true] = ACTIONS(811), + [sym_false] = ACTIONS(811), + [sym_null] = ACTIONS(811), + [sym_inf] = ACTIONS(811), + [sym_nan] = ACTIONS(811), + [anon_sym_NA] = ACTIONS(813), + [anon_sym_NA_integer_] = ACTIONS(813), + [anon_sym_NA_real_] = ACTIONS(813), + [anon_sym_NA_complex_] = ACTIONS(813), + [anon_sym_NA_character_] = ACTIONS(813), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(815), + [sym__semicolon] = ACTIONS(815), + [sym__raw_string_literal] = ACTIONS(477), + [sym__external_open_parenthesis] = ACTIONS(817), + [sym__external_open_brace] = ACTIONS(819), + [sym__external_close_brace] = ACTIONS(849), + }, + [434] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(353), + [aux_sym_braced_expression_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(785), + [anon_sym_BSLASH] = ACTIONS(787), + [anon_sym_function] = ACTIONS(789), + [anon_sym_if] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), + [anon_sym_while] = ACTIONS(795), + [anon_sym_repeat] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(799), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [sym__hex_literal] = ACTIONS(807), + [sym__number_literal] = ACTIONS(809), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), + [sym_dots] = ACTIONS(785), + [sym_dot_dot_i] = ACTIONS(785), + [sym_return] = ACTIONS(811), + [sym_next] = ACTIONS(811), + [sym_break] = ACTIONS(811), + [sym_true] = ACTIONS(811), + [sym_false] = ACTIONS(811), + [sym_null] = ACTIONS(811), + [sym_inf] = ACTIONS(811), + [sym_nan] = ACTIONS(811), + [anon_sym_NA] = ACTIONS(813), + [anon_sym_NA_integer_] = ACTIONS(813), + [anon_sym_NA_real_] = ACTIONS(813), + [anon_sym_NA_complex_] = ACTIONS(813), + [anon_sym_NA_character_] = ACTIONS(813), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(815), + [sym__semicolon] = ACTIONS(815), + [sym__raw_string_literal] = ACTIONS(477), + [sym__external_open_parenthesis] = ACTIONS(817), + [sym__external_open_brace] = ACTIONS(819), + [sym__external_close_brace] = ACTIONS(851), + }, + [435] = { + [sym_identifier] = ACTIONS(738), + [anon_sym_BSLASH] = ACTIONS(740), + [anon_sym_function] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_if] = ACTIONS(738), + [anon_sym_for] = ACTIONS(738), + [anon_sym_while] = ACTIONS(738), + [anon_sym_repeat] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(740), + [anon_sym_LT_LT_DASH] = ACTIONS(740), + [anon_sym_COLON_EQ] = ACTIONS(740), + [anon_sym_DASH_GT] = ACTIONS(738), + [anon_sym_DASH_GT_GT] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), + [anon_sym_PIPE_PIPE] = ACTIONS(740), + [anon_sym_AMP_AMP] = ACTIONS(740), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(740), + [anon_sym_BANG_EQ] = ACTIONS(740), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_STAR_STAR] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(740), + [aux_sym_binary_operator_token1] = ACTIONS(740), + [anon_sym_PIPE_GT] = ACTIONS(740), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(740), + [sym__hex_literal] = ACTIONS(740), + [sym__number_literal] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [sym_dots] = ACTIONS(738), + [sym_dot_dot_i] = ACTIONS(738), + [sym_return] = ACTIONS(738), + [sym_next] = ACTIONS(738), + [sym_break] = ACTIONS(738), + [sym_true] = ACTIONS(738), + [sym_false] = ACTIONS(738), + [sym_null] = ACTIONS(738), + [sym_inf] = ACTIONS(738), + [sym_nan] = ACTIONS(738), + [anon_sym_NA] = ACTIONS(738), + [anon_sym_NA_integer_] = ACTIONS(738), + [anon_sym_NA_real_] = ACTIONS(738), + [anon_sym_NA_complex_] = ACTIONS(738), + [anon_sym_NA_character_] = ACTIONS(738), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(740), + [sym__semicolon] = ACTIONS(740), + [sym__raw_string_literal] = ACTIONS(740), + [sym__external_open_parenthesis] = ACTIONS(740), + [sym__external_open_brace] = ACTIONS(740), + [sym__external_close_brace] = ACTIONS(740), + [sym__external_open_bracket] = ACTIONS(740), + [sym__external_open_bracket2] = ACTIONS(740), + }, + [436] = { [sym_identifier] = ACTIONS(742), [anon_sym_BSLASH] = ACTIONS(744), [anon_sym_function] = ACTIONS(742), @@ -37735,237 +37667,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal] = ACTIONS(744), [sym__external_open_parenthesis] = ACTIONS(744), [sym__external_open_brace] = ACTIONS(744), + [sym__external_close_brace] = ACTIONS(744), [sym__external_open_bracket] = ACTIONS(744), [sym__external_open_bracket2] = ACTIONS(744), }, - [438] = { - [sym_identifier] = ACTIONS(716), - [anon_sym_BSLASH] = ACTIONS(714), - [anon_sym_function] = ACTIONS(716), - [anon_sym_EQ] = ACTIONS(716), - [anon_sym_if] = ACTIONS(716), - [anon_sym_for] = ACTIONS(716), - [anon_sym_while] = ACTIONS(716), - [anon_sym_repeat] = ACTIONS(716), - [anon_sym_QMARK] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(714), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_PLUS] = ACTIONS(714), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_LT_DASH] = ACTIONS(714), - [anon_sym_LT_LT_DASH] = ACTIONS(714), - [anon_sym_COLON_EQ] = ACTIONS(714), - [anon_sym_DASH_GT] = ACTIONS(716), - [anon_sym_DASH_GT_GT] = ACTIONS(714), - [anon_sym_PIPE] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(716), - [anon_sym_PIPE_PIPE] = ACTIONS(714), - [anon_sym_AMP_AMP] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(716), - [anon_sym_LT_EQ] = ACTIONS(714), - [anon_sym_GT] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(714), - [anon_sym_EQ_EQ] = ACTIONS(714), - [anon_sym_BANG_EQ] = ACTIONS(714), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_SLASH] = ACTIONS(714), - [anon_sym_STAR_STAR] = ACTIONS(714), - [anon_sym_CARET] = ACTIONS(714), - [aux_sym_binary_operator_token1] = ACTIONS(714), - [anon_sym_PIPE_GT] = ACTIONS(714), - [anon_sym_COLON] = ACTIONS(716), - [anon_sym_DOLLAR] = ACTIONS(714), - [anon_sym_AT] = ACTIONS(714), - [sym__hex_literal] = ACTIONS(714), - [sym__number_literal] = ACTIONS(716), - [anon_sym_SQUOTE] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(714), - [sym_dots] = ACTIONS(716), - [sym_dot_dot_i] = ACTIONS(716), - [sym_return] = ACTIONS(716), - [sym_next] = ACTIONS(716), - [sym_break] = ACTIONS(716), - [sym_true] = ACTIONS(716), - [sym_false] = ACTIONS(716), - [sym_null] = ACTIONS(716), - [sym_inf] = ACTIONS(716), - [sym_nan] = ACTIONS(716), - [anon_sym_NA] = ACTIONS(716), - [anon_sym_NA_integer_] = ACTIONS(716), - [anon_sym_NA_real_] = ACTIONS(716), - [anon_sym_NA_complex_] = ACTIONS(716), - [anon_sym_NA_character_] = ACTIONS(716), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(714), - [sym__semicolon] = ACTIONS(714), - [sym__raw_string_literal] = ACTIONS(714), - [sym__external_open_parenthesis] = ACTIONS(714), - [sym__external_open_brace] = ACTIONS(714), - [sym__external_close_brace] = ACTIONS(714), - [sym__external_open_bracket] = ACTIONS(714), - [sym__external_open_bracket2] = ACTIONS(714), - }, - [439] = { - [sym_identifier] = ACTIONS(712), - [anon_sym_BSLASH] = ACTIONS(710), - [anon_sym_function] = ACTIONS(712), - [anon_sym_EQ] = ACTIONS(712), - [anon_sym_if] = ACTIONS(712), - [anon_sym_for] = ACTIONS(712), - [anon_sym_while] = ACTIONS(712), - [anon_sym_repeat] = ACTIONS(712), - [anon_sym_QMARK] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_BANG] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_LT_DASH] = ACTIONS(710), - [anon_sym_LT_LT_DASH] = ACTIONS(710), - [anon_sym_COLON_EQ] = ACTIONS(710), - [anon_sym_DASH_GT] = ACTIONS(712), - [anon_sym_DASH_GT_GT] = ACTIONS(710), - [anon_sym_PIPE] = ACTIONS(712), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_PIPE_PIPE] = ACTIONS(710), - [anon_sym_AMP_AMP] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(712), - [anon_sym_LT_EQ] = ACTIONS(710), - [anon_sym_GT] = ACTIONS(712), - [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(710), - [anon_sym_BANG_EQ] = ACTIONS(710), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_SLASH] = ACTIONS(710), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [aux_sym_binary_operator_token1] = ACTIONS(710), - [anon_sym_PIPE_GT] = ACTIONS(710), - [anon_sym_COLON] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_AT] = ACTIONS(710), - [sym__hex_literal] = ACTIONS(710), - [sym__number_literal] = ACTIONS(712), - [anon_sym_SQUOTE] = ACTIONS(710), - [anon_sym_DQUOTE] = ACTIONS(710), - [sym_dots] = ACTIONS(712), - [sym_dot_dot_i] = ACTIONS(712), - [sym_return] = ACTIONS(712), - [sym_next] = ACTIONS(712), - [sym_break] = ACTIONS(712), - [sym_true] = ACTIONS(712), - [sym_false] = ACTIONS(712), - [sym_null] = ACTIONS(712), - [sym_inf] = ACTIONS(712), - [sym_nan] = ACTIONS(712), - [anon_sym_NA] = ACTIONS(712), - [anon_sym_NA_integer_] = ACTIONS(712), - [anon_sym_NA_real_] = ACTIONS(712), - [anon_sym_NA_complex_] = ACTIONS(712), - [anon_sym_NA_character_] = ACTIONS(712), + [437] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(1635), + [aux_sym_braced_expression_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(785), + [anon_sym_BSLASH] = ACTIONS(787), + [anon_sym_function] = ACTIONS(789), + [anon_sym_if] = ACTIONS(791), + [anon_sym_for] = ACTIONS(793), + [anon_sym_while] = ACTIONS(795), + [anon_sym_repeat] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(799), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [sym__hex_literal] = ACTIONS(807), + [sym__number_literal] = ACTIONS(809), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), + [sym_dots] = ACTIONS(785), + [sym_dot_dot_i] = ACTIONS(785), + [sym_return] = ACTIONS(811), + [sym_next] = ACTIONS(811), + [sym_break] = ACTIONS(811), + [sym_true] = ACTIONS(811), + [sym_false] = ACTIONS(811), + [sym_null] = ACTIONS(811), + [sym_inf] = ACTIONS(811), + [sym_nan] = ACTIONS(811), + [anon_sym_NA] = ACTIONS(813), + [anon_sym_NA_integer_] = ACTIONS(813), + [anon_sym_NA_real_] = ACTIONS(813), + [anon_sym_NA_complex_] = ACTIONS(813), + [anon_sym_NA_character_] = ACTIONS(813), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(710), - [sym__semicolon] = ACTIONS(710), - [sym__raw_string_literal] = ACTIONS(710), - [sym__external_open_parenthesis] = ACTIONS(710), - [sym__external_open_brace] = ACTIONS(710), - [sym__external_close_brace] = ACTIONS(710), - [sym__external_open_bracket] = ACTIONS(710), - [sym__external_open_bracket2] = ACTIONS(710), + [sym__newline] = ACTIONS(815), + [sym__semicolon] = ACTIONS(815), + [sym__raw_string_literal] = ACTIONS(477), + [sym__external_open_parenthesis] = ACTIONS(817), + [sym__external_open_brace] = ACTIONS(819), + [sym__external_close_brace] = ACTIONS(853), }, - [440] = { - [ts_builtin_sym_end] = ACTIONS(775), - [sym_identifier] = ACTIONS(773), - [anon_sym_BSLASH] = ACTIONS(775), - [anon_sym_function] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(773), - [anon_sym_if] = ACTIONS(773), - [anon_sym_for] = ACTIONS(773), - [anon_sym_while] = ACTIONS(773), - [anon_sym_repeat] = ACTIONS(773), - [anon_sym_QMARK] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_LT_DASH] = ACTIONS(775), - [anon_sym_LT_LT_DASH] = ACTIONS(775), - [anon_sym_COLON_EQ] = ACTIONS(775), - [anon_sym_DASH_GT] = ACTIONS(773), - [anon_sym_DASH_GT_GT] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_LT_EQ] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_GT_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [aux_sym_binary_operator_token1] = ACTIONS(775), - [anon_sym_PIPE_GT] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(775), - [anon_sym_AT] = ACTIONS(775), - [sym__hex_literal] = ACTIONS(775), - [sym__number_literal] = ACTIONS(773), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(775), - [sym_dots] = ACTIONS(773), - [sym_dot_dot_i] = ACTIONS(773), - [sym_return] = ACTIONS(773), - [sym_next] = ACTIONS(773), - [sym_break] = ACTIONS(773), - [sym_true] = ACTIONS(773), - [sym_false] = ACTIONS(773), - [sym_null] = ACTIONS(773), - [sym_inf] = ACTIONS(773), - [sym_nan] = ACTIONS(773), - [anon_sym_NA] = ACTIONS(773), - [anon_sym_NA_integer_] = ACTIONS(773), - [anon_sym_NA_real_] = ACTIONS(773), - [anon_sym_NA_complex_] = ACTIONS(773), - [anon_sym_NA_character_] = ACTIONS(773), + [438] = { + [sym_identifier] = ACTIONS(746), + [anon_sym_BSLASH] = ACTIONS(748), + [anon_sym_function] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(746), + [anon_sym_if] = ACTIONS(746), + [anon_sym_for] = ACTIONS(746), + [anon_sym_while] = ACTIONS(746), + [anon_sym_repeat] = ACTIONS(746), + [anon_sym_QMARK] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(748), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(746), + [anon_sym_LT_DASH] = ACTIONS(748), + [anon_sym_LT_LT_DASH] = ACTIONS(748), + [anon_sym_COLON_EQ] = ACTIONS(748), + [anon_sym_DASH_GT] = ACTIONS(746), + [anon_sym_DASH_GT_GT] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(746), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_PIPE_PIPE] = ACTIONS(748), + [anon_sym_AMP_AMP] = ACTIONS(748), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT_EQ] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(746), + [anon_sym_GT_EQ] = ACTIONS(748), + [anon_sym_EQ_EQ] = ACTIONS(748), + [anon_sym_BANG_EQ] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_SLASH] = ACTIONS(748), + [anon_sym_STAR_STAR] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [aux_sym_binary_operator_token1] = ACTIONS(748), + [anon_sym_PIPE_GT] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(746), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(748), + [sym__hex_literal] = ACTIONS(748), + [sym__number_literal] = ACTIONS(746), + [anon_sym_SQUOTE] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [sym_dots] = ACTIONS(746), + [sym_dot_dot_i] = ACTIONS(746), + [sym_return] = ACTIONS(746), + [sym_next] = ACTIONS(746), + [sym_break] = ACTIONS(746), + [sym_true] = ACTIONS(746), + [sym_false] = ACTIONS(746), + [sym_null] = ACTIONS(746), + [sym_inf] = ACTIONS(746), + [sym_nan] = ACTIONS(746), + [anon_sym_NA] = ACTIONS(746), + [anon_sym_NA_integer_] = ACTIONS(746), + [anon_sym_NA_real_] = ACTIONS(746), + [anon_sym_NA_complex_] = ACTIONS(746), + [anon_sym_NA_character_] = ACTIONS(746), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(775), - [sym__semicolon] = ACTIONS(775), - [sym__raw_string_literal] = ACTIONS(775), - [sym__external_open_parenthesis] = ACTIONS(775), - [sym__external_open_brace] = ACTIONS(775), - [sym__external_open_bracket] = ACTIONS(775), - [sym__external_open_bracket2] = ACTIONS(775), + [sym__newline] = ACTIONS(748), + [sym__semicolon] = ACTIONS(748), + [sym__raw_string_literal] = ACTIONS(748), + [sym__external_open_parenthesis] = ACTIONS(748), + [sym__external_open_brace] = ACTIONS(748), + [sym__external_close_brace] = ACTIONS(748), + [sym__external_open_bracket] = ACTIONS(748), + [sym__external_open_bracket2] = ACTIONS(748), }, - [441] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(370), + [439] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(1744), [aux_sym_braced_expression_repeat1] = STATE(445), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), @@ -37981,8 +37847,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -38001,39 +37867,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), + [sym__raw_string_literal] = ACTIONS(477), [sym__external_open_parenthesis] = ACTIONS(817), [sym__external_open_brace] = ACTIONS(819), [sym__external_close_brace] = ACTIONS(855), }, - [442] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(428), - [aux_sym_braced_expression_repeat1] = STATE(430), + [440] = { + [sym_identifier] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(703), + [anon_sym_function] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_if] = ACTIONS(705), + [anon_sym_for] = ACTIONS(705), + [anon_sym_while] = ACTIONS(705), + [anon_sym_repeat] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(703), + [anon_sym_TILDE] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_LT_DASH] = ACTIONS(703), + [anon_sym_LT_LT_DASH] = ACTIONS(703), + [anon_sym_COLON_EQ] = ACTIONS(703), + [anon_sym_DASH_GT] = ACTIONS(705), + [anon_sym_DASH_GT_GT] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(703), + [anon_sym_AMP_AMP] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(705), + [anon_sym_LT_EQ] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_GT_EQ] = ACTIONS(703), + [anon_sym_EQ_EQ] = ACTIONS(703), + [anon_sym_BANG_EQ] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(703), + [anon_sym_STAR_STAR] = ACTIONS(703), + [anon_sym_CARET] = ACTIONS(703), + [aux_sym_binary_operator_token1] = ACTIONS(703), + [anon_sym_PIPE_GT] = ACTIONS(703), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_AT] = ACTIONS(703), + [sym__hex_literal] = ACTIONS(703), + [sym__number_literal] = ACTIONS(705), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_DQUOTE] = ACTIONS(703), + [sym_dots] = ACTIONS(705), + [sym_dot_dot_i] = ACTIONS(705), + [sym_return] = ACTIONS(705), + [sym_next] = ACTIONS(705), + [sym_break] = ACTIONS(705), + [sym_true] = ACTIONS(705), + [sym_false] = ACTIONS(705), + [sym_null] = ACTIONS(705), + [sym_inf] = ACTIONS(705), + [sym_nan] = ACTIONS(705), + [anon_sym_NA] = ACTIONS(705), + [anon_sym_NA_integer_] = ACTIONS(705), + [anon_sym_NA_real_] = ACTIONS(705), + [anon_sym_NA_complex_] = ACTIONS(705), + [anon_sym_NA_character_] = ACTIONS(705), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(703), + [sym__semicolon] = ACTIONS(703), + [sym__raw_string_literal] = ACTIONS(703), + [sym__external_open_parenthesis] = ACTIONS(703), + [sym__external_open_brace] = ACTIONS(703), + [sym__external_close_brace] = ACTIONS(703), + [sym__external_open_bracket] = ACTIONS(703), + [sym__external_open_bracket2] = ACTIONS(703), + }, + [441] = { + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(1701), + [aux_sym_braced_expression_repeat1] = STATE(400), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), [anon_sym_function] = ACTIONS(789), @@ -38048,8 +37981,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -38068,106 +38001,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), + [sym__raw_string_literal] = ACTIONS(477), [sym__external_open_parenthesis] = ACTIONS(817), [sym__external_open_brace] = ACTIONS(819), [sym__external_close_brace] = ACTIONS(857), }, + [442] = { + [ts_builtin_sym_end] = ACTIONS(689), + [sym_identifier] = ACTIONS(687), + [anon_sym_BSLASH] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_EQ] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_repeat] = ACTIONS(687), + [anon_sym_QMARK] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_LT_DASH] = ACTIONS(689), + [anon_sym_LT_LT_DASH] = ACTIONS(689), + [anon_sym_COLON_EQ] = ACTIONS(689), + [anon_sym_DASH_GT] = ACTIONS(687), + [anon_sym_DASH_GT_GT] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(687), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_EQ] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(687), + [anon_sym_GT_EQ] = ACTIONS(689), + [anon_sym_EQ_EQ] = ACTIONS(689), + [anon_sym_BANG_EQ] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_STAR_STAR] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [aux_sym_binary_operator_token1] = ACTIONS(689), + [anon_sym_PIPE_GT] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(689), + [sym__hex_literal] = ACTIONS(689), + [sym__number_literal] = ACTIONS(687), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DQUOTE] = ACTIONS(689), + [sym_dots] = ACTIONS(687), + [sym_dot_dot_i] = ACTIONS(687), + [sym_return] = ACTIONS(687), + [sym_next] = ACTIONS(687), + [sym_break] = ACTIONS(687), + [sym_true] = ACTIONS(687), + [sym_false] = ACTIONS(687), + [sym_null] = ACTIONS(687), + [sym_inf] = ACTIONS(687), + [sym_nan] = ACTIONS(687), + [anon_sym_NA] = ACTIONS(687), + [anon_sym_NA_integer_] = ACTIONS(687), + [anon_sym_NA_real_] = ACTIONS(687), + [anon_sym_NA_complex_] = ACTIONS(687), + [anon_sym_NA_character_] = ACTIONS(687), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(689), + [sym__semicolon] = ACTIONS(689), + [sym__raw_string_literal] = ACTIONS(689), + [sym__external_open_parenthesis] = ACTIONS(689), + [sym__external_open_brace] = ACTIONS(689), + [sym__external_open_bracket] = ACTIONS(689), + [sym__external_open_bracket2] = ACTIONS(689), + }, [443] = { - [ts_builtin_sym_end] = ACTIONS(779), - [sym_identifier] = ACTIONS(777), - [anon_sym_BSLASH] = ACTIONS(779), - [anon_sym_function] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(777), - [anon_sym_if] = ACTIONS(777), - [anon_sym_for] = ACTIONS(777), - [anon_sym_while] = ACTIONS(777), - [anon_sym_repeat] = ACTIONS(777), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_BANG] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_LT_DASH] = ACTIONS(779), - [anon_sym_LT_LT_DASH] = ACTIONS(779), - [anon_sym_COLON_EQ] = ACTIONS(779), - [anon_sym_DASH_GT] = ACTIONS(777), - [anon_sym_DASH_GT_GT] = ACTIONS(779), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_AMP] = ACTIONS(777), - [anon_sym_PIPE_PIPE] = ACTIONS(779), - [anon_sym_AMP_AMP] = ACTIONS(779), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_LT_EQ] = ACTIONS(779), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_EQ] = ACTIONS(779), - [anon_sym_EQ_EQ] = ACTIONS(779), - [anon_sym_BANG_EQ] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(779), - [anon_sym_STAR_STAR] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [aux_sym_binary_operator_token1] = ACTIONS(779), - [anon_sym_PIPE_GT] = ACTIONS(779), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(779), - [anon_sym_AT] = ACTIONS(779), - [sym__hex_literal] = ACTIONS(779), - [sym__number_literal] = ACTIONS(777), - [anon_sym_SQUOTE] = ACTIONS(779), - [anon_sym_DQUOTE] = ACTIONS(779), - [sym_dots] = ACTIONS(777), - [sym_dot_dot_i] = ACTIONS(777), - [sym_return] = ACTIONS(777), - [sym_next] = ACTIONS(777), - [sym_break] = ACTIONS(777), - [sym_true] = ACTIONS(777), - [sym_false] = ACTIONS(777), - [sym_null] = ACTIONS(777), - [sym_inf] = ACTIONS(777), - [sym_nan] = ACTIONS(777), - [anon_sym_NA] = ACTIONS(777), - [anon_sym_NA_integer_] = ACTIONS(777), - [anon_sym_NA_real_] = ACTIONS(777), - [anon_sym_NA_complex_] = ACTIONS(777), - [anon_sym_NA_character_] = ACTIONS(777), + [ts_builtin_sym_end] = ACTIONS(693), + [sym_identifier] = ACTIONS(691), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_function] = ACTIONS(691), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_if] = ACTIONS(691), + [anon_sym_for] = ACTIONS(691), + [anon_sym_while] = ACTIONS(691), + [anon_sym_repeat] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_LT_DASH] = ACTIONS(693), + [anon_sym_LT_LT_DASH] = ACTIONS(693), + [anon_sym_COLON_EQ] = ACTIONS(693), + [anon_sym_DASH_GT] = ACTIONS(691), + [anon_sym_DASH_GT_GT] = ACTIONS(693), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE_PIPE] = ACTIONS(693), + [anon_sym_AMP_AMP] = ACTIONS(693), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_LT_EQ] = ACTIONS(693), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(693), + [anon_sym_EQ_EQ] = ACTIONS(693), + [anon_sym_BANG_EQ] = ACTIONS(693), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_STAR_STAR] = ACTIONS(693), + [anon_sym_CARET] = ACTIONS(693), + [aux_sym_binary_operator_token1] = ACTIONS(693), + [anon_sym_PIPE_GT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_AT] = ACTIONS(693), + [sym__hex_literal] = ACTIONS(693), + [sym__number_literal] = ACTIONS(691), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE] = ACTIONS(693), + [sym_dots] = ACTIONS(691), + [sym_dot_dot_i] = ACTIONS(691), + [sym_return] = ACTIONS(691), + [sym_next] = ACTIONS(691), + [sym_break] = ACTIONS(691), + [sym_true] = ACTIONS(691), + [sym_false] = ACTIONS(691), + [sym_null] = ACTIONS(691), + [sym_inf] = ACTIONS(691), + [sym_nan] = ACTIONS(691), + [anon_sym_NA] = ACTIONS(691), + [anon_sym_NA_integer_] = ACTIONS(691), + [anon_sym_NA_real_] = ACTIONS(691), + [anon_sym_NA_complex_] = ACTIONS(691), + [anon_sym_NA_character_] = ACTIONS(691), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(779), - [sym__semicolon] = ACTIONS(779), - [sym__raw_string_literal] = ACTIONS(779), - [sym__external_open_parenthesis] = ACTIONS(779), - [sym__external_open_brace] = ACTIONS(779), - [sym__external_open_bracket] = ACTIONS(779), - [sym__external_open_bracket2] = ACTIONS(779), + [sym__newline] = ACTIONS(693), + [sym__semicolon] = ACTIONS(693), + [sym__raw_string_literal] = ACTIONS(693), + [sym__external_open_parenthesis] = ACTIONS(693), + [sym__external_open_brace] = ACTIONS(693), + [sym__external_open_bracket] = ACTIONS(693), + [sym__external_open_bracket2] = ACTIONS(693), }, [444] = { - [sym_function_definition] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_repeat_statement] = STATE(242), - [sym_braced_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_call] = STATE(242), - [sym_subset] = STATE(242), - [sym_subset2] = STATE(242), - [sym_unary_operator] = STATE(242), - [sym_binary_operator] = STATE(242), - [sym_extract_operator] = STATE(242), - [sym_namespace_operator] = STATE(242), - [sym_integer] = STATE(242), - [sym_complex] = STATE(242), - [sym_float] = STATE(242), - [sym__float_literal] = STATE(317), - [sym_string] = STATE(316), - [sym__single_quoted_string] = STATE(318), - [sym__double_quoted_string] = STATE(320), - [sym_na] = STATE(242), - [sym__expression] = STATE(242), - [sym__open_parenthesis] = STATE(1102), - [sym__open_brace] = STATE(442), - [sym__close_brace] = STATE(376), - [aux_sym_braced_expression_repeat1] = STATE(385), + [sym_function_definition] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_repeat_statement] = STATE(187), + [sym_braced_expression] = STATE(187), + [sym_parenthesized_expression] = STATE(187), + [sym_call] = STATE(187), + [sym_subset] = STATE(187), + [sym_subset2] = STATE(187), + [sym_unary_operator] = STATE(187), + [sym_binary_operator] = STATE(187), + [sym_extract_operator] = STATE(187), + [sym_namespace_operator] = STATE(187), + [sym_integer] = STATE(187), + [sym_complex] = STATE(187), + [sym_float] = STATE(187), + [sym__float_literal] = STATE(315), + [sym_string] = STATE(314), + [sym__single_quoted_string] = STATE(316), + [sym__double_quoted_string] = STATE(317), + [sym_na] = STATE(187), + [sym__expression] = STATE(187), + [sym__open_parenthesis] = STATE(1117), + [sym__open_brace] = STATE(414), + [sym__close_brace] = STATE(369), + [aux_sym_braced_expression_repeat1] = STATE(445), [sym_identifier] = ACTIONS(785), [anon_sym_BSLASH] = ACTIONS(787), [anon_sym_function] = ACTIONS(789), @@ -38182,8 +38182,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(805), [sym__hex_literal] = ACTIONS(807), [sym__number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(475), [sym_dots] = ACTIONS(785), [sym_dot_dot_i] = ACTIONS(785), [sym_return] = ACTIONS(811), @@ -38202,7 +38202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), [sym__semicolon] = ACTIONS(815), - [sym__raw_string_literal] = ACTIONS(579), + [sym__raw_string_literal] = ACTIONS(477), [sym__external_open_parenthesis] = ACTIONS(817), [sym__external_open_brace] = ACTIONS(819), [sym__external_close_brace] = ACTIONS(859), @@ -38247,19 +38247,19 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_brace, ACTIONS(924), 1, sym__external_close_brace, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, STATE(445), 1, aux_sym_braced_expression_repeat1, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, ACTIONS(891), 2, anon_sym_PLUS, @@ -38286,7 +38286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(242), 19, + STATE(187), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -38309,11 +38309,11 @@ static const uint16_t ts_small_parse_table[] = { [127] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(485), 1, sym__raw_string_literal, ACTIONS(926), 1, ts_builtin_sym_end, @@ -38343,19 +38343,19 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(962), 1, sym__external_open_brace, - STATE(307), 1, - sym__double_quoted_string, + STATE(304), 1, + sym__float_literal, STATE(308), 1, sym__single_quoted_string, STATE(309), 1, - sym__float_literal, - STATE(322), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(413), 1, + STATE(389), 1, sym__open_brace, - STATE(447), 1, + STATE(448), 1, aux_sym_program_repeat1, - STATE(1092), 1, + STATE(1051), 1, sym__open_parenthesis, ACTIONS(948), 2, anon_sym_PLUS, @@ -38382,7 +38382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(132), 19, + STATE(165), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -38405,11 +38405,11 @@ static const uint16_t ts_small_parse_table[] = { [254] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(485), 1, sym__raw_string_literal, ACTIONS(930), 1, anon_sym_BSLASH, @@ -38439,19 +38439,19 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_brace, ACTIONS(964), 1, ts_builtin_sym_end, - STATE(307), 1, - sym__double_quoted_string, + STATE(304), 1, + sym__float_literal, STATE(308), 1, sym__single_quoted_string, STATE(309), 1, - sym__float_literal, - STATE(322), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(413), 1, + STATE(389), 1, sym__open_brace, - STATE(448), 1, + STATE(446), 1, aux_sym_program_repeat1, - STATE(1092), 1, + STATE(1051), 1, sym__open_parenthesis, ACTIONS(948), 2, anon_sym_PLUS, @@ -38478,7 +38478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(132), 19, + STATE(165), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -38535,19 +38535,19 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(1030), 1, sym__external_open_brace, - STATE(307), 1, - sym__double_quoted_string, + STATE(304), 1, + sym__float_literal, STATE(308), 1, sym__single_quoted_string, STATE(309), 1, - sym__float_literal, - STATE(322), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(413), 1, + STATE(389), 1, sym__open_brace, STATE(448), 1, aux_sym_program_repeat1, - STATE(1092), 1, + STATE(1051), 1, sym__open_parenthesis, ACTIONS(1000), 2, anon_sym_PLUS, @@ -38574,7 +38574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(132), 19, + STATE(165), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -38597,69 +38597,69 @@ static const uint16_t ts_small_parse_table[] = { [508] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(436), 1, + STATE(402), 1, sym__open_brace, - STATE(1108), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1619), 1, sym_string, - STATE(1611), 1, + STATE(1620), 1, sym__float_literal, - STATE(1613), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(2047), 1, + STATE(2039), 1, sym__argument_value, - ACTIONS(501), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1035), 2, - sym__external_close_bracket, + sym__external_close_parenthesis, sym_comma, ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(511), 8, + ACTIONS(409), 8, sym_return, sym_next, sym_break, @@ -38668,7 +38668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1372), 19, + STATE(1361), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -38691,69 +38691,69 @@ static const uint16_t ts_small_parse_table[] = { [632] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(423), 1, + STATE(418), 1, sym__open_brace, - STATE(1096), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1608), 1, sym_string, - STATE(1629), 1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1630), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(2045), 1, + STATE(2042), 1, sym__argument_value, - ACTIONS(445), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1035), 2, - sym__external_close_parenthesis, + sym__external_close_bracket, sym_comma, ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(455), 8, + ACTIONS(523), 8, sym_return, sym_next, sym_break, @@ -38762,7 +38762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1442), 19, + STATE(1575), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -38785,53 +38785,53 @@ static const uint16_t ts_small_parse_table[] = { [756] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(467), 1, sym__external_open_brace, - STATE(392), 1, + STATE(422), 1, sym__open_brace, - STATE(1113), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1625), 1, + STATE(1610), 1, sym__float_literal, - STATE(1631), 1, - sym__single_quoted_string, - STATE(2032), 1, + STATE(1632), 1, + sym__double_quoted_string, + STATE(2033), 1, sym__argument_value, - ACTIONS(399), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1035), 2, @@ -38841,13 +38841,13 @@ static const uint16_t ts_small_parse_table[] = { sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(409), 8, + ACTIONS(455), 8, sym_return, sym_next, sym_break, @@ -38856,7 +38856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1346), 19, + STATE(1552), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -38879,68 +38879,68 @@ static const uint16_t ts_small_parse_table[] = { [880] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(962), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(304), 1, sym__float_literal, - STATE(293), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(382), 1, + STATE(389), 1, sym__open_brace, - STATE(1107), 1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1067), 8, + ACTIONS(1041), 8, sym_return, sym_next, sym_break, @@ -38949,7 +38949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(52), 19, + STATE(231), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -38972,68 +38972,161 @@ static const uint16_t ts_small_parse_table[] = { [1003] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(960), 1, + sym__external_open_parenthesis, + ACTIONS(962), 1, + sym__external_open_brace, + ACTIONS(1047), 1, + sym__newline, + STATE(304), 1, + sym__float_literal, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(706), 1, + aux_sym_function_definition_repeat1, + STATE(1051), 1, + sym__open_parenthesis, + ACTIONS(948), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(928), 3, + sym_dots, + sym_dot_dot_i, + sym_identifier, + ACTIONS(956), 5, + anon_sym_NA, + anon_sym_NA_integer_, + anon_sym_NA_real_, + anon_sym_NA_complex_, + anon_sym_NA_character_, + ACTIONS(1045), 8, + sym_return, + sym_next, + sym_break, + sym_true, + sym_false, + sym_null, + sym_inf, + sym_nan, + STATE(197), 19, + sym_function_definition, + sym_if_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_braced_expression, + sym_parenthesized_expression, + sym_call, + sym_subset, + sym_subset2, + sym_unary_operator, + sym_binary_operator, + sym_extract_operator, + sym_namespace_operator, + sym_integer, + sym_complex, + sym_float, + sym_na, + sym__expression, + [1126] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(930), 1, + anon_sym_BSLASH, + ACTIONS(932), 1, + anon_sym_function, + ACTIONS(934), 1, + anon_sym_if, + ACTIONS(936), 1, + anon_sym_for, + ACTIONS(938), 1, + anon_sym_while, + ACTIONS(940), 1, + anon_sym_repeat, + ACTIONS(942), 1, + anon_sym_QMARK, + ACTIONS(944), 1, + anon_sym_TILDE, + ACTIONS(946), 1, + anon_sym_BANG, + ACTIONS(950), 1, + sym__hex_literal, + ACTIONS(952), 1, + sym__number_literal, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1051), 1, sym__newline, - STATE(392), 1, - sym__open_brace, - STATE(1113), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, - sym_string, - STATE(1625), 1, + STATE(304), 1, sym__float_literal, - STATE(1631), 1, + STATE(308), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(832), 1, + aux_sym_function_definition_repeat1, + STATE(1051), 1, + sym__open_parenthesis, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1077), 8, + ACTIONS(1049), 8, sym_return, sym_next, sym_break, @@ -39042,7 +39135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1500), 19, + STATE(198), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39062,14 +39155,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [1126] = 30, + [1249] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -39097,22 +39190,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1081), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(460), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, @@ -39126,7 +39219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1079), 8, + ACTIONS(1053), 8, sym_return, sym_next, sym_break, @@ -39135,7 +39228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(151), 19, + STATE(149), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39155,14 +39248,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [1249] = 30, + [1372] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -39190,21 +39283,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1085), 1, + ACTIONS(1057), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(474), 1, + STATE(484), 1, aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, ACTIONS(805), 2, anon_sym_PLUS, @@ -39219,7 +39312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1083), 8, + ACTIONS(1055), 8, sym_return, sym_next, sym_break, @@ -39228,7 +39321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(152), 19, + STATE(150), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39248,71 +39341,164 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [1372] = 30, + [1495] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1061), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, + STATE(304), 1, sym__float_literal, - STATE(318), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(1102), 1, + STATE(984), 1, + aux_sym_function_definition_repeat1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1604), 1, + ACTIONS(948), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(928), 3, + sym_dots, + sym_dot_dot_i, + sym_identifier, + ACTIONS(956), 5, + anon_sym_NA, + anon_sym_NA_integer_, + anon_sym_NA_real_, + anon_sym_NA_complex_, + anon_sym_NA_character_, + ACTIONS(1059), 8, + sym_return, + sym_next, + sym_break, + sym_true, + sym_false, + sym_null, + sym_inf, + sym_nan, + STATE(199), 19, + sym_function_definition, + sym_if_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_statement, + sym_braced_expression, + sym_parenthesized_expression, + sym_call, + sym_subset, + sym_subset2, + sym_unary_operator, + sym_binary_operator, + sym_extract_operator, + sym_namespace_operator, + sym_integer, + sym_complex, + sym_float, + sym_na, + sym__expression, + [1618] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, + anon_sym_BSLASH, + ACTIONS(932), 1, + anon_sym_function, + ACTIONS(934), 1, + anon_sym_if, + ACTIONS(936), 1, + anon_sym_for, + ACTIONS(938), 1, + anon_sym_while, + ACTIONS(940), 1, + anon_sym_repeat, + ACTIONS(942), 1, + anon_sym_QMARK, + ACTIONS(944), 1, + anon_sym_TILDE, + ACTIONS(946), 1, + anon_sym_BANG, + ACTIONS(950), 1, + sym__hex_literal, + ACTIONS(952), 1, + sym__number_literal, + ACTIONS(960), 1, + sym__external_open_parenthesis, + ACTIONS(962), 1, + sym__external_open_brace, + ACTIONS(1065), 1, + sym__newline, + STATE(304), 1, + sym__float_literal, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(985), 1, aux_sym_function_definition_repeat1, - ACTIONS(805), 2, + STATE(1051), 1, + sym__open_parenthesis, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1087), 8, + ACTIONS(1063), 8, sym_return, sym_next, sym_break, @@ -39321,7 +39507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(145), 19, + STATE(200), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39341,14 +39527,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [1495] = 30, + [1741] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -39376,21 +39562,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, @@ -39405,7 +39591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1089), 8, + ACTIONS(1067), 8, sym_return, sym_next, sym_break, @@ -39414,7 +39600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(144), 19, + STATE(151), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39434,71 +39620,71 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [1618] = 30, + [1864] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(962), 1, sym__external_open_brace, ACTIONS(1071), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, + STATE(304), 1, sym__float_literal, - STATE(318), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(1102), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(986), 1, aux_sym_function_definition_repeat1, - ACTIONS(805), 2, + STATE(1051), 1, + sym__open_parenthesis, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1091), 8, + ACTIONS(1069), 8, sym_return, sym_next, sym_break, @@ -39507,7 +39693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(142), 19, + STATE(201), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39527,14 +39713,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [1741] = 30, + [1987] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -39562,21 +39748,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, @@ -39591,7 +39777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1093), 8, + ACTIONS(1073), 8, sym_return, sym_next, sym_break, @@ -39600,7 +39786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(141), 19, + STATE(152), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39620,14 +39806,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [1864] = 30, + [2110] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -39655,21 +39841,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, @@ -39684,7 +39870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1095), 8, + ACTIONS(1075), 8, sym_return, sym_next, sym_break, @@ -39693,7 +39879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(139), 19, + STATE(153), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39713,71 +39899,71 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [1987] = 30, + [2233] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1099), 1, + ACTIONS(1079), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, + STATE(304), 1, sym__float_literal, - STATE(318), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(476), 1, + STATE(993), 1, aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1051), 1, sym__open_parenthesis, - ACTIONS(805), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1097), 8, + ACTIONS(1077), 8, sym_return, sym_next, sym_break, @@ -39786,7 +39972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(137), 19, + STATE(130), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39806,14 +39992,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [2110] = 30, + [2356] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -39841,22 +40027,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1103), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(477), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, @@ -39870,7 +40056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1101), 8, + ACTIONS(1081), 8, sym_return, sym_next, sym_break, @@ -39879,7 +40065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(165), 19, + STATE(154), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39899,71 +40085,71 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [2233] = 30, + [2479] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1107), 1, + ACTIONS(1085), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, + STATE(304), 1, sym__float_literal, - STATE(318), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(478), 1, + STATE(1000), 1, aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1051), 1, sym__open_parenthesis, - ACTIONS(805), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1105), 8, + ACTIONS(1083), 8, sym_return, sym_next, sym_break, @@ -39972,7 +40158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(147), 19, + STATE(202), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -39992,14 +40178,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [2356] = 30, + [2602] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -40027,22 +40213,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1111), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(479), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, @@ -40056,7 +40242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1109), 8, + ACTIONS(1087), 8, sym_return, sym_next, sym_break, @@ -40065,7 +40251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(150), 19, + STATE(155), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40085,71 +40271,71 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [2479] = 30, + [2725] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1115), 1, + ACTIONS(1091), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, + STATE(304), 1, sym__float_literal, - STATE(318), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(480), 1, + STATE(1008), 1, aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1051), 1, sym__open_parenthesis, - ACTIONS(805), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1113), 8, + ACTIONS(1089), 8, sym_return, sym_next, sym_break, @@ -40158,7 +40344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(135), 19, + STATE(203), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40178,14 +40364,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [2602] = 30, + [2848] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -40213,22 +40399,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1119), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(481), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, @@ -40242,7 +40428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1117), 8, + ACTIONS(1093), 8, sym_return, sym_next, sym_break, @@ -40251,7 +40437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(161), 19, + STATE(156), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40271,71 +40457,71 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [2725] = 30, + [2971] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1123), 1, + ACTIONS(1097), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, + STATE(304), 1, sym__float_literal, - STATE(318), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(483), 1, + STATE(1014), 1, aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1051), 1, sym__open_parenthesis, - ACTIONS(805), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1121), 8, + ACTIONS(1095), 8, sym_return, sym_next, sym_break, @@ -40344,7 +40530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(162), 19, + STATE(204), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40364,14 +40550,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [2848] = 30, + [3094] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -40399,22 +40585,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1127), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(485), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, @@ -40428,7 +40614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1125), 8, + ACTIONS(1099), 8, sym_return, sym_next, sym_break, @@ -40437,7 +40623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(164), 19, + STATE(157), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40457,14 +40643,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [2971] = 30, + [3217] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -40492,22 +40678,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1131), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(488), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, @@ -40521,7 +40707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1129), 8, + ACTIONS(1101), 8, sym_return, sym_next, sym_break, @@ -40530,7 +40716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(179), 19, + STATE(158), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40550,14 +40736,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [3094] = 30, + [3340] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -40585,22 +40771,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1135), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(490), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, @@ -40614,7 +40800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1133), 8, + ACTIONS(1103), 8, sym_return, sym_next, sym_break, @@ -40623,7 +40809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(181), 19, + STATE(159), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40643,14 +40829,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [3217] = 30, + [3463] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -40678,22 +40864,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1139), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(492), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, @@ -40707,7 +40893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1137), 8, + ACTIONS(1105), 8, sym_return, sym_next, sym_break, @@ -40716,7 +40902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(183), 19, + STATE(160), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40736,14 +40922,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [3340] = 30, + [3586] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -40771,22 +40957,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1143), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(494), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, @@ -40800,7 +40986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1141), 8, + ACTIONS(1107), 8, sym_return, sym_next, sym_break, @@ -40809,7 +40995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(184), 19, + STATE(161), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40829,71 +41015,71 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [3463] = 30, + [3709] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1147), 1, + ACTIONS(1111), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, + STATE(304), 1, sym__float_literal, - STATE(318), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(496), 1, + STATE(1016), 1, aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1051), 1, sym__open_parenthesis, - ACTIONS(805), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1145), 8, + ACTIONS(1109), 8, sym_return, sym_next, sym_break, @@ -40902,7 +41088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(185), 19, + STATE(205), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -40922,14 +41108,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [3586] = 30, + [3832] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -40957,21 +41143,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, @@ -40986,7 +41172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1149), 8, + ACTIONS(1113), 8, sym_return, sym_next, sym_break, @@ -40995,7 +41181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(188), 19, + STATE(162), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41015,164 +41201,71 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [3709] = 30, + [3955] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1153), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, + STATE(304), 1, sym__float_literal, - STATE(318), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(442), 1, - sym__open_brace, - STATE(517), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, - sym__open_parenthesis, - ACTIONS(805), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(785), 3, - sym_dots, - sym_dot_dot_i, - sym_identifier, - ACTIONS(813), 5, - anon_sym_NA, - anon_sym_NA_integer_, - anon_sym_NA_real_, - anon_sym_NA_complex_, - anon_sym_NA_character_, - ACTIONS(1151), 8, - sym_return, - sym_next, - sym_break, - sym_true, - sym_false, - sym_null, - sym_inf, - sym_nan, - STATE(189), 19, - sym_function_definition, - sym_if_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_braced_expression, - sym_parenthesized_expression, - sym_call, - sym_subset, - sym_subset2, - sym_unary_operator, - sym_binary_operator, - sym_extract_operator, - sym_namespace_operator, - sym_integer, - sym_complex, - sym_float, - sym_na, - sym__expression, - [3832] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, - anon_sym_BSLASH, - ACTIONS(789), 1, - anon_sym_function, - ACTIONS(791), 1, - anon_sym_if, - ACTIONS(793), 1, - anon_sym_for, - ACTIONS(795), 1, - anon_sym_while, - ACTIONS(797), 1, - anon_sym_repeat, - ACTIONS(799), 1, - anon_sym_QMARK, - ACTIONS(801), 1, - anon_sym_TILDE, - ACTIONS(803), 1, - anon_sym_BANG, - ACTIONS(807), 1, - sym__hex_literal, - ACTIONS(809), 1, - sym__number_literal, - ACTIONS(817), 1, - sym__external_open_parenthesis, - ACTIONS(819), 1, - sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(316), 1, + STATE(323), 1, sym_string, - STATE(317), 1, - sym__float_literal, - STATE(318), 1, - sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, + STATE(389), 1, sym__open_brace, - STATE(1102), 1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(805), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1155), 8, + ACTIONS(1115), 8, sym_return, sym_next, sym_break, @@ -41181,7 +41274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(190), 19, + STATE(221), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41201,14 +41294,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [3955] = 30, + [4078] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -41236,21 +41329,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, @@ -41265,7 +41358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1157), 8, + ACTIONS(1117), 8, sym_return, sym_next, sym_break, @@ -41274,7 +41367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(191), 19, + STATE(163), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41294,71 +41387,71 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [4078] = 30, + [4201] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(1149), 1, + sym__newline, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(316), 1, + STATE(286), 1, sym_string, - STATE(317), 1, + STATE(287), 1, sym__float_literal, - STATE(318), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(289), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(426), 1, sym__open_brace, - STATE(1102), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(491), 1, aux_sym_function_definition_repeat1, - ACTIONS(805), 2, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1159), 8, + ACTIONS(1145), 8, sym_return, sym_next, sym_break, @@ -41367,7 +41460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(193), 19, + STATE(2), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41387,71 +41480,71 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [4201] = 30, + [4324] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1157), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, + STATE(304), 1, sym__float_literal, - STATE(318), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(1102), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(498), 1, aux_sym_function_definition_repeat1, - ACTIONS(805), 2, + STATE(1051), 1, + sym__open_parenthesis, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1161), 8, + ACTIONS(1155), 8, sym_return, sym_next, sym_break, @@ -41460,7 +41553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(194), 19, + STATE(222), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41480,71 +41573,71 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [4324] = 30, + [4447] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1161), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, + STATE(304), 1, sym__float_literal, - STATE(318), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(1102), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(634), 1, aux_sym_function_definition_repeat1, - ACTIONS(805), 2, + STATE(1051), 1, + sym__open_parenthesis, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1163), 8, + ACTIONS(1159), 8, sym_return, sym_next, sym_break, @@ -41553,7 +41646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(195), 19, + STATE(183), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41573,71 +41666,71 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [4447] = 30, + [4570] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1165), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, + STATE(304), 1, sym__float_literal, - STATE(318), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(1102), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(636), 1, aux_sym_function_definition_repeat1, - ACTIONS(805), 2, + STATE(1051), 1, + sym__open_parenthesis, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1165), 8, + ACTIONS(1163), 8, sym_return, sym_next, sym_break, @@ -41646,7 +41739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(197), 19, + STATE(184), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41666,65 +41759,65 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [4570] = 30, + [4693] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(962), 1, sym__external_open_brace, ACTIONS(1169), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, + STATE(304), 1, sym__float_literal, - STATE(318), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(458), 1, + STATE(486), 1, aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1051), 1, sym__open_parenthesis, - ACTIONS(805), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -41739,7 +41832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(155), 19, + STATE(188), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41759,14 +41852,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [4693] = 30, + [4816] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -41794,21 +41887,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, @@ -41832,7 +41925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(198), 19, + STATE(164), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41852,14 +41945,14 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [4816] = 30, + [4939] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -41889,19 +41982,19 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_brace, ACTIONS(1175), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(457), 1, + STATE(487), 1, aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, ACTIONS(805), 2, anon_sym_PLUS, @@ -41925,7 +42018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(156), 19, + STATE(166), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -41945,164 +42038,71 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_na, sym__expression, - [4939] = 30, + [5062] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, + STATE(304), 1, sym__float_literal, - STATE(318), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(442), 1, - sym__open_brace, - STATE(1102), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(805), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(785), 3, - sym_dots, - sym_dot_dot_i, - sym_identifier, - ACTIONS(813), 5, - anon_sym_NA, - anon_sym_NA_integer_, - anon_sym_NA_real_, - anon_sym_NA_complex_, - anon_sym_NA_character_, - ACTIONS(1177), 8, - sym_return, - sym_next, - sym_break, - sym_true, - sym_false, - sym_null, - sym_inf, - sym_nan, - STATE(205), 19, - sym_function_definition, - sym_if_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_statement, - sym_braced_expression, - sym_parenthesized_expression, - sym_call, - sym_subset, - sym_subset2, - sym_unary_operator, - sym_binary_operator, - sym_extract_operator, - sym_namespace_operator, - sym_integer, - sym_complex, - sym_float, - sym_na, - sym__expression, - [5062] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1181), 1, - anon_sym_BSLASH, - ACTIONS(1183), 1, - anon_sym_function, - ACTIONS(1185), 1, - anon_sym_if, - ACTIONS(1187), 1, - anon_sym_for, - ACTIONS(1189), 1, - anon_sym_while, - ACTIONS(1191), 1, - anon_sym_repeat, - ACTIONS(1193), 1, - anon_sym_QMARK, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - anon_sym_BANG, - ACTIONS(1201), 1, - sym__hex_literal, - ACTIONS(1203), 1, - sym__number_literal, - ACTIONS(1209), 1, - sym__external_open_parenthesis, - ACTIONS(1211), 1, - sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(323), 1, sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(389), 1, sym__open_brace, - STATE(1063), 1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1205), 8, + ACTIONS(1177), 8, sym_return, sym_next, sym_break, @@ -42111,7 +42111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(96), 19, + STATE(206), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42134,11 +42134,11 @@ static const uint16_t ts_small_parse_table[] = { [5185] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -42166,22 +42166,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1215), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(456), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, @@ -42195,7 +42195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1213), 8, + ACTIONS(1179), 8, sym_return, sym_next, sym_break, @@ -42204,7 +42204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(157), 19, + STATE(167), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42227,11 +42227,11 @@ static const uint16_t ts_small_parse_table[] = { [5308] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -42259,22 +42259,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1183), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(1102), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(494), 1, aux_sym_function_definition_repeat1, + STATE(1117), 1, + sym__open_parenthesis, ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, @@ -42288,7 +42288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1217), 8, + ACTIONS(1181), 8, sym_return, sym_next, sym_break, @@ -42297,7 +42297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(207), 19, + STATE(168), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42320,68 +42320,68 @@ static const uint16_t ts_small_parse_table[] = { [5431] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1221), 1, + ACTIONS(1187), 1, sym__newline, - STATE(423), 1, + STATE(304), 1, + sym__float_literal, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(945), 1, + STATE(477), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, - sym_string, - STATE(1629), 1, - sym__float_literal, - STATE(1630), 1, - sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1219), 8, + ACTIONS(1185), 8, sym_return, sym_next, sym_break, @@ -42390,7 +42390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1569), 19, + STATE(207), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42413,11 +42413,11 @@ static const uint16_t ts_small_parse_table[] = { [5554] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -42445,22 +42445,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1191), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(1102), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(495), 1, aux_sym_function_definition_repeat1, + STATE(1117), 1, + sym__open_parenthesis, ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, @@ -42474,7 +42474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1223), 8, + ACTIONS(1189), 8, sym_return, sym_next, sym_break, @@ -42483,7 +42483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(208), 19, + STATE(169), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42510,64 +42510,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(1153), 1, sym__external_open_brace, STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, sym_string, - STATE(302), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(426), 1, sym__open_brace, - STATE(1063), 1, + STATE(1074), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1225), 8, + ACTIONS(1193), 8, sym_return, sym_next, sym_break, @@ -42576,7 +42576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(95), 19, + STATE(5), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42599,11 +42599,11 @@ static const uint16_t ts_small_parse_table[] = { [5800] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -42631,22 +42631,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1197), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(1102), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(499), 1, aux_sym_function_definition_repeat1, + STATE(1117), 1, + sym__open_parenthesis, ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, @@ -42660,7 +42660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1227), 8, + ACTIONS(1195), 8, sym_return, sym_next, sym_break, @@ -42669,7 +42669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(210), 19, + STATE(171), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42692,68 +42692,68 @@ static const uint16_t ts_small_parse_table[] = { [5923] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1201), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(286), 1, sym_string, - STATE(1629), 1, + STATE(287), 1, sym__float_literal, - STATE(1630), 1, + STATE(288), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, + sym__open_brace, + STATE(507), 1, + aux_sym_function_definition_repeat1, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1229), 8, + ACTIONS(1199), 8, sym_return, sym_next, sym_break, @@ -42762,7 +42762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1340), 19, + STATE(3), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42785,11 +42785,11 @@ static const uint16_t ts_small_parse_table[] = { [6046] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -42817,21 +42817,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(1102), 1, + STATE(1117), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, ACTIONS(805), 2, anon_sym_PLUS, @@ -42846,7 +42846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1231), 8, + ACTIONS(1203), 8, sym_return, sym_next, sym_break, @@ -42855,7 +42855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(212), 19, + STATE(172), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42878,68 +42878,68 @@ static const uint16_t ts_small_parse_table[] = { [6169] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(473), 1, + anon_sym_SQUOTE, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + sym__raw_string_literal, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1235), 1, + ACTIONS(1043), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(994), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(314), 1, sym_string, - STATE(1629), 1, + STATE(315), 1, sym__float_literal, - STATE(1630), 1, + STATE(316), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, + sym__open_brace, + STATE(1117), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1233), 8, + ACTIONS(1205), 8, sym_return, sym_next, sym_break, @@ -42948,7 +42948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1542), 19, + STATE(173), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -42971,11 +42971,11 @@ static const uint16_t ts_small_parse_table[] = { [6292] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(575), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(579), 1, + ACTIONS(477), 1, sym__raw_string_literal, ACTIONS(787), 1, anon_sym_BSLASH, @@ -43003,22 +43003,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1209), 1, sym__newline, - STATE(316), 1, + STATE(314), 1, sym_string, - STATE(317), 1, + STATE(315), 1, sym__float_literal, - STATE(318), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(442), 1, + STATE(414), 1, sym__open_brace, - STATE(1102), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(502), 1, aux_sym_function_definition_repeat1, + STATE(1117), 1, + sym__open_parenthesis, ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, @@ -43032,7 +43032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1237), 8, + ACTIONS(1207), 8, sym_return, sym_next, sym_break, @@ -43041,7 +43041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(213), 19, + STATE(174), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43064,68 +43064,68 @@ static const uint16_t ts_small_parse_table[] = { [6415] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(355), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1181), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(819), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + ACTIONS(1213), 1, + sym__newline, + STATE(314), 1, sym_string, - STATE(302), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(414), 1, sym__open_brace, - STATE(1063), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(503), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + STATE(1117), 1, + sym__open_parenthesis, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1239), 8, + ACTIONS(1211), 8, sym_return, sym_next, sym_break, @@ -43134,7 +43134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(80), 19, + STATE(175), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43157,68 +43157,68 @@ static const uint16_t ts_small_parse_table[] = { [6538] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1243), 1, + ACTIONS(1043), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(1036), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, - sym_string, - STATE(1629), 1, + STATE(304), 1, sym__float_literal, - STATE(1630), 1, + STATE(308), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(1051), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1241), 8, + ACTIONS(1215), 8, sym_return, sym_next, sym_break, @@ -43227,7 +43227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1523), 19, + STATE(223), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43250,68 +43250,68 @@ static const uint16_t ts_small_parse_table[] = { [6661] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(355), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1247), 1, + ACTIONS(1043), 1, sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(314), 1, sym_string, - STATE(302), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(414), 1, sym__open_brace, - STATE(706), 1, - aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1117), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1245), 8, + ACTIONS(1217), 8, sym_return, sym_next, sym_break, @@ -43320,7 +43320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(77), 19, + STATE(176), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43343,68 +43343,68 @@ static const uint16_t ts_small_parse_table[] = { [6784] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(473), 1, + anon_sym_SQUOTE, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + sym__raw_string_literal, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, - sym__external_open_brace, - ACTIONS(1251), 1, - sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(1044), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + ACTIONS(819), 1, + sym__external_open_brace, + ACTIONS(1221), 1, + sym__newline, + STATE(314), 1, sym_string, - STATE(1629), 1, + STATE(315), 1, sym__float_literal, - STATE(1630), 1, + STATE(316), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, + sym__open_brace, + STATE(506), 1, + aux_sym_function_definition_repeat1, + STATE(1117), 1, + sym__open_parenthesis, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1249), 8, + ACTIONS(1219), 8, sym_return, sym_next, sym_break, @@ -43413,7 +43413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1520), 19, + STATE(177), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43436,68 +43436,68 @@ static const uint16_t ts_small_parse_table[] = { [6907] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1225), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, - sym_string, - STATE(1629), 1, + STATE(304), 1, sym__float_literal, - STATE(1630), 1, + STATE(308), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(594), 1, + aux_sym_function_definition_repeat1, + STATE(1051), 1, + sym__open_parenthesis, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1253), 8, + ACTIONS(1223), 8, sym_return, sym_next, sym_break, @@ -43506,7 +43506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1341), 19, + STATE(224), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43529,68 +43529,68 @@ static const uint16_t ts_small_parse_table[] = { [7030] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(355), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1257), 1, + ACTIONS(1043), 1, sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(314), 1, sym_string, - STATE(302), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(414), 1, sym__open_brace, - STATE(554), 1, - aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1117), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1255), 8, + ACTIONS(1227), 8, sym_return, sym_next, sym_break, @@ -43599,7 +43599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(75), 19, + STATE(178), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43622,68 +43622,68 @@ static const uint16_t ts_small_parse_table[] = { [7153] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(355), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1261), 1, + ACTIONS(1043), 1, sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(314), 1, sym_string, - STATE(302), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(414), 1, sym__open_brace, - STATE(551), 1, - aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1117), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1259), 8, + ACTIONS(1229), 8, sym_return, sym_next, sym_break, @@ -43692,7 +43692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(74), 19, + STATE(179), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43715,68 +43715,68 @@ static const uint16_t ts_small_parse_table[] = { [7276] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(355), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1265), 1, + ACTIONS(1233), 1, sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(314), 1, sym_string, - STATE(302), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(414), 1, sym__open_brace, - STATE(486), 1, + STATE(508), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1117), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1263), 8, + ACTIONS(1231), 8, sym_return, sym_next, sym_break, @@ -43785,7 +43785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(19), 19, + STATE(180), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43808,68 +43808,68 @@ static const uint16_t ts_small_parse_table[] = { [7399] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(355), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1269), 1, + ACTIONS(1237), 1, sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, + STATE(304), 1, sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(491), 1, + STATE(631), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1051), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1267), 8, + ACTIONS(1235), 8, sym_return, sym_next, sym_break, @@ -43878,7 +43878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(72), 19, + STATE(225), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43901,68 +43901,68 @@ static const uint16_t ts_small_parse_table[] = { [7522] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(355), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1273), 1, + ACTIONS(1043), 1, sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(314), 1, sym_string, - STATE(302), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(414), 1, sym__open_brace, - STATE(497), 1, - aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1117), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1271), 8, + ACTIONS(1239), 8, sym_return, sym_next, sym_break, @@ -43971,7 +43971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(71), 19, + STATE(181), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -43994,68 +43994,68 @@ static const uint16_t ts_small_parse_table[] = { [7645] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1277), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(560), 1, - aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1275), 8, + ACTIONS(1241), 8, sym_return, sym_next, sym_break, @@ -44064,7 +44064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(234), 19, + STATE(4), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44087,68 +44087,68 @@ static const uint16_t ts_small_parse_table[] = { [7768] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(473), 1, + anon_sym_SQUOTE, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + sym__raw_string_literal, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(819), 1, sym__external_open_brace, - STATE(386), 1, - sym__open_brace, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(314), 1, + sym_string, + STATE(315), 1, sym__float_literal, - STATE(1585), 1, + STATE(316), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(317), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - STATE(1604), 1, + STATE(414), 1, + sym__open_brace, + STATE(1117), 1, + sym__open_parenthesis, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1309), 8, + ACTIONS(1243), 8, sym_return, sym_next, sym_break, @@ -44157,7 +44157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1213), 19, + STATE(182), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44180,68 +44180,68 @@ static const uint16_t ts_small_parse_table[] = { [7891] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(962), 1, sym__external_open_brace, - STATE(386), 1, - sym__open_brace, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + ACTIONS(1247), 1, + sym__newline, + STATE(304), 1, sym__float_literal, - STATE(1585), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(1601), 1, + STATE(323), 1, sym_string, - STATE(1604), 1, + STATE(389), 1, + sym__open_brace, + STATE(452), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1051), 1, + sym__open_parenthesis, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1319), 8, + ACTIONS(1245), 8, sym_return, sym_next, sym_break, @@ -44250,7 +44250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1212), 19, + STATE(226), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44273,68 +44273,68 @@ static const uint16_t ts_small_parse_table[] = { [8014] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1323), 1, + ACTIONS(1251), 1, sym__newline, - STATE(386), 1, + STATE(418), 1, sym__open_brace, - STATE(508), 1, + STATE(516), 1, aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1608), 1, + sym_string, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1585), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1321), 8, + ACTIONS(1249), 8, sym_return, sym_next, sym_break, @@ -44343,7 +44343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1210), 19, + STATE(1434), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44366,68 +44366,68 @@ static const uint16_t ts_small_parse_table[] = { [8137] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1327), 1, + ACTIONS(1255), 1, sym__newline, - STATE(423), 1, + STATE(418), 1, sym__open_brace, - STATE(493), 1, + STATE(517), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1608), 1, sym_string, - STATE(1629), 1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1630), 1, + STATE(1629), 1, sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1325), 8, + ACTIONS(1253), 8, sym_return, sym_next, sym_break, @@ -44436,7 +44436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1342), 19, + STATE(1437), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44459,68 +44459,68 @@ static const uint16_t ts_small_parse_table[] = { [8260] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1259), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(518), 1, + aux_sym_function_definition_repeat1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1608), 1, + sym_string, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1585), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, - sym_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1329), 8, + ACTIONS(1257), 8, sym_return, sym_next, sym_break, @@ -44529,7 +44529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1209), 19, + STATE(1443), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44552,68 +44552,68 @@ static const uint16_t ts_small_parse_table[] = { [8383] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1263), 1, sym__newline, - STATE(423), 1, + STATE(418), 1, sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(519), 1, aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1064), 1, + sym__open_parenthesis, + STATE(1608), 1, sym_string, - STATE(1629), 1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1630), 1, + STATE(1629), 1, sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1331), 8, + ACTIONS(1261), 8, sym_return, sym_next, sym_break, @@ -44622,7 +44622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1343), 19, + STATE(1447), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44645,68 +44645,68 @@ static const uint16_t ts_small_parse_table[] = { [8506] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1267), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(520), 1, + aux_sym_function_definition_repeat1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1608), 1, + sym_string, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1585), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, - sym_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1333), 8, + ACTIONS(1265), 8, sym_return, sym_next, sym_break, @@ -44715,7 +44715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1208), 19, + STATE(1529), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44738,68 +44738,68 @@ static const uint16_t ts_small_parse_table[] = { [8629] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1271), 1, sym__newline, - STATE(423), 1, + STATE(418), 1, sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(535), 1, aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1064), 1, + sym__open_parenthesis, + STATE(1608), 1, sym_string, - STATE(1629), 1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1630), 1, + STATE(1629), 1, sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1335), 8, + ACTIONS(1269), 8, sym_return, sym_next, sym_break, @@ -44808,7 +44808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1344), 19, + STATE(1392), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44831,68 +44831,68 @@ static const uint16_t ts_small_parse_table[] = { [8752] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1339), 1, + ACTIONS(1043), 1, sym__newline, - STATE(386), 1, + STATE(418), 1, sym__open_brace, - STATE(509), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1608), 1, + sym_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1585), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1337), 8, + ACTIONS(1273), 8, sym_return, sym_next, sym_break, @@ -44901,7 +44901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1206), 19, + STATE(1393), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -44924,68 +44924,68 @@ static const uint16_t ts_small_parse_table[] = { [8875] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(519), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_DQUOTE, + ACTIONS(531), 1, + sym__raw_string_literal, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, - sym__float_literal, - STATE(318), 1, - sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, + STATE(418), 1, sym__open_brace, - STATE(1102), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1608), 1, + sym_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(805), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1341), 8, + ACTIONS(1275), 8, sym_return, sym_next, sym_break, @@ -44994,7 +44994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(214), 19, + STATE(1394), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45017,68 +45017,68 @@ static const uint16_t ts_small_parse_table[] = { [8998] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(519), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_DQUOTE, + ACTIONS(531), 1, + sym__raw_string_literal, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1345), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(418), 1, + sym__open_brace, + STATE(1064), 1, + sym__open_parenthesis, + STATE(1608), 1, sym_string, - STATE(317), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(318), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, - sym__open_brace, - STATE(547), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, - sym__open_parenthesis, - ACTIONS(805), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1343), 8, + ACTIONS(1277), 8, sym_return, sym_next, sym_break, @@ -45087,7 +45087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(219), 19, + STATE(1396), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45110,68 +45110,68 @@ static const uint16_t ts_small_parse_table[] = { [9121] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1608), 1, sym_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1347), 8, + ACTIONS(1279), 8, sym_return, sym_next, sym_break, @@ -45180,7 +45180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1205), 19, + STATE(1397), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45203,68 +45203,68 @@ static const uint16_t ts_small_parse_table[] = { [9244] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1351), 1, + ACTIONS(1043), 1, sym__newline, - STATE(386), 1, + STATE(418), 1, sym__open_brace, - STATE(512), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1608), 1, + sym_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1585), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1349), 8, + ACTIONS(1281), 8, sym_return, sym_next, sym_break, @@ -45273,7 +45273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1202), 19, + STATE(1398), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45296,68 +45296,68 @@ static const uint16_t ts_small_parse_table[] = { [9367] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1355), 1, + ACTIONS(1285), 1, sym__newline, - STATE(423), 1, + STATE(418), 1, sym__open_brace, - STATE(501), 1, + STATE(537), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1608), 1, sym_string, - STATE(1629), 1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1630), 1, + STATE(1629), 1, sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1353), 8, + ACTIONS(1283), 8, sym_return, sym_next, sym_break, @@ -45366,7 +45366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1354), 19, + STATE(1400), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45389,68 +45389,68 @@ static const uint16_t ts_small_parse_table[] = { [9490] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1289), 1, sym__newline, - STATE(423), 1, + STATE(418), 1, sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(538), 1, aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1064), 1, + sym__open_parenthesis, + STATE(1608), 1, sym_string, - STATE(1629), 1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1630), 1, + STATE(1629), 1, sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1357), 8, + ACTIONS(1287), 8, sym_return, sym_next, sym_break, @@ -45459,7 +45459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1355), 19, + STATE(1401), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45482,68 +45482,68 @@ static const uint16_t ts_small_parse_table[] = { [9613] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1361), 1, + ACTIONS(1293), 1, sym__newline, - STATE(386), 1, + STATE(418), 1, sym__open_brace, - STATE(514), 1, + STATE(539), 1, aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1608), 1, + sym_string, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1585), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1359), 8, + ACTIONS(1291), 8, sym_return, sym_next, sym_break, @@ -45552,7 +45552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1200), 19, + STATE(1403), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45575,68 +45575,68 @@ static const uint16_t ts_small_parse_table[] = { [9736] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1297), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(540), 1, + aux_sym_function_definition_repeat1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1608), 1, + sym_string, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1585), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, - sym_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1363), 8, + ACTIONS(1295), 8, sym_return, sym_next, sym_break, @@ -45645,7 +45645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1199), 19, + STATE(1404), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45668,68 +45668,68 @@ static const uint16_t ts_small_parse_table[] = { [9859] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1367), 1, + ACTIONS(1301), 1, sym__newline, - STATE(423), 1, + STATE(418), 1, sym__open_brace, - STATE(513), 1, + STATE(541), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1608), 1, sym_string, - STATE(1629), 1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1630), 1, + STATE(1629), 1, sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1365), 8, + ACTIONS(1299), 8, sym_return, sym_next, sym_break, @@ -45738,7 +45738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1365), 19, + STATE(1405), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45761,68 +45761,68 @@ static const uint16_t ts_small_parse_table[] = { [9982] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1371), 1, + ACTIONS(1305), 1, sym__newline, - STATE(423), 1, + STATE(418), 1, sym__open_brace, - STATE(515), 1, + STATE(542), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1608), 1, sym_string, - STATE(1629), 1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1630), 1, + STATE(1629), 1, sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1369), 8, + ACTIONS(1303), 8, sym_return, sym_next, sym_break, @@ -45831,7 +45831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1366), 19, + STATE(1406), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45854,68 +45854,68 @@ static const uint16_t ts_small_parse_table[] = { [10105] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1309), 1, sym__newline, - STATE(423), 1, + STATE(418), 1, sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(543), 1, aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1064), 1, + sym__open_parenthesis, + STATE(1608), 1, sym_string, - STATE(1629), 1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1630), 1, + STATE(1629), 1, sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1373), 8, + ACTIONS(1307), 8, sym_return, sym_next, sym_break, @@ -45924,7 +45924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1367), 19, + STATE(1407), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -45947,68 +45947,68 @@ static const uint16_t ts_small_parse_table[] = { [10228] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1313), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(544), 1, + aux_sym_function_definition_repeat1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1608), 1, + sym_string, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1585), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, - sym_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1375), 8, + ACTIONS(1311), 8, sym_return, sym_next, sym_break, @@ -46017,7 +46017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1198), 19, + STATE(1408), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46040,68 +46040,68 @@ static const uint16_t ts_small_parse_table[] = { [10351] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1317), 1, sym__newline, - STATE(423), 1, + STATE(418), 1, sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(545), 1, aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1064), 1, + sym__open_parenthesis, + STATE(1608), 1, sym_string, - STATE(1629), 1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1630), 1, + STATE(1629), 1, sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1377), 8, + ACTIONS(1315), 8, sym_return, sym_next, sym_break, @@ -46110,7 +46110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1369), 19, + STATE(1409), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46133,68 +46133,68 @@ static const uint16_t ts_small_parse_table[] = { [10474] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1381), 1, + ACTIONS(1321), 1, sym__newline, - STATE(386), 1, + STATE(418), 1, sym__open_brace, - STATE(519), 1, + STATE(546), 1, aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1608), 1, + sym_string, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1585), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1379), 8, + ACTIONS(1319), 8, sym_return, sym_next, sym_break, @@ -46203,7 +46203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1195), 19, + STATE(1411), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46226,68 +46226,68 @@ static const uint16_t ts_small_parse_table[] = { [10597] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1385), 1, + ACTIONS(1325), 1, sym__newline, - STATE(386), 1, + STATE(418), 1, sym__open_brace, - STATE(524), 1, + STATE(547), 1, aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1608), 1, + sym_string, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1585), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1383), 8, + ACTIONS(1323), 8, sym_return, sym_next, sym_break, @@ -46296,7 +46296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1191), 19, + STATE(1414), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46319,68 +46319,68 @@ static const uint16_t ts_small_parse_table[] = { [10720] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1389), 1, + ACTIONS(1329), 1, sym__newline, - STATE(423), 1, + STATE(418), 1, sym__open_brace, - STATE(522), 1, + STATE(548), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1608), 1, sym_string, - STATE(1629), 1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1630), 1, + STATE(1629), 1, sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1387), 8, + ACTIONS(1327), 8, sym_return, sym_next, sym_break, @@ -46389,7 +46389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1370), 19, + STATE(1418), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46412,68 +46412,68 @@ static const uint16_t ts_small_parse_table[] = { [10843] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1393), 1, + ACTIONS(1333), 1, sym__newline, - STATE(386), 1, + STATE(418), 1, sym__open_brace, - STATE(528), 1, + STATE(549), 1, aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1608), 1, + sym_string, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1585), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1391), 8, + ACTIONS(1331), 8, sym_return, sym_next, sym_break, @@ -46482,7 +46482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1189), 19, + STATE(1419), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46505,68 +46505,68 @@ static const uint16_t ts_small_parse_table[] = { [10966] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(962), 1, sym__external_open_brace, - STATE(386), 1, - sym__open_brace, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + ACTIONS(1337), 1, + sym__newline, + STATE(304), 1, sym__float_literal, - STATE(1585), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(1601), 1, + STATE(323), 1, sym_string, - STATE(1604), 1, + STATE(389), 1, + sym__open_brace, + STATE(644), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1051), 1, + sym__open_parenthesis, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1395), 8, + ACTIONS(1335), 8, sym_return, sym_next, sym_break, @@ -46575,7 +46575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1188), 19, + STATE(185), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46598,68 +46598,68 @@ static const uint16_t ts_small_parse_table[] = { [11089] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1399), 1, + ACTIONS(1043), 1, sym__newline, - STATE(386), 1, + STATE(418), 1, sym__open_brace, - STATE(534), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1608), 1, + sym_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1585), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1397), 8, + ACTIONS(1339), 8, sym_return, sym_next, sym_break, @@ -46668,7 +46668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1180), 19, + STATE(1439), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46691,68 +46691,68 @@ static const uint16_t ts_small_parse_table[] = { [11212] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1403), 1, + ACTIONS(1343), 1, sym__newline, - STATE(423), 1, + STATE(418), 1, sym__open_brace, - STATE(527), 1, + STATE(550), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1608), 1, sym_string, - STATE(1629), 1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1630), 1, + STATE(1629), 1, sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1401), 8, + ACTIONS(1341), 8, sym_return, sym_next, sym_break, @@ -46761,7 +46761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1371), 19, + STATE(1441), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46784,68 +46784,68 @@ static const uint16_t ts_small_parse_table[] = { [11335] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1608), 1, sym_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1405), 8, + ACTIONS(1345), 8, sym_return, sym_next, sym_break, @@ -46854,7 +46854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1179), 19, + STATE(1455), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46877,68 +46877,68 @@ static const uint16_t ts_small_parse_table[] = { [11458] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1608), 1, sym_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1407), 8, + ACTIONS(1347), 8, sym_return, sym_next, sym_break, @@ -46947,7 +46947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1169), 19, + STATE(1456), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -46970,68 +46970,68 @@ static const uint16_t ts_small_parse_table[] = { [11581] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1608), 1, sym_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1409), 8, + ACTIONS(1349), 8, sym_return, sym_next, sym_break, @@ -47040,7 +47040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1168), 19, + STATE(1459), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47063,68 +47063,68 @@ static const uint16_t ts_small_parse_table[] = { [11704] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1608), 1, sym_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1411), 8, + ACTIONS(1351), 8, sym_return, sym_next, sym_break, @@ -47133,7 +47133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1170), 19, + STATE(1460), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47156,68 +47156,68 @@ static const uint16_t ts_small_parse_table[] = { [11827] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1608), 1, sym_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1413), 8, + ACTIONS(1353), 8, sym_return, sym_next, sym_break, @@ -47226,7 +47226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1232), 19, + STATE(1462), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47249,68 +47249,68 @@ static const uint16_t ts_small_parse_table[] = { [11950] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1608), 1, sym_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1415), 8, + ACTIONS(1355), 8, sym_return, sym_next, sym_break, @@ -47319,7 +47319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1231), 19, + STATE(1464), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47342,68 +47342,68 @@ static const uint16_t ts_small_parse_table[] = { [12073] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1608), 1, sym_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1417), 8, + ACTIONS(1357), 8, sym_return, sym_next, sym_break, @@ -47412,7 +47412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1230), 19, + STATE(1465), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47435,68 +47435,68 @@ static const uint16_t ts_small_parse_table[] = { [12196] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1421), 1, + ACTIONS(1043), 1, sym__newline, - STATE(423), 1, + STATE(418), 1, sym__open_brace, - STATE(529), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1608), 1, sym_string, - STATE(1629), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1630), 1, + STATE(1629), 1, sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1419), 8, + ACTIONS(1359), 8, sym_return, sym_next, sym_break, @@ -47505,7 +47505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1458), 19, + STATE(1468), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47528,68 +47528,68 @@ static const uint16_t ts_small_parse_table[] = { [12319] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(423), 1, + STATE(418), 1, sym__open_brace, - STATE(1096), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1608), 1, + sym_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1605), 1, + STATE(1611), 1, sym__double_quoted_string, - STATE(1627), 1, - sym_string, - STATE(1629), 1, + STATE(1626), 1, sym__float_literal, - STATE(1630), 1, + STATE(1629), 1, sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1423), 8, + ACTIONS(1361), 8, sym_return, sym_next, sym_break, @@ -47598,7 +47598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1375), 19, + STATE(1470), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47621,68 +47621,68 @@ static const uint16_t ts_small_parse_table[] = { [12442] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1608), 1, sym_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1425), 8, + ACTIONS(1363), 8, sym_return, sym_next, sym_break, @@ -47691,7 +47691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1229), 19, + STATE(1479), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47714,68 +47714,68 @@ static const uint16_t ts_small_parse_table[] = { [12565] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(519), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_DQUOTE, + ACTIONS(531), 1, + sym__raw_string_literal, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, - sym__float_literal, - STATE(318), 1, - sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, + STATE(418), 1, sym__open_brace, - STATE(1102), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1608), 1, + sym_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(805), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1427), 8, + ACTIONS(1365), 8, sym_return, sym_next, sym_break, @@ -47784,7 +47784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(221), 19, + STATE(1481), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47807,68 +47807,68 @@ static const uint16_t ts_small_parse_table[] = { [12688] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(519), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_DQUOTE, + ACTIONS(531), 1, + sym__raw_string_literal, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1431), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(418), 1, + sym__open_brace, + STATE(1064), 1, + sym__open_parenthesis, + STATE(1608), 1, sym_string, - STATE(317), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(318), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, - sym__open_brace, - STATE(559), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, - sym__open_parenthesis, - ACTIONS(805), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1429), 8, + ACTIONS(1367), 8, sym_return, sym_next, sym_break, @@ -47877,7 +47877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(222), 19, + STATE(1483), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47900,68 +47900,68 @@ static const uint16_t ts_small_parse_table[] = { [12811] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1608), 1, sym_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1433), 8, + ACTIONS(1369), 8, sym_return, sym_next, sym_break, @@ -47970,7 +47970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1228), 19, + STATE(1484), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -47993,68 +47993,68 @@ static const uint16_t ts_small_parse_table[] = { [12934] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1608), 1, sym_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1435), 8, + ACTIONS(1371), 8, sym_return, sym_next, sym_break, @@ -48063,7 +48063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1227), 19, + STATE(1492), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48086,68 +48086,68 @@ static const uint16_t ts_small_parse_table[] = { [13057] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1181), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(519), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_DQUOTE, + ACTIONS(531), 1, + sym__raw_string_literal, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + ACTIONS(1375), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1063), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(552), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + STATE(1064), 1, + sym__open_parenthesis, + STATE(1608), 1, + sym_string, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1437), 8, + ACTIONS(1373), 8, sym_return, sym_next, sym_break, @@ -48156,7 +48156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(97), 19, + STATE(1496), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48179,68 +48179,68 @@ static const uint16_t ts_small_parse_table[] = { [13180] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, - sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1608), 1, sym_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1439), 8, + ACTIONS(1377), 8, sym_return, sym_next, sym_break, @@ -48249,7 +48249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1226), 19, + STATE(1519), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48272,68 +48272,68 @@ static const uint16_t ts_small_parse_table[] = { [13303] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(519), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_DQUOTE, + ACTIONS(531), 1, + sym__raw_string_literal, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1443), 1, + ACTIONS(1381), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, - sym__float_literal, - STATE(318), 1, - sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, + STATE(418), 1, sym__open_brace, - STATE(561), 1, + STATE(556), 1, aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1064), 1, sym__open_parenthesis, - ACTIONS(805), 2, + STATE(1608), 1, + sym_string, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1441), 8, + ACTIONS(1379), 8, sym_return, sym_next, sym_break, @@ -48342,7 +48342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(225), 19, + STATE(1520), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48365,68 +48365,68 @@ static const uint16_t ts_small_parse_table[] = { [13426] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1181), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(519), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_DQUOTE, + ACTIONS(531), 1, + sym__raw_string_literal, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + ACTIONS(1385), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1063), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(557), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + STATE(1064), 1, + sym__open_parenthesis, + STATE(1608), 1, + sym_string, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1445), 8, + ACTIONS(1383), 8, sym_return, sym_next, sym_break, @@ -48435,7 +48435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(98), 19, + STATE(1533), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48458,68 +48458,68 @@ static const uint16_t ts_small_parse_table[] = { [13549] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1389), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(560), 1, + aux_sym_function_definition_repeat1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1608), 1, + sym_string, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1585), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, - sym_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1447), 8, + ACTIONS(1387), 8, sym_return, sym_next, sym_break, @@ -48528,7 +48528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1225), 19, + STATE(1365), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48551,68 +48551,68 @@ static const uint16_t ts_small_parse_table[] = { [13672] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(519), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_DQUOTE, + ACTIONS(531), 1, + sym__raw_string_literal, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1451), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(418), 1, + sym__open_brace, + STATE(1064), 1, + sym__open_parenthesis, + STATE(1608), 1, sym_string, - STATE(317), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(318), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, - sym__open_brace, - STATE(566), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, - sym__open_parenthesis, - ACTIONS(805), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1449), 8, + ACTIONS(1391), 8, sym_return, sym_next, sym_break, @@ -48621,7 +48621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(239), 19, + STATE(1388), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48644,68 +48644,68 @@ static const uint16_t ts_small_parse_table[] = { [13795] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(519), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_DQUOTE, + ACTIONS(531), 1, + sym__raw_string_literal, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(418), 1, sym__open_brace, - STATE(1092), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1608), 1, + sym_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1453), 8, + ACTIONS(1393), 8, sym_return, sym_next, sym_break, @@ -48714,7 +48714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(241), 19, + STATE(1391), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48737,68 +48737,68 @@ static const uint16_t ts_small_parse_table[] = { [13918] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1397), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(562), 1, + aux_sym_function_definition_repeat1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1608), 1, + sym_string, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1585), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, - sym_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1455), 8, + ACTIONS(1395), 8, sym_return, sym_next, sym_break, @@ -48807,7 +48807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1224), 19, + STATE(1413), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48830,68 +48830,68 @@ static const uint16_t ts_small_parse_table[] = { [14041] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(519), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_DQUOTE, + ACTIONS(531), 1, + sym__raw_string_literal, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1401), 1, sym__newline, - STATE(316), 1, + STATE(418), 1, + sym__open_brace, + STATE(563), 1, + aux_sym_function_definition_repeat1, + STATE(1064), 1, + sym__open_parenthesis, + STATE(1608), 1, sym_string, - STATE(317), 1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(318), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, - sym__open_brace, - STATE(1102), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(805), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1457), 8, + ACTIONS(1399), 8, sym_return, sym_next, sym_break, @@ -48900,7 +48900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(243), 19, + STATE(1416), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -48923,68 +48923,68 @@ static const uint16_t ts_small_parse_table[] = { [14164] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(519), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_DQUOTE, + ACTIONS(531), 1, + sym__raw_string_literal, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(418), 1, sym__open_brace, - STATE(1092), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1608), 1, + sym_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1459), 8, + ACTIONS(1403), 8, sym_return, sym_next, sym_break, @@ -48993,7 +48993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(240), 19, + STATE(1357), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49016,68 +49016,68 @@ static const uint16_t ts_small_parse_table[] = { [14287] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(519), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_DQUOTE, + ACTIONS(531), 1, + sym__raw_string_literal, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1407), 1, sym__newline, - STATE(316), 1, + STATE(418), 1, + sym__open_brace, + STATE(565), 1, + aux_sym_function_definition_repeat1, + STATE(1064), 1, + sym__open_parenthesis, + STATE(1608), 1, sym_string, - STATE(317), 1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(318), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, - sym__open_brace, - STATE(1102), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(805), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1461), 8, + ACTIONS(1405), 8, sym_return, sym_next, sym_break, @@ -49086,7 +49086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(235), 19, + STATE(1363), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49109,68 +49109,68 @@ static const uint16_t ts_small_parse_table[] = { [14410] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(519), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_DQUOTE, + ACTIONS(531), 1, + sym__raw_string_literal, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1465), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(418), 1, + sym__open_brace, + STATE(1064), 1, + sym__open_parenthesis, + STATE(1608), 1, sym_string, - STATE(317), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(318), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, - sym__open_brace, - STATE(571), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, - sym__open_parenthesis, - ACTIONS(805), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1463), 8, + ACTIONS(1409), 8, sym_return, sym_next, sym_break, @@ -49179,7 +49179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(232), 19, + STATE(1372), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49202,68 +49202,68 @@ static const uint16_t ts_small_parse_table[] = { [14533] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(519), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_DQUOTE, + ACTIONS(531), 1, + sym__raw_string_literal, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1469), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(418), 1, + sym__open_brace, + STATE(1064), 1, + sym__open_parenthesis, + STATE(1608), 1, sym_string, - STATE(317), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(318), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, - sym__open_brace, - STATE(573), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, - sym__open_parenthesis, - ACTIONS(805), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1467), 8, + ACTIONS(1411), 8, sym_return, sym_next, sym_break, @@ -49272,7 +49272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(231), 19, + STATE(1376), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49295,68 +49295,68 @@ static const uint16_t ts_small_parse_table[] = { [14656] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(535), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1415), 1, + sym__newline, + STATE(418), 1, sym__open_brace, - STATE(1083), 1, + STATE(566), 1, + aux_sym_function_definition_repeat1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1608), 1, + sym_string, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, sym__float_literal, - STATE(1585), 1, + STATE(1629), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, - sym_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1471), 8, + ACTIONS(1413), 8, sym_return, sym_next, sym_break, @@ -49365,7 +49365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1219), 19, + STATE(1377), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49388,68 +49388,68 @@ static const uint16_t ts_small_parse_table[] = { [14779] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(519), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_DQUOTE, + ACTIONS(531), 1, + sym__raw_string_literal, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1475), 1, + ACTIONS(1043), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(418), 1, sym__open_brace, - STATE(557), 1, - aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1064), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1608), 1, + sym_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1473), 8, + ACTIONS(1417), 8, sym_return, sym_next, sym_break, @@ -49458,7 +49458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(238), 19, + STATE(1389), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49481,68 +49481,68 @@ static const uint16_t ts_small_parse_table[] = { [14902] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(495), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(497), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(499), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(501), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(503), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(505), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(507), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(509), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(511), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(515), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(517), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(519), 1, + anon_sym_SQUOTE, + ACTIONS(521), 1, + anon_sym_DQUOTE, + ACTIONS(531), 1, + sym__raw_string_literal, + ACTIONS(533), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(535), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, - sym__float_literal, - STATE(318), 1, - sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, + STATE(418), 1, sym__open_brace, - STATE(1102), 1, + STATE(1064), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1608), 1, + sym_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(805), 2, + STATE(1611), 1, + sym__double_quoted_string, + STATE(1626), 1, + sym__float_literal, + STATE(1629), 1, + sym__single_quoted_string, + ACTIONS(513), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1037), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(527), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1477), 8, + ACTIONS(1419), 8, sym_return, sym_next, sym_break, @@ -49551,7 +49551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(229), 19, + STATE(1390), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49574,68 +49574,68 @@ static const uint16_t ts_small_parse_table[] = { [15025] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1481), 1, + ACTIONS(1423), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, - sym__float_literal, - STATE(318), 1, - sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, + STATE(422), 1, sym__open_brace, - STATE(577), 1, + STATE(573), 1, aux_sym_function_definition_repeat1, - STATE(1102), 1, + STATE(1069), 1, sym__open_parenthesis, - ACTIONS(805), 2, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, + sym_string, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1479), 8, + ACTIONS(1421), 8, sym_return, sym_next, sym_break, @@ -49644,7 +49644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(224), 19, + STATE(1535), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49667,68 +49667,68 @@ static const uint16_t ts_small_parse_table[] = { [15148] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1427), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(422), 1, sym__open_brace, - STATE(1092), 1, + STATE(574), 1, + aux_sym_function_definition_repeat1, + STATE(1069), 1, sym__open_parenthesis, STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + sym__single_quoted_string, + STATE(1607), 1, + sym_string, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1483), 8, + ACTIONS(1425), 8, sym_return, sym_next, sym_break, @@ -49737,7 +49737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(237), 19, + STATE(1572), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49760,68 +49760,68 @@ static const uint16_t ts_small_parse_table[] = { [15271] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1431), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(422), 1, sym__open_brace, - STATE(1092), 1, + STATE(575), 1, + aux_sym_function_definition_repeat1, + STATE(1069), 1, sym__open_parenthesis, STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + sym__single_quoted_string, + STATE(1607), 1, + sym_string, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1485), 8, + ACTIONS(1429), 8, sym_return, sym_next, sym_break, @@ -49830,7 +49830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(236), 19, + STATE(1334), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49853,68 +49853,68 @@ static const uint16_t ts_small_parse_table[] = { [15394] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1489), 1, + ACTIONS(1435), 1, sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(422), 1, sym__open_brace, - STATE(902), 1, + STATE(576), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1069), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, + sym_string, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1487), 8, + ACTIONS(1433), 8, sym_return, sym_next, sym_break, @@ -49923,7 +49923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(100), 19, + STATE(1364), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -49946,68 +49946,68 @@ static const uint16_t ts_small_parse_table[] = { [15517] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1439), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, - sym__float_literal, - STATE(318), 1, - sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, + STATE(422), 1, sym__open_brace, - STATE(1102), 1, + STATE(577), 1, + aux_sym_function_definition_repeat1, + STATE(1069), 1, sym__open_parenthesis, STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(805), 2, + sym__single_quoted_string, + STATE(1607), 1, + sym_string, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1491), 8, + ACTIONS(1437), 8, sym_return, sym_next, sym_break, @@ -50016,7 +50016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(220), 19, + STATE(1369), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50039,68 +50039,68 @@ static const uint16_t ts_small_parse_table[] = { [15640] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1495), 1, + ACTIONS(1443), 1, sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(422), 1, sym__open_brace, - STATE(958), 1, + STATE(592), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1069), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, + sym_string, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1493), 8, + ACTIONS(1441), 8, sym_return, sym_next, sym_break, @@ -50109,7 +50109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(103), 19, + STATE(1421), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50132,68 +50132,68 @@ static const uint16_t ts_small_parse_table[] = { [15763] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, - sym__float_literal, - STATE(318), 1, - sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, + STATE(422), 1, sym__open_brace, - STATE(1102), 1, + STATE(1069), 1, sym__open_parenthesis, STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, + sym_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(805), 2, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1497), 8, + ACTIONS(1445), 8, sym_return, sym_next, sym_break, @@ -50202,7 +50202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(218), 19, + STATE(1424), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50225,68 +50225,68 @@ static const uint16_t ts_small_parse_table[] = { [15886] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1501), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, + STATE(422), 1, + sym__open_brace, + STATE(1069), 1, + sym__open_parenthesis, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(317), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, sym__float_literal, - STATE(318), 1, - sym__single_quoted_string, - STATE(320), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(442), 1, - sym__open_brace, - STATE(581), 1, - aux_sym_function_definition_repeat1, - STATE(1102), 1, - sym__open_parenthesis, - ACTIONS(805), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1499), 8, + ACTIONS(1447), 8, sym_return, sym_next, sym_break, @@ -50295,7 +50295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(217), 19, + STATE(1426), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50318,68 +50318,68 @@ static const uint16_t ts_small_parse_table[] = { [16009] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1505), 1, + ACTIONS(1043), 1, sym__newline, - STATE(286), 1, + STATE(422), 1, + sym__open_brace, + STATE(1069), 1, + sym__open_parenthesis, + STATE(1604), 1, sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(1607), 1, sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, - sym__open_brace, - STATE(1005), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, - sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1503), 8, + ACTIONS(1449), 8, sym_return, sym_next, sym_break, @@ -50388,7 +50388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(104), 19, + STATE(1427), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50411,68 +50411,68 @@ static const uint16_t ts_small_parse_table[] = { [16132] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1509), 1, + ACTIONS(1043), 1, sym__newline, - STATE(286), 1, + STATE(422), 1, + sym__open_brace, + STATE(1069), 1, + sym__open_parenthesis, + STATE(1604), 1, sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(1607), 1, sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, - sym__open_brace, - STATE(1045), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, - sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1507), 8, + ACTIONS(1451), 8, sym_return, sym_next, sym_break, @@ -50481,7 +50481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(105), 19, + STATE(1428), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50504,68 +50504,68 @@ static const uint16_t ts_small_parse_table[] = { [16255] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, - sym__float_literal, - STATE(318), 1, - sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, + STATE(422), 1, sym__open_brace, - STATE(1102), 1, + STATE(1069), 1, sym__open_parenthesis, STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, + sym_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(805), 2, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1511), 8, + ACTIONS(1453), 8, sym_return, sym_next, sym_break, @@ -50574,7 +50574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(200), 19, + STATE(1430), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50597,68 +50597,68 @@ static const uint16_t ts_small_parse_table[] = { [16378] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1515), 1, + ACTIONS(1457), 1, sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(422), 1, sym__open_brace, - STATE(1043), 1, + STATE(595), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1069), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, + sym_string, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1513), 8, + ACTIONS(1455), 8, sym_return, sym_next, sym_break, @@ -50667,7 +50667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(106), 19, + STATE(1432), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50690,68 +50690,68 @@ static const uint16_t ts_small_parse_table[] = { [16501] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1519), 1, + ACTIONS(1461), 1, sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(422), 1, sym__open_brace, - STATE(1040), 1, + STATE(596), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1069), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, + sym_string, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1517), 8, + ACTIONS(1459), 8, sym_return, sym_next, sym_break, @@ -50760,7 +50760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(107), 19, + STATE(1435), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50783,68 +50783,68 @@ static const uint16_t ts_small_parse_table[] = { [16624] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1523), 1, + ACTIONS(1465), 1, sym__newline, - STATE(386), 1, + STATE(422), 1, sym__open_brace, - STATE(537), 1, + STATE(597), 1, aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, + STATE(1604), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1607), 1, sym_string, - ACTIONS(1299), 2, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1521), 8, + ACTIONS(1463), 8, sym_return, sym_next, sym_break, @@ -50853,7 +50853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1216), 19, + STATE(1436), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50876,68 +50876,68 @@ static const uint16_t ts_small_parse_table[] = { [16747] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1469), 1, sym__newline, - STATE(316), 1, - sym_string, - STATE(317), 1, - sym__float_literal, - STATE(318), 1, - sym__single_quoted_string, - STATE(320), 1, - sym__double_quoted_string, - STATE(442), 1, + STATE(422), 1, sym__open_brace, - STATE(1102), 1, + STATE(598), 1, + aux_sym_function_definition_repeat1, + STATE(1069), 1, sym__open_parenthesis, STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(805), 2, + sym__single_quoted_string, + STATE(1607), 1, + sym_string, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1525), 8, + ACTIONS(1467), 8, sym_return, sym_next, sym_break, @@ -50946,7 +50946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(199), 19, + STATE(1440), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -50969,68 +50969,68 @@ static const uint16_t ts_small_parse_table[] = { [16870] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(467), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1473), 1, + sym__newline, + STATE(422), 1, sym__open_brace, - STATE(1083), 1, + STATE(599), 1, + aux_sym_function_definition_repeat1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, + STATE(1604), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1607), 1, sym_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1527), 8, + ACTIONS(1471), 8, sym_return, sym_next, sym_break, @@ -51039,7 +51039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1215), 19, + STATE(1442), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51062,68 +51062,68 @@ static const uint16_t ts_small_parse_table[] = { [16993] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1531), 1, + ACTIONS(1477), 1, sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(422), 1, sym__open_brace, - STATE(1035), 1, + STATE(600), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1069), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, + sym_string, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1529), 8, + ACTIONS(1475), 8, sym_return, sym_next, sym_break, @@ -51132,7 +51132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(108), 19, + STATE(1444), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51185,28 +51185,28 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_string_literal, ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1535), 1, + ACTIONS(1481), 1, sym__newline, - STATE(423), 1, + STATE(422), 1, sym__open_brace, - STATE(1008), 1, + STATE(601), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1629), 1, + STATE(1610), 1, sym__float_literal, - STATE(1630), 1, - sym__single_quoted_string, + STATE(1632), 1, + sym__double_quoted_string, ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, @@ -51216,7 +51216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1533), 8, + ACTIONS(1479), 8, sym_return, sym_next, sym_break, @@ -51225,7 +51225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1475), 19, + STATE(1446), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51248,68 +51248,68 @@ static const uint16_t ts_small_parse_table[] = { [17239] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1539), 1, + ACTIONS(1485), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(597), 1, + STATE(602), 1, aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1537), 8, + ACTIONS(1483), 8, sym_return, sym_next, sym_break, @@ -51318,7 +51318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1445), 19, + STATE(1467), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51341,68 +51341,68 @@ static const uint16_t ts_small_parse_table[] = { [17362] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1543), 1, + ACTIONS(1489), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(599), 1, + STATE(603), 1, aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1541), 8, + ACTIONS(1487), 8, sym_return, sym_next, sym_break, @@ -51411,7 +51411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1446), 19, + STATE(1526), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51434,68 +51434,68 @@ static const uint16_t ts_small_parse_table[] = { [17485] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1547), 1, + ACTIONS(1493), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(601), 1, + STATE(604), 1, aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1545), 8, + ACTIONS(1491), 8, sym_return, sym_next, sym_break, @@ -51504,7 +51504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1448), 19, + STATE(1532), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51527,68 +51527,68 @@ static const uint16_t ts_small_parse_table[] = { [17608] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1551), 1, + ACTIONS(1497), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(603), 1, + STATE(605), 1, aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1549), 8, + ACTIONS(1495), 8, sym_return, sym_next, sym_break, @@ -51597,7 +51597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1450), 19, + STATE(1537), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51620,68 +51620,68 @@ static const uint16_t ts_small_parse_table[] = { [17731] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1555), 1, + ACTIONS(1501), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(605), 1, + STATE(606), 1, aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1553), 8, + ACTIONS(1499), 8, sym_return, sym_next, sym_break, @@ -51690,7 +51690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1457), 19, + STATE(1541), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51713,68 +51713,68 @@ static const uint16_t ts_small_parse_table[] = { [17854] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1559), 1, + ACTIONS(1505), 1, sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(422), 1, sym__open_brace, - STATE(1034), 1, + STATE(607), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1069), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, + sym_string, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1557), 8, + ACTIONS(1503), 8, sym_return, sym_next, sym_break, @@ -51783,7 +51783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(109), 19, + STATE(1545), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51806,68 +51806,68 @@ static const uint16_t ts_small_parse_table[] = { [17977] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(962), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(304), 1, sym__float_literal, - STATE(293), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(382), 1, + STATE(389), 1, sym__open_brace, - STATE(1107), 1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1561), 8, + ACTIONS(1507), 8, sym_return, sym_next, sym_break, @@ -51876,7 +51876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(13), 19, + STATE(189), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51899,68 +51899,68 @@ static const uint16_t ts_small_parse_table[] = { [18100] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1565), 1, + ACTIONS(1043), 1, sym__newline, - STATE(286), 1, + STATE(422), 1, + sym__open_brace, + STATE(1069), 1, + sym__open_parenthesis, + STATE(1604), 1, sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(1607), 1, sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, - sym__open_brace, - STATE(1022), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, - sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1563), 8, + ACTIONS(1509), 8, sym_return, sym_next, sym_break, @@ -51969,7 +51969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(111), 19, + STATE(1573), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -51992,68 +51992,68 @@ static const uint16_t ts_small_parse_table[] = { [18223] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1569), 1, + ACTIONS(1513), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(422), 1, sym__open_brace, - STATE(591), 1, + STATE(608), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1069), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, + sym_string, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1567), 8, + ACTIONS(1511), 8, sym_return, sym_next, sym_break, @@ -52062,7 +52062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(12), 19, + STATE(1466), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52085,68 +52085,68 @@ static const uint16_t ts_small_parse_table[] = { [18346] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(962), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(304), 1, sym__float_literal, - STATE(293), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(382), 1, + STATE(389), 1, sym__open_brace, - STATE(1107), 1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1571), 8, + ACTIONS(1515), 8, sym_return, sym_next, sym_break, @@ -52155,7 +52155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(11), 19, + STATE(227), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52178,68 +52178,68 @@ static const uint16_t ts_small_parse_table[] = { [18469] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1575), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(631), 1, - aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1573), 8, + ACTIONS(1517), 8, sym_return, sym_next, sym_break, @@ -52248,7 +52248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1498), 19, + STATE(1336), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52271,68 +52271,68 @@ static const uint16_t ts_small_parse_table[] = { [18592] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1579), 1, + ACTIONS(1043), 1, sym__newline, - STATE(286), 1, + STATE(422), 1, + sym__open_brace, + STATE(1069), 1, + sym__open_parenthesis, + STATE(1604), 1, sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(1607), 1, sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, - sym__open_brace, - STATE(1019), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, - sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1577), 8, + ACTIONS(1519), 8, sym_return, sym_next, sym_break, @@ -52341,7 +52341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(113), 19, + STATE(1337), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52364,68 +52364,68 @@ static const uint16_t ts_small_parse_table[] = { [18715] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1581), 8, + ACTIONS(1521), 8, sym_return, sym_next, sym_break, @@ -52434,7 +52434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1501), 19, + STATE(1338), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52457,68 +52457,68 @@ static const uint16_t ts_small_parse_table[] = { [18838] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1585), 1, + ACTIONS(1043), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, + STATE(422), 1, + sym__open_brace, + STATE(1069), 1, + sym__open_parenthesis, + STATE(1604), 1, sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, + STATE(1607), 1, sym_string, - STATE(382), 1, - sym__open_brace, - STATE(594), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, - sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1583), 8, + ACTIONS(1523), 8, sym_return, sym_next, sym_break, @@ -52527,7 +52527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(10), 19, + STATE(1339), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52550,68 +52550,68 @@ static const uint16_t ts_small_parse_table[] = { [18961] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1587), 8, + ACTIONS(1525), 8, sym_return, sym_next, sym_break, @@ -52620,7 +52620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1508), 19, + STATE(1340), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52643,68 +52643,68 @@ static const uint16_t ts_small_parse_table[] = { [19084] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(451), 1, + anon_sym_SQUOTE, + ACTIONS(453), 1, + anon_sym_DQUOTE, + ACTIONS(463), 1, + sym__raw_string_literal, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1591), 1, + ACTIONS(1043), 1, sym__newline, - STATE(286), 1, + STATE(422), 1, + sym__open_brace, + STATE(1069), 1, + sym__open_parenthesis, + STATE(1604), 1, sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(1607), 1, sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, - sym__open_brace, - STATE(1012), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, - sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1589), 8, + ACTIONS(1527), 8, sym_return, sym_next, sym_break, @@ -52713,7 +52713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(114), 19, + STATE(1341), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52736,68 +52736,68 @@ static const uint16_t ts_small_parse_table[] = { [19207] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1593), 8, + ACTIONS(1529), 8, sym_return, sym_next, sym_break, @@ -52806,7 +52806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1510), 19, + STATE(1342), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52829,68 +52829,68 @@ static const uint16_t ts_small_parse_table[] = { [19330] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1597), 1, + ACTIONS(1043), 1, sym__newline, - STATE(386), 1, + STATE(422), 1, sym__open_brace, - STATE(538), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, + STATE(1604), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1607), 1, sym_string, - ACTIONS(1299), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1595), 8, + ACTIONS(1531), 8, sym_return, sym_next, sym_break, @@ -52899,7 +52899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1187), 19, + STATE(1343), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -52922,68 +52922,68 @@ static const uint16_t ts_small_parse_table[] = { [19453] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1599), 8, + ACTIONS(1533), 8, sym_return, sym_next, sym_break, @@ -52992,7 +52992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1514), 19, + STATE(1344), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53015,68 +53015,68 @@ static const uint16_t ts_small_parse_table[] = { [19576] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1603), 1, + ACTIONS(1043), 1, sym__newline, - STATE(386), 1, + STATE(422), 1, sym__open_brace, - STATE(539), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, + STATE(1604), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1607), 1, sym_string, - ACTIONS(1299), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1601), 8, + ACTIONS(1535), 8, sym_return, sym_next, sym_break, @@ -53085,7 +53085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1182), 19, + STATE(1346), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53108,68 +53108,68 @@ static const uint16_t ts_small_parse_table[] = { [19699] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1605), 8, + ACTIONS(1537), 8, sym_return, sym_next, sym_break, @@ -53178,7 +53178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1516), 19, + STATE(1347), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53201,68 +53201,68 @@ static const uint16_t ts_small_parse_table[] = { [19822] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(467), 1, sym__external_open_brace, - STATE(432), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(422), 1, sym__open_brace, - STATE(1086), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1592), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, sym__float_literal, - STATE(1598), 1, - sym__single_quoted_string, - STATE(1600), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1637), 8, + ACTIONS(1539), 8, sym_return, sym_next, sym_break, @@ -53271,7 +53271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1141), 19, + STATE(1348), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53294,68 +53294,68 @@ static const uint16_t ts_small_parse_table[] = { [19945] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1649), 1, + ACTIONS(1043), 1, sym__newline, - STATE(432), 1, + STATE(422), 1, sym__open_brace, - STATE(606), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1592), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, sym__float_literal, - STATE(1598), 1, - sym__single_quoted_string, - STATE(1600), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1647), 8, + ACTIONS(1541), 8, sym_return, sym_next, sym_break, @@ -53364,7 +53364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1143), 19, + STATE(1349), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53387,68 +53387,68 @@ static const uint16_t ts_small_parse_table[] = { [20068] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1653), 1, + ACTIONS(1043), 1, sym__newline, - STATE(386), 1, + STATE(422), 1, sym__open_brace, - STATE(540), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, + STATE(1604), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1607), 1, sym_string, - ACTIONS(1299), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1651), 8, + ACTIONS(1543), 8, sym_return, sym_next, sym_break, @@ -53457,7 +53457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1218), 19, + STATE(1356), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53480,68 +53480,68 @@ static const uint16_t ts_small_parse_table[] = { [20191] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(467), 1, sym__external_open_brace, - STATE(432), 1, + ACTIONS(1547), 1, + sym__newline, + STATE(422), 1, sym__open_brace, - STATE(1086), 1, + STATE(610), 1, + aux_sym_function_definition_repeat1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1592), 1, + STATE(1610), 1, sym__float_literal, - STATE(1598), 1, - sym__single_quoted_string, - STATE(1600), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1655), 8, + ACTIONS(1545), 8, sym_return, sym_next, sym_break, @@ -53550,7 +53550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1144), 19, + STATE(1358), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53573,68 +53573,68 @@ static const uint16_t ts_small_parse_table[] = { [20314] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1659), 1, + ACTIONS(1043), 1, sym__newline, - STATE(432), 1, + STATE(422), 1, sym__open_brace, - STATE(609), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1592), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, sym__float_literal, - STATE(1598), 1, - sym__single_quoted_string, - STATE(1600), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1657), 8, + ACTIONS(1549), 8, sym_return, sym_next, sym_break, @@ -53643,7 +53643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1145), 19, + STATE(1366), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53666,68 +53666,68 @@ static const uint16_t ts_small_parse_table[] = { [20437] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1663), 1, + ACTIONS(1553), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(643), 1, + STATE(614), 1, aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1661), 8, + ACTIONS(1551), 8, sym_return, sym_next, sym_break, @@ -53736,7 +53736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1526), 19, + STATE(1367), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53759,68 +53759,68 @@ static const uint16_t ts_small_parse_table[] = { [20560] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1667), 1, + ACTIONS(1557), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(645), 1, + STATE(615), 1, aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1665), 8, + ACTIONS(1555), 8, sym_return, sym_next, sym_break, @@ -53829,7 +53829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1529), 19, + STATE(1368), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53852,68 +53852,68 @@ static const uint16_t ts_small_parse_table[] = { [20683] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1671), 1, + ACTIONS(1561), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(647), 1, + STATE(618), 1, aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1669), 8, + ACTIONS(1559), 8, sym_return, sym_next, sym_break, @@ -53922,7 +53922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1536), 19, + STATE(1370), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -53945,68 +53945,68 @@ static const uint16_t ts_small_parse_table[] = { [20806] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1675), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(649), 1, - aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1673), 8, + ACTIONS(1563), 8, sym_return, sym_next, sym_break, @@ -54015,7 +54015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1557), 19, + STATE(1373), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54038,68 +54038,68 @@ static const uint16_t ts_small_parse_table[] = { [20929] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1679), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(651), 1, - aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1677), 8, + ACTIONS(1565), 8, sym_return, sym_next, sym_break, @@ -54108,7 +54108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1565), 19, + STATE(1374), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54131,68 +54131,68 @@ static const uint16_t ts_small_parse_table[] = { [21052] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1683), 1, + ACTIONS(1569), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(653), 1, + STATE(620), 1, aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1681), 8, + ACTIONS(1567), 8, sym_return, sym_next, sym_break, @@ -54201,7 +54201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1564), 19, + STATE(1378), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54224,68 +54224,68 @@ static const uint16_t ts_small_parse_table[] = { [21175] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1687), 1, + ACTIONS(1573), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(655), 1, + STATE(621), 1, aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1685), 8, + ACTIONS(1571), 8, sym_return, sym_next, sym_break, @@ -54294,7 +54294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1558), 19, + STATE(1379), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54317,68 +54317,68 @@ static const uint16_t ts_small_parse_table[] = { [21298] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1691), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(657), 1, - aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1689), 8, + ACTIONS(1575), 8, sym_return, sym_next, sym_break, @@ -54387,7 +54387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1547), 19, + STATE(1380), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54410,68 +54410,68 @@ static const uint16_t ts_small_parse_table[] = { [21421] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1695), 1, + ACTIONS(1579), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(659), 1, + STATE(623), 1, aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1693), 8, + ACTIONS(1577), 8, sym_return, sym_next, sym_break, @@ -54480,7 +54480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1532), 19, + STATE(1381), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54503,68 +54503,68 @@ static const uint16_t ts_small_parse_table[] = { [21544] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1699), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(661), 1, - aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1697), 8, + ACTIONS(1581), 8, sym_return, sym_next, sym_break, @@ -54573,7 +54573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1530), 19, + STATE(1382), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54596,68 +54596,68 @@ static const uint16_t ts_small_parse_table[] = { [21667] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1703), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(663), 1, - aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1701), 8, + ACTIONS(1583), 8, sym_return, sym_next, sym_break, @@ -54666,7 +54666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1522), 19, + STATE(1383), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54689,68 +54689,68 @@ static const uint16_t ts_small_parse_table[] = { [21790] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1707), 1, + ACTIONS(1587), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(665), 1, + STATE(624), 1, aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1705), 8, + ACTIONS(1585), 8, sym_return, sym_next, sym_break, @@ -54759,7 +54759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1518), 19, + STATE(1384), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54782,68 +54782,68 @@ static const uint16_t ts_small_parse_table[] = { [21913] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1711), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, + STATE(422), 1, sym__open_brace, - STATE(667), 1, - aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1604), 1, + sym__single_quoted_string, + STATE(1607), 1, sym_string, - STATE(1611), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, sym__float_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, + STATE(1632), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1709), 8, + ACTIONS(1589), 8, sym_return, sym_next, sym_break, @@ -54852,7 +54852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1511), 19, + STATE(1385), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54875,68 +54875,68 @@ static const uint16_t ts_small_parse_table[] = { [22036] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(427), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(429), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(433), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(435), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(437), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(439), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(441), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(443), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(447), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(449), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(465), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(467), 1, sym__external_open_brace, - ACTIONS(1715), 1, + ACTIONS(1043), 1, sym__newline, - STATE(386), 1, + STATE(422), 1, sym__open_brace, - STATE(541), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1069), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, + STATE(1604), 1, sym__single_quoted_string, - STATE(1589), 1, - sym__double_quoted_string, - STATE(1601), 1, + STATE(1607), 1, sym_string, - ACTIONS(1299), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1610), 1, + sym__float_literal, + STATE(1632), 1, + sym__double_quoted_string, + ACTIONS(445), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1039), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(459), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1713), 8, + ACTIONS(1591), 8, sym_return, sym_next, sym_break, @@ -54945,7 +54945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1193), 19, + STATE(1387), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -54968,11 +54968,11 @@ static const uint16_t ts_small_parse_table[] = { [22159] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(485), 1, sym__raw_string_literal, ACTIONS(930), 1, anon_sym_BSLASH, @@ -55000,21 +55000,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1719), 1, + ACTIONS(1595), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, + STATE(304), 1, + sym__float_literal, STATE(308), 1, sym__single_quoted_string, STATE(309), 1, - sym__float_literal, - STATE(322), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(413), 1, + STATE(389), 1, sym__open_brace, - STATE(664), 1, + STATE(661), 1, aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1051), 1, sym__open_parenthesis, ACTIONS(948), 2, anon_sym_PLUS, @@ -55029,7 +55029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1717), 8, + ACTIONS(1593), 8, sym_return, sym_next, sym_break, @@ -55038,7 +55038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(133), 19, + STATE(186), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55061,68 +55061,68 @@ static const uint16_t ts_small_parse_table[] = { [22282] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1723), 1, + ACTIONS(1599), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(666), 1, + STATE(637), 1, aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(948), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1721), 8, + ACTIONS(1597), 8, sym_return, sym_next, sym_break, @@ -55131,7 +55131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(148), 19, + STATE(119), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55154,68 +55154,68 @@ static const uint16_t ts_small_parse_table[] = { [22405] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1727), 1, + ACTIONS(1603), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(717), 1, + STATE(639), 1, aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(948), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1725), 8, + ACTIONS(1601), 8, sym_return, sym_next, sym_break, @@ -55224,7 +55224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(159), 19, + STATE(122), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55247,68 +55247,68 @@ static const uint16_t ts_small_parse_table[] = { [22528] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1731), 1, + ACTIONS(1607), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(673), 1, + STATE(640), 1, aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(948), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1729), 8, + ACTIONS(1605), 8, sym_return, sym_next, sym_break, @@ -55317,7 +55317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(160), 19, + STATE(123), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55340,68 +55340,68 @@ static const uint16_t ts_small_parse_table[] = { [22651] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(1153), 1, sym__external_open_brace, - STATE(435), 1, - sym__open_brace, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + ACTIONS(1611), 1, + sym__newline, + STATE(286), 1, sym_string, - STATE(1591), 1, + STATE(287), 1, sym__float_literal, - STATE(1594), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(289), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(426), 1, + sym__open_brace, + STATE(641), 1, aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1763), 8, + ACTIONS(1609), 8, sym_return, sym_next, sym_break, @@ -55410,7 +55410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1146), 19, + STATE(124), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55433,68 +55433,68 @@ static const uint16_t ts_small_parse_table[] = { [22774] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1775), 1, + ACTIONS(1615), 1, sym__newline, - STATE(435), 1, - sym__open_brace, - STATE(629), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + STATE(286), 1, sym_string, - STATE(1591), 1, + STATE(287), 1, sym__float_literal, - STATE(1594), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(426), 1, + sym__open_brace, + STATE(642), 1, + aux_sym_function_definition_repeat1, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1773), 8, + ACTIONS(1613), 8, sym_return, sym_next, sym_break, @@ -55503,7 +55503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1147), 19, + STATE(125), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55526,68 +55526,68 @@ static const uint16_t ts_small_parse_table[] = { [22897] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(481), 1, + anon_sym_SQUOTE, ACTIONS(483), 1, - anon_sym_BSLASH, + anon_sym_DQUOTE, ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, + anon_sym_BSLASH, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, - sym_string, - STATE(1611), 1, + STATE(304), 1, sym__float_literal, - STATE(1613), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(309), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(1051), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1777), 8, + ACTIONS(1617), 8, sym_return, sym_next, sym_break, @@ -55596,7 +55596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1441), 19, + STATE(228), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55619,68 +55619,68 @@ static const uint16_t ts_small_parse_table[] = { [23020] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(481), 1, + anon_sym_SQUOTE, ACTIONS(483), 1, - anon_sym_BSLASH, + anon_sym_DQUOTE, ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, + anon_sym_BSLASH, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1781), 1, + ACTIONS(1621), 1, sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(681), 1, - aux_sym_function_definition_repeat1, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1609), 1, - sym_string, - STATE(1611), 1, + STATE(304), 1, sym__float_literal, - STATE(1613), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(309), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(643), 1, + aux_sym_function_definition_repeat1, + STATE(1051), 1, + sym__open_parenthesis, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1779), 8, + ACTIONS(1619), 8, sym_return, sym_next, sym_break, @@ -55689,7 +55689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1424), 19, + STATE(229), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55712,68 +55712,68 @@ static const uint16_t ts_small_parse_table[] = { [23143] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1785), 1, + ACTIONS(1625), 1, sym__newline, - STATE(386), 1, - sym__open_brace, - STATE(542), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + STATE(304), 1, sym__float_literal, - STATE(1585), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(1601), 1, + STATE(323), 1, sym_string, - ACTIONS(1299), 2, + STATE(389), 1, + sym__open_brace, + STATE(645), 1, + aux_sym_function_definition_repeat1, + STATE(1051), 1, + sym__open_parenthesis, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1783), 8, + ACTIONS(1623), 8, sym_return, sym_next, sym_break, @@ -55782,7 +55782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1186), 19, + STATE(230), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55805,68 +55805,68 @@ static const uint16_t ts_small_parse_table[] = { [23266] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(962), 1, sym__external_open_brace, - STATE(435), 1, - sym__open_brace, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, - sym_string, - STATE(1591), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(304), 1, sym__float_literal, - STATE(1594), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(1051), 1, + sym__open_parenthesis, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1787), 8, + ACTIONS(1627), 8, sym_return, sym_next, sym_break, @@ -55875,7 +55875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1148), 19, + STATE(190), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55898,68 +55898,68 @@ static const uint16_t ts_small_parse_table[] = { [23389] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1791), 1, + ACTIONS(1631), 1, sym__newline, - STATE(435), 1, - sym__open_brace, - STATE(634), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + STATE(286), 1, sym_string, - STATE(1591), 1, + STATE(287), 1, sym__float_literal, - STATE(1594), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(426), 1, + sym__open_brace, + STATE(665), 1, + aux_sym_function_definition_repeat1, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1789), 8, + ACTIONS(1629), 8, sym_return, sym_next, sym_break, @@ -55968,7 +55968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1149), 19, + STATE(126), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -55991,11 +55991,11 @@ static const uint16_t ts_small_parse_table[] = { [23512] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(485), 1, sym__raw_string_literal, ACTIONS(930), 1, anon_sym_BSLASH, @@ -56023,22 +56023,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1795), 1, + ACTIONS(1043), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, + STATE(304), 1, + sym__float_literal, STATE(308), 1, sym__single_quoted_string, STATE(309), 1, - sym__float_literal, - STATE(322), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(413), 1, + STATE(389), 1, sym__open_brace, - STATE(674), 1, - aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1051), 1, sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, @@ -56052,7 +56052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1793), 8, + ACTIONS(1633), 8, sym_return, sym_next, sym_break, @@ -56061,7 +56061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(186), 19, + STATE(191), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56084,68 +56084,68 @@ static const uint16_t ts_small_parse_table[] = { [23635] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1799), 1, - sym__newline, - STATE(386), 1, - sym__open_brace, - STATE(543), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + STATE(286), 1, + sym_string, + STATE(287), 1, sym__float_literal, - STATE(1585), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(289), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + STATE(426), 1, + sym__open_brace, + STATE(1074), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1797), 8, + ACTIONS(1635), 8, sym_return, sym_next, sym_break, @@ -56154,7 +56154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1217), 19, + STATE(127), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56177,68 +56177,68 @@ static const uint16_t ts_small_parse_table[] = { [23758] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(355), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1181), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(962), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, + ACTIONS(1639), 1, + sym__newline, + STATE(304), 1, sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(1063), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(660), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + STATE(1051), 1, + sym__open_parenthesis, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1801), 8, + ACTIONS(1637), 8, sym_return, sym_next, sym_break, @@ -56247,7 +56247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(17), 19, + STATE(232), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56274,64 +56274,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1805), 1, - sym__newline, STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, sym_string, - STATE(302), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(426), 1, sym__open_brace, - STATE(638), 1, - aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1803), 8, + ACTIONS(1641), 8, sym_return, sym_next, sym_break, @@ -56340,7 +56340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(16), 19, + STATE(128), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56367,64 +56367,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(1153), 1, sym__external_open_brace, STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, sym_string, - STATE(302), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(426), 1, sym__open_brace, - STATE(1063), 1, + STATE(1074), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1807), 8, + ACTIONS(1643), 8, sym_return, sym_next, sym_break, @@ -56433,7 +56433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(15), 19, + STATE(74), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56460,64 +56460,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1811), 1, - sym__newline, STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, sym_string, - STATE(302), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(426), 1, sym__open_brace, - STATE(640), 1, - aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1809), 8, + ACTIONS(1645), 8, sym_return, sym_next, sym_break, @@ -56526,7 +56526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(14), 19, + STATE(19), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56549,68 +56549,68 @@ static const uint16_t ts_small_parse_table[] = { [24250] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1815), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(872), 1, - aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1813), 8, + ACTIONS(1647), 8, sym_return, sym_next, sym_break, @@ -56619,7 +56619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(211), 19, + STATE(20), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56642,68 +56642,68 @@ static const uint16_t ts_small_parse_table[] = { [24373] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(481), 1, + anon_sym_SQUOTE, ACTIONS(483), 1, - anon_sym_BSLASH, + anon_sym_DQUOTE, ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, + anon_sym_BSLASH, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, - sym_string, - STATE(1611), 1, + STATE(304), 1, sym__float_literal, - STATE(1613), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(309), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(1051), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1817), 8, + ACTIONS(1649), 8, sym_return, sym_next, sym_break, @@ -56712,7 +56712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1423), 19, + STATE(233), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56735,68 +56735,68 @@ static const uint16_t ts_small_parse_table[] = { [24496] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1821), 1, + ACTIONS(1043), 1, sym__newline, - STATE(386), 1, - sym__open_brace, - STATE(546), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + STATE(304), 1, sym__float_literal, - STATE(1585), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(1601), 1, + STATE(323), 1, sym_string, - ACTIONS(1299), 2, + STATE(389), 1, + sym__open_brace, + STATE(1051), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1819), 8, + ACTIONS(1651), 8, sym_return, sym_next, sym_break, @@ -56805,7 +56805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1181), 19, + STATE(192), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56828,68 +56828,68 @@ static const uint16_t ts_small_parse_table[] = { [24619] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(481), 1, + anon_sym_SQUOTE, ACTIONS(483), 1, - anon_sym_BSLASH, + anon_sym_DQUOTE, ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, + anon_sym_BSLASH, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, - sym_string, - STATE(1611), 1, + STATE(304), 1, sym__float_literal, - STATE(1613), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(309), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(1051), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1823), 8, + ACTIONS(1653), 8, sym_return, sym_next, sym_break, @@ -56898,7 +56898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1416), 19, + STATE(234), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -56921,68 +56921,68 @@ static const uint16_t ts_small_parse_table[] = { [24742] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(962), 1, sym__external_open_brace, - STATE(386), 1, - sym__open_brace, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + ACTIONS(1657), 1, + sym__newline, + STATE(304), 1, sym__float_literal, - STATE(1585), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(1601), 1, + STATE(323), 1, sym_string, - STATE(1604), 1, + STATE(389), 1, + sym__open_brace, + STATE(663), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1051), 1, + sym__open_parenthesis, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1825), 8, + ACTIONS(1655), 8, sym_return, sym_next, sym_break, @@ -56991,7 +56991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1150), 19, + STATE(235), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57014,68 +57014,68 @@ static const uint16_t ts_small_parse_table[] = { [24865] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1661), 1, sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, + STATE(286), 1, sym_string, - STATE(1611), 1, + STATE(287), 1, sym__float_literal, - STATE(1613), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(426), 1, + sym__open_brace, + STATE(672), 1, + aux_sym_function_definition_repeat1, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1827), 8, + ACTIONS(1659), 8, sym_return, sym_next, sym_break, @@ -57084,7 +57084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1521), 19, + STATE(21), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57107,68 +57107,68 @@ static const uint16_t ts_small_parse_table[] = { [24988] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1831), 1, + ACTIONS(1665), 1, sym__newline, - STATE(386), 1, - sym__open_brace, - STATE(646), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + STATE(286), 1, + sym_string, + STATE(287), 1, sym__float_literal, - STATE(1585), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(289), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + STATE(426), 1, + sym__open_brace, + STATE(674), 1, + aux_sym_function_definition_repeat1, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1829), 8, + ACTIONS(1663), 8, sym_return, sym_next, sym_break, @@ -57177,7 +57177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1151), 19, + STATE(23), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57200,68 +57200,68 @@ static const uint16_t ts_small_parse_table[] = { [25111] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1669), 1, sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, + STATE(286), 1, sym_string, - STATE(1611), 1, + STATE(287), 1, sym__float_literal, - STATE(1613), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(426), 1, + sym__open_brace, + STATE(675), 1, + aux_sym_function_definition_repeat1, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1833), 8, + ACTIONS(1667), 8, sym_return, sym_next, sym_break, @@ -57270,7 +57270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1338), 19, + STATE(24), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57293,68 +57293,68 @@ static const uint16_t ts_small_parse_table[] = { [25234] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(1153), 1, sym__external_open_brace, - STATE(386), 1, - sym__open_brace, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + ACTIONS(1673), 1, + sym__newline, + STATE(286), 1, + sym_string, + STATE(287), 1, sym__float_literal, - STATE(1585), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(289), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - STATE(1604), 1, + STATE(426), 1, + sym__open_brace, + STATE(677), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1835), 8, + ACTIONS(1671), 8, sym_return, sym_next, sym_break, @@ -57363,7 +57363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1140), 19, + STATE(25), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57386,68 +57386,68 @@ static const uint16_t ts_small_parse_table[] = { [25357] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1677), 1, sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, + STATE(286), 1, sym_string, - STATE(1611), 1, + STATE(287), 1, sym__float_literal, - STATE(1613), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(426), 1, + sym__open_brace, + STATE(678), 1, + aux_sym_function_definition_repeat1, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1837), 8, + ACTIONS(1675), 8, sym_return, sym_next, sym_break, @@ -57456,7 +57456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1339), 19, + STATE(26), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57479,68 +57479,68 @@ static const uint16_t ts_small_parse_table[] = { [25480] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1841), 1, + ACTIONS(1681), 1, sym__newline, - STATE(386), 1, - sym__open_brace, - STATE(650), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + STATE(286), 1, + sym_string, + STATE(287), 1, sym__float_literal, - STATE(1585), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(289), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + STATE(426), 1, + sym__open_brace, + STATE(680), 1, + aux_sym_function_definition_repeat1, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1839), 8, + ACTIONS(1679), 8, sym_return, sym_next, sym_break, @@ -57549,7 +57549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1153), 19, + STATE(27), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57572,68 +57572,68 @@ static const uint16_t ts_small_parse_table[] = { [25603] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1685), 1, sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, + STATE(286), 1, sym_string, - STATE(1611), 1, + STATE(287), 1, sym__float_literal, - STATE(1613), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(426), 1, + sym__open_brace, + STATE(681), 1, + aux_sym_function_definition_repeat1, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1843), 8, + ACTIONS(1683), 8, sym_return, sym_next, sym_break, @@ -57642,7 +57642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1345), 19, + STATE(28), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57665,68 +57665,68 @@ static const uint16_t ts_small_parse_table[] = { [25726] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1847), 1, + ACTIONS(1689), 1, sym__newline, - STATE(386), 1, - sym__open_brace, - STATE(549), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + STATE(286), 1, + sym_string, + STATE(287), 1, sym__float_literal, - STATE(1585), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(289), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + STATE(426), 1, + sym__open_brace, + STATE(683), 1, + aux_sym_function_definition_repeat1, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1845), 8, + ACTIONS(1687), 8, sym_return, sym_next, sym_break, @@ -57735,7 +57735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1190), 19, + STATE(29), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57758,68 +57758,68 @@ static const uint16_t ts_small_parse_table[] = { [25849] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1693), 1, sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, + STATE(286), 1, sym_string, - STATE(1611), 1, + STATE(287), 1, sym__float_literal, - STATE(1613), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(426), 1, + sym__open_brace, + STATE(684), 1, + aux_sym_function_definition_repeat1, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1849), 8, + ACTIONS(1691), 8, sym_return, sym_next, sym_break, @@ -57828,7 +57828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1374), 19, + STATE(30), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57851,68 +57851,68 @@ static const uint16_t ts_small_parse_table[] = { [25972] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1153), 1, sym__external_open_brace, - STATE(432), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + ACTIONS(1697), 1, + sym__newline, + STATE(286), 1, sym_string, - STATE(1592), 1, + STATE(287), 1, sym__float_literal, - STATE(1598), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(289), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(426), 1, + sym__open_brace, + STATE(686), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1851), 8, + ACTIONS(1695), 8, sym_return, sym_next, sym_break, @@ -57921,7 +57921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1165), 19, + STATE(31), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -57944,68 +57944,68 @@ static const uint16_t ts_small_parse_table[] = { [26095] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1701), 1, sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, + STATE(286), 1, sym_string, - STATE(1611), 1, + STATE(287), 1, sym__float_literal, - STATE(1613), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(426), 1, + sym__open_brace, + STATE(687), 1, + aux_sym_function_definition_repeat1, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1853), 8, + ACTIONS(1699), 8, sym_return, sym_next, sym_break, @@ -58014,7 +58014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1386), 19, + STATE(32), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58037,68 +58037,68 @@ static const uint16_t ts_small_parse_table[] = { [26218] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1857), 1, + ACTIONS(1705), 1, sym__newline, - STATE(432), 1, - sym__open_brace, - STATE(656), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(286), 1, sym_string, - STATE(1592), 1, + STATE(287), 1, sym__float_literal, - STATE(1598), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(426), 1, + sym__open_brace, + STATE(689), 1, + aux_sym_function_definition_repeat1, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1855), 8, + ACTIONS(1703), 8, sym_return, sym_next, sym_break, @@ -58107,7 +58107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1164), 19, + STATE(33), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58130,68 +58130,68 @@ static const uint16_t ts_small_parse_table[] = { [26341] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(481), 1, + anon_sym_SQUOTE, ACTIONS(483), 1, - anon_sym_BSLASH, + anon_sym_DQUOTE, ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, + anon_sym_BSLASH, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, - sym_string, - STATE(1611), 1, + STATE(304), 1, sym__float_literal, - STATE(1613), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(309), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(1051), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1859), 8, + ACTIONS(1707), 8, sym_return, sym_next, sym_break, @@ -58200,7 +58200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1388), 19, + STATE(208), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58223,68 +58223,68 @@ static const uint16_t ts_small_parse_table[] = { [26464] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(962), 1, sym__external_open_brace, - STATE(432), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, - sym_string, - STATE(1592), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(304), 1, sym__float_literal, - STATE(1598), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(309), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(1051), 1, + sym__open_parenthesis, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1861), 8, + ACTIONS(1709), 8, sym_return, sym_next, sym_break, @@ -58293,7 +58293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1163), 19, + STATE(236), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58316,68 +58316,68 @@ static const uint16_t ts_small_parse_table[] = { [26587] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(481), 1, + anon_sym_SQUOTE, ACTIONS(483), 1, - anon_sym_BSLASH, + anon_sym_DQUOTE, ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, + anon_sym_BSLASH, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, - sym_string, - STATE(1611), 1, + STATE(304), 1, sym__float_literal, - STATE(1613), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(309), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(1051), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1863), 8, + ACTIONS(1711), 8, sym_return, sym_next, sym_break, @@ -58386,7 +58386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1397), 19, + STATE(193), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58409,68 +58409,68 @@ static const uint16_t ts_small_parse_table[] = { [26710] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1867), 1, + ACTIONS(1043), 1, sym__newline, - STATE(432), 1, - sym__open_brace, - STATE(660), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, - sym_string, - STATE(1592), 1, + STATE(304), 1, sym__float_literal, - STATE(1598), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(309), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(1051), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1865), 8, + ACTIONS(1713), 8, sym_return, sym_next, sym_break, @@ -58479,7 +58479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1161), 19, + STATE(209), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58502,68 +58502,68 @@ static const uint16_t ts_small_parse_table[] = { [26833] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(481), 1, + anon_sym_SQUOTE, ACTIONS(483), 1, - anon_sym_BSLASH, + anon_sym_DQUOTE, ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, + anon_sym_BSLASH, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, - sym_string, - STATE(1611), 1, + STATE(304), 1, sym__float_literal, - STATE(1613), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(309), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(1051), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1869), 8, + ACTIONS(1715), 8, sym_return, sym_next, sym_break, @@ -58572,7 +58572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1400), 19, + STATE(237), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58595,11 +58595,11 @@ static const uint16_t ts_small_parse_table[] = { [26956] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(485), 1, sym__raw_string_literal, ACTIONS(930), 1, anon_sym_BSLASH, @@ -58627,21 +58627,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, + STATE(304), 1, + sym__float_literal, STATE(308), 1, sym__single_quoted_string, STATE(309), 1, - sym__float_literal, - STATE(322), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(413), 1, + STATE(389), 1, sym__open_brace, - STATE(1092), 1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, ACTIONS(948), 2, anon_sym_PLUS, @@ -58656,7 +58656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1871), 8, + ACTIONS(1717), 8, sym_return, sym_next, sym_break, @@ -58665,7 +58665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(209), 19, + STATE(210), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58688,68 +58688,68 @@ static const uint16_t ts_small_parse_table[] = { [27079] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, + STATE(286), 1, sym_string, - STATE(1611), 1, + STATE(287), 1, sym__float_literal, - STATE(1613), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(426), 1, + sym__open_brace, + STATE(1074), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1873), 8, + ACTIONS(1719), 8, sym_return, sym_next, sym_break, @@ -58758,7 +58758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1401), 19, + STATE(34), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58781,68 +58781,68 @@ static const uint16_t ts_small_parse_table[] = { [27202] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1723), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(1092), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(693), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1875), 8, + ACTIONS(1721), 8, sym_return, sym_next, sym_break, @@ -58851,7 +58851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(206), 19, + STATE(35), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58874,68 +58874,68 @@ static const uint16_t ts_small_parse_table[] = { [27325] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1727), 1, sym__newline, - STATE(436), 1, + STATE(402), 1, sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(679), 1, aux_sym_function_definition_repeat1, - STATE(1609), 1, + STATE(1056), 1, + sym__open_parenthesis, + STATE(1619), 1, sym_string, - STATE(1611), 1, + STATE(1620), 1, sym__float_literal, - STATE(1613), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(1625), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1877), 8, + ACTIONS(1725), 8, sym_return, sym_next, sym_break, @@ -58944,7 +58944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1415), 19, + STATE(1438), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -58967,68 +58967,68 @@ static const uint16_t ts_small_parse_table[] = { [27448] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(435), 1, + ACTIONS(1731), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1047), 1, + STATE(682), 1, + aux_sym_function_definition_repeat1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1619), 1, sym_string, - STATE(1591), 1, + STATE(1620), 1, sym__float_literal, - STATE(1594), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1879), 8, + ACTIONS(1729), 8, sym_return, sym_next, sym_break, @@ -59037,7 +59037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1159), 19, + STATE(1449), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59060,68 +59060,68 @@ static const uint16_t ts_small_parse_table[] = { [27571] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1883), 1, + ACTIONS(1735), 1, sym__newline, - STATE(386), 1, + STATE(402), 1, sym__open_brace, - STATE(550), 1, + STATE(685), 1, aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1619), 1, + sym_string, + STATE(1620), 1, sym__float_literal, - STATE(1585), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1881), 8, + ACTIONS(1733), 8, sym_return, sym_next, sym_break, @@ -59130,7 +59130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1235), 19, + STATE(1458), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59153,68 +59153,68 @@ static const uint16_t ts_small_parse_table[] = { [27694] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1887), 1, + ACTIONS(1739), 1, sym__newline, - STATE(435), 1, + STATE(402), 1, sym__open_brace, - STATE(668), 1, + STATE(688), 1, aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1619), 1, sym_string, - STATE(1591), 1, + STATE(1620), 1, sym__float_literal, - STATE(1594), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1625), 1, sym__double_quoted_string, - ACTIONS(1753), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1885), 8, + ACTIONS(1737), 8, sym_return, sym_next, sym_break, @@ -59223,7 +59223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1156), 19, + STATE(1463), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59246,68 +59246,68 @@ static const uint16_t ts_small_parse_table[] = { [27817] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(435), 1, + ACTIONS(1743), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1047), 1, + STATE(690), 1, + aux_sym_function_definition_repeat1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1619), 1, sym_string, - STATE(1591), 1, + STATE(1620), 1, sym__float_literal, - STATE(1594), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1889), 8, + ACTIONS(1741), 8, sym_return, sym_next, sym_break, @@ -59316,7 +59316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1155), 19, + STATE(1469), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59339,68 +59339,68 @@ static const uint16_t ts_small_parse_table[] = { [27940] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1893), 1, - sym__newline, - STATE(435), 1, - sym__open_brace, - STATE(671), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + STATE(286), 1, sym_string, - STATE(1591), 1, + STATE(287), 1, sym__float_literal, - STATE(1594), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(426), 1, + sym__open_brace, + STATE(1074), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1891), 8, + ACTIONS(1745), 8, sym_return, sym_next, sym_break, @@ -59409,7 +59409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1154), 19, + STATE(36), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59432,68 +59432,68 @@ static const uint16_t ts_small_parse_table[] = { [28063] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1895), 8, + ACTIONS(1747), 8, sym_return, sym_next, sym_break, @@ -59502,7 +59502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(203), 19, + STATE(37), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59525,68 +59525,68 @@ static const uint16_t ts_small_parse_table[] = { [28186] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1897), 8, + ACTIONS(1749), 8, sym_return, sym_next, sym_break, @@ -59595,7 +59595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(201), 19, + STATE(38), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59622,64 +59622,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(1153), 1, sym__external_open_brace, STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, sym_string, - STATE(302), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(426), 1, sym__open_brace, - STATE(1063), 1, + STATE(1074), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1899), 8, + ACTIONS(1751), 8, sym_return, sym_next, sym_break, @@ -59688,7 +59688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(5), 19, + STATE(39), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59711,68 +59711,68 @@ static const uint16_t ts_small_parse_table[] = { [28432] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(405), 1, + anon_sym_SQUOTE, + ACTIONS(407), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + sym__raw_string_literal, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1903), 1, + ACTIONS(1755), 1, sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(402), 1, sym__open_brace, - STATE(675), 1, + STATE(707), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1056), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1619), 1, + sym_string, + STATE(1620), 1, + sym__float_literal, + STATE(1624), 1, + sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1901), 8, + ACTIONS(1753), 8, sym_return, sym_next, sym_break, @@ -59781,7 +59781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(4), 19, + STATE(1500), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59808,64 +59808,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(1153), 1, sym__external_open_brace, STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, sym_string, - STATE(302), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(426), 1, sym__open_brace, - STATE(1063), 1, + STATE(1074), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1905), 8, + ACTIONS(1757), 8, sym_return, sym_next, sym_break, @@ -59874,7 +59874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(3), 19, + STATE(40), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59901,64 +59901,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1909), 1, - sym__newline, STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, sym_string, - STATE(302), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(426), 1, sym__open_brace, - STATE(677), 1, - aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1907), 8, + ACTIONS(1759), 8, sym_return, sym_next, sym_break, @@ -59967,7 +59967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(2), 19, + STATE(41), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -59990,68 +59990,68 @@ static const uint16_t ts_small_parse_table[] = { [28801] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(405), 1, + anon_sym_SQUOTE, + ACTIONS(407), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + sym__raw_string_literal, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1913), 1, + ACTIONS(1043), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(402), 1, sym__open_brace, - STATE(971), 1, - aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1056), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, + sym_string, + STATE(1620), 1, + sym__float_literal, + STATE(1624), 1, + sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1911), 8, + ACTIONS(1761), 8, sym_return, sym_next, sym_break, @@ -60060,7 +60060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(192), 19, + STATE(1503), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60083,68 +60083,68 @@ static const uint16_t ts_small_parse_table[] = { [28924] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1917), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(975), 1, - aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1915), 8, + ACTIONS(1763), 8, sym_return, sym_next, sym_break, @@ -60153,7 +60153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(187), 19, + STATE(42), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60176,68 +60176,68 @@ static const uint16_t ts_small_parse_table[] = { [29047] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, + STATE(286), 1, sym_string, - STATE(1611), 1, + STATE(287), 1, sym__float_literal, - STATE(1613), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(426), 1, + sym__open_brace, + STATE(1074), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1919), 8, + ACTIONS(1765), 8, sym_return, sym_next, sym_break, @@ -60246,7 +60246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1389), 19, + STATE(43), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60269,68 +60269,68 @@ static const uint16_t ts_small_parse_table[] = { [29170] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1923), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, + STATE(402), 1, sym__open_brace, - STATE(708), 1, - aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1056), 1, sym__open_parenthesis, STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1611), 1, + STATE(1620), 1, sym__float_literal, - STATE(1613), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(1625), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1921), 8, + ACTIONS(1767), 8, sym_return, sym_next, sym_break, @@ -60339,7 +60339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1390), 19, + STATE(1507), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60362,68 +60362,68 @@ static const uint16_t ts_small_parse_table[] = { [29293] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1927), 1, - sym__newline, - STATE(386), 1, - sym__open_brace, - STATE(552), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + STATE(286), 1, + sym_string, + STATE(287), 1, sym__float_literal, - STATE(1585), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(289), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + STATE(426), 1, + sym__open_brace, + STATE(1074), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1925), 8, + ACTIONS(1769), 8, sym_return, sym_next, sym_break, @@ -60432,7 +60432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1233), 19, + STATE(44), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60455,68 +60455,68 @@ static const uint16_t ts_small_parse_table[] = { [29416] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1931), 1, - sym__newline, - STATE(386), 1, - sym__open_brace, - STATE(555), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + STATE(286), 1, + sym_string, + STATE(287), 1, sym__float_literal, - STATE(1585), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(289), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + STATE(426), 1, + sym__open_brace, + STATE(1074), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1929), 8, + ACTIONS(1771), 8, sym_return, sym_next, sym_break, @@ -60525,7 +60525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1237), 19, + STATE(45), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60548,68 +60548,68 @@ static const uint16_t ts_small_parse_table[] = { [29539] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1935), 1, + ACTIONS(1043), 1, sym__newline, - STATE(386), 1, + STATE(402), 1, sym__open_brace, - STATE(564), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, + sym_string, + STATE(1620), 1, sym__float_literal, - STATE(1585), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1933), 8, + ACTIONS(1773), 8, sym_return, sym_next, sym_break, @@ -60618,7 +60618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1239), 19, + STATE(1508), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60645,64 +60645,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1939), 1, - sym__newline, STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, sym_string, - STATE(302), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(426), 1, sym__open_brace, - STATE(1011), 1, - aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1937), 8, + ACTIONS(1775), 8, sym_return, sym_next, sym_break, @@ -60711,7 +60711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(115), 19, + STATE(46), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60734,68 +60734,68 @@ static const uint16_t ts_small_parse_table[] = { [29785] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1941), 8, + ACTIONS(1777), 8, sym_return, sym_next, sym_break, @@ -60804,7 +60804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(233), 19, + STATE(47), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60827,68 +60827,68 @@ static const uint16_t ts_small_parse_table[] = { [29908] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(405), 1, + anon_sym_SQUOTE, + ACTIONS(407), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + sym__raw_string_literal, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1945), 1, + ACTIONS(1043), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(402), 1, sym__open_brace, - STATE(568), 1, - aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1056), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, + sym_string, + STATE(1620), 1, + sym__float_literal, + STATE(1624), 1, + sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1943), 8, + ACTIONS(1779), 8, sym_return, sym_next, sym_break, @@ -60897,7 +60897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(230), 19, + STATE(1510), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -60920,68 +60920,68 @@ static const uint16_t ts_small_parse_table[] = { [30031] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1949), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(569), 1, - aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1947), 8, + ACTIONS(1781), 8, sym_return, sym_next, sym_break, @@ -60990,7 +60990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(228), 19, + STATE(48), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61013,68 +61013,68 @@ static const uint16_t ts_small_parse_table[] = { [30154] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1083), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, + sym_string, + STATE(1620), 1, sym__float_literal, - STATE(1585), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1951), 8, + ACTIONS(1783), 8, sym_return, sym_next, sym_break, @@ -61083,7 +61083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1243), 19, + STATE(1512), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61106,68 +61106,68 @@ static const uint16_t ts_small_parse_table[] = { [30277] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(405), 1, + anon_sym_SQUOTE, + ACTIONS(407), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + sym__raw_string_literal, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1955), 1, + ACTIONS(1787), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(402), 1, sym__open_brace, - STATE(979), 1, + STATE(719), 1, aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1056), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1619), 1, + sym_string, + STATE(1620), 1, + sym__float_literal, + STATE(1624), 1, + sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1953), 8, + ACTIONS(1785), 8, sym_return, sym_next, sym_break, @@ -61176,7 +61176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(182), 19, + STATE(1530), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61199,68 +61199,68 @@ static const uint16_t ts_small_parse_table[] = { [30400] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(405), 1, + anon_sym_SQUOTE, + ACTIONS(407), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + sym__raw_string_literal, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1959), 1, + ACTIONS(1791), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(402), 1, sym__open_brace, - STATE(989), 1, + STATE(721), 1, aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1056), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1619), 1, + sym_string, + STATE(1620), 1, + sym__float_literal, + STATE(1624), 1, + sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1957), 8, + ACTIONS(1789), 8, sym_return, sym_next, sym_break, @@ -61269,7 +61269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(180), 19, + STATE(1534), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61292,68 +61292,68 @@ static const uint16_t ts_small_parse_table[] = { [30523] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1963), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(990), 1, - aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1961), 8, + ACTIONS(1793), 8, sym_return, sym_next, sym_break, @@ -61362,7 +61362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(130), 19, + STATE(49), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61385,68 +61385,68 @@ static const uint16_t ts_small_parse_table[] = { [30646] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1967), 1, + ACTIONS(1797), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(992), 1, + STATE(709), 1, aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(948), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1965), 8, + ACTIONS(1795), 8, sym_return, sym_next, sym_break, @@ -61455,7 +61455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(163), 19, + STATE(50), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61478,68 +61478,68 @@ static const uint16_t ts_small_parse_table[] = { [30769] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(405), 1, + anon_sym_SQUOTE, + ACTIONS(407), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + sym__raw_string_literal, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1801), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(402), 1, sym__open_brace, - STATE(1092), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(724), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + STATE(1056), 1, + sym__open_parenthesis, + STATE(1619), 1, + sym_string, + STATE(1620), 1, + sym__float_literal, + STATE(1624), 1, + sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1969), 8, + ACTIONS(1799), 8, sym_return, sym_next, sym_break, @@ -61548,7 +61548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(227), 19, + STATE(1362), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61571,68 +61571,68 @@ static const uint16_t ts_small_parse_table[] = { [30892] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1805), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1083), 1, + STATE(726), 1, + aux_sym_function_definition_repeat1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1619), 1, + sym_string, + STATE(1620), 1, sym__float_literal, - STATE(1585), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1971), 8, + ACTIONS(1803), 8, sym_return, sym_next, sym_break, @@ -61641,7 +61641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1244), 19, + STATE(1375), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61664,68 +61664,68 @@ static const uint16_t ts_small_parse_table[] = { [31015] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(405), 1, + anon_sym_SQUOTE, + ACTIONS(407), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + sym__raw_string_literal, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1809), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(402), 1, sym__open_brace, - STATE(1092), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(728), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + STATE(1056), 1, + sym__open_parenthesis, + STATE(1619), 1, + sym_string, + STATE(1620), 1, + sym__float_literal, + STATE(1624), 1, + sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1973), 8, + ACTIONS(1807), 8, sym_return, sym_next, sym_break, @@ -61734,7 +61734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(226), 19, + STATE(1386), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61757,68 +61757,68 @@ static const uint16_t ts_small_parse_table[] = { [31138] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1813), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1083), 1, + STATE(752), 1, + aux_sym_function_definition_repeat1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1619), 1, + sym_string, + STATE(1620), 1, sym__float_literal, - STATE(1585), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1975), 8, + ACTIONS(1811), 8, sym_return, sym_next, sym_break, @@ -61827,7 +61827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1245), 19, + STATE(1395), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61850,68 +61850,68 @@ static const uint16_t ts_small_parse_table[] = { [31261] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(405), 1, + anon_sym_SQUOTE, + ACTIONS(407), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + sym__raw_string_literal, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1979), 1, + ACTIONS(1817), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(402), 1, sym__open_brace, - STATE(993), 1, + STATE(790), 1, aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1056), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1619), 1, + sym_string, + STATE(1620), 1, + sym__float_literal, + STATE(1624), 1, + sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1977), 8, + ACTIONS(1815), 8, sym_return, sym_next, sym_break, @@ -61920,7 +61920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(149), 19, + STATE(1420), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -61943,68 +61943,68 @@ static const uint16_t ts_small_parse_table[] = { [31384] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1821), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1083), 1, + STATE(791), 1, + aux_sym_function_definition_repeat1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1619), 1, + sym_string, + STATE(1620), 1, sym__float_literal, - STATE(1585), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1981), 8, + ACTIONS(1819), 8, sym_return, sym_next, sym_break, @@ -62013,7 +62013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1139), 19, + STATE(1422), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62036,68 +62036,68 @@ static const uint16_t ts_small_parse_table[] = { [31507] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(405), 1, + anon_sym_SQUOTE, + ACTIONS(407), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + sym__raw_string_literal, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1985), 1, + ACTIONS(1825), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(402), 1, sym__open_brace, - STATE(995), 1, + STATE(792), 1, aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1056), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1619), 1, + sym_string, + STATE(1620), 1, + sym__float_literal, + STATE(1624), 1, + sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1983), 8, + ACTIONS(1823), 8, sym_return, sym_next, sym_break, @@ -62106,7 +62106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(146), 19, + STATE(1423), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62129,68 +62129,68 @@ static const uint16_t ts_small_parse_table[] = { [31630] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(405), 1, + anon_sym_SQUOTE, + ACTIONS(407), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + sym__raw_string_literal, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1989), 1, + ACTIONS(1829), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(402), 1, sym__open_brace, - STATE(996), 1, + STATE(795), 1, aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1056), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1619), 1, + sym_string, + STATE(1620), 1, + sym__float_literal, + STATE(1624), 1, + sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1987), 8, + ACTIONS(1827), 8, sym_return, sym_next, sym_break, @@ -62199,7 +62199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(143), 19, + STATE(1425), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62222,68 +62222,68 @@ static const uint16_t ts_small_parse_table[] = { [31753] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1993), 1, + ACTIONS(1833), 1, sym__newline, - STATE(386), 1, + STATE(402), 1, sym__open_brace, - STATE(700), 1, + STATE(798), 1, aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1619), 1, + sym_string, + STATE(1620), 1, sym__float_literal, - STATE(1585), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1991), 8, + ACTIONS(1831), 8, sym_return, sym_next, sym_break, @@ -62292,7 +62292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1160), 19, + STATE(1429), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62315,68 +62315,68 @@ static const uint16_t ts_small_parse_table[] = { [31876] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(386), 1, + ACTIONS(1837), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1083), 1, + STATE(801), 1, + aux_sym_function_definition_repeat1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1619), 1, + sym_string, + STATE(1620), 1, sym__float_literal, - STATE(1585), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1995), 8, + ACTIONS(1835), 8, sym_return, sym_next, sym_break, @@ -62385,7 +62385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1162), 19, + STATE(1431), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62408,68 +62408,68 @@ static const uint16_t ts_small_parse_table[] = { [31999] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(405), 1, + anon_sym_SQUOTE, + ACTIONS(407), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + sym__raw_string_literal, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1999), 1, + ACTIONS(1841), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(402), 1, sym__open_brace, - STATE(997), 1, + STATE(802), 1, aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1056), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1619), 1, + sym_string, + STATE(1620), 1, + sym__float_literal, + STATE(1624), 1, + sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(1997), 8, + ACTIONS(1839), 8, sym_return, sym_next, sym_break, @@ -62478,7 +62478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(140), 19, + STATE(1433), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62501,68 +62501,68 @@ static const uint16_t ts_small_parse_table[] = { [32122] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(355), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1181), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(962), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(304), 1, sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(1063), 1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2001), 8, + ACTIONS(1843), 8, sym_return, sym_next, sym_break, @@ -62571,7 +62571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(116), 19, + STATE(211), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62594,68 +62594,68 @@ static const uint16_t ts_small_parse_table[] = { [32245] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(2005), 1, + ACTIONS(1043), 1, sym__newline, - STATE(386), 1, + STATE(402), 1, sym__open_brace, - STATE(704), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, + sym_string, + STATE(1620), 1, sym__float_literal, - STATE(1585), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2003), 8, + ACTIONS(1845), 8, sym_return, sym_next, sym_break, @@ -62664,7 +62664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1142), 19, + STATE(1516), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62687,68 +62687,68 @@ static const uint16_t ts_small_parse_table[] = { [32368] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1849), 1, sym__newline, - STATE(436), 1, + STATE(402), 1, sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(819), 1, aux_sym_function_definition_repeat1, - STATE(1609), 1, + STATE(1056), 1, + sym__open_parenthesis, + STATE(1619), 1, sym_string, - STATE(1611), 1, + STATE(1620), 1, sym__float_literal, - STATE(1613), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(1625), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2007), 8, + ACTIONS(1847), 8, sym_return, sym_next, sym_break, @@ -62757,7 +62757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1425), 19, + STATE(1527), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62780,68 +62780,68 @@ static const uint16_t ts_small_parse_table[] = { [32491] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(2011), 1, - sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(719), 1, - aux_sym_function_definition_repeat1, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1609), 1, + STATE(286), 1, sym_string, - STATE(1611), 1, + STATE(287), 1, sym__float_literal, - STATE(1613), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(426), 1, + sym__open_brace, + STATE(1074), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2009), 8, + ACTIONS(1851), 8, sym_return, sym_next, sym_break, @@ -62850,7 +62850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1443), 19, + STATE(51), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62873,68 +62873,68 @@ static const uint16_t ts_small_parse_table[] = { [32614] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(2015), 1, + ACTIONS(1855), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(998), 1, + STATE(713), 1, aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(948), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2013), 8, + ACTIONS(1853), 8, sym_return, sym_next, sym_break, @@ -62943,7 +62943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(138), 19, + STATE(52), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -62966,68 +62966,68 @@ static const uint16_t ts_small_parse_table[] = { [32737] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(2019), 1, + ACTIONS(1859), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(999), 1, + STATE(714), 1, aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(948), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2017), 8, + ACTIONS(1857), 8, sym_return, sym_next, sym_break, @@ -63036,7 +63036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(136), 19, + STATE(53), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63059,68 +63059,68 @@ static const uint16_t ts_small_parse_table[] = { [32860] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(2023), 1, + ACTIONS(1863), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(1002), 1, + STATE(717), 1, aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(948), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2021), 8, + ACTIONS(1861), 8, sym_return, sym_next, sym_break, @@ -63129,7 +63129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(134), 19, + STATE(54), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63152,68 +63152,68 @@ static const uint16_t ts_small_parse_table[] = { [32983] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(2027), 1, - sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(721), 1, - aux_sym_function_definition_repeat1, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1609), 1, + STATE(286), 1, sym_string, - STATE(1611), 1, + STATE(287), 1, sym__float_literal, - STATE(1613), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(426), 1, + sym__open_brace, + STATE(1074), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2025), 8, + ACTIONS(1865), 8, sym_return, sym_next, sym_break, @@ -63222,7 +63222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1456), 19, + STATE(55), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63245,68 +63245,68 @@ static const uint16_t ts_small_parse_table[] = { [33106] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1281), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(1153), 1, sym__external_open_brace, - STATE(386), 1, - sym__open_brace, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + STATE(286), 1, + sym_string, + STATE(287), 1, sym__float_literal, - STATE(1585), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(289), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - STATE(1604), 1, + STATE(426), 1, + sym__open_brace, + STATE(1074), 1, + sym__open_parenthesis, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2029), 8, + ACTIONS(1867), 8, sym_return, sym_next, sym_break, @@ -63315,7 +63315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1246), 19, + STATE(56), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63342,64 +63342,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(2033), 1, + ACTIONS(1871), 1, sym__newline, STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, sym_string, - STATE(302), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(426), 1, sym__open_brace, - STATE(1004), 1, + STATE(720), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2031), 8, + ACTIONS(1869), 8, sym_return, sym_next, sym_break, @@ -63408,7 +63408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(117), 19, + STATE(57), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63431,68 +63431,68 @@ static const uint16_t ts_small_parse_table[] = { [33352] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(2037), 1, + ACTIONS(1875), 1, sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(726), 1, - aux_sym_function_definition_repeat1, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1609), 1, + STATE(286), 1, sym_string, - STATE(1611), 1, + STATE(287), 1, sym__float_literal, - STATE(1613), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(426), 1, + sym__open_brace, + STATE(722), 1, + aux_sym_function_definition_repeat1, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2035), 8, + ACTIONS(1873), 8, sym_return, sym_next, sym_break, @@ -63501,7 +63501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1459), 19, + STATE(58), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63524,68 +63524,68 @@ static const uint16_t ts_small_parse_table[] = { [33475] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2039), 8, + ACTIONS(1877), 8, sym_return, sym_next, sym_break, @@ -63594,7 +63594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(204), 19, + STATE(59), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63617,68 +63617,68 @@ static const uint16_t ts_small_parse_table[] = { [33598] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1281), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(1153), 1, sym__external_open_brace, - STATE(386), 1, - sym__open_brace, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + ACTIONS(1881), 1, + sym__newline, + STATE(286), 1, + sym_string, + STATE(287), 1, sym__float_literal, - STATE(1585), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(289), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - STATE(1604), 1, + STATE(426), 1, + sym__open_brace, + STATE(725), 1, aux_sym_function_definition_repeat1, - ACTIONS(1299), 2, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2041), 8, + ACTIONS(1879), 8, sym_return, sym_next, sym_break, @@ -63687,7 +63687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1247), 19, + STATE(60), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63710,68 +63710,68 @@ static const uint16_t ts_small_parse_table[] = { [33721] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, + STATE(402), 1, sym__open_brace, - STATE(1108), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1611), 1, + STATE(1620), 1, sym__float_literal, - STATE(1613), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(1625), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2043), 8, + ACTIONS(1883), 8, sym_return, sym_next, sym_break, @@ -63780,7 +63780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1461), 19, + STATE(1539), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63803,68 +63803,68 @@ static const uint16_t ts_small_parse_table[] = { [33844] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(2047), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(286), 1, sym_string, - STATE(413), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, sym__open_brace, - STATE(687), 1, - aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2045), 8, + ACTIONS(1885), 8, sym_return, sym_next, sym_break, @@ -63873,7 +63873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(223), 19, + STATE(61), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63896,68 +63896,68 @@ static const uint16_t ts_small_parse_table[] = { [33967] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, + STATE(402), 1, sym__open_brace, - STATE(1108), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1611), 1, + STATE(1620), 1, sym__float_literal, - STATE(1613), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(1625), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2049), 8, + ACTIONS(1887), 8, sym_return, sym_next, sym_break, @@ -63966,7 +63966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1469), 19, + STATE(1542), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -63989,68 +63989,68 @@ static const uint16_t ts_small_parse_table[] = { [34090] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(2053), 1, - sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(731), 1, - aux_sym_function_definition_repeat1, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1609), 1, + STATE(286), 1, sym_string, - STATE(1611), 1, + STATE(287), 1, sym__float_literal, - STATE(1613), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(426), 1, + sym__open_brace, + STATE(1074), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2051), 8, + ACTIONS(1889), 8, sym_return, sym_next, sym_break, @@ -64059,7 +64059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1474), 19, + STATE(62), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64082,68 +64082,68 @@ static const uint16_t ts_small_parse_table[] = { [34213] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(2057), 1, + ACTIONS(1893), 1, sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(733), 1, - aux_sym_function_definition_repeat1, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1609), 1, + STATE(286), 1, sym_string, - STATE(1611), 1, + STATE(287), 1, sym__float_literal, - STATE(1613), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(426), 1, + sym__open_brace, + STATE(727), 1, + aux_sym_function_definition_repeat1, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2055), 8, + ACTIONS(1891), 8, sym_return, sym_next, sym_break, @@ -64152,7 +64152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1477), 19, + STATE(63), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64175,68 +64175,68 @@ static const uint16_t ts_small_parse_table[] = { [34336] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(2061), 1, + ACTIONS(1043), 1, sym__newline, - STATE(386), 1, + STATE(402), 1, sym__open_brace, - STATE(582), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1583), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, + sym_string, + STATE(1620), 1, sym__float_literal, - STATE(1585), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2059), 8, + ACTIONS(1895), 8, sym_return, sym_next, sym_break, @@ -64245,7 +64245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1248), 19, + STATE(1543), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64268,68 +64268,68 @@ static const uint16_t ts_small_parse_table[] = { [34459] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1609), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1153), 1, sym__external_open_brace, - STATE(432), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(286), 1, sym_string, - STATE(1592), 1, + STATE(287), 1, sym__float_literal, - STATE(1598), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(289), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(426), 1, + sym__open_brace, + STATE(1074), 1, + sym__open_parenthesis, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2063), 8, + ACTIONS(1897), 8, sym_return, sym_next, sym_break, @@ -64338,7 +64338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1171), 19, + STATE(64), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64361,68 +64361,68 @@ static const uint16_t ts_small_parse_table[] = { [34582] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(436), 1, + STATE(402), 1, sym__open_brace, - STATE(1108), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1611), 1, + STATE(1620), 1, sym__float_literal, - STATE(1613), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(1625), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2065), 8, + ACTIONS(1899), 8, sym_return, sym_next, sym_break, @@ -64431,7 +64431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1480), 19, + STATE(1547), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64454,68 +64454,68 @@ static const uint16_t ts_small_parse_table[] = { [34705] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(2069), 1, - sym__newline, - STATE(436), 1, - sym__open_brace, - STATE(737), 1, - aux_sym_function_definition_repeat1, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1609), 1, + STATE(286), 1, sym_string, - STATE(1611), 1, + STATE(287), 1, sym__float_literal, - STATE(1613), 1, + STATE(288), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(289), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(426), 1, + sym__open_brace, + STATE(1074), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2067), 8, + ACTIONS(1901), 8, sym_return, sym_next, sym_break, @@ -64524,7 +64524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1481), 19, + STATE(65), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64547,68 +64547,68 @@ static const uint16_t ts_small_parse_table[] = { [34828] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(432), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1086), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1592), 1, + STATE(1620), 1, sym__float_literal, - STATE(1598), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2071), 8, + ACTIONS(1903), 8, sym_return, sym_next, sym_break, @@ -64617,7 +64617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1172), 19, + STATE(1548), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64640,68 +64640,68 @@ static const uint16_t ts_small_parse_table[] = { [34951] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1939), 1, + sym__newline, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2075), 1, - sym__newline, - STATE(432), 1, + STATE(430), 1, sym__open_brace, - STATE(725), 1, + STATE(735), 1, aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2073), 8, + ACTIONS(1935), 8, sym_return, sym_next, sym_break, @@ -64710,7 +64710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1173), 19, + STATE(1194), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64733,68 +64733,68 @@ static const uint16_t ts_small_parse_table[] = { [35074] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(432), 1, + ACTIONS(1949), 1, + sym__newline, + STATE(430), 1, sym__open_brace, - STATE(1086), 1, + STATE(736), 1, + aux_sym_function_definition_repeat1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2077), 8, + ACTIONS(1947), 8, sym_return, sym_next, sym_break, @@ -64803,7 +64803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1174), 19, + STATE(1195), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64826,68 +64826,68 @@ static const uint16_t ts_small_parse_table[] = { [35197] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1953), 1, sym__newline, - STATE(436), 1, + STATE(430), 1, sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(737), 1, aux_sym_function_definition_repeat1, - STATE(1609), 1, + STATE(1079), 1, + sym__open_parenthesis, + STATE(1580), 1, sym_string, - STATE(1611), 1, + STATE(1599), 1, sym__float_literal, - STATE(1613), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(1603), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2079), 8, + ACTIONS(1951), 8, sym_return, sym_next, sym_break, @@ -64896,7 +64896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1495), 19, + STATE(1263), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -64919,68 +64919,68 @@ static const uint16_t ts_small_parse_table[] = { [35320] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(432), 1, + ACTIONS(1957), 1, + sym__newline, + STATE(430), 1, sym__open_brace, - STATE(1086), 1, + STATE(738), 1, + aux_sym_function_definition_repeat1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2081), 8, + ACTIONS(1955), 8, sym_return, sym_next, sym_break, @@ -64989,7 +64989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1175), 19, + STATE(1268), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65012,68 +65012,68 @@ static const uint16_t ts_small_parse_table[] = { [35443] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1961), 1, sym__newline, - STATE(436), 1, + STATE(430), 1, sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(739), 1, aux_sym_function_definition_repeat1, - STATE(1609), 1, + STATE(1079), 1, + sym__open_parenthesis, + STATE(1580), 1, sym_string, - STATE(1611), 1, + STATE(1599), 1, sym__float_literal, - STATE(1613), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(1603), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2083), 8, + ACTIONS(1959), 8, sym_return, sym_next, sym_break, @@ -65082,7 +65082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1483), 19, + STATE(1281), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65105,68 +65105,68 @@ static const uint16_t ts_small_parse_table[] = { [35566] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2087), 1, + ACTIONS(1965), 1, sym__newline, - STATE(436), 1, + STATE(430), 1, sym__open_brace, - STATE(741), 1, + STATE(753), 1, aux_sym_function_definition_repeat1, - STATE(1108), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1609), 1, + STATE(1580), 1, sym_string, - STATE(1611), 1, + STATE(1599), 1, sym__float_literal, - STATE(1613), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(1603), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2085), 8, + ACTIONS(1963), 8, sym_return, sym_next, sym_break, @@ -65175,7 +65175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1485), 19, + STATE(1275), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65198,68 +65198,68 @@ static const uint16_t ts_small_parse_table[] = { [35689] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_SQUOTE, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(579), 1, - sym__raw_string_literal, - ACTIONS(787), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(789), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(791), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(793), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(795), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(797), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(799), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(801), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(803), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(807), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(809), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(817), 1, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(1933), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, + sym__raw_string_literal, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(819), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2091), 1, - sym__newline, - STATE(316), 1, + STATE(430), 1, + sym__open_brace, + STATE(1079), 1, + sym__open_parenthesis, + STATE(1580), 1, sym_string, - STATE(317), 1, + STATE(1599), 1, sym__float_literal, - STATE(318), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(320), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(442), 1, - sym__open_brace, - STATE(459), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1102), 1, - sym__open_parenthesis, - ACTIONS(805), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(785), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(813), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2089), 8, + ACTIONS(1967), 8, sym_return, sym_next, sym_break, @@ -65268,7 +65268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(154), 19, + STATE(1282), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65291,68 +65291,68 @@ static const uint16_t ts_small_parse_table[] = { [35812] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2095), 1, - sym__newline, - STATE(432), 1, + STATE(430), 1, sym__open_brace, - STATE(728), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2093), 8, + ACTIONS(1969), 8, sym_return, sym_next, sym_break, @@ -65361,7 +65361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1176), 19, + STATE(1283), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65384,68 +65384,68 @@ static const uint16_t ts_small_parse_table[] = { [35935] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(436), 1, + STATE(430), 1, sym__open_brace, - STATE(1108), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1609), 1, + STATE(1580), 1, sym_string, - STATE(1611), 1, + STATE(1599), 1, sym__float_literal, - STATE(1613), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(1603), 1, sym__double_quoted_string, - ACTIONS(501), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2097), 8, + ACTIONS(1971), 8, sym_return, sym_next, sym_break, @@ -65454,7 +65454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1486), 19, + STATE(1284), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65477,68 +65477,68 @@ static const uint16_t ts_small_parse_table[] = { [36058] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(432), 1, + STATE(430), 1, sym__open_brace, - STATE(1086), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2099), 8, + ACTIONS(1973), 8, sym_return, sym_next, sym_break, @@ -65547,7 +65547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1177), 19, + STATE(1285), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65570,68 +65570,68 @@ static const uint16_t ts_small_parse_table[] = { [36181] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2103), 1, - sym__newline, - STATE(432), 1, + STATE(430), 1, sym__open_brace, - STATE(730), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2101), 8, + ACTIONS(1975), 8, sym_return, sym_next, sym_break, @@ -65640,7 +65640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1178), 19, + STATE(1286), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65663,68 +65663,68 @@ static const uint16_t ts_small_parse_table[] = { [36304] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2107), 1, + ACTIONS(1979), 1, sym__newline, - STATE(432), 1, + STATE(430), 1, sym__open_brace, - STATE(732), 1, + STATE(755), 1, aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2105), 8, + ACTIONS(1977), 8, sym_return, sym_next, sym_break, @@ -65733,7 +65733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1183), 19, + STATE(1287), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65756,68 +65756,68 @@ static const uint16_t ts_small_parse_table[] = { [36427] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(483), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(485), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(487), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(489), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(491), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(493), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(495), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(497), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(499), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(505), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(507), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(521), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(523), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1983), 1, sym__newline, - STATE(436), 1, + STATE(430), 1, sym__open_brace, - STATE(1108), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(757), 1, aux_sym_function_definition_repeat1, - STATE(1609), 1, + STATE(1079), 1, + sym__open_parenthesis, + STATE(1580), 1, sym_string, - STATE(1611), 1, + STATE(1599), 1, sym__float_literal, - STATE(1613), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(1603), 1, sym__double_quoted_string, - ACTIONS(501), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1033), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(515), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2109), 8, + ACTIONS(1981), 8, sym_return, sym_next, sym_break, @@ -65826,7 +65826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1488), 19, + STATE(1289), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65849,68 +65849,68 @@ static const uint16_t ts_small_parse_table[] = { [36550] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(432), 1, + ACTIONS(1987), 1, + sym__newline, + STATE(430), 1, sym__open_brace, - STATE(1086), 1, + STATE(758), 1, + aux_sym_function_definition_repeat1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2111), 8, + ACTIONS(1985), 8, sym_return, sym_next, sym_break, @@ -65919,7 +65919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1166), 19, + STATE(1295), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -65942,68 +65942,68 @@ static const uint16_t ts_small_parse_table[] = { [36673] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(432), 1, + ACTIONS(1991), 1, + sym__newline, + STATE(430), 1, sym__open_brace, - STATE(1086), 1, + STATE(759), 1, + aux_sym_function_definition_repeat1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2113), 8, + ACTIONS(1989), 8, sym_return, sym_next, sym_break, @@ -66012,7 +66012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1184), 19, + STATE(1296), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66035,68 +66035,68 @@ static const uint16_t ts_small_parse_table[] = { [36796] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2117), 1, + ACTIONS(1995), 1, sym__newline, - STATE(432), 1, + STATE(430), 1, sym__open_brace, - STATE(738), 1, + STATE(760), 1, aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2115), 8, + ACTIONS(1993), 8, sym_return, sym_next, sym_break, @@ -66105,7 +66105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1185), 19, + STATE(1297), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66128,68 +66128,68 @@ static const uint16_t ts_small_parse_table[] = { [36919] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2121), 1, + ACTIONS(1999), 1, sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(757), 1, + STATE(761), 1, aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2119), 8, + ACTIONS(1997), 8, sym_return, sym_next, sym_break, @@ -66198,7 +66198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1524), 19, + STATE(1298), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66221,68 +66221,68 @@ static const uint16_t ts_small_parse_table[] = { [37042] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2125), 1, + ACTIONS(2003), 1, sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(759), 1, + STATE(762), 1, aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2123), 8, + ACTIONS(2001), 8, sym_return, sym_next, sym_break, @@ -66291,7 +66291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1534), 19, + STATE(1299), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66314,68 +66314,68 @@ static const uint16_t ts_small_parse_table[] = { [37165] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2129), 1, + ACTIONS(2007), 1, sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(761), 1, + STATE(763), 1, aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2127), 8, + ACTIONS(2005), 8, sym_return, sym_next, sym_break, @@ -66384,7 +66384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1538), 19, + STATE(1300), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66407,68 +66407,68 @@ static const uint16_t ts_small_parse_table[] = { [37288] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2133), 1, + ACTIONS(2011), 1, sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(763), 1, + STATE(764), 1, aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2131), 8, + ACTIONS(2009), 8, sym_return, sym_next, sym_break, @@ -66477,7 +66477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1540), 19, + STATE(1302), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66500,68 +66500,68 @@ static const uint16_t ts_small_parse_table[] = { [37411] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2137), 1, + ACTIONS(2015), 1, sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, STATE(765), 1, aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2135), 8, + ACTIONS(2013), 8, sym_return, sym_next, sym_break, @@ -66570,7 +66570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1546), 19, + STATE(1316), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66593,68 +66593,68 @@ static const uint16_t ts_small_parse_table[] = { [37534] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2141), 1, + ACTIONS(2019), 1, sym__newline, - STATE(432), 1, + STATE(430), 1, sym__open_brace, - STATE(742), 1, + STATE(766), 1, aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2139), 8, + ACTIONS(2017), 8, sym_return, sym_next, sym_break, @@ -66663,7 +66663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1192), 19, + STATE(1322), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66686,68 +66686,68 @@ static const uint16_t ts_small_parse_table[] = { [37657] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2145), 1, + ACTIONS(2023), 1, sym__newline, - STATE(432), 1, + STATE(430), 1, sym__open_brace, - STATE(743), 1, + STATE(767), 1, aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2143), 8, + ACTIONS(2021), 8, sym_return, sym_next, sym_break, @@ -66756,7 +66756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1194), 19, + STATE(1176), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66779,68 +66779,68 @@ static const uint16_t ts_small_parse_table[] = { [37780] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(432), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1086), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1592), 1, + STATE(1620), 1, sym__float_literal, - STATE(1598), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2147), 8, + ACTIONS(2025), 8, sym_return, sym_next, sym_break, @@ -66849,7 +66849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1196), 19, + STATE(1550), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66872,68 +66872,68 @@ static const uint16_t ts_small_parse_table[] = { [37903] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2151), 1, - sym__newline, - STATE(432), 1, + STATE(430), 1, sym__open_brace, - STATE(752), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2149), 8, + ACTIONS(2027), 8, sym_return, sym_next, sym_break, @@ -66942,7 +66942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1197), 19, + STATE(1202), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -66965,68 +66965,68 @@ static const uint16_t ts_small_parse_table[] = { [38026] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(432), 1, + ACTIONS(2031), 1, + sym__newline, + STATE(430), 1, sym__open_brace, - STATE(1086), 1, + STATE(768), 1, + aux_sym_function_definition_repeat1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2153), 8, + ACTIONS(2029), 8, sym_return, sym_next, sym_break, @@ -67035,7 +67035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1201), 19, + STATE(1210), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67058,68 +67058,68 @@ static const uint16_t ts_small_parse_table[] = { [38149] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2157), 1, - sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(791), 1, - aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2155), 8, + ACTIONS(2033), 8, sym_return, sym_next, sym_break, @@ -67128,7 +67128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1572), 19, + STATE(1215), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67151,68 +67151,68 @@ static const uint16_t ts_small_parse_table[] = { [38272] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(1933), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, + sym__raw_string_literal, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(430), 1, sym__open_brace, - STATE(1107), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1580), 1, + sym_string, + STATE(1599), 1, + sym__float_literal, + STATE(1602), 1, + sym__single_quoted_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2159), 8, + ACTIONS(2035), 8, sym_return, sym_next, sym_break, @@ -67221,7 +67221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(9), 19, + STATE(1217), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67244,68 +67244,68 @@ static const uint16_t ts_small_parse_table[] = { [38395] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2161), 8, + ACTIONS(2037), 8, sym_return, sym_next, sym_break, @@ -67314,7 +67314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1570), 19, + STATE(1250), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67337,68 +67337,68 @@ static const uint16_t ts_small_parse_table[] = { [38518] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(432), 1, + STATE(430), 1, sym__open_brace, - STATE(1086), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2163), 8, + ACTIONS(2039), 8, sym_return, sym_next, sym_break, @@ -67407,7 +67407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1203), 19, + STATE(1251), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67430,68 +67430,68 @@ static const uint16_t ts_small_parse_table[] = { [38641] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2165), 8, + ACTIONS(2041), 8, sym_return, sym_next, sym_break, @@ -67500,7 +67500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1563), 19, + STATE(1252), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67523,68 +67523,68 @@ static const uint16_t ts_small_parse_table[] = { [38764] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(432), 1, + STATE(430), 1, sym__open_brace, - STATE(1086), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2167), 8, + ACTIONS(2043), 8, sym_return, sym_next, sym_break, @@ -67593,7 +67593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1204), 19, + STATE(1253), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67616,68 +67616,68 @@ static const uint16_t ts_small_parse_table[] = { [38887] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2169), 8, + ACTIONS(2045), 8, sym_return, sym_next, sym_break, @@ -67686,7 +67686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1562), 19, + STATE(1333), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67709,68 +67709,68 @@ static const uint16_t ts_small_parse_table[] = { [39010] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(432), 1, + STATE(430), 1, sym__open_brace, - STATE(1086), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2171), 8, + ACTIONS(2047), 8, sym_return, sym_next, sym_break, @@ -67779,7 +67779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1207), 19, + STATE(1255), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67802,68 +67802,68 @@ static const uint16_t ts_small_parse_table[] = { [39133] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2173), 8, + ACTIONS(2049), 8, sym_return, sym_next, sym_break, @@ -67872,7 +67872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1561), 19, + STATE(1256), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67895,68 +67895,68 @@ static const uint16_t ts_small_parse_table[] = { [39256] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(432), 1, + STATE(430), 1, sym__open_brace, - STATE(1086), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2175), 8, + ACTIONS(2051), 8, sym_return, sym_next, sym_break, @@ -67965,7 +67965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1211), 19, + STATE(1257), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -67988,68 +67988,68 @@ static const uint16_t ts_small_parse_table[] = { [39379] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2177), 8, + ACTIONS(2053), 8, sym_return, sym_next, sym_break, @@ -68058,7 +68058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1560), 19, + STATE(1258), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68081,68 +68081,68 @@ static const uint16_t ts_small_parse_table[] = { [39502] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(432), 1, + STATE(430), 1, sym__open_brace, - STATE(1086), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2179), 8, + ACTIONS(2055), 8, sym_return, sym_next, sym_break, @@ -68151,7 +68151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1214), 19, + STATE(1259), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68174,68 +68174,68 @@ static const uint16_t ts_small_parse_table[] = { [39625] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(432), 1, + STATE(430), 1, sym__open_brace, - STATE(1086), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2181), 8, + ACTIONS(2057), 8, sym_return, sym_next, sym_break, @@ -68244,7 +68244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1220), 19, + STATE(1260), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68267,68 +68267,68 @@ static const uint16_t ts_small_parse_table[] = { [39748] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(1933), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, + sym__raw_string_literal, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2185), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(430), 1, sym__open_brace, - STATE(695), 1, - aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1079), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1580), 1, + sym_string, + STATE(1599), 1, + sym__float_literal, + STATE(1602), 1, + sym__single_quoted_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2183), 8, + ACTIONS(2059), 8, sym_return, sym_next, sym_break, @@ -68337,7 +68337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(131), 19, + STATE(1261), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68360,68 +68360,68 @@ static const uint16_t ts_small_parse_table[] = { [39871] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(432), 1, + ACTIONS(2063), 1, + sym__newline, + STATE(430), 1, sym__open_brace, - STATE(1086), 1, + STATE(770), 1, + aux_sym_function_definition_repeat1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2187), 8, + ACTIONS(2061), 8, sym_return, sym_next, sym_break, @@ -68430,7 +68430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1221), 19, + STATE(1262), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68453,68 +68453,68 @@ static const uint16_t ts_small_parse_table[] = { [39994] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1609), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(432), 1, + STATE(430), 1, sym__open_brace, - STATE(1086), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1580), 1, sym_string, - STATE(1592), 1, + STATE(1599), 1, sym__float_literal, - STATE(1598), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2189), 8, + ACTIONS(2065), 8, sym_return, sym_next, sym_break, @@ -68523,7 +68523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1222), 19, + STATE(1264), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68546,68 +68546,68 @@ static const uint16_t ts_small_parse_table[] = { [40117] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2193), 1, + ACTIONS(2069), 1, sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(803), 1, + STATE(774), 1, aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2191), 8, + ACTIONS(2067), 8, sym_return, sym_next, sym_break, @@ -68616,7 +68616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1556), 19, + STATE(1265), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68639,68 +68639,68 @@ static const uint16_t ts_small_parse_table[] = { [40240] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2197), 1, + ACTIONS(2073), 1, sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(805), 1, + STATE(775), 1, aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2195), 8, + ACTIONS(2071), 8, sym_return, sym_next, sym_break, @@ -68709,7 +68709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1555), 19, + STATE(1266), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68732,68 +68732,68 @@ static const uint16_t ts_small_parse_table[] = { [40363] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2201), 1, + ACTIONS(2077), 1, sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(807), 1, + STATE(778), 1, aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2199), 8, + ACTIONS(2075), 8, sym_return, sym_next, sym_break, @@ -68802,7 +68802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1554), 19, + STATE(1267), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68825,68 +68825,68 @@ static const uint16_t ts_small_parse_table[] = { [40486] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2205), 1, - sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(453), 1, - aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2203), 8, + ACTIONS(2079), 8, sym_return, sym_next, sym_break, @@ -68895,7 +68895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1553), 19, + STATE(1269), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -68918,68 +68918,68 @@ static const uint16_t ts_small_parse_table[] = { [40609] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2209), 1, - sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(811), 1, - aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2207), 8, + ACTIONS(2081), 8, sym_return, sym_next, sym_break, @@ -68988,7 +68988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1552), 19, + STATE(1270), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69011,68 +69011,68 @@ static const uint16_t ts_small_parse_table[] = { [40732] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2213), 1, + ACTIONS(2085), 1, sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(813), 1, + STATE(780), 1, aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2211), 8, + ACTIONS(2083), 8, sym_return, sym_next, sym_break, @@ -69081,7 +69081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1551), 19, + STATE(1271), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69104,68 +69104,68 @@ static const uint16_t ts_small_parse_table[] = { [40855] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2217), 1, + ACTIONS(2089), 1, sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(815), 1, + STATE(781), 1, aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2215), 8, + ACTIONS(2087), 8, sym_return, sym_next, sym_break, @@ -69174,7 +69174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1548), 19, + STATE(1272), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69197,68 +69197,68 @@ static const uint16_t ts_small_parse_table[] = { [40978] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2221), 1, - sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(817), 1, - aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2219), 8, + ACTIONS(2091), 8, sym_return, sym_next, sym_break, @@ -69267,7 +69267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1545), 19, + STATE(1273), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69290,68 +69290,68 @@ static const uint16_t ts_small_parse_table[] = { [41101] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2225), 1, + ACTIONS(2095), 1, sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(819), 1, + STATE(783), 1, aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2223), 8, + ACTIONS(2093), 8, sym_return, sym_next, sym_break, @@ -69360,7 +69360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1543), 19, + STATE(1274), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69383,68 +69383,68 @@ static const uint16_t ts_small_parse_table[] = { [41224] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2229), 1, - sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(821), 1, - aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2227), 8, + ACTIONS(2097), 8, sym_return, sym_next, sym_break, @@ -69453,7 +69453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1541), 19, + STATE(1276), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69476,68 +69476,68 @@ static const uint16_t ts_small_parse_table[] = { [41347] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2233), 1, - sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(823), 1, - aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2231), 8, + ACTIONS(2099), 8, sym_return, sym_next, sym_break, @@ -69546,7 +69546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1539), 19, + STATE(1277), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69569,68 +69569,68 @@ static const uint16_t ts_small_parse_table[] = { [41470] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2237), 1, + ACTIONS(2103), 1, sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(825), 1, + STATE(784), 1, aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2235), 8, + ACTIONS(2101), 8, sym_return, sym_next, sym_break, @@ -69639,7 +69639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1537), 19, + STATE(1278), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69662,68 +69662,68 @@ static const uint16_t ts_small_parse_table[] = { [41593] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2241), 1, - sym__newline, - STATE(392), 1, + STATE(430), 1, sym__open_brace, - STATE(827), 1, - aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1580), 1, sym_string, - STATE(1625), 1, + STATE(1599), 1, sym__float_literal, - STATE(1631), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2239), 8, + ACTIONS(2105), 8, sym_return, sym_next, sym_break, @@ -69732,7 +69732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1535), 19, + STATE(1279), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69755,68 +69755,68 @@ static const uint16_t ts_small_parse_table[] = { [41716] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(1933), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, + sym__raw_string_literal, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2245), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(430), 1, sym__open_brace, - STATE(697), 1, - aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1079), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1580), 1, + sym_string, + STATE(1599), 1, + sym__float_literal, + STATE(1602), 1, + sym__single_quoted_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2243), 8, + ACTIONS(2107), 8, sym_return, sym_next, sym_break, @@ -69825,7 +69825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(216), 19, + STATE(1280), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69848,68 +69848,68 @@ static const uint16_t ts_small_parse_table[] = { [41839] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2139), 1, + sym__newline, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(432), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(794), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2247), 8, + ACTIONS(2135), 8, sym_return, sym_next, sym_break, @@ -69918,7 +69918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1223), 19, + STATE(66), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -69941,68 +69941,68 @@ static const uint16_t ts_small_parse_table[] = { [41962] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(432), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + ACTIONS(2147), 1, + sym__newline, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(796), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2249), 8, + ACTIONS(2145), 8, sym_return, sym_next, sym_break, @@ -70011,7 +70011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1234), 19, + STATE(67), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70034,68 +70034,68 @@ static const uint16_t ts_small_parse_table[] = { [42085] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(432), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + ACTIONS(2151), 1, + sym__newline, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(797), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2251), 8, + ACTIONS(2149), 8, sym_return, sym_next, sym_break, @@ -70104,7 +70104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1236), 19, + STATE(68), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70127,68 +70127,68 @@ static const uint16_t ts_small_parse_table[] = { [42208] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(432), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + ACTIONS(2155), 1, + sym__newline, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(799), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2253), 8, + ACTIONS(2153), 8, sym_return, sym_next, sym_break, @@ -70197,7 +70197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1240), 19, + STATE(69), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70220,68 +70220,68 @@ static const uint16_t ts_small_parse_table[] = { [42331] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(432), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + ACTIONS(2159), 1, + sym__newline, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(800), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2255), 8, + ACTIONS(2157), 8, sym_return, sym_next, sym_break, @@ -70290,7 +70290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1241), 19, + STATE(70), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70313,68 +70313,68 @@ static const uint16_t ts_small_parse_table[] = { [42454] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(2259), 1, + ACTIONS(1043), 1, sym__newline, - STATE(432), 1, + STATE(402), 1, sym__open_brace, - STATE(754), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1592), 1, + STATE(1620), 1, sym__float_literal, - STATE(1598), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1625), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2257), 8, + ACTIONS(2161), 8, sym_return, sym_next, sym_break, @@ -70383,7 +70383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1242), 19, + STATE(1553), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70436,28 +70436,28 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_string_literal, ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(392), 1, + STATE(402), 1, sym__open_brace, - STATE(1113), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1619), 1, sym_string, - STATE(1625), 1, + STATE(1620), 1, sym__float_literal, - STATE(1631), 1, + STATE(1624), 1, sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, @@ -70467,7 +70467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2261), 8, + ACTIONS(2163), 8, sym_return, sym_next, sym_break, @@ -70476,7 +70476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1507), 19, + STATE(1554), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70529,28 +70529,28 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_string_literal, ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(2265), 1, + ACTIONS(1043), 1, sym__newline, - STATE(392), 1, + STATE(402), 1, sym__open_brace, - STATE(841), 1, - aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1625), 1, + STATE(1620), 1, sym__float_literal, - STATE(1631), 1, + STATE(1624), 1, sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, @@ -70560,7 +70560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2263), 8, + ACTIONS(2165), 8, sym_return, sym_next, sym_break, @@ -70569,7 +70569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1506), 19, + STATE(1557), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70592,68 +70592,68 @@ static const uint16_t ts_small_parse_table[] = { [42823] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(432), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + ACTIONS(2169), 1, + sym__newline, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(815), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2267), 8, + ACTIONS(2167), 8, sym_return, sym_next, sym_break, @@ -70662,7 +70662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1249), 19, + STATE(71), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70685,68 +70685,68 @@ static const uint16_t ts_small_parse_table[] = { [42946] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(361), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(363), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(365), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(290), 1, sym_string, - STATE(413), 1, + STATE(291), 1, + sym__float_literal, + STATE(292), 1, + sym__single_quoted_string, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, sym__open_brace, - STATE(1092), 1, + STATE(1084), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2269), 8, + ACTIONS(2171), 8, sym_return, sym_next, sym_break, @@ -70755,7 +70755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(215), 19, + STATE(72), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70778,68 +70778,68 @@ static const uint16_t ts_small_parse_table[] = { [43069] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(2273), 1, + ACTIONS(1043), 1, sym__newline, - STATE(432), 1, + STATE(402), 1, sym__open_brace, - STATE(758), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1592), 1, + STATE(1620), 1, sym__float_literal, - STATE(1598), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1625), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2271), 8, + ACTIONS(2173), 8, sym_return, sym_next, sym_break, @@ -70848,7 +70848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1250), 19, + STATE(1558), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70871,68 +70871,68 @@ static const uint16_t ts_small_parse_table[] = { [43192] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2277), 1, - sym__newline, - STATE(432), 1, - sym__open_brace, - STATE(760), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2275), 8, + ACTIONS(2175), 8, sym_return, sym_next, sym_break, @@ -70941,7 +70941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1251), 19, + STATE(73), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -70964,68 +70964,68 @@ static const uint16_t ts_small_parse_table[] = { [43315] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2281), 1, - sym__newline, - STATE(432), 1, - sym__open_brace, - STATE(762), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2279), 8, + ACTIONS(2177), 8, sym_return, sym_next, sym_break, @@ -71034,7 +71034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1252), 19, + STATE(129), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71057,68 +71057,68 @@ static const uint16_t ts_small_parse_table[] = { [43438] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(2285), 1, + ACTIONS(1043), 1, sym__newline, - STATE(432), 1, + STATE(402), 1, sym__open_brace, - STATE(764), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1592), 1, + STATE(1620), 1, sym__float_literal, - STATE(1598), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1625), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2283), 8, + ACTIONS(2179), 8, sym_return, sym_next, sym_break, @@ -71127,7 +71127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1253), 19, + STATE(1559), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71150,68 +71150,68 @@ static const uint16_t ts_small_parse_table[] = { [43561] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2289), 1, - sym__newline, - STATE(432), 1, - sym__open_brace, - STATE(766), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2287), 8, + ACTIONS(2181), 8, sym_return, sym_next, sym_break, @@ -71220,7 +71220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1254), 19, + STATE(75), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71243,68 +71243,68 @@ static const uint16_t ts_small_parse_table[] = { [43684] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2293), 1, - sym__newline, - STATE(432), 1, - sym__open_brace, - STATE(767), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2291), 8, + ACTIONS(2183), 8, sym_return, sym_next, sym_break, @@ -71313,7 +71313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1255), 19, + STATE(76), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71336,68 +71336,68 @@ static const uint16_t ts_small_parse_table[] = { [43807] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(2297), 1, + ACTIONS(1043), 1, sym__newline, - STATE(432), 1, + STATE(402), 1, sym__open_brace, - STATE(769), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1592), 1, + STATE(1620), 1, sym__float_literal, - STATE(1598), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1625), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2295), 8, + ACTIONS(2185), 8, sym_return, sym_next, sym_break, @@ -71406,7 +71406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1256), 19, + STATE(1561), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71429,68 +71429,68 @@ static const uint16_t ts_small_parse_table[] = { [43930] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1633), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(2301), 1, + ACTIONS(1043), 1, sym__newline, - STATE(432), 1, + STATE(402), 1, sym__open_brace, - STATE(770), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1590), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1592), 1, + STATE(1620), 1, sym__float_literal, - STATE(1598), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1625), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2299), 8, + ACTIONS(2187), 8, sym_return, sym_next, sym_break, @@ -71499,7 +71499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1257), 19, + STATE(1563), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71522,68 +71522,68 @@ static const uint16_t ts_small_parse_table[] = { [44053] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(405), 1, - anon_sym_SQUOTE, - ACTIONS(407), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, - sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2191), 1, sym__newline, - STATE(392), 1, - sym__open_brace, - STATE(1113), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(290), 1, sym_string, - STATE(1625), 1, + STATE(291), 1, sym__float_literal, - STATE(1631), 1, + STATE(292), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, + sym__open_brace, + STATE(817), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2303), 8, + ACTIONS(2189), 8, sym_return, sym_next, sym_break, @@ -71592,7 +71592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1504), 19, + STATE(77), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71615,68 +71615,68 @@ static const uint16_t ts_small_parse_table[] = { [44176] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2307), 1, + ACTIONS(2195), 1, sym__newline, - STATE(432), 1, - sym__open_brace, - STATE(785), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(434), 1, + sym__open_brace, + STATE(820), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2305), 8, + ACTIONS(2193), 8, sym_return, sym_next, sym_break, @@ -71685,7 +71685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1259), 19, + STATE(79), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71708,68 +71708,68 @@ static const uint16_t ts_small_parse_table[] = { [44299] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(405), 1, - anon_sym_SQUOTE, - ACTIONS(407), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, - sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2199), 1, sym__newline, - STATE(392), 1, - sym__open_brace, - STATE(1113), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(290), 1, sym_string, - STATE(1625), 1, + STATE(291), 1, sym__float_literal, - STATE(1631), 1, + STATE(292), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, + sym__open_brace, + STATE(822), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2309), 8, + ACTIONS(2197), 8, sym_return, sym_next, sym_break, @@ -71778,7 +71778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1503), 19, + STATE(80), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71801,68 +71801,68 @@ static const uint16_t ts_small_parse_table[] = { [44422] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2313), 1, + ACTIONS(2203), 1, sym__newline, - STATE(432), 1, - sym__open_brace, - STATE(786), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(434), 1, + sym__open_brace, + STATE(823), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2311), 8, + ACTIONS(2201), 8, sym_return, sym_next, sym_break, @@ -71871,7 +71871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1264), 19, + STATE(81), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71894,68 +71894,68 @@ static const uint16_t ts_small_parse_table[] = { [44545] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(405), 1, - anon_sym_SQUOTE, - ACTIONS(407), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, - sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2207), 1, sym__newline, - STATE(392), 1, - sym__open_brace, - STATE(1113), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(290), 1, sym_string, - STATE(1625), 1, + STATE(291), 1, sym__float_literal, - STATE(1631), 1, + STATE(292), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, + sym__open_brace, + STATE(824), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2315), 8, + ACTIONS(2205), 8, sym_return, sym_next, sym_break, @@ -71964,7 +71964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1502), 19, + STATE(82), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -71987,68 +71987,68 @@ static const uint16_t ts_small_parse_table[] = { [44668] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2319), 1, + ACTIONS(2211), 1, sym__newline, - STATE(432), 1, - sym__open_brace, - STATE(787), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(434), 1, + sym__open_brace, + STATE(825), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2317), 8, + ACTIONS(2209), 8, sym_return, sym_next, sym_break, @@ -72057,7 +72057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1265), 19, + STATE(83), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72080,68 +72080,68 @@ static const uint16_t ts_small_parse_table[] = { [44791] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2323), 1, + ACTIONS(2215), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(877), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(290), 1, sym_string, - STATE(1629), 1, + STATE(291), 1, sym__float_literal, - STATE(1630), 1, + STATE(292), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, + sym__open_brace, + STATE(826), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2321), 8, + ACTIONS(2213), 8, sym_return, sym_next, sym_break, @@ -72150,7 +72150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1574), 19, + STATE(84), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72173,68 +72173,68 @@ static const uint16_t ts_small_parse_table[] = { [44914] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2327), 1, + ACTIONS(2219), 1, sym__newline, - STATE(432), 1, - sym__open_brace, - STATE(789), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(434), 1, + sym__open_brace, + STATE(827), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2325), 8, + ACTIONS(2217), 8, sym_return, sym_next, sym_break, @@ -72243,7 +72243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1267), 19, + STATE(85), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72266,68 +72266,68 @@ static const uint16_t ts_small_parse_table[] = { [45037] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(405), 1, - anon_sym_SQUOTE, - ACTIONS(407), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, - sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2223), 1, sym__newline, - STATE(392), 1, - sym__open_brace, - STATE(1113), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(290), 1, sym_string, - STATE(1625), 1, + STATE(291), 1, sym__float_literal, - STATE(1631), 1, + STATE(292), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, + sym__open_brace, + STATE(828), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2329), 8, + ACTIONS(2221), 8, sym_return, sym_next, sym_break, @@ -72336,7 +72336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1497), 19, + STATE(86), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72359,68 +72359,68 @@ static const uint16_t ts_small_parse_table[] = { [45160] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2333), 1, + ACTIONS(2227), 1, sym__newline, - STATE(386), 1, - sym__open_brace, - STATE(690), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + STATE(290), 1, + sym_string, + STATE(291), 1, sym__float_literal, - STATE(1585), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + STATE(434), 1, + sym__open_brace, + STATE(829), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2331), 8, + ACTIONS(2225), 8, sym_return, sym_next, sym_break, @@ -72429,7 +72429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1258), 19, + STATE(87), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72452,68 +72452,68 @@ static const uint16_t ts_small_parse_table[] = { [45283] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(405), 1, - anon_sym_SQUOTE, - ACTIONS(407), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, - sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2231), 1, sym__newline, - STATE(392), 1, - sym__open_brace, - STATE(1113), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(290), 1, sym_string, - STATE(1625), 1, + STATE(291), 1, sym__float_literal, - STATE(1631), 1, + STATE(292), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, + sym__open_brace, + STATE(830), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2335), 8, + ACTIONS(2229), 8, sym_return, sym_next, sym_break, @@ -72522,7 +72522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1496), 19, + STATE(88), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72545,68 +72545,68 @@ static const uint16_t ts_small_parse_table[] = { [45406] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(432), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + ACTIONS(2235), 1, + sym__newline, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(831), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2337), 8, + ACTIONS(2233), 8, sym_return, sym_next, sym_break, @@ -72615,7 +72615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1268), 19, + STATE(89), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72638,68 +72638,68 @@ static const uint16_t ts_small_parse_table[] = { [45529] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(405), 1, - anon_sym_SQUOTE, - ACTIONS(407), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, - sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(392), 1, - sym__open_brace, - STATE(1113), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(290), 1, sym_string, - STATE(1625), 1, + STATE(291), 1, sym__float_literal, - STATE(1631), 1, + STATE(292), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2339), 8, + ACTIONS(2237), 8, sym_return, sym_next, sym_break, @@ -72708,7 +72708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1492), 19, + STATE(90), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72731,68 +72731,68 @@ static const uint16_t ts_small_parse_table[] = { [45652] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(432), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + ACTIONS(2241), 1, + sym__newline, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(833), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2341), 8, + ACTIONS(2239), 8, sym_return, sym_next, sym_break, @@ -72801,7 +72801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1269), 19, + STATE(91), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72824,68 +72824,68 @@ static const uint16_t ts_small_parse_table[] = { [45775] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(405), 1, - anon_sym_SQUOTE, - ACTIONS(407), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, - sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(392), 1, - sym__open_brace, - STATE(1113), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(290), 1, sym_string, - STATE(1625), 1, + STATE(291), 1, sym__float_literal, - STATE(1631), 1, + STATE(292), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2343), 8, + ACTIONS(2243), 8, sym_return, sym_next, sym_break, @@ -72894,7 +72894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1491), 19, + STATE(92), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -72917,68 +72917,68 @@ static const uint16_t ts_small_parse_table[] = { [45898] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1609), 1, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(432), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2345), 8, + ACTIONS(2245), 8, sym_return, sym_next, sym_break, @@ -72987,7 +72987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1270), 19, + STATE(93), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73040,28 +73040,28 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_string_literal, ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(392), 1, + STATE(402), 1, sym__open_brace, - STATE(1113), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1619), 1, sym_string, - STATE(1625), 1, + STATE(1620), 1, sym__float_literal, - STATE(1631), 1, + STATE(1624), 1, sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, @@ -73071,7 +73071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2347), 8, + ACTIONS(2247), 8, sym_return, sym_next, sym_break, @@ -73080,7 +73080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1466), 19, + STATE(1570), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73103,68 +73103,68 @@ static const uint16_t ts_small_parse_table[] = { [46144] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1609), 1, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(432), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2349), 8, + ACTIONS(2249), 8, sym_return, sym_next, sym_break, @@ -73173,7 +73173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1271), 19, + STATE(94), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73226,28 +73226,28 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_string_literal, ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2253), 1, sym__newline, - STATE(392), 1, + STATE(402), 1, sym__open_brace, - STATE(1113), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(835), 1, aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1056), 1, + sym__open_parenthesis, + STATE(1619), 1, sym_string, - STATE(1625), 1, + STATE(1620), 1, sym__float_literal, - STATE(1631), 1, + STATE(1624), 1, sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, @@ -73257,7 +73257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2351), 8, + ACTIONS(2251), 8, sym_return, sym_next, sym_break, @@ -73266,7 +73266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1465), 19, + STATE(1571), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73289,68 +73289,68 @@ static const uint16_t ts_small_parse_table[] = { [46390] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1609), 1, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(432), 1, - sym__open_brace, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1627), 2, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2353), 8, + ACTIONS(2255), 8, sym_return, sym_next, sym_break, @@ -73359,7 +73359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1272), 19, + STATE(95), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73382,68 +73382,68 @@ static const uint16_t ts_small_parse_table[] = { [46513] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(405), 1, - anon_sym_SQUOTE, - ACTIONS(407), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, - sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(392), 1, - sym__open_brace, - STATE(1113), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(290), 1, sym_string, - STATE(1625), 1, + STATE(291), 1, sym__float_literal, - STATE(1631), 1, + STATE(292), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2355), 8, + ACTIONS(2257), 8, sym_return, sym_next, sym_break, @@ -73452,7 +73452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1453), 19, + STATE(96), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73475,68 +73475,68 @@ static const uint16_t ts_small_parse_table[] = { [46636] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2359), 1, - sym__newline, - STATE(432), 1, - sym__open_brace, - STATE(793), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2357), 8, + ACTIONS(2259), 8, sym_return, sym_next, sym_break, @@ -73545,7 +73545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1273), 19, + STATE(97), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73568,68 +73568,68 @@ static const uint16_t ts_small_parse_table[] = { [46759] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(405), 1, - anon_sym_SQUOTE, - ACTIONS(407), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, - sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(392), 1, - sym__open_brace, - STATE(1113), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(290), 1, sym_string, - STATE(1625), 1, + STATE(291), 1, sym__float_literal, - STATE(1631), 1, + STATE(292), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2361), 8, + ACTIONS(2261), 8, sym_return, sym_next, sym_break, @@ -73638,7 +73638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1451), 19, + STATE(98), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73661,68 +73661,68 @@ static const uint16_t ts_small_parse_table[] = { [46882] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2365), 1, - sym__newline, - STATE(432), 1, - sym__open_brace, - STATE(814), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2363), 8, + ACTIONS(2263), 8, sym_return, sym_next, sym_break, @@ -73731,7 +73731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1274), 19, + STATE(99), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73754,68 +73754,68 @@ static const uint16_t ts_small_parse_table[] = { [47005] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(405), 1, - anon_sym_SQUOTE, - ACTIONS(407), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, - sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(392), 1, - sym__open_brace, - STATE(1113), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(290), 1, sym_string, - STATE(1625), 1, + STATE(291), 1, sym__float_literal, - STATE(1631), 1, + STATE(292), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2367), 8, + ACTIONS(2265), 8, sym_return, sym_next, sym_break, @@ -73824,7 +73824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1449), 19, + STATE(100), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73847,68 +73847,68 @@ static const uint16_t ts_small_parse_table[] = { [47128] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2371), 1, - sym__newline, - STATE(432), 1, - sym__open_brace, - STATE(816), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2369), 8, + ACTIONS(2267), 8, sym_return, sym_next, sym_break, @@ -73917,7 +73917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1275), 19, + STATE(101), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -73940,68 +73940,68 @@ static const uint16_t ts_small_parse_table[] = { [47251] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2375), 1, - sym__newline, - STATE(386), 1, - sym__open_brace, - STATE(696), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + STATE(290), 1, + sym_string, + STATE(291), 1, sym__float_literal, - STATE(1585), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2373), 8, + ACTIONS(2269), 8, sym_return, sym_next, sym_break, @@ -74010,7 +74010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1260), 19, + STATE(102), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74033,68 +74033,68 @@ static const uint16_t ts_small_parse_table[] = { [47374] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2379), 1, - sym__newline, - STATE(432), 1, - sym__open_brace, - STATE(818), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2377), 8, + ACTIONS(2271), 8, sym_return, sym_next, sym_break, @@ -74103,7 +74103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1276), 19, + STATE(103), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74126,68 +74126,68 @@ static const uint16_t ts_small_parse_table[] = { [47497] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2383), 1, - sym__newline, - STATE(432), 1, - sym__open_brace, - STATE(820), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, + STATE(290), 1, sym_string, - STATE(1592), 1, + STATE(291), 1, sym__float_literal, - STATE(1598), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2381), 8, + ACTIONS(2273), 8, sym_return, sym_next, sym_break, @@ -74196,7 +74196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1277), 19, + STATE(104), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74219,68 +74219,68 @@ static const uint16_t ts_small_parse_table[] = { [47620] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1611), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1613), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1615), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1617), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1619), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1621), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1623), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1625), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1629), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1631), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - ACTIONS(1643), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1645), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(2387), 1, + ACTIONS(1043), 1, sym__newline, - STATE(432), 1, - sym__open_brace, - STATE(822), 1, - aux_sym_function_definition_repeat1, - STATE(1086), 1, - sym__open_parenthesis, - STATE(1590), 1, - sym_string, - STATE(1592), 1, + STATE(304), 1, sym__float_literal, - STATE(1598), 1, + STATE(308), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(309), 1, sym__double_quoted_string, - ACTIONS(1627), 2, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(1051), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1607), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1639), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2385), 8, + ACTIONS(2275), 8, sym_return, sym_next, sym_break, @@ -74289,7 +74289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1278), 19, + STATE(212), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74312,68 +74312,68 @@ static const uint16_t ts_small_parse_table[] = { [47743] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1735), 1, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(435), 1, - sym__open_brace, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + STATE(290), 1, sym_string, - STATE(1591), 1, + STATE(291), 1, sym__float_literal, - STATE(1594), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2389), 8, + ACTIONS(2277), 8, sym_return, sym_next, sym_break, @@ -74382,7 +74382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1279), 19, + STATE(105), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74405,68 +74405,68 @@ static const uint16_t ts_small_parse_table[] = { [47866] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(435), 1, - sym__open_brace, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + ACTIONS(2281), 1, + sym__newline, + STATE(290), 1, sym_string, - STATE(1591), 1, + STATE(291), 1, sym__float_literal, - STATE(1594), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(839), 1, aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2391), 8, + ACTIONS(2279), 8, sym_return, sym_next, sym_break, @@ -74475,7 +74475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1280), 19, + STATE(106), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74498,68 +74498,68 @@ static const uint16_t ts_small_parse_table[] = { [47989] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(2395), 1, + ACTIONS(1043), 1, sym__newline, - STATE(435), 1, + STATE(402), 1, sym__open_brace, - STATE(833), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1591), 1, + STATE(1620), 1, sym__float_literal, - STATE(1594), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1625), 1, sym__double_quoted_string, - ACTIONS(1753), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2393), 8, + ACTIONS(2283), 8, sym_return, sym_next, sym_break, @@ -74568,7 +74568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1281), 19, + STATE(1574), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74591,68 +74591,68 @@ static const uint16_t ts_small_parse_table[] = { [48112] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(435), 1, + ACTIONS(2287), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1047), 1, + STATE(841), 1, + aux_sym_function_definition_repeat1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1619), 1, sym_string, - STATE(1591), 1, + STATE(1620), 1, sym__float_literal, - STATE(1594), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2397), 8, + ACTIONS(2285), 8, sym_return, sym_next, sym_break, @@ -74661,7 +74661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1282), 19, + STATE(1360), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74684,68 +74684,68 @@ static const uint16_t ts_small_parse_table[] = { [48235] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(435), 1, + ACTIONS(2291), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1047), 1, + STATE(842), 1, + aux_sym_function_definition_repeat1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1619), 1, sym_string, - STATE(1591), 1, + STATE(1620), 1, sym__float_literal, - STATE(1594), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2399), 8, + ACTIONS(2289), 8, sym_return, sym_next, sym_break, @@ -74754,7 +74754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1283), 19, + STATE(1335), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74777,68 +74777,68 @@ static const uint16_t ts_small_parse_table[] = { [48358] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(2403), 1, + ACTIONS(2295), 1, sym__newline, - STATE(435), 1, + STATE(402), 1, sym__open_brace, - STATE(834), 1, + STATE(853), 1, aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1619), 1, sym_string, - STATE(1591), 1, + STATE(1620), 1, sym__float_literal, - STATE(1594), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1625), 1, sym__double_quoted_string, - ACTIONS(1753), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2401), 8, + ACTIONS(2293), 8, sym_return, sym_next, sym_break, @@ -74847,7 +74847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1284), 19, + STATE(1345), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74870,68 +74870,68 @@ static const uint16_t ts_small_parse_table[] = { [48481] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1735), 1, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(435), 1, - sym__open_brace, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + STATE(290), 1, sym_string, - STATE(1591), 1, + STATE(291), 1, sym__float_literal, - STATE(1594), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2405), 8, + ACTIONS(2297), 8, sym_return, sym_next, sym_break, @@ -74940,7 +74940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1285), 19, + STATE(107), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -74963,68 +74963,68 @@ static const uint16_t ts_small_parse_table[] = { [48604] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2409), 1, + ACTIONS(2301), 1, sym__newline, - STATE(435), 1, - sym__open_brace, - STATE(836), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + STATE(290), 1, sym_string, - STATE(1591), 1, + STATE(291), 1, sym__float_literal, - STATE(1594), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(434), 1, + sym__open_brace, + STATE(847), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2407), 8, + ACTIONS(2299), 8, sym_return, sym_next, sym_break, @@ -75033,7 +75033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1286), 19, + STATE(108), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75086,28 +75086,28 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_string_literal, ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(392), 1, + STATE(402), 1, sym__open_brace, - STATE(1113), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1619), 1, sym_string, - STATE(1625), 1, + STATE(1620), 1, sym__float_literal, - STATE(1631), 1, + STATE(1624), 1, sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, @@ -75117,7 +75117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2411), 8, + ACTIONS(2303), 8, sym_return, sym_next, sym_break, @@ -75126,7 +75126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1392), 19, + STATE(1350), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75179,28 +75179,28 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_string_literal, ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(2415), 1, + ACTIONS(1043), 1, sym__newline, - STATE(392), 1, + STATE(402), 1, sym__open_brace, - STATE(868), 1, - aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1625), 1, + STATE(1620), 1, sym__float_literal, - STATE(1631), 1, + STATE(1624), 1, sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, @@ -75210,7 +75210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2413), 8, + ACTIONS(2305), 8, sym_return, sym_next, sym_break, @@ -75219,7 +75219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1427), 19, + STATE(1351), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75242,68 +75242,68 @@ static const uint16_t ts_small_parse_table[] = { [48973] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2419), 1, + ACTIONS(2309), 1, sym__newline, - STATE(435), 1, - sym__open_brace, - STATE(837), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + STATE(290), 1, sym_string, - STATE(1591), 1, + STATE(291), 1, sym__float_literal, - STATE(1594), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(434), 1, + sym__open_brace, + STATE(848), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2417), 8, + ACTIONS(2307), 8, sym_return, sym_next, sym_break, @@ -75312,7 +75312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1287), 19, + STATE(109), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75335,68 +75335,68 @@ static const uint16_t ts_small_parse_table[] = { [49096] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(435), 1, - sym__open_brace, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + ACTIONS(2313), 1, + sym__newline, + STATE(290), 1, sym_string, - STATE(1591), 1, + STATE(291), 1, sym__float_literal, - STATE(1594), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(851), 1, aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2421), 8, + ACTIONS(2311), 8, sym_return, sym_next, sym_break, @@ -75405,7 +75405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1288), 19, + STATE(110), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75428,68 +75428,68 @@ static const uint16_t ts_small_parse_table[] = { [49219] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(435), 1, + ACTIONS(2317), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1047), 1, + STATE(858), 1, + aux_sym_function_definition_repeat1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1619), 1, sym_string, - STATE(1591), 1, + STATE(1620), 1, sym__float_literal, - STATE(1594), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2423), 8, + ACTIONS(2315), 8, sym_return, sym_next, sym_break, @@ -75498,7 +75498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1289), 19, + STATE(1352), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75521,68 +75521,68 @@ static const uint16_t ts_small_parse_table[] = { [49342] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(2427), 1, + ACTIONS(2321), 1, sym__newline, - STATE(435), 1, + STATE(402), 1, sym__open_brace, - STATE(839), 1, + STATE(860), 1, aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1619), 1, sym_string, - STATE(1591), 1, + STATE(1620), 1, sym__float_literal, - STATE(1594), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1625), 1, sym__double_quoted_string, - ACTIONS(1753), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2425), 8, + ACTIONS(2319), 8, sym_return, sym_next, sym_break, @@ -75591,7 +75591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1290), 19, + STATE(1353), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75614,68 +75614,68 @@ static const uint16_t ts_small_parse_table[] = { [49465] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2431), 1, - sym__newline, - STATE(435), 1, - sym__open_brace, - STATE(844), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + STATE(290), 1, sym_string, - STATE(1591), 1, + STATE(291), 1, sym__float_literal, - STATE(1594), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2429), 8, + ACTIONS(2323), 8, sym_return, sym_next, sym_break, @@ -75684,7 +75684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1291), 19, + STATE(111), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75707,68 +75707,68 @@ static const uint16_t ts_small_parse_table[] = { [49588] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2435), 1, - sym__newline, - STATE(435), 1, - sym__open_brace, - STATE(845), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + STATE(290), 1, sym_string, - STATE(1591), 1, + STATE(291), 1, sym__float_literal, - STATE(1594), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2433), 8, + ACTIONS(2325), 8, sym_return, sym_next, sym_break, @@ -75777,7 +75777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1292), 19, + STATE(112), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75800,68 +75800,68 @@ static const uint16_t ts_small_parse_table[] = { [49711] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(435), 1, - sym__open_brace, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + ACTIONS(2329), 1, + sym__newline, + STATE(290), 1, sym_string, - STATE(1591), 1, + STATE(291), 1, sym__float_literal, - STATE(1594), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(855), 1, aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2437), 8, + ACTIONS(2327), 8, sym_return, sym_next, sym_break, @@ -75870,7 +75870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1293), 19, + STATE(113), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75893,68 +75893,68 @@ static const uint16_t ts_small_parse_table[] = { [49834] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2441), 1, + ACTIONS(2333), 1, sym__newline, - STATE(435), 1, - sym__open_brace, - STATE(849), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + STATE(290), 1, sym_string, - STATE(1591), 1, + STATE(291), 1, sym__float_literal, - STATE(1594), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(293), 1, sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(434), 1, + sym__open_brace, + STATE(856), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2439), 8, + ACTIONS(2331), 8, sym_return, sym_next, sym_break, @@ -75963,7 +75963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1294), 19, + STATE(114), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -75986,68 +75986,68 @@ static const uint16_t ts_small_parse_table[] = { [49957] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1735), 1, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(435), 1, - sym__open_brace, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + STATE(290), 1, sym_string, - STATE(1591), 1, + STATE(291), 1, sym__float_literal, - STATE(1594), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2443), 8, + ACTIONS(2335), 8, sym_return, sym_next, sym_break, @@ -76056,7 +76056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1295), 19, + STATE(115), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76079,68 +76079,68 @@ static const uint16_t ts_small_parse_table[] = { [50080] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1305), 1, - anon_sym_SQUOTE, - ACTIONS(1307), 1, - anon_sym_DQUOTE, - ACTIONS(1313), 1, - sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2447), 1, + ACTIONS(2339), 1, sym__newline, - STATE(386), 1, - sym__open_brace, - STATE(698), 1, - aux_sym_function_definition_repeat1, - STATE(1083), 1, - sym__open_parenthesis, - STATE(1583), 1, + STATE(290), 1, + sym_string, + STATE(291), 1, sym__float_literal, - STATE(1585), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1601), 1, - sym_string, - ACTIONS(1299), 2, + STATE(434), 1, + sym__open_brace, + STATE(859), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2445), 8, + ACTIONS(2337), 8, sym_return, sym_next, sym_break, @@ -76149,7 +76149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1261), 19, + STATE(116), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76172,68 +76172,68 @@ static const uint16_t ts_small_parse_table[] = { [50203] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(435), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1047), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1591), 1, + STATE(1620), 1, sym__float_literal, - STATE(1594), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2449), 8, + ACTIONS(2341), 8, sym_return, sym_next, sym_break, @@ -76242,7 +76242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1296), 19, + STATE(1354), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76265,68 +76265,68 @@ static const uint16_t ts_small_parse_table[] = { [50326] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(435), 1, + ACTIONS(2345), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1047), 1, + STATE(886), 1, + aux_sym_function_definition_repeat1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1619), 1, sym_string, - STATE(1591), 1, + STATE(1620), 1, sym__float_literal, - STATE(1594), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2451), 8, + ACTIONS(2343), 8, sym_return, sym_next, sym_break, @@ -76335,7 +76335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1297), 19, + STATE(1355), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76358,68 +76358,68 @@ static const uint16_t ts_small_parse_table[] = { [50449] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1735), 1, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(435), 1, - sym__open_brace, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + STATE(290), 1, sym_string, - STATE(1591), 1, + STATE(291), 1, sym__float_literal, - STATE(1594), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2453), 8, + ACTIONS(2347), 8, sym_return, sym_next, sym_break, @@ -76428,7 +76428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1298), 19, + STATE(117), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76451,68 +76451,68 @@ static const uint16_t ts_small_parse_table[] = { [50572] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1735), 1, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(435), 1, - sym__open_brace, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + STATE(290), 1, sym_string, - STATE(1591), 1, + STATE(291), 1, sym__float_literal, - STATE(1594), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2455), 8, + ACTIONS(2349), 8, sym_return, sym_next, sym_break, @@ -76521,7 +76521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1299), 19, + STATE(118), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76544,68 +76544,68 @@ static const uint16_t ts_small_parse_table[] = { [50695] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(435), 1, - sym__open_brace, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + ACTIONS(2353), 1, + sym__newline, + STATE(290), 1, sym_string, - STATE(1591), 1, + STATE(291), 1, sym__float_literal, - STATE(1594), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(862), 1, aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2457), 8, + ACTIONS(2351), 8, sym_return, sym_next, sym_break, @@ -76614,7 +76614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1300), 19, + STATE(18), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76637,68 +76637,68 @@ static const uint16_t ts_small_parse_table[] = { [50818] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(435), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1047), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1591), 1, + STATE(1620), 1, sym__float_literal, - STATE(1594), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2459), 8, + ACTIONS(2355), 8, sym_return, sym_next, sym_break, @@ -76707,7 +76707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1301), 19, + STATE(1410), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76730,68 +76730,68 @@ static const uint16_t ts_small_parse_table[] = { [50941] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1735), 1, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(435), 1, - sym__open_brace, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + STATE(290), 1, sym_string, - STATE(1591), 1, + STATE(291), 1, sym__float_literal, - STATE(1594), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2461), 8, + ACTIONS(2357), 8, sym_return, sym_next, sym_break, @@ -76800,7 +76800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1302), 19, + STATE(120), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76823,68 +76823,68 @@ static const uint16_t ts_small_parse_table[] = { [51064] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(435), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1047), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + STATE(1619), 1, sym_string, - STATE(1591), 1, + STATE(1620), 1, sym__float_literal, - STATE(1594), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2463), 8, + ACTIONS(2359), 8, sym_return, sym_next, sym_break, @@ -76893,7 +76893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1303), 19, + STATE(1412), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -76916,68 +76916,68 @@ static const uint16_t ts_small_parse_table[] = { [51187] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(435), 1, + ACTIONS(2363), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1047), 1, + STATE(974), 1, + aux_sym_function_definition_repeat1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1619), 1, sym_string, - STATE(1591), 1, + STATE(1620), 1, sym__float_literal, - STATE(1594), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2465), 8, + ACTIONS(2361), 8, sym_return, sym_next, sym_break, @@ -76986,7 +76986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1304), 19, + STATE(1448), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77009,68 +77009,68 @@ static const uint16_t ts_small_parse_table[] = { [51310] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1735), 1, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(435), 1, - sym__open_brace, - STATE(1047), 1, - sym__open_parenthesis, - STATE(1588), 1, + STATE(290), 1, sym_string, - STATE(1591), 1, + STATE(291), 1, sym__float_literal, - STATE(1594), 1, + STATE(292), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(293), 1, sym__double_quoted_string, - STATE(1604), 1, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2467), 8, + ACTIONS(2365), 8, sym_return, sym_next, sym_break, @@ -77079,7 +77079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1305), 19, + STATE(121), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77102,68 +77102,68 @@ static const uint16_t ts_small_parse_table[] = { [51433] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2401), 1, + sym__newline, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(1047), 1, + STATE(869), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2469), 8, + ACTIONS(2397), 8, sym_return, sym_next, sym_break, @@ -77172,7 +77172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1306), 19, + STATE(1290), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77195,68 +77195,68 @@ static const uint16_t ts_small_parse_table[] = { [51556] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - STATE(435), 1, + ACTIONS(2411), 1, + sym__newline, + STATE(437), 1, sym__open_brace, - STATE(1047), 1, + STATE(870), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2471), 8, + ACTIONS(2409), 8, sym_return, sym_next, sym_break, @@ -77265,7 +77265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1307), 19, + STATE(1291), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77288,68 +77288,68 @@ static const uint16_t ts_small_parse_table[] = { [51679] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - STATE(435), 1, + ACTIONS(2415), 1, + sym__newline, + STATE(437), 1, sym__open_brace, - STATE(1047), 1, + STATE(871), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2473), 8, + ACTIONS(2413), 8, sym_return, sym_next, sym_break, @@ -77358,7 +77358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1308), 19, + STATE(1292), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77381,68 +77381,68 @@ static const uint16_t ts_small_parse_table[] = { [51802] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2477), 1, + ACTIONS(2419), 1, sym__newline, - STATE(386), 1, + STATE(437), 1, sym__open_brace, - STATE(714), 1, + STATE(872), 1, aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, - sym__single_quoted_string, - STATE(1589), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1601), 1, + STATE(1577), 1, sym_string, - ACTIONS(1299), 2, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2475), 8, + ACTIONS(2417), 8, sym_return, sym_next, sym_break, @@ -77451,7 +77451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1262), 19, + STATE(1293), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77474,68 +77474,68 @@ static const uint16_t ts_small_parse_table[] = { [51925] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1283), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1285), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1287), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1289), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1291), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1293), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1295), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1297), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1301), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1303), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1305), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1315), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1317), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2481), 1, + ACTIONS(2423), 1, sym__newline, - STATE(386), 1, + STATE(437), 1, sym__open_brace, - STATE(718), 1, + STATE(873), 1, aux_sym_function_definition_repeat1, - STATE(1083), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1583), 1, - sym__float_literal, - STATE(1585), 1, - sym__single_quoted_string, - STATE(1589), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1601), 1, + STATE(1577), 1, sym_string, - ACTIONS(1299), 2, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1279), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1311), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2479), 8, + ACTIONS(2421), 8, sym_return, sym_next, sym_break, @@ -77544,7 +77544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1263), 19, + STATE(1294), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77567,68 +77567,68 @@ static const uint16_t ts_small_parse_table[] = { [52048] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2427), 1, sym__newline, - STATE(392), 1, + STATE(437), 1, sym__open_brace, - STATE(1113), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(887), 1, aux_sym_function_definition_repeat1, - STATE(1621), 1, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1576), 1, sym__double_quoted_string, - STATE(1624), 1, + STATE(1577), 1, sym_string, - STATE(1625), 1, + STATE(1578), 1, sym__float_literal, - STATE(1631), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(399), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2483), 8, + ACTIONS(2425), 8, sym_return, sym_next, sym_break, @@ -77637,7 +77637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1419), 19, + STATE(1301), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77660,68 +77660,68 @@ static const uint16_t ts_small_parse_table[] = { [52171] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2487), 1, - sym__newline, - STATE(392), 1, + STATE(437), 1, sym__open_brace, - STATE(879), 1, - aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1621), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1624), 1, + STATE(1577), 1, sym_string, - STATE(1625), 1, + STATE(1578), 1, sym__float_literal, - STATE(1631), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2485), 8, + ACTIONS(2429), 8, sym_return, sym_next, sym_break, @@ -77730,7 +77730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1414), 19, + STATE(1303), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77753,68 +77753,68 @@ static const uint16_t ts_small_parse_table[] = { [52294] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2491), 1, - sym__newline, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(851), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2489), 8, + ACTIONS(2431), 8, sym_return, sym_next, sym_break, @@ -77823,7 +77823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1309), 19, + STATE(1304), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77846,68 +77846,68 @@ static const uint16_t ts_small_parse_table[] = { [52417] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1735), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2493), 8, + ACTIONS(2433), 8, sym_return, sym_next, sym_break, @@ -77916,7 +77916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1310), 19, + STATE(1305), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -77939,68 +77939,68 @@ static const uint16_t ts_small_parse_table[] = { [52540] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(437), 1, sym__open_brace, - STATE(1092), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, + sym_string, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2495), 8, + ACTIONS(2435), 8, sym_return, sym_next, sym_break, @@ -78009,7 +78009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(153), 19, + STATE(1306), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78032,68 +78032,68 @@ static const uint16_t ts_small_parse_table[] = { [52663] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2499), 1, - sym__newline, - STATE(392), 1, + STATE(437), 1, sym__open_brace, - STATE(881), 1, - aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1621), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1624), 1, + STATE(1577), 1, sym_string, - STATE(1625), 1, + STATE(1578), 1, sym__float_literal, - STATE(1631), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2497), 8, + ACTIONS(2437), 8, sym_return, sym_next, sym_break, @@ -78102,7 +78102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1413), 19, + STATE(1307), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78125,68 +78125,68 @@ static const uint16_t ts_small_parse_table[] = { [52786] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2503), 1, + ACTIONS(2441), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(437), 1, sym__open_brace, - STATE(756), 1, + STATE(889), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1089), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, + sym_string, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2501), 8, + ACTIONS(2439), 8, sym_return, sym_next, sym_break, @@ -78195,7 +78195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(8), 19, + STATE(1308), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78218,68 +78218,68 @@ static const uint16_t ts_small_parse_table[] = { [52909] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2407), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + ACTIONS(2445), 1, + sym__newline, + STATE(437), 1, sym__open_brace, - STATE(1107), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(891), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, + sym_string, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2505), 8, + ACTIONS(2443), 8, sym_return, sym_next, sym_break, @@ -78288,7 +78288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(7), 19, + STATE(1310), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78311,68 +78311,68 @@ static const uint16_t ts_small_parse_table[] = { [53032] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2509), 1, + ACTIONS(2449), 1, sym__newline, - STATE(392), 1, + STATE(437), 1, sym__open_brace, - STATE(886), 1, + STATE(892), 1, aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1621), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1624), 1, + STATE(1577), 1, sym_string, - STATE(1625), 1, + STATE(1578), 1, sym__float_literal, - STATE(1631), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(399), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2507), 8, + ACTIONS(2447), 8, sym_return, sym_next, sym_break, @@ -78381,7 +78381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1412), 19, + STATE(1311), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78404,68 +78404,68 @@ static const uint16_t ts_small_parse_table[] = { [53155] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2453), 1, sym__newline, - STATE(423), 1, + STATE(437), 1, sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(893), 1, aux_sym_function_definition_repeat1, - STATE(1605), 1, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1576), 1, sym__double_quoted_string, - STATE(1627), 1, + STATE(1577), 1, sym_string, - STATE(1629), 1, + STATE(1578), 1, sym__float_literal, - STATE(1630), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2511), 8, + ACTIONS(2451), 8, sym_return, sym_next, sym_break, @@ -78474,7 +78474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1464), 19, + STATE(1312), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78497,68 +78497,68 @@ static const uint16_t ts_small_parse_table[] = { [53278] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2515), 1, + ACTIONS(2457), 1, sym__newline, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(853), 1, + STATE(894), 1, aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - ACTIONS(1753), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2513), 8, + ACTIONS(2455), 8, sym_return, sym_next, sym_break, @@ -78567,7 +78567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1311), 19, + STATE(1313), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78590,68 +78590,68 @@ static const uint16_t ts_small_parse_table[] = { [53401] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2461), 1, sym__newline, - STATE(392), 1, + STATE(437), 1, sym__open_brace, - STATE(1113), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(895), 1, aux_sym_function_definition_repeat1, - STATE(1621), 1, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1576), 1, sym__double_quoted_string, - STATE(1624), 1, + STATE(1577), 1, sym_string, - STATE(1625), 1, + STATE(1578), 1, sym__float_literal, - STATE(1631), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(399), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2517), 8, + ACTIONS(2459), 8, sym_return, sym_next, sym_break, @@ -78660,7 +78660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1411), 19, + STATE(1314), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78683,68 +78683,68 @@ static const uint16_t ts_small_parse_table[] = { [53524] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2521), 1, + ACTIONS(2465), 1, sym__newline, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(854), 1, + STATE(896), 1, aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - ACTIONS(1753), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2519), 8, + ACTIONS(2463), 8, sym_return, sym_next, sym_break, @@ -78753,7 +78753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1312), 19, + STATE(1315), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78776,68 +78776,68 @@ static const uint16_t ts_small_parse_table[] = { [53647] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2469), 1, sym__newline, - STATE(392), 1, + STATE(437), 1, sym__open_brace, - STATE(1113), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(897), 1, aux_sym_function_definition_repeat1, - STATE(1621), 1, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1576), 1, sym__double_quoted_string, - STATE(1624), 1, + STATE(1577), 1, sym_string, - STATE(1625), 1, + STATE(1578), 1, sym__float_literal, - STATE(1631), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(399), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2523), 8, + ACTIONS(2467), 8, sym_return, sym_next, sym_break, @@ -78846,7 +78846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1410), 19, + STATE(1317), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78869,68 +78869,68 @@ static const uint16_t ts_small_parse_table[] = { [53770] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2527), 1, + ACTIONS(2473), 1, sym__newline, - STATE(392), 1, + STATE(437), 1, sym__open_brace, - STATE(891), 1, + STATE(898), 1, aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1621), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1624), 1, + STATE(1577), 1, sym_string, - STATE(1625), 1, + STATE(1578), 1, sym__float_literal, - STATE(1631), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(399), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2525), 8, + ACTIONS(2471), 8, sym_return, sym_next, sym_break, @@ -78939,7 +78939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1409), 19, + STATE(1318), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -78962,68 +78962,68 @@ static const uint16_t ts_small_parse_table[] = { [53893] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2531), 1, + ACTIONS(2477), 1, sym__newline, - STATE(392), 1, + STATE(437), 1, sym__open_brace, - STATE(893), 1, + STATE(899), 1, aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1621), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1624), 1, + STATE(1577), 1, sym_string, - STATE(1625), 1, + STATE(1578), 1, sym__float_literal, - STATE(1631), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(399), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2529), 8, + ACTIONS(2475), 8, sym_return, sym_next, sym_break, @@ -79032,7 +79032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1408), 19, + STATE(1319), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79055,68 +79055,68 @@ static const uint16_t ts_small_parse_table[] = { [54016] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2407), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + ACTIONS(2481), 1, + sym__newline, + STATE(437), 1, sym__open_brace, - STATE(1107), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(900), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, + sym_string, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2533), 8, + ACTIONS(2479), 8, sym_return, sym_next, sym_break, @@ -79125,7 +79125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(70), 19, + STATE(1320), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79148,68 +79148,68 @@ static const uint16_t ts_small_parse_table[] = { [54139] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2537), 1, + ACTIONS(2485), 1, sym__newline, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(855), 1, + STATE(901), 1, aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - ACTIONS(1753), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2535), 8, + ACTIONS(2483), 8, sym_return, sym_next, sym_break, @@ -79218,7 +79218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1313), 19, + STATE(1321), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79271,28 +79271,28 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_string_literal, ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(423), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(392), 1, + STATE(402), 1, sym__open_brace, - STATE(1113), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1624), 1, + STATE(1619), 1, sym_string, - STATE(1625), 1, + STATE(1620), 1, sym__float_literal, - STATE(1631), 1, + STATE(1624), 1, sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, @@ -79302,7 +79302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2539), 8, + ACTIONS(2487), 8, sym_return, sym_next, sym_break, @@ -79311,7 +79311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1407), 19, + STATE(1450), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79334,68 +79334,68 @@ static const uint16_t ts_small_parse_table[] = { [54385] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2543), 1, - sym__newline, - STATE(392), 1, + STATE(437), 1, sym__open_brace, - STATE(897), 1, - aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1621), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1624), 1, + STATE(1577), 1, sym_string, - STATE(1625), 1, + STATE(1578), 1, sym__float_literal, - STATE(1631), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2541), 8, + ACTIONS(2489), 8, sym_return, sym_next, sym_break, @@ -79404,7 +79404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1406), 19, + STATE(1323), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79427,68 +79427,68 @@ static const uint16_t ts_small_parse_table[] = { [54508] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2547), 1, + ACTIONS(2493), 1, sym__newline, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(856), 1, + STATE(902), 1, aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - ACTIONS(1753), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2545), 8, + ACTIONS(2491), 8, sym_return, sym_next, sym_break, @@ -79497,7 +79497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1314), 19, + STATE(1324), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79520,68 +79520,68 @@ static const uint16_t ts_small_parse_table[] = { [54631] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2551), 1, - sym__newline, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(857), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2549), 8, + ACTIONS(2495), 8, sym_return, sym_next, sym_break, @@ -79590,7 +79590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1315), 19, + STATE(1325), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79613,68 +79613,68 @@ static const uint16_t ts_small_parse_table[] = { [54754] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2555), 1, - sym__newline, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(858), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2553), 8, + ACTIONS(2497), 8, sym_return, sym_next, sym_break, @@ -79683,7 +79683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1316), 19, + STATE(1326), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79706,68 +79706,68 @@ static const uint16_t ts_small_parse_table[] = { [54877] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(392), 1, + STATE(437), 1, sym__open_brace, - STATE(1113), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1624), 1, + STATE(1577), 1, sym_string, - STATE(1625), 1, + STATE(1578), 1, sym__float_literal, - STATE(1631), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2557), 8, + ACTIONS(2499), 8, sym_return, sym_next, sym_break, @@ -79776,7 +79776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1405), 19, + STATE(1327), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79799,68 +79799,68 @@ static const uint16_t ts_small_parse_table[] = { [55000] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2561), 1, - sym__newline, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(859), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2559), 8, + ACTIONS(2501), 8, sym_return, sym_next, sym_break, @@ -79869,7 +79869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1317), 19, + STATE(1328), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79892,68 +79892,68 @@ static const uint16_t ts_small_parse_table[] = { [55123] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(392), 1, + STATE(437), 1, sym__open_brace, - STATE(1113), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1624), 1, + STATE(1577), 1, sym_string, - STATE(1625), 1, + STATE(1578), 1, sym__float_literal, - STATE(1631), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2563), 8, + ACTIONS(2503), 8, sym_return, sym_next, sym_break, @@ -79962,7 +79962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1404), 19, + STATE(1329), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -79985,68 +79985,68 @@ static const uint16_t ts_small_parse_table[] = { [55246] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2567), 1, - sym__newline, - STATE(392), 1, + STATE(437), 1, sym__open_brace, - STATE(901), 1, - aux_sym_function_definition_repeat1, - STATE(1113), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1621), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1624), 1, + STATE(1577), 1, sym_string, - STATE(1625), 1, + STATE(1578), 1, sym__float_literal, - STATE(1631), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2565), 8, + ACTIONS(2505), 8, sym_return, sym_next, sym_break, @@ -80055,7 +80055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1403), 19, + STATE(1330), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80078,68 +80078,68 @@ static const uint16_t ts_small_parse_table[] = { [55369] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2571), 1, - sym__newline, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(860), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2569), 8, + ACTIONS(2507), 8, sym_return, sym_next, sym_break, @@ -80148,7 +80148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1318), 19, + STATE(1331), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80171,68 +80171,68 @@ static const uint16_t ts_small_parse_table[] = { [55492] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2575), 1, - sym__newline, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(861), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2573), 8, + ACTIONS(2509), 8, sym_return, sym_next, sym_break, @@ -80241,7 +80241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1319), 19, + STATE(1332), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80264,68 +80264,68 @@ static const uint16_t ts_small_parse_table[] = { [55615] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(392), 1, + STATE(437), 1, sym__open_brace, - STATE(1113), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1624), 1, + STATE(1577), 1, sym_string, - STATE(1625), 1, + STATE(1578), 1, sym__float_literal, - STATE(1631), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2577), 8, + ACTIONS(2511), 8, sym_return, sym_next, sym_break, @@ -80334,7 +80334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1402), 19, + STATE(1254), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80357,68 +80357,68 @@ static const uint16_t ts_small_parse_table[] = { [55738] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2581), 1, - sym__newline, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(862), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2579), 8, + ACTIONS(2513), 8, sym_return, sym_next, sym_break, @@ -80427,7 +80427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1320), 19, + STATE(1167), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80450,68 +80450,68 @@ static const uint16_t ts_small_parse_table[] = { [55861] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2585), 1, - sym__newline, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(863), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2583), 8, + ACTIONS(2515), 8, sym_return, sym_next, sym_break, @@ -80520,7 +80520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1321), 19, + STATE(1168), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80543,68 +80543,68 @@ static const uint16_t ts_small_parse_table[] = { [55984] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2589), 1, - sym__newline, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(865), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2587), 8, + ACTIONS(2517), 8, sym_return, sym_next, sym_break, @@ -80613,7 +80613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1323), 19, + STATE(1169), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80636,68 +80636,68 @@ static const uint16_t ts_small_parse_table[] = { [56107] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(381), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(383), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(385), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(387), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(389), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(391), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(393), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(395), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(397), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(401), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(403), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(405), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(407), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(419), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(421), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(392), 1, + STATE(437), 1, sym__open_brace, - STATE(1113), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1624), 1, + STATE(1577), 1, sym_string, - STATE(1625), 1, + STATE(1578), 1, sym__float_literal, - STATE(1631), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(399), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1039), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(413), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2591), 8, + ACTIONS(2519), 8, sym_return, sym_next, sym_break, @@ -80706,7 +80706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1399), 19, + STATE(1170), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80729,68 +80729,68 @@ static const uint16_t ts_small_parse_table[] = { [56230] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2407), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(437), 1, sym__open_brace, - STATE(1063), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, + sym_string, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2593), 8, + ACTIONS(2521), 8, sym_return, sym_next, sym_break, @@ -80799,7 +80799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(118), 19, + STATE(1171), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80822,68 +80822,68 @@ static const uint16_t ts_small_parse_table[] = { [56353] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - STATE(435), 1, + ACTIONS(2525), 1, + sym__newline, + STATE(437), 1, sym__open_brace, - STATE(1047), 1, + STATE(904), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2595), 8, + ACTIONS(2523), 8, sym_return, sym_next, sym_break, @@ -80892,7 +80892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1329), 19, + STATE(1172), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -80915,68 +80915,68 @@ static const uint16_t ts_small_parse_table[] = { [56476] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1735), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2597), 8, + ACTIONS(2527), 8, sym_return, sym_next, sym_break, @@ -80985,7 +80985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1327), 19, + STATE(1173), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81008,68 +81008,68 @@ static const uint16_t ts_small_parse_table[] = { [56599] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2601), 1, + ACTIONS(2531), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(437), 1, sym__open_brace, - STATE(917), 1, + STATE(908), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1089), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, + sym_string, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2599), 8, + ACTIONS(2529), 8, sym_return, sym_next, sym_break, @@ -81078,7 +81078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(99), 19, + STATE(1174), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81101,68 +81101,68 @@ static const uint16_t ts_small_parse_table[] = { [56722] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2605), 1, + ACTIONS(2535), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(437), 1, sym__open_brace, - STATE(919), 1, + STATE(909), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1089), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, + sym_string, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2603), 8, + ACTIONS(2533), 8, sym_return, sym_next, sym_break, @@ -81171,7 +81171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(79), 19, + STATE(1175), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81194,68 +81194,68 @@ static const uint16_t ts_small_parse_table[] = { [56845] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2609), 1, + ACTIONS(2539), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(437), 1, sym__open_brace, - STATE(921), 1, + STATE(912), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1089), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, + sym_string, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2607), 8, + ACTIONS(2537), 8, sym_return, sym_next, sym_break, @@ -81264,7 +81264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(78), 19, + STATE(1177), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81287,68 +81287,68 @@ static const uint16_t ts_small_parse_table[] = { [56968] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2613), 1, - sym__newline, - STATE(289), 1, + STATE(437), 1, + sym__open_brace, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1576), 1, sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, + STATE(1577), 1, sym_string, - STATE(382), 1, - sym__open_brace, - STATE(923), 1, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, - sym__open_parenthesis, - ACTIONS(1061), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2611), 8, + ACTIONS(2541), 8, sym_return, sym_next, sym_break, @@ -81357,7 +81357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(76), 19, + STATE(1178), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81380,68 +81380,68 @@ static const uint16_t ts_small_parse_table[] = { [57091] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2617), 1, - sym__newline, - STATE(289), 1, + STATE(437), 1, + sym__open_brace, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1576), 1, sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, + STATE(1577), 1, sym_string, - STATE(382), 1, - sym__open_brace, - STATE(925), 1, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, - sym__open_parenthesis, - ACTIONS(1061), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2615), 8, + ACTIONS(2543), 8, sym_return, sym_next, sym_break, @@ -81450,7 +81450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(64), 19, + STATE(1179), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81473,68 +81473,68 @@ static const uint16_t ts_small_parse_table[] = { [57214] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - STATE(435), 1, + ACTIONS(2547), 1, + sym__newline, + STATE(437), 1, sym__open_brace, - STATE(1047), 1, + STATE(914), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2619), 8, + ACTIONS(2545), 8, sym_return, sym_next, sym_break, @@ -81543,7 +81543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1325), 19, + STATE(1180), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81566,68 +81566,68 @@ static const uint16_t ts_small_parse_table[] = { [57337] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2623), 1, + ACTIONS(2551), 1, sym__newline, - STATE(423), 1, + STATE(437), 1, sym__open_brace, - STATE(545), 1, + STATE(915), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1605), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1627), 1, + STATE(1577), 1, sym_string, - STATE(1629), 1, + STATE(1578), 1, sym__float_literal, - STATE(1630), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2621), 8, + ACTIONS(2549), 8, sym_return, sym_next, sym_break, @@ -81636,7 +81636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1381), 19, + STATE(1181), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81659,68 +81659,68 @@ static const uint16_t ts_small_parse_table[] = { [57460] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(423), 1, + STATE(437), 1, sym__open_brace, - STATE(1096), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1627), 1, + STATE(1577), 1, sym_string, - STATE(1629), 1, + STATE(1578), 1, sym__float_literal, - STATE(1630), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2625), 8, + ACTIONS(2553), 8, sym_return, sym_next, sym_break, @@ -81729,7 +81729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1383), 19, + STATE(1182), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81752,68 +81752,68 @@ static const uint16_t ts_small_parse_table[] = { [57583] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1735), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - STATE(435), 1, + ACTIONS(2557), 1, + sym__newline, + STATE(437), 1, sym__open_brace, - STATE(1047), 1, + STATE(917), 1, + aux_sym_function_definition_repeat1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2627), 8, + ACTIONS(2555), 8, sym_return, sym_next, sym_break, @@ -81822,7 +81822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1333), 19, + STATE(1183), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81845,68 +81845,68 @@ static const uint16_t ts_small_parse_table[] = { [57706] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1735), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1753), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2629), 8, + ACTIONS(2559), 8, sym_return, sym_next, sym_break, @@ -81915,7 +81915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1331), 19, + STATE(1184), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -81938,68 +81938,68 @@ static const uint16_t ts_small_parse_table[] = { [57829] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2633), 1, - sym__newline, - STATE(289), 1, + STATE(437), 1, + sym__open_brace, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1576), 1, sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, + STATE(1577), 1, sym_string, - STATE(382), 1, - sym__open_brace, - STATE(950), 1, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, - sym__open_parenthesis, - ACTIONS(1061), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2631), 8, + ACTIONS(2561), 8, sym_return, sym_next, sym_break, @@ -82008,7 +82008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(61), 19, + STATE(1185), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82031,68 +82031,68 @@ static const uint16_t ts_small_parse_table[] = { [57952] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2637), 1, + ACTIONS(2565), 1, sym__newline, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(871), 1, + STATE(918), 1, aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - ACTIONS(1753), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2635), 8, + ACTIONS(2563), 8, sym_return, sym_next, sym_break, @@ -82101,7 +82101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1324), 19, + STATE(1186), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82124,68 +82124,68 @@ static const uint16_t ts_small_parse_table[] = { [58075] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2407), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(437), 1, sym__open_brace, - STATE(1107), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, + sym_string, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2639), 8, + ACTIONS(2567), 8, sym_return, sym_next, sym_break, @@ -82194,7 +82194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(60), 19, + STATE(1187), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82217,68 +82217,68 @@ static const uint16_t ts_small_parse_table[] = { [58198] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2643), 1, - sym__newline, - STATE(435), 1, + STATE(437), 1, sym__open_brace, - STATE(903), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, sym_string, - STATE(1591), 1, + STATE(1578), 1, sym__float_literal, - STATE(1594), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2641), 8, + ACTIONS(2569), 8, sym_return, sym_next, sym_break, @@ -82287,7 +82287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1167), 19, + STATE(1188), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82310,68 +82310,68 @@ static const uint16_t ts_small_parse_table[] = { [58321] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1071), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2605), 1, sym__newline, - ACTIONS(1073), 1, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(1107), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(925), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2645), 8, + ACTIONS(2601), 8, sym_return, sym_next, sym_break, @@ -82380,7 +82380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(59), 19, + STATE(1189), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82403,68 +82403,68 @@ static const uint16_t ts_small_parse_table[] = { [58444] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2597), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2599), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2607), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2649), 1, + ACTIONS(2615), 1, sym__newline, - STATE(435), 1, + STATE(441), 1, sym__open_brace, - STATE(904), 1, + STATE(926), 1, aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1592), 1, sym_string, - STATE(1591), 1, + STATE(1593), 1, sym__float_literal, STATE(1594), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1595), 1, sym__double_quoted_string, - ACTIONS(1753), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2647), 8, + ACTIONS(2613), 8, sym_return, sym_next, sym_break, @@ -82473,7 +82473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1332), 19, + STATE(1190), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82496,68 +82496,68 @@ static const uint16_t ts_small_parse_table[] = { [58567] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + ACTIONS(2619), 1, + sym__newline, + STATE(441), 1, sym__open_brace, - STATE(1107), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(927), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2651), 8, + ACTIONS(2617), 8, sym_return, sym_next, sym_break, @@ -82566,7 +82566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(58), 19, + STATE(1191), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82589,68 +82589,68 @@ static const uint16_t ts_small_parse_table[] = { [58690] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2597), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2599), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2607), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2655), 1, + ACTIONS(2623), 1, sym__newline, - STATE(435), 1, + STATE(441), 1, sym__open_brace, - STATE(910), 1, + STATE(928), 1, aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1592), 1, sym_string, - STATE(1591), 1, + STATE(1593), 1, sym__float_literal, STATE(1594), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1595), 1, sym__double_quoted_string, - ACTIONS(1753), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2653), 8, + ACTIONS(2621), 8, sym_return, sym_next, sym_break, @@ -82659,7 +82659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1330), 19, + STATE(1192), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82682,68 +82682,68 @@ static const uint16_t ts_small_parse_table[] = { [58813] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + ACTIONS(2627), 1, + sym__newline, + STATE(441), 1, sym__open_brace, - STATE(1107), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(929), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2657), 8, + ACTIONS(2625), 8, sym_return, sym_next, sym_break, @@ -82752,7 +82752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(57), 19, + STATE(1193), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82775,68 +82775,68 @@ static const uint16_t ts_small_parse_table[] = { [58936] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2597), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2599), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2607), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2661), 1, + ACTIONS(2631), 1, sym__newline, - STATE(435), 1, + STATE(441), 1, sym__open_brace, - STATE(913), 1, + STATE(942), 1, aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1592), 1, sym_string, - STATE(1591), 1, + STATE(1593), 1, sym__float_literal, STATE(1594), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1595), 1, sym__double_quoted_string, - ACTIONS(1753), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2659), 8, + ACTIONS(2629), 8, sym_return, sym_next, sym_break, @@ -82845,7 +82845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1328), 19, + STATE(1196), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82868,68 +82868,68 @@ static const uint16_t ts_small_parse_table[] = { [59059] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2663), 8, + ACTIONS(2633), 8, sym_return, sym_next, sym_break, @@ -82938,7 +82938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(56), 19, + STATE(1197), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -82961,68 +82961,68 @@ static const uint16_t ts_small_parse_table[] = { [59182] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1737), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1739), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1741), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1743), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1745), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1747), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1751), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1755), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1757), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1759), 1, + ACTIONS(2597), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(2599), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(2607), 1, sym__raw_string_literal, - ACTIONS(1769), 1, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1771), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2667), 1, - sym__newline, - STATE(435), 1, + STATE(441), 1, sym__open_brace, - STATE(914), 1, - aux_sym_function_definition_repeat1, - STATE(1047), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1588), 1, + STATE(1592), 1, sym_string, - STATE(1591), 1, + STATE(1593), 1, sym__float_literal, STATE(1594), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1595), 1, sym__double_quoted_string, - ACTIONS(1753), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1765), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2665), 8, + ACTIONS(2635), 8, sym_return, sym_next, sym_break, @@ -83031,7 +83031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1326), 19, + STATE(1198), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83054,68 +83054,68 @@ static const uint16_t ts_small_parse_table[] = { [59305] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(441), 1, sym__open_brace, - STATE(1063), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2669), 8, + ACTIONS(2637), 8, sym_return, sym_next, sym_break, @@ -83124,7 +83124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(81), 19, + STATE(1199), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83147,68 +83147,68 @@ static const uint16_t ts_small_parse_table[] = { [59428] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(441), 1, sym__open_brace, - STATE(1063), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2671), 8, + ACTIONS(2639), 8, sym_return, sym_next, sym_break, @@ -83217,7 +83217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(82), 19, + STATE(1200), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83240,68 +83240,68 @@ static const uint16_t ts_small_parse_table[] = { [59551] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2675), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(441), 1, sym__open_brace, - STATE(1006), 1, - aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1094), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2673), 8, + ACTIONS(2641), 8, sym_return, sym_next, sym_break, @@ -83310,7 +83310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(158), 19, + STATE(1201), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83333,68 +83333,68 @@ static const uint16_t ts_small_parse_table[] = { [59674] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2679), 1, + ACTIONS(2645), 1, sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(441), 1, sym__open_brace, - STATE(927), 1, + STATE(944), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1094), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2677), 8, + ACTIONS(2643), 8, sym_return, sym_next, sym_break, @@ -83403,7 +83403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(83), 19, + STATE(1166), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83426,68 +83426,68 @@ static const uint16_t ts_small_parse_table[] = { [59797] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2683), 1, + ACTIONS(2649), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(962), 1, + STATE(946), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2681), 8, + ACTIONS(2647), 8, sym_return, sym_next, sym_break, @@ -83496,7 +83496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(55), 19, + STATE(1204), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83519,68 +83519,68 @@ static const uint16_t ts_small_parse_table[] = { [59920] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2687), 1, + ACTIONS(2653), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(966), 1, + STATE(947), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2685), 8, + ACTIONS(2651), 8, sym_return, sym_next, sym_break, @@ -83589,7 +83589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(20), 19, + STATE(1205), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83612,68 +83612,68 @@ static const uint16_t ts_small_parse_table[] = { [60043] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2691), 1, + ACTIONS(2657), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(968), 1, + STATE(948), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2689), 8, + ACTIONS(2655), 8, sym_return, sym_next, sym_break, @@ -83682,7 +83682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(21), 19, + STATE(1206), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83705,68 +83705,68 @@ static const uint16_t ts_small_parse_table[] = { [60166] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2695), 1, + ACTIONS(2661), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(970), 1, + STATE(949), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2693), 8, + ACTIONS(2659), 8, sym_return, sym_next, sym_break, @@ -83775,7 +83775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(22), 19, + STATE(1207), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83798,68 +83798,68 @@ static const uint16_t ts_small_parse_table[] = { [60289] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2699), 1, + ACTIONS(2665), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(972), 1, + STATE(950), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2697), 8, + ACTIONS(2663), 8, sym_return, sym_next, sym_break, @@ -83868,7 +83868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(23), 19, + STATE(1208), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83891,68 +83891,68 @@ static const uint16_t ts_small_parse_table[] = { [60412] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2703), 1, + ACTIONS(2669), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(974), 1, + STATE(951), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2701), 8, + ACTIONS(2667), 8, sym_return, sym_next, sym_break, @@ -83961,7 +83961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(24), 19, + STATE(1209), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -83984,68 +83984,68 @@ static const uint16_t ts_small_parse_table[] = { [60535] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2707), 1, + ACTIONS(2673), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(976), 1, + STATE(952), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2705), 8, + ACTIONS(2671), 8, sym_return, sym_next, sym_break, @@ -84054,7 +84054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(25), 19, + STATE(1211), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84077,68 +84077,68 @@ static const uint16_t ts_small_parse_table[] = { [60658] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2711), 1, + ACTIONS(2677), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(978), 1, + STATE(953), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2709), 8, + ACTIONS(2675), 8, sym_return, sym_next, sym_break, @@ -84147,7 +84147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(26), 19, + STATE(1212), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84170,68 +84170,68 @@ static const uint16_t ts_small_parse_table[] = { [60781] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2715), 1, + ACTIONS(2681), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(980), 1, + STATE(954), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2713), 8, + ACTIONS(2679), 8, sym_return, sym_next, sym_break, @@ -84240,7 +84240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(27), 19, + STATE(1213), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84263,68 +84263,68 @@ static const uint16_t ts_small_parse_table[] = { [60904] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2719), 1, + ACTIONS(2685), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(982), 1, + STATE(955), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2717), 8, + ACTIONS(2683), 8, sym_return, sym_next, sym_break, @@ -84333,7 +84333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(28), 19, + STATE(1214), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84356,68 +84356,68 @@ static const uint16_t ts_small_parse_table[] = { [61027] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2723), 1, + ACTIONS(2689), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(984), 1, + STATE(956), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2721), 8, + ACTIONS(2687), 8, sym_return, sym_next, sym_break, @@ -84426,7 +84426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(29), 19, + STATE(1216), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84449,68 +84449,68 @@ static const uint16_t ts_small_parse_table[] = { [61150] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2727), 1, - sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(986), 1, - aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2725), 8, + ACTIONS(2691), 8, sym_return, sym_next, sym_break, @@ -84519,7 +84519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(30), 19, + STATE(1218), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84542,68 +84542,68 @@ static const uint16_t ts_small_parse_table[] = { [61273] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1181), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + ACTIONS(2695), 1, + sym__newline, + STATE(441), 1, sym__open_brace, - STATE(1063), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(957), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2729), 8, + ACTIONS(2693), 8, sym_return, sym_next, sym_break, @@ -84612,7 +84612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(84), 19, + STATE(1219), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84635,68 +84635,68 @@ static const uint16_t ts_small_parse_table[] = { [61396] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(441), 1, sym__open_brace, - STATE(1063), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2731), 8, + ACTIONS(2697), 8, sym_return, sym_next, sym_break, @@ -84705,7 +84705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(85), 19, + STATE(1220), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84728,68 +84728,68 @@ static const uint16_t ts_small_parse_table[] = { [61519] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(2597), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(2599), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(2607), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(423), 1, + STATE(441), 1, sym__open_brace, - STATE(1096), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1592), 1, sym_string, - STATE(1629), 1, + STATE(1593), 1, sym__float_literal, - STATE(1630), 1, + STATE(1594), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2733), 8, + ACTIONS(2699), 8, sym_return, sym_next, sym_break, @@ -84798,7 +84798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1426), 19, + STATE(1221), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84821,68 +84821,68 @@ static const uint16_t ts_small_parse_table[] = { [61642] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2737), 1, - sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(441), 1, + sym__open_brace, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, sym_string, - STATE(302), 1, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, sym__double_quoted_string, - STATE(444), 1, - sym__open_brace, - STATE(928), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, - sym__open_parenthesis, - ACTIONS(1199), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2735), 8, + ACTIONS(2701), 8, sym_return, sym_next, sym_break, @@ -84891,7 +84891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(86), 19, + STATE(1222), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -84914,68 +84914,68 @@ static const uint16_t ts_small_parse_table[] = { [61765] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(441), 1, sym__open_brace, - STATE(1063), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2739), 8, + ACTIONS(2703), 8, sym_return, sym_next, sym_break, @@ -84984,7 +84984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(87), 19, + STATE(1223), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85007,68 +85007,68 @@ static const uint16_t ts_small_parse_table[] = { [61888] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(441), 1, sym__open_brace, - STATE(1063), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2741), 8, + ACTIONS(2705), 8, sym_return, sym_next, sym_break, @@ -85077,7 +85077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(119), 19, + STATE(1224), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85100,68 +85100,68 @@ static const uint16_t ts_small_parse_table[] = { [62011] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2745), 1, - sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(441), 1, + sym__open_brace, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, sym_string, - STATE(302), 1, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, sym__double_quoted_string, - STATE(444), 1, - sym__open_brace, - STATE(943), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, - sym__open_parenthesis, - ACTIONS(1199), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2743), 8, + ACTIONS(2707), 8, sym_return, sym_next, sym_break, @@ -85170,7 +85170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(88), 19, + STATE(1225), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85193,68 +85193,68 @@ static const uint16_t ts_small_parse_table[] = { [62134] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2747), 8, + ACTIONS(2709), 8, sym_return, sym_next, sym_break, @@ -85263,7 +85263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(31), 19, + STATE(1226), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85286,68 +85286,68 @@ static const uint16_t ts_small_parse_table[] = { [62257] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2751), 1, - sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(1000), 1, - aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2749), 8, + ACTIONS(2711), 8, sym_return, sym_next, sym_break, @@ -85356,7 +85356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(32), 19, + STATE(1227), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85379,68 +85379,68 @@ static const uint16_t ts_small_parse_table[] = { [62380] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2753), 8, + ACTIONS(2713), 8, sym_return, sym_next, sym_break, @@ -85449,7 +85449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(69), 19, + STATE(1228), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85472,68 +85472,68 @@ static const uint16_t ts_small_parse_table[] = { [62503] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(2597), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(2599), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(2607), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(423), 1, + STATE(441), 1, sym__open_brace, - STATE(1096), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1592), 1, sym_string, - STATE(1629), 1, + STATE(1593), 1, sym__float_literal, - STATE(1630), 1, + STATE(1594), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2755), 8, + ACTIONS(2715), 8, sym_return, sym_next, sym_break, @@ -85542,7 +85542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1422), 19, + STATE(1229), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85565,68 +85565,68 @@ static const uint16_t ts_small_parse_table[] = { [62626] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2759), 1, - sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(441), 1, + sym__open_brace, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, sym_string, - STATE(302), 1, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, sym__double_quoted_string, - STATE(444), 1, - sym__open_brace, - STATE(944), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, - sym__open_parenthesis, - ACTIONS(1199), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2757), 8, + ACTIONS(2717), 8, sym_return, sym_next, sym_break, @@ -85635,7 +85635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(89), 19, + STATE(1230), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85658,68 +85658,68 @@ static const uint16_t ts_small_parse_table[] = { [62749] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(2597), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(2599), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(2607), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(423), 1, + STATE(441), 1, sym__open_brace, - STATE(1096), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1592), 1, sym_string, - STATE(1629), 1, + STATE(1593), 1, sym__float_literal, - STATE(1630), 1, + STATE(1594), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2761), 8, + ACTIONS(2719), 8, sym_return, sym_next, sym_break, @@ -85728,7 +85728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1428), 19, + STATE(1231), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85751,68 +85751,68 @@ static const uint16_t ts_small_parse_table[] = { [62872] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(441), 1, sym__open_brace, - STATE(1063), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2763), 8, + ACTIONS(2721), 8, sym_return, sym_next, sym_break, @@ -85821,7 +85821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(90), 19, + STATE(1232), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85844,68 +85844,68 @@ static const uint16_t ts_small_parse_table[] = { [62995] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(2597), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(2599), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(2607), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(423), 1, + STATE(441), 1, sym__open_brace, - STATE(1096), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1592), 1, sym_string, - STATE(1629), 1, + STATE(1593), 1, sym__float_literal, - STATE(1630), 1, + STATE(1594), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2765), 8, + ACTIONS(2723), 8, sym_return, sym_next, sym_break, @@ -85914,7 +85914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1429), 19, + STATE(1233), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -85937,68 +85937,68 @@ static const uint16_t ts_small_parse_table[] = { [63118] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1181), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + ACTIONS(2727), 1, + sym__newline, + STATE(441), 1, sym__open_brace, - STATE(1063), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(959), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2767), 8, + ACTIONS(2725), 8, sym_return, sym_next, sym_break, @@ -86007,7 +86007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(120), 19, + STATE(1234), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86030,68 +86030,68 @@ static const uint16_t ts_small_parse_table[] = { [63241] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(2597), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(2599), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(2607), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(423), 1, + STATE(441), 1, sym__open_brace, - STATE(1096), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1592), 1, sym_string, - STATE(1629), 1, + STATE(1593), 1, sym__float_literal, - STATE(1630), 1, + STATE(1594), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2769), 8, + ACTIONS(2729), 8, sym_return, sym_next, sym_break, @@ -86100,7 +86100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1431), 19, + STATE(1235), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86123,68 +86123,68 @@ static const uint16_t ts_small_parse_table[] = { [63364] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1181), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + ACTIONS(2733), 1, + sym__newline, + STATE(441), 1, sym__open_brace, - STATE(1063), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(963), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2771), 8, + ACTIONS(2731), 8, sym_return, sym_next, sym_break, @@ -86193,7 +86193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(91), 19, + STATE(1236), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86216,68 +86216,68 @@ static const uint16_t ts_small_parse_table[] = { [63487] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(2597), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(2599), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(2607), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2737), 1, sym__newline, - STATE(423), 1, + STATE(441), 1, sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(964), 1, aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, sym_string, - STATE(1629), 1, + STATE(1593), 1, sym__float_literal, - STATE(1630), 1, + STATE(1594), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2773), 8, + ACTIONS(2735), 8, sym_return, sym_next, sym_break, @@ -86286,7 +86286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1433), 19, + STATE(1237), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86309,68 +86309,68 @@ static const uint16_t ts_small_parse_table[] = { [63610] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + ACTIONS(2741), 1, + sym__newline, + STATE(441), 1, sym__open_brace, - STATE(1107), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(967), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2775), 8, + ACTIONS(2739), 8, sym_return, sym_next, sym_break, @@ -86379,7 +86379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(33), 19, + STATE(1238), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86402,68 +86402,68 @@ static const uint16_t ts_small_parse_table[] = { [63733] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2779), 1, - sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(441), 1, + sym__open_brace, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, sym_string, - STATE(302), 1, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, sym__double_quoted_string, - STATE(444), 1, - sym__open_brace, - STATE(947), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, - sym__open_parenthesis, - ACTIONS(1199), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2777), 8, + ACTIONS(2743), 8, sym_return, sym_next, sym_break, @@ -86472,7 +86472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(92), 19, + STATE(1239), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86495,68 +86495,68 @@ static const uint16_t ts_small_parse_table[] = { [63856] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2781), 8, + ACTIONS(2745), 8, sym_return, sym_next, sym_break, @@ -86565,7 +86565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(34), 19, + STATE(1240), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86588,68 +86588,68 @@ static const uint16_t ts_small_parse_table[] = { [63979] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(2597), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(2599), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(2607), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2749), 1, sym__newline, - STATE(423), 1, + STATE(441), 1, sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(969), 1, aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, sym_string, - STATE(1629), 1, + STATE(1593), 1, sym__float_literal, - STATE(1630), 1, + STATE(1594), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2783), 8, + ACTIONS(2747), 8, sym_return, sym_next, sym_break, @@ -86658,7 +86658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1434), 19, + STATE(1241), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86681,68 +86681,68 @@ static const uint16_t ts_small_parse_table[] = { [64102] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + ACTIONS(2753), 1, + sym__newline, + STATE(441), 1, sym__open_brace, - STATE(1107), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(970), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2785), 8, + ACTIONS(2751), 8, sym_return, sym_next, sym_break, @@ -86751,7 +86751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(35), 19, + STATE(1242), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86774,68 +86774,68 @@ static const uint16_t ts_small_parse_table[] = { [64225] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2789), 1, - sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(441), 1, + sym__open_brace, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, sym_string, - STATE(302), 1, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, sym__double_quoted_string, - STATE(444), 1, - sym__open_brace, - STATE(956), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, - sym__open_parenthesis, - ACTIONS(1199), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2787), 8, + ACTIONS(2755), 8, sym_return, sym_next, sym_break, @@ -86844,7 +86844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(93), 19, + STATE(1243), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86867,68 +86867,68 @@ static const uint16_t ts_small_parse_table[] = { [64348] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, - sym__external_open_parenthesis, - ACTIONS(1075), 1, - sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, + sym__external_open_parenthesis, + ACTIONS(2611), 1, + sym__external_open_brace, + ACTIONS(2759), 1, + sym__newline, + STATE(441), 1, sym__open_brace, - STATE(1107), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(972), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2791), 8, + ACTIONS(2757), 8, sym_return, sym_next, sym_break, @@ -86937,7 +86937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(36), 19, + STATE(1244), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -86960,68 +86960,68 @@ static const uint16_t ts_small_parse_table[] = { [64471] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(2597), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(2599), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(2607), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(423), 1, + STATE(441), 1, sym__open_brace, - STATE(1096), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1592), 1, sym_string, - STATE(1629), 1, + STATE(1593), 1, sym__float_literal, - STATE(1630), 1, + STATE(1594), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2793), 8, + ACTIONS(2761), 8, sym_return, sym_next, sym_break, @@ -87030,7 +87030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1435), 19, + STATE(1245), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87053,68 +87053,68 @@ static const uint16_t ts_small_parse_table[] = { [64594] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2795), 8, + ACTIONS(2763), 8, sym_return, sym_next, sym_break, @@ -87123,7 +87123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(37), 19, + STATE(1246), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87146,68 +87146,68 @@ static const uint16_t ts_small_parse_table[] = { [64717] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2767), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(441), 1, sym__open_brace, - STATE(1092), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(973), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2797), 8, + ACTIONS(2765), 8, sym_return, sym_next, sym_break, @@ -87216,7 +87216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(166), 19, + STATE(1247), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87239,68 +87239,68 @@ static const uint16_t ts_small_parse_table[] = { [64840] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2799), 8, + ACTIONS(2769), 8, sym_return, sym_next, sym_break, @@ -87309,7 +87309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(38), 19, + STATE(1248), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87332,68 +87332,68 @@ static const uint16_t ts_small_parse_table[] = { [64963] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(2597), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(2599), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(2607), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(423), 1, + STATE(441), 1, sym__open_brace, - STATE(1096), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1592), 1, sym_string, - STATE(1629), 1, + STATE(1593), 1, sym__float_literal, - STATE(1630), 1, + STATE(1594), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2801), 8, + ACTIONS(2771), 8, sym_return, sym_next, sym_break, @@ -87402,7 +87402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1436), 19, + STATE(1249), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87425,68 +87425,68 @@ static const uint16_t ts_small_parse_table[] = { [65086] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(405), 1, + anon_sym_SQUOTE, + ACTIONS(407), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + sym__raw_string_literal, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(402), 1, sym__open_brace, - STATE(1107), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + STATE(1619), 1, + sym_string, + STATE(1620), 1, + sym__float_literal, + STATE(1624), 1, + sym__single_quoted_string, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2803), 8, + ACTIONS(2773), 8, sym_return, sym_next, sym_break, @@ -87495,7 +87495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(39), 19, + STATE(1451), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87518,68 +87518,68 @@ static const uint16_t ts_small_parse_table[] = { [65209] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(1933), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, + sym__raw_string_literal, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2777), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(430), 1, sym__open_brace, - STATE(1092), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(976), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + STATE(1079), 1, + sym__open_parenthesis, + STATE(1580), 1, + sym_string, + STATE(1599), 1, + sym__float_literal, + STATE(1602), 1, + sym__single_quoted_string, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2805), 8, + ACTIONS(2775), 8, sym_return, sym_next, sym_break, @@ -87588,7 +87588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(167), 19, + STATE(1158), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87611,68 +87611,68 @@ static const uint16_t ts_small_parse_table[] = { [65332] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(1933), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, + sym__raw_string_literal, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(430), 1, sym__open_brace, - STATE(1107), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1580), 1, + sym_string, + STATE(1599), 1, + sym__float_literal, + STATE(1602), 1, + sym__single_quoted_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2807), 8, + ACTIONS(2779), 8, sym_return, sym_next, sym_break, @@ -87681,7 +87681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(40), 19, + STATE(1159), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87704,68 +87704,68 @@ static const uint16_t ts_small_parse_table[] = { [65455] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2783), 1, sym__newline, - STATE(423), 1, + STATE(430), 1, sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(980), 1, aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1079), 1, + sym__open_parenthesis, + STATE(1580), 1, sym_string, - STATE(1629), 1, + STATE(1599), 1, sym__float_literal, - STATE(1630), 1, + STATE(1602), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2809), 8, + ACTIONS(2781), 8, sym_return, sym_next, sym_break, @@ -87774,7 +87774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1373), 19, + STATE(1139), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87797,68 +87797,68 @@ static const uint16_t ts_small_parse_table[] = { [65578] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(819), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, + ACTIONS(2787), 1, + sym__newline, + STATE(314), 1, sym_string, - STATE(382), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, sym__open_brace, - STATE(1107), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(992), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + STATE(1117), 1, + sym__open_parenthesis, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2811), 8, + ACTIONS(2785), 8, sym_return, sym_next, sym_break, @@ -87867,7 +87867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(41), 19, + STATE(238), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87896,62 +87896,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2791), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(314), 1, sym_string, - STATE(413), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, sym__open_brace, - STATE(1092), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(994), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + STATE(1117), 1, + sym__open_parenthesis, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2813), 8, + ACTIONS(2789), 8, sym_return, sym_next, sym_break, @@ -87960,7 +87960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(168), 19, + STATE(239), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -87983,68 +87983,68 @@ static const uint16_t ts_small_parse_table[] = { [65824] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(1933), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, + sym__raw_string_literal, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(430), 1, sym__open_brace, - STATE(1107), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1580), 1, + sym_string, + STATE(1599), 1, + sym__float_literal, + STATE(1602), 1, + sym__single_quoted_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2815), 8, + ACTIONS(2793), 8, sym_return, sym_next, sym_break, @@ -88053,7 +88053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(42), 19, + STATE(1161), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88076,68 +88076,68 @@ static const uint16_t ts_small_parse_table[] = { [65947] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(473), 1, + anon_sym_SQUOTE, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + sym__raw_string_literal, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2797), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(314), 1, sym_string, - STATE(1629), 1, + STATE(315), 1, sym__float_literal, - STATE(1630), 1, + STATE(316), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, + sym__open_brace, + STATE(999), 1, + aux_sym_function_definition_repeat1, + STATE(1117), 1, + sym__open_parenthesis, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2817), 8, + ACTIONS(2795), 8, sym_return, sym_next, sym_break, @@ -88146,7 +88146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1489), 19, + STATE(240), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88169,68 +88169,68 @@ static const uint16_t ts_small_parse_table[] = { [66070] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(819), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, + ACTIONS(2801), 1, + sym__newline, + STATE(314), 1, sym_string, - STATE(382), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, sym__open_brace, - STATE(1107), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(1001), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + STATE(1117), 1, + sym__open_parenthesis, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2819), 8, + ACTIONS(2799), 8, sym_return, sym_next, sym_break, @@ -88239,7 +88239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(43), 19, + STATE(241), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88262,68 +88262,68 @@ static const uint16_t ts_small_parse_table[] = { [66193] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(355), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(2823), 1, + ACTIONS(2805), 1, sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(314), 1, sym_string, - STATE(302), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(414), 1, sym__open_brace, - STATE(960), 1, + STATE(1007), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, + STATE(1117), 1, sym__open_parenthesis, - ACTIONS(1199), 2, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2821), 8, + ACTIONS(2803), 8, sym_return, sym_next, sym_break, @@ -88332,7 +88332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(94), 19, + STATE(242), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88355,68 +88355,68 @@ static const uint16_t ts_small_parse_table[] = { [66316] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(962), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(304), 1, sym__float_literal, - STATE(293), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(382), 1, + STATE(389), 1, sym__open_brace, - STATE(1107), 1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2825), 8, + ACTIONS(2807), 8, sym_return, sym_next, sym_break, @@ -88425,7 +88425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(44), 19, + STATE(213), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88448,68 +88448,68 @@ static const uint16_t ts_small_parse_table[] = { [66439] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(423), 1, + STATE(304), 1, + sym__float_literal, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(1096), 1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, - sym_string, - STATE(1629), 1, - sym__float_literal, - STATE(1630), 1, - sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2827), 8, + ACTIONS(2809), 8, sym_return, sym_next, sym_break, @@ -88518,7 +88518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1571), 19, + STATE(214), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88541,68 +88541,68 @@ static const uint16_t ts_small_parse_table[] = { [66562] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(962), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(304), 1, sym__float_literal, - STATE(293), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(382), 1, + STATE(389), 1, sym__open_brace, - STATE(1107), 1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2829), 8, + ACTIONS(2811), 8, sym_return, sym_next, sym_break, @@ -88611,7 +88611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(45), 19, + STATE(215), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88634,68 +88634,68 @@ static const uint16_t ts_small_parse_table[] = { [66685] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(355), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1181), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(819), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + ACTIONS(2815), 1, + sym__newline, + STATE(314), 1, sym_string, - STATE(302), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(414), 1, sym__open_brace, - STATE(1063), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(455), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + STATE(1117), 1, + sym__open_parenthesis, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2831), 8, + ACTIONS(2813), 8, sym_return, sym_next, sym_break, @@ -88704,7 +88704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(101), 19, + STATE(131), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88727,68 +88727,68 @@ static const uint16_t ts_small_parse_table[] = { [66808] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2819), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(290), 1, sym_string, - STATE(1629), 1, + STATE(291), 1, sym__float_literal, - STATE(1630), 1, + STATE(292), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, + sym__open_brace, + STATE(989), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2833), 8, + ACTIONS(2817), 8, sym_return, sym_next, sym_break, @@ -88797,7 +88797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1567), 19, + STATE(6), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88820,68 +88820,68 @@ static const uint16_t ts_small_parse_table[] = { [66931] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(361), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(363), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(365), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(290), 1, sym_string, - STATE(413), 1, + STATE(291), 1, + sym__float_literal, + STATE(292), 1, + sym__single_quoted_string, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, sym__open_brace, - STATE(1092), 1, + STATE(1084), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2835), 8, + ACTIONS(2821), 8, sym_return, sym_next, sym_break, @@ -88890,7 +88890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(169), 19, + STATE(7), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -88913,68 +88913,68 @@ static const uint16_t ts_small_parse_table[] = { [67054] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(361), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(363), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(365), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2825), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(290), 1, sym_string, - STATE(413), 1, + STATE(291), 1, + sym__float_literal, + STATE(292), 1, + sym__single_quoted_string, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, sym__open_brace, - STATE(1092), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(991), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2837), 8, + ACTIONS(2823), 8, sym_return, sym_next, sym_break, @@ -88983,7 +88983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(170), 19, + STATE(8), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89006,68 +89006,68 @@ static const uint16_t ts_small_parse_table[] = { [67177] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(290), 1, sym_string, - STATE(1629), 1, + STATE(291), 1, sym__float_literal, - STATE(1630), 1, + STATE(292), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2839), 8, + ACTIONS(2827), 8, sym_return, sym_next, sym_break, @@ -89076,7 +89076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1395), 19, + STATE(9), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89105,62 +89105,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(314), 1, sym_string, - STATE(413), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, sym__open_brace, - STATE(1092), 1, + STATE(1117), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2841), 8, + ACTIONS(2829), 8, sym_return, sym_next, sym_break, @@ -89169,7 +89169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(171), 19, + STATE(132), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89192,11 +89192,11 @@ static const uint16_t ts_small_parse_table[] = { [67423] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(485), 1, sym__raw_string_literal, ACTIONS(930), 1, anon_sym_BSLASH, @@ -89224,21 +89224,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, + STATE(304), 1, + sym__float_literal, STATE(308), 1, sym__single_quoted_string, STATE(309), 1, - sym__float_literal, - STATE(322), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(413), 1, + STATE(389), 1, sym__open_brace, - STATE(1092), 1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, ACTIONS(948), 2, anon_sym_PLUS, @@ -89253,7 +89253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2843), 8, + ACTIONS(2831), 8, sym_return, sym_next, sym_break, @@ -89262,7 +89262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(172), 19, + STATE(216), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89285,68 +89285,68 @@ static const uint16_t ts_small_parse_table[] = { [67546] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(473), 1, + anon_sym_SQUOTE, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + sym__raw_string_literal, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(314), 1, sym_string, - STATE(1629), 1, + STATE(315), 1, sym__float_literal, - STATE(1630), 1, + STATE(316), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, + sym__open_brace, + STATE(1117), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2845), 8, + ACTIONS(2833), 8, sym_return, sym_next, sym_break, @@ -89355,7 +89355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1380), 19, + STATE(133), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89378,68 +89378,68 @@ static const uint16_t ts_small_parse_table[] = { [67669] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2837), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(437), 1, sym__open_brace, - STATE(1092), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(996), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, + sym_string, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2847), 8, + ACTIONS(2835), 8, sym_return, sym_next, sym_break, @@ -89448,7 +89448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(173), 19, + STATE(1146), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89471,68 +89471,68 @@ static const uint16_t ts_small_parse_table[] = { [67792] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(437), 1, sym__open_brace, - STATE(1092), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, + sym_string, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2849), 8, + ACTIONS(2839), 8, sym_return, sym_next, sym_break, @@ -89541,7 +89541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(174), 19, + STATE(1149), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89564,68 +89564,68 @@ static const uint16_t ts_small_parse_table[] = { [67915] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2843), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(437), 1, sym__open_brace, - STATE(1092), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(998), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, + sym_string, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2851), 8, + ACTIONS(2841), 8, sym_return, sym_next, sym_break, @@ -89634,7 +89634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(175), 19, + STATE(1150), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89657,68 +89657,68 @@ static const uint16_t ts_small_parse_table[] = { [68038] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(1071), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(437), 1, sym__open_brace, - STATE(1092), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, + sym_string, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2853), 8, + ACTIONS(2845), 8, sym_return, sym_next, sym_break, @@ -89727,7 +89727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(176), 19, + STATE(1155), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89756,62 +89756,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, + STATE(314), 1, sym_string, - STATE(413), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, sym__open_brace, - STATE(1092), 1, + STATE(1117), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2855), 8, + ACTIONS(2847), 8, sym_return, sym_next, sym_break, @@ -89820,7 +89820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(177), 19, + STATE(134), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89843,68 +89843,68 @@ static const uint16_t ts_small_parse_table[] = { [68284] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(962), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(304), 1, sym__float_literal, - STATE(293), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(382), 1, + STATE(389), 1, sym__open_brace, - STATE(1107), 1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2857), 8, + ACTIONS(2849), 8, sym_return, sym_next, sym_break, @@ -89913,7 +89913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(46), 19, + STATE(217), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -89936,68 +89936,68 @@ static const uint16_t ts_small_parse_table[] = { [68407] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(2861), 1, + ACTIONS(1043), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, + STATE(314), 1, sym_string, - STATE(382), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, sym__open_brace, - STATE(1026), 1, - aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1117), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2859), 8, + ACTIONS(2851), 8, sym_return, sym_next, sym_break, @@ -90006,7 +90006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(47), 19, + STATE(135), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90029,68 +90029,68 @@ static const uint16_t ts_small_parse_table[] = { [68530] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2855), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(441), 1, sym__open_brace, - STATE(1092), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(1003), 1, aux_sym_function_definition_repeat1, - ACTIONS(948), 2, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2863), 8, + ACTIONS(2853), 8, sym_return, sym_next, sym_break, @@ -90099,7 +90099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(178), 19, + STATE(1162), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90122,68 +90122,68 @@ static const uint16_t ts_small_parse_table[] = { [68653] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1181), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(2867), 1, - sym__newline, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(441), 1, + sym__open_brace, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, sym_string, - STATE(302), 1, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, sym__double_quoted_string, - STATE(444), 1, - sym__open_brace, - STATE(987), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1063), 1, - sym__open_parenthesis, - ACTIONS(1199), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2865), 8, + ACTIONS(2857), 8, sym_return, sym_next, sym_break, @@ -90192,7 +90192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(110), 19, + STATE(1163), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90215,68 +90215,68 @@ static const uint16_t ts_small_parse_table[] = { [68776] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1181), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + ACTIONS(2861), 1, + sym__newline, + STATE(441), 1, sym__open_brace, - STATE(1063), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(1005), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2869), 8, + ACTIONS(2859), 8, sym_return, sym_next, sym_break, @@ -90285,7 +90285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(112), 19, + STATE(1165), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90308,68 +90308,68 @@ static const uint16_t ts_small_parse_table[] = { [68899] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(441), 1, sym__open_brace, - STATE(1063), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2871), 8, + ACTIONS(2863), 8, sym_return, sym_next, sym_break, @@ -90378,7 +90378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(121), 19, + STATE(1140), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90401,11 +90401,11 @@ static const uint16_t ts_small_parse_table[] = { [69022] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(475), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(477), 1, + ACTIONS(485), 1, sym__raw_string_literal, ACTIONS(930), 1, anon_sym_BSLASH, @@ -90433,22 +90433,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2867), 1, sym__newline, - STATE(307), 1, - sym__double_quoted_string, + STATE(304), 1, + sym__float_literal, STATE(308), 1, sym__single_quoted_string, STATE(309), 1, - sym__float_literal, - STATE(322), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(413), 1, + STATE(389), 1, sym__open_brace, - STATE(1092), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(591), 1, aux_sym_function_definition_repeat1, + STATE(1051), 1, + sym__open_parenthesis, ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, @@ -90462,7 +90462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2873), 8, + ACTIONS(2865), 8, sym_return, sym_next, sym_break, @@ -90471,7 +90471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(196), 19, + STATE(170), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90494,68 +90494,68 @@ static const uint16_t ts_small_parse_table[] = { [69145] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(473), 1, + anon_sym_SQUOTE, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + sym__raw_string_literal, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(2877), 1, + ACTIONS(1043), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(912), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(314), 1, sym_string, - STATE(1629), 1, + STATE(315), 1, sym__float_literal, - STATE(1630), 1, + STATE(316), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, + sym__open_brace, + STATE(1117), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2875), 8, + ACTIONS(2869), 8, sym_return, sym_next, sym_break, @@ -90564,7 +90564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1394), 19, + STATE(136), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90587,68 +90587,68 @@ static const uint16_t ts_small_parse_table[] = { [69268] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - STATE(423), 1, + STATE(304), 1, + sym__float_literal, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(1096), 1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, - sym_string, - STATE(1629), 1, - sym__float_literal, - STATE(1630), 1, - sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2879), 8, + ACTIONS(2871), 8, sym_return, sym_next, sym_break, @@ -90657,7 +90657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1393), 19, + STATE(218), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90680,68 +90680,68 @@ static const uint16_t ts_small_parse_table[] = { [69391] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(2883), 1, + ACTIONS(2875), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, + STATE(304), 1, sym__float_literal, - STATE(293), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(382), 1, + STATE(389), 1, sym__open_brace, - STATE(875), 1, + STATE(659), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1051), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2881), 8, + ACTIONS(2873), 8, sym_return, sym_next, sym_break, @@ -90750,7 +90750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(6), 19, + STATE(194), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90773,68 +90773,68 @@ static const uint16_t ts_small_parse_table[] = { [69514] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(1933), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, + sym__raw_string_literal, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2887), 1, + ACTIONS(2879), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(430), 1, sym__open_brace, - STATE(884), 1, + STATE(1011), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1079), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + STATE(1580), 1, + sym_string, + STATE(1599), 1, + sym__float_literal, + STATE(1602), 1, + sym__single_quoted_string, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2885), 8, + ACTIONS(2877), 8, sym_return, sym_next, sym_break, @@ -90843,7 +90843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(68), 19, + STATE(1151), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90866,68 +90866,68 @@ static const uint16_t ts_small_parse_table[] = { [69637] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(1933), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, + sym__raw_string_literal, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(1945), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(430), 1, sym__open_brace, - STATE(1063), 1, + STATE(1079), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1580), 1, + sym_string, + STATE(1599), 1, + sym__float_literal, + STATE(1602), 1, + sym__single_quoted_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2889), 8, + ACTIONS(2881), 8, sym_return, sym_next, sym_break, @@ -90936,7 +90936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(128), 19, + STATE(1152), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -90959,68 +90959,68 @@ static const uint16_t ts_small_parse_table[] = { [69760] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1181), 1, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(1209), 1, - sym__external_open_parenthesis, - ACTIONS(1211), 1, - sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(1933), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, + sym__raw_string_literal, + ACTIONS(1943), 1, + sym__external_open_parenthesis, + ACTIONS(1945), 1, + sym__external_open_brace, + ACTIONS(2885), 1, + sym__newline, + STATE(430), 1, sym__open_brace, - STATE(1063), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(1013), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + STATE(1079), 1, + sym__open_parenthesis, + STATE(1580), 1, + sym_string, + STATE(1599), 1, + sym__float_literal, + STATE(1602), 1, + sym__single_quoted_string, + STATE(1603), 1, + sym__double_quoted_string, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2891), 8, + ACTIONS(2883), 8, sym_return, sym_next, sym_break, @@ -91029,7 +91029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(54), 19, + STATE(1153), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91052,68 +91052,68 @@ static const uint16_t ts_small_parse_table[] = { [69883] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, - anon_sym_SQUOTE, - ACTIONS(475), 1, - anon_sym_DQUOTE, - ACTIONS(477), 1, - sym__raw_string_literal, - ACTIONS(930), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(1907), 1, anon_sym_BSLASH, - ACTIONS(932), 1, + ACTIONS(1909), 1, anon_sym_function, - ACTIONS(934), 1, + ACTIONS(1911), 1, anon_sym_if, - ACTIONS(936), 1, + ACTIONS(1913), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(1915), 1, anon_sym_while, - ACTIONS(940), 1, + ACTIONS(1917), 1, anon_sym_repeat, - ACTIONS(942), 1, + ACTIONS(1919), 1, anon_sym_QMARK, - ACTIONS(944), 1, + ACTIONS(1921), 1, anon_sym_TILDE, - ACTIONS(946), 1, + ACTIONS(1923), 1, anon_sym_BANG, - ACTIONS(950), 1, + ACTIONS(1927), 1, sym__hex_literal, - ACTIONS(952), 1, + ACTIONS(1929), 1, sym__number_literal, - ACTIONS(960), 1, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(1933), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, + sym__raw_string_literal, + ACTIONS(1943), 1, sym__external_open_parenthesis, - ACTIONS(962), 1, + ACTIONS(1945), 1, sym__external_open_brace, - ACTIONS(2895), 1, - sym__newline, - STATE(307), 1, - sym__double_quoted_string, - STATE(308), 1, - sym__single_quoted_string, - STATE(309), 1, - sym__float_literal, - STATE(322), 1, - sym_string, - STATE(413), 1, + STATE(430), 1, sym__open_brace, - STATE(794), 1, - aux_sym_function_definition_repeat1, - STATE(1092), 1, + STATE(1079), 1, sym__open_parenthesis, - ACTIONS(948), 2, + STATE(1580), 1, + sym_string, + STATE(1599), 1, + sym__float_literal, + STATE(1602), 1, + sym__single_quoted_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(1925), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(928), 3, + ACTIONS(1905), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(956), 5, + ACTIONS(1937), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2893), 8, + ACTIONS(2887), 8, sym_return, sym_next, sym_break, @@ -91122,7 +91122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(202), 19, + STATE(1154), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91145,68 +91145,68 @@ static const uint16_t ts_small_parse_table[] = { [70006] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(962), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, + ACTIONS(1043), 1, + sym__newline, + STATE(304), 1, sym__float_literal, - STATE(293), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(382), 1, + STATE(389), 1, sym__open_brace, - STATE(1107), 1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2897), 8, + ACTIONS(2889), 8, sym_return, sym_next, sym_break, @@ -91215,7 +91215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(67), 19, + STATE(219), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91238,68 +91238,68 @@ static const uint16_t ts_small_parse_table[] = { [70129] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(2901), 1, + ACTIONS(2893), 1, sym__newline, - STATE(423), 1, + STATE(304), 1, + sym__float_literal, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, + sym_string, + STATE(389), 1, sym__open_brace, - STATE(953), 1, + STATE(662), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1051), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, - sym_string, - STATE(1629), 1, - sym__float_literal, - STATE(1630), 1, - sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2899), 8, + ACTIONS(2891), 8, sym_return, sym_next, sym_break, @@ -91308,7 +91308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1360), 19, + STATE(195), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91331,68 +91331,68 @@ static const uint16_t ts_small_parse_table[] = { [70252] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(481), 1, + anon_sym_SQUOTE, + ACTIONS(483), 1, + anon_sym_DQUOTE, + ACTIONS(485), 1, + sym__raw_string_literal, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(962), 1, sym__external_open_brace, - ACTIONS(2905), 1, + ACTIONS(1043), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(955), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, - sym_string, - STATE(1629), 1, + STATE(304), 1, sym__float_literal, - STATE(1630), 1, + STATE(308), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, + sym_string, + STATE(389), 1, + sym__open_brace, + STATE(1051), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2903), 8, + ACTIONS(2895), 8, sym_return, sym_next, sym_break, @@ -91401,7 +91401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1359), 19, + STATE(220), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91424,68 +91424,68 @@ static const uint16_t ts_small_parse_table[] = { [70375] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(473), 1, + anon_sym_SQUOTE, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + sym__raw_string_literal, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(2909), 1, + ACTIONS(2899), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(957), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(314), 1, sym_string, - STATE(1629), 1, + STATE(315), 1, sym__float_literal, - STATE(1630), 1, + STATE(316), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, + sym__open_brace, + STATE(459), 1, + aux_sym_function_definition_repeat1, + STATE(1117), 1, + sym__open_parenthesis, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2907), 8, + ACTIONS(2897), 8, sym_return, sym_next, sym_break, @@ -91494,7 +91494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1358), 19, + STATE(137), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91517,68 +91517,68 @@ static const uint16_t ts_small_parse_table[] = { [70498] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2913), 1, + ACTIONS(2903), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(959), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(290), 1, sym_string, - STATE(1629), 1, + STATE(291), 1, sym__float_literal, - STATE(1630), 1, + STATE(292), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, + sym__open_brace, + STATE(1019), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2911), 8, + ACTIONS(2901), 8, sym_return, sym_next, sym_break, @@ -91587,7 +91587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1357), 19, + STATE(15), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91610,68 +91610,68 @@ static const uint16_t ts_small_parse_table[] = { [70621] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(361), 1, anon_sym_SQUOTE, - ACTIONS(355), 1, + ACTIONS(363), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(365), 1, sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2143), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + STATE(290), 1, sym_string, - STATE(302), 1, + STATE(291), 1, + sym__float_literal, + STATE(292), 1, + sym__single_quoted_string, + STATE(293), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(434), 1, sym__open_brace, - STATE(1063), 1, + STATE(1084), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2915), 8, + ACTIONS(2905), 8, sym_return, sym_next, sym_break, @@ -91680,7 +91680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(129), 19, + STATE(16), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91703,68 +91703,68 @@ static const uint16_t ts_small_parse_table[] = { [70744] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2919), 1, + ACTIONS(2909), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(961), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(290), 1, sym_string, - STATE(1629), 1, + STATE(291), 1, sym__float_literal, - STATE(1630), 1, + STATE(292), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, + sym__open_brace, + STATE(1021), 1, + aux_sym_function_definition_repeat1, + STATE(1084), 1, + sym__open_parenthesis, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2917), 8, + ACTIONS(2907), 8, sym_return, sym_next, sym_break, @@ -91773,7 +91773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1356), 19, + STATE(17), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91796,68 +91796,68 @@ static const uint16_t ts_small_parse_table[] = { [70867] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(361), 1, + anon_sym_SQUOTE, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(365), 1, + sym__raw_string_literal, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2111), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2113), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2115), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2117), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2119), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2121), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2123), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2125), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2127), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2131), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2133), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2141), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2143), 1, sym__external_open_brace, - ACTIONS(2923), 1, - sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(965), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(290), 1, sym_string, - STATE(1629), 1, + STATE(291), 1, sym__float_literal, - STATE(1630), 1, + STATE(292), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(293), 1, + sym__double_quoted_string, + STATE(434), 1, + sym__open_brace, + STATE(1084), 1, + sym__open_parenthesis, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2129), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2109), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2137), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2921), 8, + ACTIONS(2911), 8, sym_return, sym_next, sym_break, @@ -91866,7 +91866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1353), 19, + STATE(10), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91889,68 +91889,68 @@ static const uint16_t ts_small_parse_table[] = { [70990] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(355), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1181), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, - sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + ACTIONS(819), 1, + sym__external_open_brace, + ACTIONS(2915), 1, + sym__newline, + STATE(314), 1, sym_string, - STATE(302), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(414), 1, sym__open_brace, - STATE(1063), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(461), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + STATE(1117), 1, + sym__open_parenthesis, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2925), 8, + ACTIONS(2913), 8, sym_return, sym_next, sym_break, @@ -91959,7 +91959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(127), 19, + STATE(243), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -91982,68 +91982,68 @@ static const uint16_t ts_small_parse_table[] = { [71113] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(473), 1, + anon_sym_SQUOTE, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + sym__raw_string_literal, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(2929), 1, + ACTIONS(2919), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(969), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(314), 1, sym_string, - STATE(1629), 1, + STATE(315), 1, sym__float_literal, - STATE(1630), 1, + STATE(316), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, + sym__open_brace, + STATE(462), 1, + aux_sym_function_definition_repeat1, + STATE(1117), 1, + sym__open_parenthesis, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2927), 8, + ACTIONS(2917), 8, sym_return, sym_next, sym_break, @@ -92052,7 +92052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1352), 19, + STATE(138), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92075,68 +92075,68 @@ static const uint16_t ts_small_parse_table[] = { [71236] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(473), 1, + anon_sym_SQUOTE, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + sym__raw_string_literal, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(2933), 1, + ACTIONS(2923), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(973), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(314), 1, sym_string, - STATE(1629), 1, + STATE(315), 1, sym__float_literal, - STATE(1630), 1, + STATE(316), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, + sym__open_brace, + STATE(464), 1, + aux_sym_function_definition_repeat1, + STATE(1117), 1, + sym__open_parenthesis, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2931), 8, + ACTIONS(2921), 8, sym_return, sym_next, sym_break, @@ -92145,7 +92145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1351), 19, + STATE(139), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92168,68 +92168,68 @@ static const uint16_t ts_small_parse_table[] = { [71359] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(473), 1, + anon_sym_SQUOTE, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + sym__raw_string_literal, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(2937), 1, + ACTIONS(2927), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(977), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(314), 1, sym_string, - STATE(1629), 1, + STATE(315), 1, sym__float_literal, - STATE(1630), 1, + STATE(316), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, + sym__open_brace, + STATE(466), 1, + aux_sym_function_definition_repeat1, + STATE(1117), 1, + sym__open_parenthesis, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2935), 8, + ACTIONS(2925), 8, sym_return, sym_next, sym_break, @@ -92238,7 +92238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1350), 19, + STATE(140), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92261,68 +92261,68 @@ static const uint16_t ts_small_parse_table[] = { [71482] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2407), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + ACTIONS(2931), 1, + sym__newline, + STATE(437), 1, sym__open_brace, - STATE(1107), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(1027), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1577), 1, + sym_string, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2939), 8, + ACTIONS(2929), 8, sym_return, sym_next, sym_break, @@ -92331,7 +92331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(48), 19, + STATE(1156), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92354,68 +92354,68 @@ static const uint16_t ts_small_parse_table[] = { [71605] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2943), 1, - sym__newline, - STATE(289), 1, + STATE(437), 1, + sym__open_brace, + STATE(1089), 1, + sym__open_parenthesis, + STATE(1576), 1, sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, + STATE(1577), 1, sym_string, - STATE(382), 1, - sym__open_brace, - STATE(452), 1, + STATE(1578), 1, + sym__float_literal, + STATE(1579), 1, + sym__single_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, - sym__open_parenthesis, - ACTIONS(1061), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2941), 8, + ACTIONS(2933), 8, sym_return, sym_next, sym_break, @@ -92424,7 +92424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(49), 19, + STATE(1157), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92447,68 +92447,68 @@ static const uint16_t ts_small_parse_table[] = { [71728] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2947), 1, + ACTIONS(2937), 1, sym__newline, - STATE(423), 1, + STATE(437), 1, sym__open_brace, - STATE(981), 1, + STATE(1029), 1, aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1605), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1627), 1, + STATE(1577), 1, sym_string, - STATE(1629), 1, + STATE(1578), 1, sym__float_literal, - STATE(1630), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(445), 2, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2945), 8, + ACTIONS(2935), 8, sym_return, sym_next, sym_break, @@ -92517,7 +92517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1349), 19, + STATE(1160), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92540,68 +92540,68 @@ static const uint16_t ts_small_parse_table[] = { [71851] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(1043), 1, + sym__newline, + ACTIONS(2369), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2371), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2373), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2375), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2377), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2379), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2381), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2383), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2385), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2389), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2391), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2405), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2407), 1, sym__external_open_brace, - ACTIONS(2951), 1, - sym__newline, - STATE(423), 1, + STATE(437), 1, sym__open_brace, - STATE(985), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, + STATE(1089), 1, sym__open_parenthesis, - STATE(1605), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1627), 1, + STATE(1577), 1, sym_string, - STATE(1629), 1, + STATE(1578), 1, sym__float_literal, - STATE(1630), 1, + STATE(1579), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(2387), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2367), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2399), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2949), 8, + ACTIONS(2939), 8, sym_return, sym_next, sym_break, @@ -92610,7 +92610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1348), 19, + STATE(1164), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92633,68 +92633,68 @@ static const uint16_t ts_small_parse_table[] = { [71974] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(473), 1, + anon_sym_SQUOTE, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + sym__raw_string_literal, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(2955), 1, + ACTIONS(2943), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(988), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(314), 1, sym_string, - STATE(1629), 1, + STATE(315), 1, sym__float_literal, - STATE(1630), 1, + STATE(316), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, + sym__open_brace, + STATE(468), 1, + aux_sym_function_definition_repeat1, + STATE(1117), 1, + sym__open_parenthesis, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2953), 8, + ACTIONS(2941), 8, sym_return, sym_next, sym_break, @@ -92703,7 +92703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1347), 19, + STATE(141), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92726,68 +92726,68 @@ static const uint16_t ts_small_parse_table[] = { [72097] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(2959), 1, + ACTIONS(2947), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, + STATE(314), 1, sym_string, - STATE(382), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, sym__open_brace, - STATE(1037), 1, + STATE(470), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1117), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2957), 8, + ACTIONS(2945), 8, sym_return, sym_next, sym_break, @@ -92796,7 +92796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(50), 19, + STATE(142), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92819,68 +92819,68 @@ static const uint16_t ts_small_parse_table[] = { [72220] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(2963), 1, + ACTIONS(2951), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, + STATE(314), 1, sym_string, - STATE(382), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, sym__open_brace, - STATE(1041), 1, + STATE(471), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1117), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2961), 8, + ACTIONS(2949), 8, sym_return, sym_next, sym_break, @@ -92889,7 +92889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(51), 19, + STATE(143), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -92912,68 +92912,68 @@ static const uint16_t ts_small_parse_table[] = { [72343] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(473), 1, + anon_sym_SQUOTE, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(477), 1, + sym__raw_string_literal, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(2967), 1, + ACTIONS(2955), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(991), 1, - aux_sym_function_definition_repeat1, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(314), 1, sym_string, - STATE(1629), 1, + STATE(315), 1, sym__float_literal, - STATE(1630), 1, + STATE(316), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, + sym__open_brace, + STATE(472), 1, + aux_sym_function_definition_repeat1, + STATE(1117), 1, + sym__open_parenthesis, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2965), 8, + ACTIONS(2953), 8, sym_return, sym_next, sym_break, @@ -92982,7 +92982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1396), 19, + STATE(144), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93005,68 +93005,68 @@ static const uint16_t ts_small_parse_table[] = { [72466] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1181), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + ACTIONS(2959), 1, + sym__newline, + STATE(441), 1, sym__open_brace, - STATE(1063), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(1035), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2969), 8, + ACTIONS(2957), 8, sym_return, sym_next, sym_break, @@ -93075,7 +93075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(126), 19, + STATE(1141), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93098,68 +93098,68 @@ static const uint16_t ts_small_parse_table[] = { [72589] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, - anon_sym_SQUOTE, - ACTIONS(355), 1, - anon_sym_DQUOTE, - ACTIONS(359), 1, - sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, - sym_string, - STATE(302), 1, - sym__double_quoted_string, - STATE(444), 1, + STATE(441), 1, sym__open_brace, - STATE(1063), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2971), 8, + ACTIONS(2961), 8, sym_return, sym_next, sym_break, @@ -93168,7 +93168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(125), 19, + STATE(1142), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93191,68 +93191,68 @@ static const uint16_t ts_small_parse_table[] = { [72712] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(2597), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(2599), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(2607), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(2611), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2965), 1, sym__newline, - STATE(423), 1, + STATE(441), 1, sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(1037), 1, aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1094), 1, + sym__open_parenthesis, + STATE(1592), 1, sym_string, - STATE(1629), 1, + STATE(1593), 1, sym__float_literal, - STATE(1630), 1, + STATE(1594), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1595), 1, + sym__double_quoted_string, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2973), 8, + ACTIONS(2963), 8, sym_return, sym_next, sym_break, @@ -93261,7 +93261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1336), 19, + STATE(1143), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93284,68 +93284,68 @@ static const uint16_t ts_small_parse_table[] = { [72835] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_SQUOTE, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - sym__raw_string_literal, ACTIONS(1043), 1, + sym__newline, + ACTIONS(2573), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(2575), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(2577), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(2579), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(2581), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(2583), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(2585), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(2587), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(2589), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(2593), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(2595), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(2609), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(2611), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(441), 1, sym__open_brace, - STATE(1107), 1, + STATE(1094), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1592), 1, + sym_string, + STATE(1593), 1, + sym__float_literal, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + ACTIONS(2591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(2571), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(2603), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2975), 8, + ACTIONS(2967), 8, sym_return, sym_next, sym_break, @@ -93354,7 +93354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(53), 19, + STATE(1144), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93377,68 +93377,68 @@ static const uint16_t ts_small_parse_table[] = { [72958] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(2979), 1, + ACTIONS(2971), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, + STATE(314), 1, sym_string, - STATE(382), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, sym__open_brace, - STATE(1046), 1, + STATE(473), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1117), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2977), 8, + ACTIONS(2969), 8, sym_return, sym_next, sym_break, @@ -93447,7 +93447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(62), 19, + STATE(145), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93470,68 +93470,68 @@ static const uint16_t ts_small_parse_table[] = { [73081] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(819), 1, sym__external_open_brace, - ACTIONS(2983), 1, + ACTIONS(2975), 1, sym__newline, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, + STATE(314), 1, sym_string, - STATE(382), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, sym__open_brace, - STATE(1014), 1, + STATE(474), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1117), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2981), 8, + ACTIONS(2973), 8, sym_return, sym_next, sym_break, @@ -93540,7 +93540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(63), 19, + STATE(146), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93563,68 +93563,68 @@ static const uint16_t ts_small_parse_table[] = { [73204] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(355), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1181), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(819), 1, sym__external_open_brace, - STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, + ACTIONS(2979), 1, + sym__newline, + STATE(314), 1, sym_string, - STATE(302), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(414), 1, sym__open_brace, - STATE(1063), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(476), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + STATE(1117), 1, + sym__open_parenthesis, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2985), 8, + ACTIONS(2977), 8, sym_return, sym_next, sym_break, @@ -93633,7 +93633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(124), 19, + STATE(147), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93656,68 +93656,68 @@ static const uint16_t ts_small_parse_table[] = { [73327] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(473), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(475), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(477), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(787), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(789), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(791), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(793), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(795), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(797), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(799), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(801), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(803), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(807), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(809), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(817), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(819), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, + ACTIONS(2983), 1, + sym__newline, + STATE(314), 1, sym_string, - STATE(382), 1, + STATE(315), 1, + sym__float_literal, + STATE(316), 1, + sym__single_quoted_string, + STATE(317), 1, + sym__double_quoted_string, + STATE(414), 1, sym__open_brace, - STATE(1107), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(478), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + STATE(1117), 1, + sym__open_parenthesis, + ACTIONS(805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(785), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(813), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2987), 8, + ACTIONS(2981), 8, sym_return, sym_next, sym_break, @@ -93726,7 +93726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(18), 19, + STATE(148), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93749,68 +93749,68 @@ static const uint16_t ts_small_parse_table[] = { [73450] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(353), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1073), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(2991), 1, + ACTIONS(2987), 1, sym__newline, + STATE(286), 1, + sym_string, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, STATE(289), 1, sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, - sym__float_literal, - STATE(293), 1, - sym_string, - STATE(382), 1, + STATE(426), 1, sym__open_brace, - STATE(952), 1, + STATE(1043), 1, aux_sym_function_definition_repeat1, - STATE(1107), 1, + STATE(1074), 1, sym__open_parenthesis, - ACTIONS(1061), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2989), 8, + ACTIONS(2985), 8, sym_return, sym_next, sym_break, @@ -93819,7 +93819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(65), 19, + STATE(11), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93846,64 +93846,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(1153), 1, sym__external_open_brace, STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, sym_string, - STATE(302), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(426), 1, sym__open_brace, - STATE(1063), 1, + STATE(1074), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2993), 8, + ACTIONS(2989), 8, sym_return, sym_next, sym_break, @@ -93912,7 +93912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(123), 19, + STATE(12), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -93935,68 +93935,68 @@ static const uint16_t ts_small_parse_table[] = { [73696] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(353), 1, + anon_sym_SQUOTE, + ACTIONS(355), 1, + anon_sym_DQUOTE, + ACTIONS(357), 1, + sym__raw_string_literal, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(1153), 1, sym__external_open_brace, - ACTIONS(1071), 1, + ACTIONS(2993), 1, sym__newline, - STATE(423), 1, - sym__open_brace, - STATE(1096), 1, - sym__open_parenthesis, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(286), 1, sym_string, - STATE(1629), 1, + STATE(287), 1, sym__float_literal, - STATE(1630), 1, + STATE(288), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(289), 1, + sym__double_quoted_string, + STATE(426), 1, + sym__open_brace, + STATE(1045), 1, + aux_sym_function_definition_repeat1, + STATE(1074), 1, + sym__open_parenthesis, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2995), 8, + ACTIONS(2991), 8, sym_return, sym_next, sym_break, @@ -94005,7 +94005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1337), 19, + STATE(13), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94032,64 +94032,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(355), 1, anon_sym_DQUOTE, - ACTIONS(359), 1, + ACTIONS(357), 1, sym__raw_string_literal, - ACTIONS(1071), 1, + ACTIONS(1043), 1, sym__newline, - ACTIONS(1181), 1, + ACTIONS(1121), 1, anon_sym_BSLASH, - ACTIONS(1183), 1, + ACTIONS(1123), 1, anon_sym_function, - ACTIONS(1185), 1, + ACTIONS(1125), 1, anon_sym_if, - ACTIONS(1187), 1, + ACTIONS(1127), 1, anon_sym_for, - ACTIONS(1189), 1, + ACTIONS(1129), 1, anon_sym_while, - ACTIONS(1191), 1, + ACTIONS(1131), 1, anon_sym_repeat, - ACTIONS(1193), 1, + ACTIONS(1133), 1, anon_sym_QMARK, - ACTIONS(1195), 1, + ACTIONS(1135), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1201), 1, + ACTIONS(1141), 1, sym__hex_literal, - ACTIONS(1203), 1, + ACTIONS(1143), 1, sym__number_literal, - ACTIONS(1209), 1, + ACTIONS(1151), 1, sym__external_open_parenthesis, - ACTIONS(1211), 1, + ACTIONS(1153), 1, sym__external_open_brace, STATE(286), 1, - sym__single_quoted_string, - STATE(288), 1, - sym__float_literal, - STATE(301), 1, sym_string, - STATE(302), 1, + STATE(287), 1, + sym__float_literal, + STATE(288), 1, + sym__single_quoted_string, + STATE(289), 1, sym__double_quoted_string, - STATE(444), 1, + STATE(426), 1, sym__open_brace, - STATE(1063), 1, + STATE(1074), 1, sym__open_parenthesis, - STATE(1604), 1, + STATE(1609), 1, aux_sym_function_definition_repeat1, - ACTIONS(1199), 2, + ACTIONS(1139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 3, + ACTIONS(1119), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1207), 5, + ACTIONS(1147), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2997), 8, + ACTIONS(2995), 8, sym_return, sym_next, sym_break, @@ -94098,7 +94098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(122), 19, + STATE(14), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94121,68 +94121,68 @@ static const uint16_t ts_small_parse_table[] = { [73942] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(481), 1, anon_sym_SQUOTE, - ACTIONS(369), 1, + ACTIONS(483), 1, anon_sym_DQUOTE, - ACTIONS(371), 1, + ACTIONS(485), 1, sym__raw_string_literal, - ACTIONS(1043), 1, + ACTIONS(930), 1, anon_sym_BSLASH, - ACTIONS(1045), 1, + ACTIONS(932), 1, anon_sym_function, - ACTIONS(1047), 1, + ACTIONS(934), 1, anon_sym_if, - ACTIONS(1049), 1, + ACTIONS(936), 1, anon_sym_for, - ACTIONS(1051), 1, + ACTIONS(938), 1, anon_sym_while, - ACTIONS(1053), 1, + ACTIONS(940), 1, anon_sym_repeat, - ACTIONS(1055), 1, + ACTIONS(942), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(944), 1, anon_sym_TILDE, - ACTIONS(1059), 1, + ACTIONS(946), 1, anon_sym_BANG, - ACTIONS(1063), 1, + ACTIONS(950), 1, sym__hex_literal, - ACTIONS(1065), 1, + ACTIONS(952), 1, sym__number_literal, - ACTIONS(1071), 1, - sym__newline, - ACTIONS(1073), 1, + ACTIONS(960), 1, sym__external_open_parenthesis, - ACTIONS(1075), 1, + ACTIONS(962), 1, sym__external_open_brace, - STATE(289), 1, - sym__double_quoted_string, - STATE(290), 1, - sym__single_quoted_string, - STATE(292), 1, + ACTIONS(2999), 1, + sym__newline, + STATE(304), 1, sym__float_literal, - STATE(293), 1, + STATE(308), 1, + sym__single_quoted_string, + STATE(309), 1, + sym__double_quoted_string, + STATE(323), 1, sym_string, - STATE(382), 1, + STATE(389), 1, sym__open_brace, - STATE(1107), 1, - sym__open_parenthesis, - STATE(1604), 1, + STATE(664), 1, aux_sym_function_definition_repeat1, - ACTIONS(1061), 2, + STATE(1051), 1, + sym__open_parenthesis, + ACTIONS(948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1041), 3, + ACTIONS(928), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(1069), 5, + ACTIONS(956), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - ACTIONS(2999), 8, + ACTIONS(2997), 8, sym_return, sym_next, sym_break, @@ -94191,7 +94191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(66), 19, + STATE(196), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94214,58 +94214,58 @@ static const uint16_t ts_small_parse_table[] = { [74065] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -94280,7 +94280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1487), 19, + STATE(1461), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94303,58 +94303,58 @@ static const uint16_t ts_small_parse_table[] = { [74182] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -94369,7 +94369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1368), 19, + STATE(1536), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94392,58 +94392,58 @@ static const uint16_t ts_small_parse_table[] = { [74299] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -94458,7 +94458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1575), 19, + STATE(1415), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94481,58 +94481,58 @@ static const uint16_t ts_small_parse_table[] = { [74416] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -94547,7 +94547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1573), 19, + STATE(1402), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94570,58 +94570,58 @@ static const uint16_t ts_small_parse_table[] = { [74533] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -94636,7 +94636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1505), 19, + STATE(1359), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94659,58 +94659,58 @@ static const uint16_t ts_small_parse_table[] = { [74650] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -94725,7 +94725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1362), 19, + STATE(1417), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94748,58 +94748,58 @@ static const uint16_t ts_small_parse_table[] = { [74767] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -94814,7 +94814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1490), 19, + STATE(1371), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94837,58 +94837,58 @@ static const uint16_t ts_small_parse_table[] = { [74884] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -94903,7 +94903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1463), 19, + STATE(1399), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -94926,58 +94926,58 @@ static const uint16_t ts_small_parse_table[] = { [75001] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -94992,7 +94992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1499), 19, + STATE(1445), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95015,58 +95015,58 @@ static const uint16_t ts_small_parse_table[] = { [75118] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -95081,7 +95081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1364), 19, + STATE(1452), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95104,58 +95104,58 @@ static const uint16_t ts_small_parse_table[] = { [75235] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -95170,7 +95170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1509), 19, + STATE(1453), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95193,58 +95193,58 @@ static const uint16_t ts_small_parse_table[] = { [75352] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -95259,7 +95259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1376), 19, + STATE(1454), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95282,58 +95282,58 @@ static const uint16_t ts_small_parse_table[] = { [75469] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -95348,7 +95348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1377), 19, + STATE(1457), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95371,58 +95371,58 @@ static const uint16_t ts_small_parse_table[] = { [75586] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -95437,7 +95437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1378), 19, + STATE(1472), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95460,58 +95460,58 @@ static const uint16_t ts_small_parse_table[] = { [75703] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -95526,7 +95526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1379), 19, + STATE(1473), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95549,58 +95549,58 @@ static const uint16_t ts_small_parse_table[] = { [75820] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -95615,7 +95615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1512), 19, + STATE(1474), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95638,58 +95638,58 @@ static const uint16_t ts_small_parse_table[] = { [75937] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -95704,7 +95704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1334), 19, + STATE(1475), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95727,58 +95727,58 @@ static const uint16_t ts_small_parse_table[] = { [76054] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -95793,7 +95793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1517), 19, + STATE(1476), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95816,58 +95816,58 @@ static const uint16_t ts_small_parse_table[] = { [76171] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -95882,7 +95882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1478), 19, + STATE(1477), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95905,58 +95905,58 @@ static const uint16_t ts_small_parse_table[] = { [76288] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -95971,7 +95971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1335), 19, + STATE(1478), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -95994,58 +95994,58 @@ static const uint16_t ts_small_parse_table[] = { [76405] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96060,7 +96060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1454), 19, + STATE(1480), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96083,58 +96083,58 @@ static const uint16_t ts_small_parse_table[] = { [76522] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96149,7 +96149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1382), 19, + STATE(1482), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96172,58 +96172,58 @@ static const uint16_t ts_small_parse_table[] = { [76639] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96238,7 +96238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1527), 19, + STATE(1485), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96261,58 +96261,58 @@ static const uint16_t ts_small_parse_table[] = { [76756] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96327,7 +96327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1384), 19, + STATE(1486), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96350,58 +96350,58 @@ static const uint16_t ts_small_parse_table[] = { [76873] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96416,7 +96416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1385), 19, + STATE(1487), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96439,58 +96439,58 @@ static const uint16_t ts_small_parse_table[] = { [76990] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96505,7 +96505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1391), 19, + STATE(1488), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96528,58 +96528,58 @@ static const uint16_t ts_small_parse_table[] = { [77107] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96594,7 +96594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1420), 19, + STATE(1489), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96617,58 +96617,58 @@ static const uint16_t ts_small_parse_table[] = { [77224] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96683,7 +96683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1421), 19, + STATE(1490), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96706,58 +96706,58 @@ static const uint16_t ts_small_parse_table[] = { [77341] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96772,7 +96772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1430), 19, + STATE(1491), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96795,58 +96795,58 @@ static const uint16_t ts_small_parse_table[] = { [77458] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96861,7 +96861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1432), 19, + STATE(1493), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96884,58 +96884,58 @@ static const uint16_t ts_small_parse_table[] = { [77575] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -96950,7 +96950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1437), 19, + STATE(1494), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -96973,58 +96973,58 @@ static const uint16_t ts_small_parse_table[] = { [77692] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97039,7 +97039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1439), 19, + STATE(1495), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97062,58 +97062,58 @@ static const uint16_t ts_small_parse_table[] = { [77809] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97128,7 +97128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1447), 19, + STATE(1497), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97151,58 +97151,58 @@ static const uint16_t ts_small_parse_table[] = { [77926] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97217,7 +97217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1455), 19, + STATE(1498), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97240,58 +97240,58 @@ static const uint16_t ts_small_parse_table[] = { [78043] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97306,7 +97306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1460), 19, + STATE(1499), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97329,58 +97329,58 @@ static const uint16_t ts_small_parse_table[] = { [78160] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97395,7 +97395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1467), 19, + STATE(1501), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97418,58 +97418,58 @@ static const uint16_t ts_small_parse_table[] = { [78277] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97484,7 +97484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1528), 19, + STATE(1502), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97507,58 +97507,58 @@ static const uint16_t ts_small_parse_table[] = { [78394] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97573,7 +97573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1468), 19, + STATE(1504), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97596,58 +97596,58 @@ static const uint16_t ts_small_parse_table[] = { [78511] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97662,7 +97662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1470), 19, + STATE(1505), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97685,58 +97685,58 @@ static const uint16_t ts_small_parse_table[] = { [78628] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97751,7 +97751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1471), 19, + STATE(1506), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97774,58 +97774,58 @@ static const uint16_t ts_small_parse_table[] = { [78745] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97840,7 +97840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1473), 19, + STATE(1509), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97863,58 +97863,58 @@ static const uint16_t ts_small_parse_table[] = { [78862] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -97929,7 +97929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1476), 19, + STATE(1511), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -97952,58 +97952,58 @@ static const uint16_t ts_small_parse_table[] = { [78979] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98018,7 +98018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1544), 19, + STATE(1513), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98041,58 +98041,58 @@ static const uint16_t ts_small_parse_table[] = { [79096] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98107,7 +98107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1361), 19, + STATE(1514), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98130,58 +98130,58 @@ static const uint16_t ts_small_parse_table[] = { [79213] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98196,7 +98196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1452), 19, + STATE(1515), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98219,58 +98219,58 @@ static const uint16_t ts_small_parse_table[] = { [79330] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98285,7 +98285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1568), 19, + STATE(1517), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98308,58 +98308,58 @@ static const uint16_t ts_small_parse_table[] = { [79447] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98374,7 +98374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1479), 19, + STATE(1518), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98397,58 +98397,58 @@ static const uint16_t ts_small_parse_table[] = { [79564] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98463,7 +98463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1566), 19, + STATE(1521), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98486,58 +98486,58 @@ static const uint16_t ts_small_parse_table[] = { [79681] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98552,7 +98552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1484), 19, + STATE(1522), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98575,58 +98575,58 @@ static const uint16_t ts_small_parse_table[] = { [79798] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98641,7 +98641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1418), 19, + STATE(1523), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98664,58 +98664,58 @@ static const uint16_t ts_small_parse_table[] = { [79915] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98730,7 +98730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1417), 19, + STATE(1524), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98753,58 +98753,58 @@ static const uint16_t ts_small_parse_table[] = { [80032] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98819,7 +98819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1559), 19, + STATE(1525), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98842,58 +98842,58 @@ static const uint16_t ts_small_parse_table[] = { [80149] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98908,7 +98908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1398), 19, + STATE(1528), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -98931,58 +98931,58 @@ static const uint16_t ts_small_parse_table[] = { [80266] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -98997,7 +98997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1387), 19, + STATE(1531), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99020,58 +99020,58 @@ static const uint16_t ts_small_parse_table[] = { [80383] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99086,7 +99086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1363), 19, + STATE(1538), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99109,58 +99109,58 @@ static const uint16_t ts_small_parse_table[] = { [80500] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99175,7 +99175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1438), 19, + STATE(1540), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99198,58 +99198,58 @@ static const uint16_t ts_small_parse_table[] = { [80617] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99264,7 +99264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1440), 19, + STATE(1544), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99287,58 +99287,58 @@ static const uint16_t ts_small_parse_table[] = { [80734] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99353,7 +99353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1444), 19, + STATE(1546), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99376,58 +99376,58 @@ static const uint16_t ts_small_parse_table[] = { [80851] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99442,7 +99442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1550), 19, + STATE(1549), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99465,58 +99465,58 @@ static const uint16_t ts_small_parse_table[] = { [80968] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99531,7 +99531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1525), 19, + STATE(1551), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99554,58 +99554,58 @@ static const uint16_t ts_small_parse_table[] = { [81085] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99620,7 +99620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1549), 19, + STATE(1555), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99643,58 +99643,58 @@ static const uint16_t ts_small_parse_table[] = { [81202] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99709,7 +99709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1462), 19, + STATE(1556), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99732,58 +99732,58 @@ static const uint16_t ts_small_parse_table[] = { [81319] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99798,7 +99798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1472), 19, + STATE(1560), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99821,58 +99821,58 @@ static const uint16_t ts_small_parse_table[] = { [81436] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99887,7 +99887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1482), 19, + STATE(1562), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99910,58 +99910,58 @@ static const uint16_t ts_small_parse_table[] = { [81553] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -99976,7 +99976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1493), 19, + STATE(1564), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -99999,58 +99999,58 @@ static const uint16_t ts_small_parse_table[] = { [81670] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -100065,7 +100065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1494), 19, + STATE(1565), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100088,58 +100088,58 @@ static const uint16_t ts_small_parse_table[] = { [81787] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -100154,7 +100154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1513), 19, + STATE(1566), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100177,58 +100177,58 @@ static const uint16_t ts_small_parse_table[] = { [81904] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -100243,7 +100243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1515), 19, + STATE(1567), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100266,58 +100266,58 @@ static const uint16_t ts_small_parse_table[] = { [82021] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -100332,7 +100332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1519), 19, + STATE(1568), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100355,58 +100355,58 @@ static const uint16_t ts_small_parse_table[] = { [82138] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -100421,7 +100421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1531), 19, + STATE(1569), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100444,58 +100444,58 @@ static const uint16_t ts_small_parse_table[] = { [82255] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(381), 1, anon_sym_BSLASH, - ACTIONS(429), 1, + ACTIONS(383), 1, anon_sym_function, - ACTIONS(431), 1, + ACTIONS(385), 1, anon_sym_if, - ACTIONS(433), 1, + ACTIONS(387), 1, anon_sym_for, - ACTIONS(435), 1, + ACTIONS(389), 1, anon_sym_while, - ACTIONS(437), 1, + ACTIONS(391), 1, anon_sym_repeat, - ACTIONS(439), 1, + ACTIONS(393), 1, anon_sym_QMARK, - ACTIONS(441), 1, + ACTIONS(395), 1, anon_sym_TILDE, - ACTIONS(443), 1, + ACTIONS(397), 1, anon_sym_BANG, - ACTIONS(447), 1, + ACTIONS(401), 1, sym__hex_literal, - ACTIONS(449), 1, + ACTIONS(403), 1, sym__number_literal, - ACTIONS(451), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(465), 1, + ACTIONS(419), 1, sym__external_open_parenthesis, - ACTIONS(469), 1, + ACTIONS(423), 1, sym__external_open_brace, - STATE(423), 1, + STATE(402), 1, sym__open_brace, - STATE(1096), 1, + STATE(1056), 1, sym__open_parenthesis, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1627), 1, + STATE(1619), 1, sym_string, - STATE(1629), 1, + STATE(1620), 1, sym__float_literal, - STATE(1630), 1, + STATE(1624), 1, sym__single_quoted_string, - ACTIONS(445), 2, + STATE(1625), 1, + sym__double_quoted_string, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1037), 3, + ACTIONS(1033), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(459), 5, + ACTIONS(413), 5, anon_sym_NA, anon_sym_NA_integer_, anon_sym_NA_real_, @@ -100510,7 +100510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_inf, sym_nan, - STATE(1533), 19, + STATE(1471), 19, sym_function_definition, sym_if_statement, sym_for_statement, @@ -100533,23 +100533,383 @@ static const uint16_t ts_small_parse_table[] = { [82372] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1305), 1, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(1933), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, + sym__raw_string_literal, + ACTIONS(3145), 1, + sym__newline, + STATE(1123), 1, + aux_sym_function_definition_repeat1, + STATE(1602), 1, + sym__single_quoted_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1688), 1, + sym_string, + ACTIONS(3143), 3, + sym_dots, + sym_dot_dot_i, + sym_identifier, + ACTIONS(371), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(369), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_close_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [82444] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(3149), 1, + sym__newline, + STATE(1120), 1, + aux_sym_function_definition_repeat1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1579), 1, + sym__single_quoted_string, + STATE(1703), 1, + sym_string, + ACTIONS(3147), 3, + sym_dots, + sym_dot_dot_i, + sym_identifier, + ACTIONS(371), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(369), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_open_bracket, + sym__external_close_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [82516] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2393), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_DQUOTE, + ACTIONS(2403), 1, + sym__raw_string_literal, + ACTIONS(3153), 1, + sym__newline, + STATE(1138), 1, + aux_sym_function_definition_repeat1, + STATE(1576), 1, + sym__double_quoted_string, + STATE(1579), 1, + sym__single_quoted_string, + STATE(1646), 1, + sym_string, + ACTIONS(3151), 3, + sym_dots, + sym_dot_dot_i, + sym_identifier, + ACTIONS(351), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(347), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_open_bracket, + sym__external_close_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [82588] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(3157), 1, + sym__newline, + STATE(1122), 1, + aux_sym_function_definition_repeat1, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1638), 1, + sym_string, + ACTIONS(3155), 3, + sym_dots, + sym_dot_dot_i, + sym_identifier, + ACTIONS(371), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(369), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [82660] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2597), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + anon_sym_DQUOTE, + ACTIONS(2607), 1, + sym__raw_string_literal, + ACTIONS(3161), 1, + sym__newline, + STATE(1134), 1, + aux_sym_function_definition_repeat1, + STATE(1594), 1, + sym__single_quoted_string, + STATE(1595), 1, + sym__double_quoted_string, + STATE(1658), 1, + sym_string, + ACTIONS(3159), 3, + sym_dots, + sym_dot_dot_i, + sym_identifier, + ACTIONS(351), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(347), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [82732] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, + anon_sym_SQUOTE, + ACTIONS(1933), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, + sym__raw_string_literal, + ACTIONS(3165), 1, + sym__newline, + STATE(1133), 1, + aux_sym_function_definition_repeat1, + STATE(1602), 1, + sym__single_quoted_string, + STATE(1603), 1, + sym__double_quoted_string, + STATE(1643), 1, + sym_string, + ACTIONS(3163), 3, + sym_dots, + sym_dot_dot_i, + sym_identifier, + ACTIONS(351), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(347), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_close_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [82804] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(3145), 1, + ACTIONS(3169), 1, sym__newline, - STATE(1123), 1, + STATE(1147), 1, aux_sym_function_definition_repeat1, - STATE(1585), 1, - sym__single_quoted_string, - STATE(1589), 1, + STATE(1611), 1, sym__double_quoted_string, - STATE(1660), 1, + STATE(1629), 1, + sym__single_quoted_string, + STATE(1722), 1, sym_string, - ACTIONS(3143), 3, + ACTIONS(3167), 3, sym_dots, sym_dot_dot_i, sym_identifier, @@ -100563,11 +100923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(349), 26, - sym__external_else, + ACTIONS(347), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -100590,30 +100949,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [82444] = 12, + [82875] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1633), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(531), 1, sym__raw_string_literal, - ACTIONS(3149), 1, + ACTIONS(3173), 1, sym__newline, - STATE(1138), 1, + STATE(1124), 1, aux_sym_function_definition_repeat1, - STATE(1598), 1, - sym__single_quoted_string, - STATE(1600), 1, + STATE(1611), 1, sym__double_quoted_string, - STATE(1638), 1, + STATE(1629), 1, + sym__single_quoted_string, + STATE(1720), 1, sym_string, - ACTIONS(3147), 3, + ACTIONS(3171), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(365), 9, + ACTIONS(371), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -100623,12 +100982,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(361), 26, - sym__external_else, + ACTIONS(369), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -100650,30 +101008,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [82516] = 12, + [82946] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1633), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1635), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1641), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(3153), 1, + ACTIONS(3177), 1, sym__newline, - STATE(1119), 1, + STATE(1128), 1, aux_sym_function_definition_repeat1, - STATE(1598), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1600), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1689), 1, + STATE(1731), 1, sym_string, - ACTIONS(3151), 3, + ACTIONS(3175), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(351), 9, + ACTIONS(371), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -100683,12 +101041,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(349), 26, - sym__external_else, + ACTIONS(369), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -100710,30 +101067,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [82588] = 12, + [83017] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(3157), 1, + ACTIONS(3181), 1, sym__newline, - STATE(1137), 1, + STATE(1129), 1, aux_sym_function_definition_repeat1, - STATE(1594), 1, + STATE(1604), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1666), 1, + STATE(1765), 1, sym_string, - ACTIONS(3155), 3, + ACTIONS(3179), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(365), 9, + ACTIONS(371), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -100743,12 +101100,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(361), 26, - sym__external_else, + ACTIONS(369), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -100770,26 +101126,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [82660] = 12, + [83088] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, + ACTIONS(405), 1, anon_sym_SQUOTE, - ACTIONS(1761), 1, + ACTIONS(407), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(3161), 1, + ACTIONS(3185), 1, sym__newline, - STATE(1121), 1, + STATE(1145), 1, aux_sym_function_definition_repeat1, - STATE(1594), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1596), 1, + STATE(1625), 1, sym__double_quoted_string, - STATE(1682), 1, + STATE(1770), 1, sym_string, - ACTIONS(3159), 3, + ACTIONS(3183), 3, sym_dots, sym_dot_dot_i, sym_identifier, @@ -100803,11 +101159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(349), 26, - sym__external_else, + ACTIONS(347), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -100830,30 +101185,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [82732] = 12, + [83159] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1305), 1, + ACTIONS(451), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(3165), 1, + ACTIONS(3189), 1, sym__newline, - STATE(1135), 1, + STATE(1148), 1, aux_sym_function_definition_repeat1, - STATE(1585), 1, + STATE(1604), 1, sym__single_quoted_string, - STATE(1589), 1, + STATE(1632), 1, sym__double_quoted_string, - STATE(1644), 1, + STATE(1712), 1, sym_string, - ACTIONS(3163), 3, + ACTIONS(3187), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(365), 9, + ACTIONS(351), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -100863,12 +101218,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(361), 26, - sym__external_else, + ACTIONS(347), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -100890,30 +101244,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [82804] = 12, + [83230] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(2393), 1, anon_sym_SQUOTE, - ACTIONS(453), 1, + ACTIONS(2395), 1, anon_sym_DQUOTE, - ACTIONS(463), 1, + ACTIONS(2403), 1, sym__raw_string_literal, - ACTIONS(3169), 1, - sym__newline, - STATE(1129), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, + STATE(1576), 1, sym__double_quoted_string, - STATE(1630), 1, + STATE(1579), 1, sym__single_quoted_string, - STATE(1717), 1, + STATE(1637), 1, sym_string, - ACTIONS(3167), 3, + ACTIONS(3191), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(351), 9, + ACTIONS(491), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -100923,10 +101273,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(349), 25, + ACTIONS(489), 26, + sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -100949,30 +101300,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [82875] = 12, + [83296] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(2597), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(2599), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(2607), 1, sym__raw_string_literal, - ACTIONS(3173), 1, - sym__newline, - STATE(1126), 1, - aux_sym_function_definition_repeat1, - STATE(1613), 1, + STATE(1594), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(1595), 1, sym__double_quoted_string, - STATE(1776), 1, + STATE(1690), 1, sym_string, - ACTIONS(3171), 3, + ACTIONS(3193), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(351), 9, + ACTIONS(491), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -100982,11 +101329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(349), 25, + ACTIONS(489), 26, + sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -101008,30 +101356,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [82946] = 12, + [83362] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(1931), 1, anon_sym_SQUOTE, - ACTIONS(509), 1, + ACTIONS(1933), 1, anon_sym_DQUOTE, - ACTIONS(519), 1, + ACTIONS(1941), 1, sym__raw_string_literal, - ACTIONS(3177), 1, - sym__newline, - STATE(1158), 1, - aux_sym_function_definition_repeat1, - STATE(1613), 1, + STATE(1602), 1, sym__single_quoted_string, - STATE(1614), 1, + STATE(1603), 1, sym__double_quoted_string, - STATE(1723), 1, + STATE(1641), 1, sym_string, - ACTIONS(3175), 3, + ACTIONS(3195), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(365), 9, + ACTIONS(491), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -101041,10 +101385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(361), 25, + ACTIONS(489), 26, + sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -101067,30 +101412,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [83017] = 12, + [83428] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(405), 1, - anon_sym_SQUOTE, - ACTIONS(407), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, - sym__raw_string_literal, - ACTIONS(3181), 1, + ACTIONS(3197), 1, sym__newline, - STATE(1128), 1, + STATE(1133), 1, aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(1763), 1, - sym_string, - ACTIONS(3179), 3, + ACTIONS(661), 12, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(351), 9, + ACTIONS(659), 29, + sym__raw_string_literal, + sym__external_else, + sym__external_open_parenthesis, + sym__external_close_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + sym_comma, + [83483] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3200), 1, + sym__newline, + STATE(1134), 1, + aux_sym_function_definition_repeat1, + ACTIONS(661), 12, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -101100,7 +101479,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(349), 25, + sym_dots, + sym_dot_dot_i, + sym_identifier, + ACTIONS(659), 29, + sym__raw_string_literal, + sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -101125,8 +101509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_DQUOTE, sym_comma, - [83088] = 12, + [83538] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(405), 1, @@ -101135,21 +101521,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(417), 1, sym__raw_string_literal, - ACTIONS(3185), 1, - sym__newline, - STATE(1157), 1, - aux_sym_function_definition_repeat1, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1631), 1, + STATE(1624), 1, sym__single_quoted_string, - STATE(1761), 1, + STATE(1625), 1, + sym__double_quoted_string, + STATE(1755), 1, sym_string, - ACTIONS(3183), 3, + ACTIONS(3203), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(365), 9, + ACTIONS(491), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -101159,11 +101541,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(361), 25, + ACTIONS(489), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -101185,7 +101567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [83159] = 12, + [83603] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -101194,21 +101576,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(463), 1, sym__raw_string_literal, - ACTIONS(3189), 1, - sym__newline, - STATE(1152), 1, - aux_sym_function_definition_repeat1, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1630), 1, + STATE(1604), 1, sym__single_quoted_string, - STATE(1748), 1, + STATE(1632), 1, + sym__double_quoted_string, + STATE(1715), 1, sym_string, - ACTIONS(3187), 3, + ACTIONS(3205), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(365), 9, + ACTIONS(491), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -101218,11 +101596,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(361), 25, + ACTIONS(489), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -101244,26 +101622,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [83230] = 10, + [83668] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(521), 1, anon_sym_DQUOTE, - ACTIONS(1313), 1, + ACTIONS(531), 1, sym__raw_string_literal, - STATE(1585), 1, - sym__single_quoted_string, - STATE(1589), 1, + STATE(1611), 1, sym__double_quoted_string, - STATE(1655), 1, + STATE(1629), 1, + sym__single_quoted_string, + STATE(1758), 1, sym_string, - ACTIONS(3191), 3, + ACTIONS(3207), 3, sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(531), 9, + ACTIONS(491), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -101273,11 +101651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(529), 26, - sym__external_else, + ACTIONS(489), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -101300,26 +101677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [83296] = 10, + [83733] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1633), 1, - anon_sym_SQUOTE, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - sym__raw_string_literal, - STATE(1598), 1, - sym__single_quoted_string, - STATE(1600), 1, - sym__double_quoted_string, - STATE(1645), 1, - sym_string, - ACTIONS(3193), 3, - sym_dots, - sym_dot_dot_i, - sym_identifier, - ACTIONS(531), 9, + ACTIONS(3209), 1, + sym__newline, + STATE(1138), 1, + aux_sym_function_definition_repeat1, + ACTIONS(661), 12, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -101329,12 +101694,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(529), 26, + sym_dots, + sym_dot_dot_i, + sym_identifier, + ACTIONS(659), 29, + sym__raw_string_literal, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -101355,181 +101724,473 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_SQUOTE, + anon_sym_DQUOTE, sym_comma, - [83362] = 10, + [83788] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym__raw_string_literal, - STATE(1594), 1, - sym__single_quoted_string, - STATE(1596), 1, - sym__double_quoted_string, - STATE(1688), 1, - sym_string, - ACTIONS(3195), 3, - sym_dots, - sym_dot_dot_i, - sym_identifier, - ACTIONS(531), 9, + ACTIONS(3212), 1, anon_sym_EQ, + ACTIONS(3214), 1, + anon_sym_TILDE, + ACTIONS(3216), 1, + anon_sym_PLUS, + ACTIONS(3218), 1, anon_sym_DASH, + ACTIONS(3222), 1, anon_sym_DASH_GT, + ACTIONS(3224), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3226), 1, anon_sym_PIPE, + ACTIONS(3228), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3232), 1, + anon_sym_AMP_AMP, + ACTIONS(3238), 1, anon_sym_STAR, + ACTIONS(3240), 1, + anon_sym_SLASH, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(529), 26, + ACTIONS(3250), 1, sym__external_else, + ACTIONS(3252), 1, sym__external_open_parenthesis, + ACTIONS(3254), 1, sym__external_open_bracket, - sym__external_close_bracket, + ACTIONS(3256), 1, sym__external_open_bracket2, + STATE(272), 1, + sym__open_parenthesis, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(846), 1, + sym__else, + STATE(1672), 1, + sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3234), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3242), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3244), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3248), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(57), 3, + sym__external_close_parenthesis, anon_sym_QMARK, + sym_comma, + ACTIONS(3220), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3236), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [83896] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3258), 1, + anon_sym_EQ, + ACTIONS(3260), 1, anon_sym_TILDE, + ACTIONS(3262), 1, anon_sym_PLUS, + ACTIONS(3264), 1, + anon_sym_DASH, + ACTIONS(3268), 1, + anon_sym_DASH_GT, + ACTIONS(3270), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, + anon_sym_PIPE, + ACTIONS(3274), 1, + anon_sym_AMP, + ACTIONS(3276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_STAR, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3292), 1, + anon_sym_COLON, + ACTIONS(3296), 1, + sym__external_else, + ACTIONS(3298), 1, + sym__external_open_parenthesis, + ACTIONS(3300), 1, + sym__external_open_bracket, + ACTIONS(3302), 1, + sym__external_open_bracket2, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, + sym__open_parenthesis, + STATE(282), 1, + sym__open_bracket, + STATE(622), 1, + sym__else, + STATE(1698), 1, + sym_call_arguments, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3290), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3294), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(63), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, + ACTIONS(3282), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [84004] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3258), 1, + anon_sym_EQ, + ACTIONS(3260), 1, + anon_sym_TILDE, + ACTIONS(3262), 1, + anon_sym_PLUS, + ACTIONS(3264), 1, + anon_sym_DASH, + ACTIONS(3268), 1, + anon_sym_DASH_GT, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, + anon_sym_PIPE, + ACTIONS(3274), 1, + anon_sym_AMP, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, anon_sym_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_STAR, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3292), 1, + anon_sym_COLON, + ACTIONS(3298), 1, + sym__external_open_parenthesis, + ACTIONS(3300), 1, + sym__external_open_bracket, + ACTIONS(3302), 1, + sym__external_open_bracket2, + ACTIONS(3304), 1, + sym__external_else, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, + sym__open_parenthesis, + STATE(282), 1, + sym__open_bracket, + STATE(961), 1, + sym__else, + STATE(1698), 1, + sym_call_arguments, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3290), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3294), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(7), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3266), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + [84112] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3258), 1, + anon_sym_EQ, + ACTIONS(3260), 1, + anon_sym_TILDE, + ACTIONS(3262), 1, + anon_sym_PLUS, + ACTIONS(3264), 1, + anon_sym_DASH, + ACTIONS(3268), 1, + anon_sym_DASH_GT, + ACTIONS(3270), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, + anon_sym_PIPE, + ACTIONS(3274), 1, + anon_sym_AMP, + ACTIONS(3276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_STAR, + ACTIONS(3286), 1, anon_sym_SLASH, + ACTIONS(3292), 1, + anon_sym_COLON, + ACTIONS(3298), 1, + sym__external_open_parenthesis, + ACTIONS(3300), 1, + sym__external_open_bracket, + ACTIONS(3302), 1, + sym__external_open_bracket2, + ACTIONS(3306), 1, + sym__external_else, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, + sym__open_parenthesis, + STATE(282), 1, + sym__open_bracket, + STATE(965), 1, + sym__else, + STATE(1698), 1, + sym_call_arguments, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, + ACTIONS(69), 3, + sym__external_close_bracket2, + anon_sym_QMARK, sym_comma, - [83428] = 10, + ACTIONS(3266), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3282), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [84220] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_SQUOTE, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(463), 1, - sym__raw_string_literal, - STATE(1605), 1, - sym__double_quoted_string, - STATE(1630), 1, - sym__single_quoted_string, - STATE(1712), 1, - sym_string, - ACTIONS(3197), 3, - sym_dots, - sym_dot_dot_i, - sym_identifier, - ACTIONS(531), 9, + ACTIONS(3258), 1, anon_sym_EQ, + ACTIONS(3260), 1, + anon_sym_TILDE, + ACTIONS(3262), 1, + anon_sym_PLUS, + ACTIONS(3264), 1, anon_sym_DASH, + ACTIONS(3268), 1, anon_sym_DASH_GT, + ACTIONS(3270), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, anon_sym_PIPE, + ACTIONS(3274), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, anon_sym_STAR, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(529), 25, + ACTIONS(3298), 1, sym__external_open_parenthesis, - sym__external_close_parenthesis, + ACTIONS(3300), 1, sym__external_open_bracket, + ACTIONS(3302), 1, sym__external_open_bracket2, + ACTIONS(3308), 1, + sym__external_else, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, + sym__open_parenthesis, + STATE(282), 1, + sym__open_bracket, + STATE(966), 1, + sym__else, + STATE(1698), 1, + sym_call_arguments, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3290), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3294), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(57), 3, + sym__external_close_bracket2, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - sym_comma, - [83493] = 10, + [84328] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - sym__raw_string_literal, - STATE(1613), 1, - sym__single_quoted_string, - STATE(1614), 1, - sym__double_quoted_string, - STATE(1747), 1, - sym_string, - ACTIONS(3199), 3, - sym_dots, - sym_dot_dot_i, - sym_identifier, - ACTIONS(531), 9, + ACTIONS(3258), 1, anon_sym_EQ, + ACTIONS(3260), 1, + anon_sym_TILDE, + ACTIONS(3262), 1, + anon_sym_PLUS, + ACTIONS(3264), 1, anon_sym_DASH, + ACTIONS(3268), 1, anon_sym_DASH_GT, + ACTIONS(3270), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, anon_sym_PIPE, + ACTIONS(3274), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, anon_sym_STAR, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(529), 25, + ACTIONS(3298), 1, sym__external_open_parenthesis, + ACTIONS(3300), 1, sym__external_open_bracket, - sym__external_close_bracket, + ACTIONS(3302), 1, sym__external_open_bracket2, + ACTIONS(3310), 1, + sym__external_else, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, + sym__open_parenthesis, + STATE(282), 1, + sym__open_bracket, + STATE(971), 1, + sym__else, + STATE(1698), 1, + sym_call_arguments, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3290), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3294), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(63), 3, + sym__external_close_bracket2, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - sym_comma, - [83558] = 5, + [84436] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3201), 1, + ACTIONS(3312), 1, sym__newline, - STATE(1135), 1, + STATE(1145), 1, aux_sym_function_definition_repeat1, - ACTIONS(657), 12, + ACTIONS(661), 12, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -101542,9 +102203,8 @@ static const uint16_t ts_small_parse_table[] = { sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(655), 29, + ACTIONS(659), 28, sym__raw_string_literal, - sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -101572,69 +102232,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, sym_comma, - [83613] = 10, + [84490] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(405), 1, - anon_sym_SQUOTE, - ACTIONS(407), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, - sym__raw_string_literal, - STATE(1621), 1, - sym__double_quoted_string, - STATE(1631), 1, - sym__single_quoted_string, - STATE(1757), 1, - sym_string, - ACTIONS(3204), 3, - sym_dots, - sym_dot_dot_i, - sym_identifier, - ACTIONS(531), 9, + ACTIONS(3315), 1, anon_sym_EQ, + ACTIONS(3317), 1, + anon_sym_TILDE, + ACTIONS(3319), 1, + anon_sym_PLUS, + ACTIONS(3321), 1, anon_sym_DASH, + ACTIONS(3325), 1, anon_sym_DASH_GT, + ACTIONS(3327), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3329), 1, anon_sym_PIPE, + ACTIONS(3331), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3333), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3335), 1, + anon_sym_AMP_AMP, + ACTIONS(3341), 1, anon_sym_STAR, + ACTIONS(3343), 1, + anon_sym_SLASH, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(529), 25, + ACTIONS(3353), 1, + sym__external_else, + ACTIONS(3355), 1, sym__external_open_parenthesis, + ACTIONS(3357), 1, sym__external_open_bracket, + ACTIONS(3359), 1, sym__external_open_bracket2, - sym__external_close_bracket2, + STATE(278), 1, + sym__open_parenthesis, + STATE(279), 1, + sym__open_bracket, + STATE(280), 1, + sym__open_bracket2, + STATE(554), 1, + sym__else, + STATE(1693), 1, + sym_call_arguments, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3345), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3347), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3351), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(7), 3, + sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - sym_comma, - [83678] = 5, + [84598] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(3361), 1, sym__newline, - STATE(1137), 1, + STATE(1147), 1, aux_sym_function_definition_repeat1, - ACTIONS(657), 12, + ACTIONS(661), 12, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -101647,9 +102328,8 @@ static const uint16_t ts_small_parse_table[] = { sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(655), 29, + ACTIONS(659), 28, sym__raw_string_literal, - sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -101677,14 +102357,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, sym_comma, - [83733] = 5, + [84652] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3364), 1, sym__newline, - STATE(1138), 1, + STATE(1148), 1, aux_sym_function_definition_repeat1, - ACTIONS(657), 12, + ACTIONS(661), 12, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -101697,9 +102377,8 @@ static const uint16_t ts_small_parse_table[] = { sym_dots, sym_dot_dot_i, sym_identifier, - ACTIONS(655), 29, + ACTIONS(659), 28, sym__raw_string_literal, - sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -101727,235 +102406,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, sym_comma, - [83788] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3212), 1, - anon_sym_EQ, - ACTIONS(3214), 1, - anon_sym_TILDE, - ACTIONS(3216), 1, - anon_sym_PLUS, - ACTIONS(3218), 1, - anon_sym_DASH, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, - anon_sym_PIPE, - ACTIONS(3228), 1, - anon_sym_AMP, - ACTIONS(3230), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, - anon_sym_AMP_AMP, - ACTIONS(3238), 1, - anon_sym_STAR, - ACTIONS(3240), 1, - anon_sym_SLASH, - ACTIONS(3246), 1, - anon_sym_COLON, - ACTIONS(3250), 1, - sym__external_else, - ACTIONS(3252), 1, - sym__external_open_parenthesis, - ACTIONS(3254), 1, - sym__external_open_bracket, - ACTIONS(3256), 1, - sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, - sym__open_parenthesis, - STATE(511), 1, - sym__else, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, - sym_call_arguments, - ACTIONS(3234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3242), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3244), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3248), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(71), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3220), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3236), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [83896] = 32, + [84706] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3214), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3222), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3224), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - ACTIONS(3258), 1, + ACTIONS(3367), 1, sym__external_else, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(523), 1, + STATE(279), 1, + sym__open_bracket, + STATE(280), 1, + sym__open_bracket2, + STATE(558), 1, sym__else, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(1693), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(59), 3, - sym__external_close_parenthesis, + ACTIONS(69), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3220), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3236), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [84004] = 32, + [84814] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3298), 1, - sym__external_else, - ACTIONS(3300), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(254), 1, + ACTIONS(3369), 1, + sym__external_else, + STATE(278), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(279), 1, sym__open_bracket, - STATE(259), 1, + STATE(280), 1, sym__open_bracket2, - STATE(729), 1, + STATE(559), 1, sym__else, - STATE(1704), 1, + STATE(1693), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1695), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1696), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(71), 3, - sym__external_close_bracket2, + ACTIONS(57), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3268), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3284), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [84112] = 32, + [84922] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(3212), 1, @@ -101990,22 +102593,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - ACTIONS(3306), 1, + ACTIONS(3371), 1, sym__external_else, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(536), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(772), 1, sym__else, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -102018,7 +102621,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(9), 3, + ACTIONS(7), 3, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, @@ -102031,539 +102634,463 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [84220] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3260), 1, - anon_sym_EQ, - ACTIONS(3262), 1, - anon_sym_TILDE, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3266), 1, - anon_sym_DASH, - ACTIONS(3270), 1, - anon_sym_DASH_GT, - ACTIONS(3272), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, - anon_sym_PIPE, - ACTIONS(3276), 1, - anon_sym_AMP, - ACTIONS(3278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, - anon_sym_AMP_AMP, - ACTIONS(3286), 1, - anon_sym_STAR, - ACTIONS(3288), 1, - anon_sym_SLASH, - ACTIONS(3294), 1, - anon_sym_COLON, - ACTIONS(3300), 1, - sym__external_open_parenthesis, - ACTIONS(3302), 1, - sym__external_open_bracket, - ACTIONS(3304), 1, - sym__external_open_bracket2, - ACTIONS(3308), 1, - sym__external_else, - STATE(254), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(739), 1, - sym__else, - STATE(1704), 1, - sym_call_arguments, - STATE(1706), 1, - sym_subset_arguments, - STATE(1707), 1, - sym_subset2_arguments, - ACTIONS(3282), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3290), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3292), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3296), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(65), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3268), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3284), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [84328] = 32, + [85030] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3212), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3222), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3224), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - ACTIONS(3310), 1, + ACTIONS(3373), 1, sym__external_else, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(740), 1, + STATE(776), 1, sym__else, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(59), 3, - sym__external_close_bracket2, + ACTIONS(69), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3268), 3, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3284), 4, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [84436] = 32, + [85138] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3212), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3222), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3224), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - ACTIONS(3312), 1, + ACTIONS(3375), 1, sym__external_else, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(750), 1, + STATE(777), 1, sym__else, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(9), 3, - sym__external_close_bracket2, + ACTIONS(57), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3268), 3, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3284), 4, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [84544] = 32, + [85246] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3212), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3222), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3224), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3352), 1, - sym__external_else, - ACTIONS(3354), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + ACTIONS(3377), 1, + sym__external_else, + STATE(272), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(273), 1, sym__open_bracket, - STATE(835), 1, + STATE(274), 1, + sym__open_bracket2, + STATE(782), 1, sym__else, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(1672), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(71), 3, - sym__external_close_bracket, + ACTIONS(63), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3322), 3, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3338), 4, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [84652] = 32, + [85354] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - ACTIONS(3360), 1, + ACTIONS(3379), 1, sym__external_else, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(840), 1, + STATE(280), 1, + sym__open_bracket2, + STATE(564), 1, sym__else, - STATE(1692), 1, - sym_subset2_arguments, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(65), 3, + ACTIONS(63), 3, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3322), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [84760] = 32, + [85462] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - ACTIONS(3362), 1, + ACTIONS(3381), 1, sym__external_else, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(843), 1, + STATE(280), 1, + sym__open_bracket2, + STATE(906), 1, sym__else, - STATE(1692), 1, - sym_subset2_arguments, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(59), 3, + ACTIONS(7), 3, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3322), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [84868] = 32, + [85570] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - ACTIONS(3364), 1, + ACTIONS(3383), 1, sym__external_else, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(847), 1, + STATE(280), 1, + sym__open_bracket2, + STATE(910), 1, sym__else, - STATE(1692), 1, - sym_subset2_arguments, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(9), 3, + ACTIONS(69), 3, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3322), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [84976] = 32, + [85678] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(3212), 1, @@ -102598,22 +103125,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - ACTIONS(3366), 1, + ACTIONS(3385), 1, sym__external_else, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(510), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(837), 1, sym__else, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -102626,7 +103153,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(71), 3, + ACTIONS(7), 3, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, @@ -102639,7 +103166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [85084] = 32, + [85786] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(3212), 1, @@ -102674,22 +103201,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - ACTIONS(3368), 1, + ACTIONS(3387), 1, sym__external_else, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(520), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(845), 1, sym__else, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -102702,7 +103229,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(65), 3, + ACTIONS(69), 3, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, @@ -102715,56 +103242,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [85192] = 5, + [85894] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3370), 1, - sym__newline, - STATE(1152), 1, - aux_sym_function_definition_repeat1, - ACTIONS(657), 12, + ACTIONS(3315), 1, anon_sym_EQ, + ACTIONS(3317), 1, + anon_sym_TILDE, + ACTIONS(3319), 1, + anon_sym_PLUS, + ACTIONS(3321), 1, anon_sym_DASH, + ACTIONS(3325), 1, anon_sym_DASH_GT, + ACTIONS(3327), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3329), 1, anon_sym_PIPE, + ACTIONS(3331), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3333), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3335), 1, + anon_sym_AMP_AMP, + ACTIONS(3341), 1, anon_sym_STAR, + ACTIONS(3343), 1, + anon_sym_SLASH, + ACTIONS(3349), 1, anon_sym_COLON, - sym_dots, - sym_dot_dot_i, - sym_identifier, - ACTIONS(655), 28, - sym__raw_string_literal, + ACTIONS(3355), 1, sym__external_open_parenthesis, - sym__external_close_parenthesis, + ACTIONS(3357), 1, sym__external_open_bracket, + ACTIONS(3359), 1, sym__external_open_bracket2, + ACTIONS(3389), 1, + sym__external_else, + STATE(278), 1, + sym__open_parenthesis, + STATE(279), 1, + sym__open_bracket, + STATE(280), 1, + sym__open_bracket2, + STATE(911), 1, + sym__else, + STATE(1693), 1, + sym_call_arguments, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3345), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3347), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3351), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(57), 3, + sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_comma, - [85246] = 32, + [86002] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(3212), 1, @@ -102799,22 +103353,22 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - ACTIONS(3373), 1, + ACTIONS(3391), 1, sym__external_else, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(531), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(861), 1, sym__else, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -102827,7 +103381,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(9), 3, + ACTIONS(63), 3, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, @@ -102840,1110 +103394,979 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [85354] = 32, + [86110] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - ACTIONS(3375), 1, + ACTIONS(3393), 1, sym__external_else, - STATE(248), 1, + STATE(249), 1, sym__open_bracket2, - STATE(264), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(282), 1, sym__open_bracket, - STATE(713), 1, + STATE(612), 1, sym__else, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(1698), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(9), 3, - sym__external_close_bracket, + ACTIONS(7), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3322), 3, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3338), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [85462] = 32, + [86218] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - ACTIONS(3377), 1, + ACTIONS(3395), 1, sym__external_else, - STATE(248), 1, + STATE(249), 1, sym__open_bracket2, - STATE(264), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(282), 1, sym__open_bracket, - STATE(722), 1, + STATE(616), 1, sym__else, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(1698), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(59), 3, - sym__external_close_bracket, + ACTIONS(69), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3322), 3, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3338), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [85570] = 32, + [86326] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - ACTIONS(3379), 1, + ACTIONS(3397), 1, sym__external_else, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(723), 1, + STATE(280), 1, + sym__open_bracket2, + STATE(916), 1, sym__else, - STATE(1692), 1, - sym_subset2_arguments, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(65), 3, + ACTIONS(63), 3, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3322), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [85678] = 5, + [86434] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3381), 1, - sym__newline, - STATE(1157), 1, - aux_sym_function_definition_repeat1, - ACTIONS(657), 12, + ACTIONS(3258), 1, anon_sym_EQ, + ACTIONS(3260), 1, + anon_sym_TILDE, + ACTIONS(3262), 1, + anon_sym_PLUS, + ACTIONS(3264), 1, anon_sym_DASH, + ACTIONS(3268), 1, anon_sym_DASH_GT, + ACTIONS(3270), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, anon_sym_PIPE, + ACTIONS(3274), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, anon_sym_STAR, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3292), 1, anon_sym_COLON, - sym_dots, - sym_dot_dot_i, - sym_identifier, - ACTIONS(655), 28, - sym__raw_string_literal, + ACTIONS(3298), 1, sym__external_open_parenthesis, + ACTIONS(3300), 1, sym__external_open_bracket, + ACTIONS(3302), 1, sym__external_open_bracket2, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, + ACTIONS(3399), 1, + sym__external_else, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, + sym__open_parenthesis, + STATE(282), 1, + sym__open_bracket, + STATE(617), 1, + sym__else, + STATE(1698), 1, + sym_call_arguments, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_comma, - [85732] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3384), 1, - sym__newline, - STATE(1158), 1, - aux_sym_function_definition_repeat1, - ACTIONS(657), 12, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - sym_dots, - sym_dot_dot_i, - sym_identifier, - ACTIONS(655), 28, - sym__raw_string_literal, - sym__external_open_parenthesis, - sym__external_open_bracket, - sym__external_close_bracket, - sym__external_open_bracket2, + ACTIONS(57), 3, + sym__external_close_bracket2, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_comma, - [85786] = 32, + [86542] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - ACTIONS(3387), 1, - sym__external_else, - STATE(248), 1, + STATE(249), 1, sym__open_bracket2, - STATE(264), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(282), 1, sym__open_bracket, - STATE(734), 1, - sym__else, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(1698), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(71), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3322), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3338), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [85894] = 32, + ACTIONS(151), 7, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + sym_comma, + [86643] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, - anon_sym_EQ, - ACTIONS(3214), 1, - anon_sym_TILDE, - ACTIONS(3216), 1, - anon_sym_PLUS, - ACTIONS(3218), 1, - anon_sym_DASH, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, - anon_sym_PIPE, - ACTIONS(3228), 1, - anon_sym_AMP, - ACTIONS(3230), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, - anon_sym_AMP_AMP, - ACTIONS(3238), 1, - anon_sym_STAR, - ACTIONS(3240), 1, - anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - ACTIONS(3389), 1, - sym__external_else, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(525), 1, - sym__else, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(279), 1, + sym__open_bracket, + STATE(280), 1, + sym__open_bracket2, + STATE(1693), 1, sym_call_arguments, - ACTIONS(3234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3242), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(65), 3, - sym__external_close_parenthesis, + ACTIONS(165), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 17, + sym__external_else, + sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3220), 3, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3236), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [86002] = 32, + anon_sym_SLASH, + sym_comma, + [86718] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3355), 1, + sym__external_open_parenthesis, + ACTIONS(3357), 1, + sym__external_open_bracket, + ACTIONS(3359), 1, + sym__external_open_bracket2, + STATE(278), 1, + sym__open_parenthesis, + STATE(279), 1, + sym__open_bracket, + STATE(280), 1, + sym__open_bracket2, + STATE(1693), 1, + sym_call_arguments, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3345), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3351), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(165), 9, anon_sym_EQ, - ACTIONS(3262), 1, - anon_sym_TILDE, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3266), 1, anon_sym_DASH, - ACTIONS(3270), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, anon_sym_PIPE, - ACTIONS(3276), 1, anon_sym_AMP, - ACTIONS(3278), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 19, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, - anon_sym_STAR, - ACTIONS(3288), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SLASH, - ACTIONS(3294), 1, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [86789] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - ACTIONS(3391), 1, - sym__external_else, - STATE(254), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(279), 1, sym__open_bracket, - STATE(259), 1, + STATE(280), 1, sym__open_bracket2, - STATE(873), 1, - sym__else, - STATE(1704), 1, + STATE(1693), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1695), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1696), 1, sym_subset2_arguments, - ACTIONS(3282), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(9), 3, - sym__external_close_bracket2, + ACTIONS(165), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 19, + sym__external_else, + sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3268), 3, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3284), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [86110] = 32, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [86862] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, - anon_sym_EQ, - ACTIONS(3214), 1, - anon_sym_TILDE, - ACTIONS(3216), 1, - anon_sym_PLUS, - ACTIONS(3218), 1, - anon_sym_DASH, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, - anon_sym_PIPE, - ACTIONS(3228), 1, - anon_sym_AMP, - ACTIONS(3230), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, - anon_sym_AMP_AMP, - ACTIONS(3238), 1, - anon_sym_STAR, - ACTIONS(3240), 1, - anon_sym_SLASH, - ACTIONS(3246), 1, - anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - ACTIONS(3393), 1, - sym__external_else, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(526), 1, - sym__else, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(279), 1, + sym__open_bracket, + STATE(280), 1, + sym__open_bracket2, + STATE(1693), 1, sym_call_arguments, - ACTIONS(3234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3242), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(59), 3, - sym__external_close_parenthesis, + ACTIONS(165), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 19, + sym__external_else, + sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3220), 3, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3236), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [86218] = 32, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [86933] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - ACTIONS(3395), 1, - sym__external_else, - STATE(254), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(279), 1, sym__open_bracket, - STATE(259), 1, + STATE(280), 1, sym__open_bracket2, - STATE(882), 1, - sym__else, - STATE(1704), 1, + STATE(1693), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1695), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1696), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(59), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3268), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3284), 4, + ACTIONS(167), 4, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [86326] = 32, + [87036] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - ACTIONS(3397), 1, - sym__external_else, - STATE(254), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(279), 1, sym__open_bracket, - STATE(259), 1, + STATE(280), 1, sym__open_bracket2, - STATE(883), 1, - sym__else, - STATE(1704), 1, + STATE(1693), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1695), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1696), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(65), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3268), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3284), 4, + ACTIONS(171), 4, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [86434] = 32, + [87139] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - ACTIONS(3399), 1, - sym__external_else, - STATE(254), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(279), 1, sym__open_bracket, - STATE(259), 1, + STATE(280), 1, sym__open_bracket2, - STATE(894), 1, - sym__else, - STATE(1704), 1, + STATE(1693), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1695), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1696), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(71), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3268), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3284), 4, + ACTIONS(175), 4, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [86542] = 30, + [87242] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(279), 1, sym__open_bracket, - STATE(259), 1, + STATE(280), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1693), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1695), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1696), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(195), 4, + ACTIONS(179), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [86645] = 14, + [87345] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 1, - sym__external_open_parenthesis, - ACTIONS(3356), 1, - sym__external_open_bracket, - ACTIONS(3358), 1, - sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, - sym__open_parenthesis, - STATE(269), 1, - sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, - sym_call_arguments, - ACTIONS(3344), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3350), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(147), 9, + ACTIONS(3315), 1, anon_sym_EQ, + ACTIONS(3317), 1, + anon_sym_TILDE, + ACTIONS(3319), 1, + anon_sym_PLUS, + ACTIONS(3321), 1, anon_sym_DASH, + ACTIONS(3325), 1, anon_sym_DASH_GT, + ACTIONS(3327), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3329), 1, anon_sym_PIPE, + ACTIONS(3331), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(149), 19, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3341), 1, + anon_sym_STAR, + ACTIONS(3343), 1, anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [86716] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3246), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(279), 1, + sym__open_bracket, + STATE(280), 1, + sym__open_bracket2, + STATE(1693), 1, sym_call_arguments, - ACTIONS(3242), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3248), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(165), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - ACTIONS(163), 19, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [86789] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3252), 1, - sym__external_open_parenthesis, - ACTIONS(3254), 1, - sym__external_open_bracket, - ACTIONS(3256), 1, - sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, - sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, - sym_call_arguments, - ACTIONS(3242), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3248), 2, + ACTIONS(3347), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 19, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(183), 4, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [86860] = 14, + [87448] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(3252), 1, @@ -103952,25 +104375,25 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, + ACTIONS(153), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -103980,7 +104403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(163), 19, + ACTIONS(151), 19, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, @@ -104000,1355 +104423,1234 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [86931] = 30, + [87519] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(279), 1, sym__open_bracket, - STATE(259), 1, + STATE(280), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1693), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1695), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1696), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(239), 4, + ACTIONS(187), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87034] = 30, + [87622] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(279), 1, sym__open_bracket, - STATE(259), 1, + STATE(280), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1693), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1695), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1696), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(235), 4, + ACTIONS(191), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87137] = 30, + [87725] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(279), 1, sym__open_bracket, - STATE(259), 1, + STATE(280), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1693), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1695), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1696), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(231), 4, + ACTIONS(195), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87240] = 30, + [87828] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(279), 1, sym__open_bracket, - STATE(259), 1, + STATE(280), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1693), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1695), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1696), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(227), 4, + ACTIONS(199), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87343] = 30, + [87931] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(279), 1, sym__open_bracket, - STATE(259), 1, + STATE(280), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1693), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1695), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1696), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(223), 4, + ACTIONS(203), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87446] = 30, + [88034] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(279), 1, sym__open_bracket, - STATE(259), 1, + STATE(280), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1693), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1695), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1696), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(219), 4, + ACTIONS(207), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87549] = 30, + [88137] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(279), 1, sym__open_bracket, - STATE(259), 1, + STATE(280), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1693), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1695), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1696), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(143), 4, + ACTIONS(211), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87652] = 30, + [88240] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(279), 1, sym__open_bracket, - STATE(259), 1, + STATE(280), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1693), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1695), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1696), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, ACTIONS(215), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87755] = 30, + [88343] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3214), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3222), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3224), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(279), 1, + sym__open_bracket, + STATE(280), 1, + sym__open_bracket2, + STATE(1693), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(167), 4, + ACTIONS(219), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3236), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87858] = 30, + [88446] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3214), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3222), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3224), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(279), 1, + sym__open_bracket, + STATE(280), 1, + sym__open_bracket2, + STATE(1693), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(171), 4, + ACTIONS(145), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3236), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [87961] = 24, + [88549] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3216), 1, + ACTIONS(3315), 1, + anon_sym_EQ, + ACTIONS(3317), 1, + anon_sym_TILDE, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3228), 1, + ACTIONS(3325), 1, + anon_sym_DASH_GT, + ACTIONS(3327), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3329), 1, + anon_sym_PIPE, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3232), 1, + ACTIONS(3333), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(279), 1, + sym__open_bracket, + STATE(280), 1, + sym__open_bracket2, + STATE(1693), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 3, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - ACTIONS(3236), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 10, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - sym_comma, - [88052] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3246), 1, - anon_sym_COLON, - ACTIONS(3252), 1, - sym__external_open_parenthesis, - ACTIONS(3254), 1, - sym__external_open_bracket, - ACTIONS(3256), 1, - sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, - sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, - sym_call_arguments, - ACTIONS(3242), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3248), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(153), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - ACTIONS(151), 19, + ACTIONS(223), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + sym_comma, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [88125] = 30, + [88652] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(279), 1, sym__open_bracket, - STATE(259), 1, + STATE(280), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1693), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1695), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1696), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(211), 4, + ACTIONS(227), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [88228] = 30, + [88755] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(191), 4, + ACTIONS(233), 4, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [88331] = 30, + [88858] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(187), 4, + ACTIONS(237), 4, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [88434] = 20, + [88961] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3216), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3238), 1, + ACTIONS(3272), 1, + anon_sym_PIPE, + ACTIONS(3274), 1, + anon_sym_AMP, + ACTIONS(3276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3242), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(235), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 15, + ACTIONS(3282), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(237), 9, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, sym_comma, - [88517] = 14, + [89056] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3252), 1, + ACTIONS(3262), 1, + anon_sym_PLUS, + ACTIONS(3264), 1, + anon_sym_DASH, + ACTIONS(3284), 1, + anon_sym_STAR, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3292), 1, + anon_sym_COLON, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3242), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3248), 2, + ACTIONS(3290), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, + ACTIONS(235), 4, anon_sym_EQ, - anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 19, + ACTIONS(3282), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(237), 11, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [88588] = 30, + [89143] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, - anon_sym_EQ, - ACTIONS(3214), 1, - anon_sym_TILDE, - ACTIONS(3216), 1, - anon_sym_PLUS, - ACTIONS(3218), 1, - anon_sym_DASH, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, - anon_sym_PIPE, - ACTIONS(3228), 1, - anon_sym_AMP, - ACTIONS(3230), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, - anon_sym_AMP_AMP, - ACTIONS(3238), 1, - anon_sym_STAR, - ACTIONS(3240), 1, - anon_sym_SLASH, - ACTIONS(3246), 1, - anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3242), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(175), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3236), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [88691] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3212), 1, + ACTIONS(235), 9, anon_sym_EQ, - ACTIONS(3214), 1, - anon_sym_TILDE, - ACTIONS(3216), 1, - anon_sym_PLUS, - ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3222), 1, anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3230), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, - anon_sym_AMP_AMP, - ACTIONS(3238), 1, - anon_sym_STAR, - ACTIONS(3240), 1, - anon_sym_SLASH, - ACTIONS(3246), 1, - anon_sym_COLON, - ACTIONS(3252), 1, - sym__external_open_parenthesis, - ACTIONS(3254), 1, - sym__external_open_bracket, - ACTIONS(3256), 1, - sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, - sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, - sym_call_arguments, - ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3244), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3248), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3220), 3, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(237), 19, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(179), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3236), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [88794] = 27, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [89214] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(3212), 1, + anon_sym_EQ, ACTIONS(3214), 1, anon_sym_TILDE, ACTIONS(3216), 1, anon_sym_PLUS, ACTIONS(3218), 1, anon_sym_DASH, + ACTIONS(3222), 1, + anon_sym_DASH_GT, + ACTIONS(3224), 1, + anon_sym_DASH_GT_GT, ACTIONS(3226), 1, anon_sym_PIPE, ACTIONS(3228), 1, @@ -105369,21 +105671,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -105396,21 +105695,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, + ACTIONS(3220), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(233), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 8, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [88891] = 30, + [89317] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3212), 1, @@ -105445,18 +105744,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -105473,7 +105772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(183), 4, + ACTIONS(237), 4, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, @@ -105483,431 +105782,417 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [88994] = 30, + [89420] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(183), 4, + ACTIONS(241), 4, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89097] = 16, + [89523] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3246), 1, - anon_sym_COLON, - ACTIONS(3252), 1, - sym__external_open_parenthesis, - ACTIONS(3254), 1, - sym__external_open_bracket, - ACTIONS(3256), 1, - sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, - sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, - sym_call_arguments, - ACTIONS(3242), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3244), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3248), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(153), 8, + ACTIONS(3258), 1, anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - ACTIONS(151), 17, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - sym_comma, - [89172] = 30, - ACTIONS(3), 1, - sym_comment, ACTIONS(3260), 1, - anon_sym_EQ, - ACTIONS(3262), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(179), 4, + ACTIONS(245), 4, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89275] = 30, + [89626] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3214), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3222), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3224), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(187), 4, + ACTIONS(147), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3236), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89378] = 30, + [89729] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, - anon_sym_EQ, ACTIONS(3262), 1, - anon_sym_TILDE, - ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3270), 1, - anon_sym_DASH_GT, ACTIONS(3272), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(149), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(175), 4, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3284), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89481] = 30, + ACTIONS(147), 9, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [89824] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, - anon_sym_EQ, ACTIONS(3262), 1, - anon_sym_TILDE, - ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3270), 1, - anon_sym_DASH_GT, - ACTIONS(3272), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, - anon_sym_PIPE, - ACTIONS(3276), 1, - anon_sym_AMP, - ACTIONS(3278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, - anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(149), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3282), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(147), 11, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(171), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [89911] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3298), 1, + sym__external_open_parenthesis, + ACTIONS(3300), 1, + sym__external_open_bracket, + ACTIONS(3302), 1, + sym__external_open_bracket2, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, + sym__open_parenthesis, + STATE(282), 1, + sym__open_bracket, + STATE(1698), 1, + sym_call_arguments, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3288), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3294), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(149), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(147), 19, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, - sym_comma, - ACTIONS(3284), 4, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89584] = 30, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [89982] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3212), 1, @@ -105942,18 +106227,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -105970,7 +106255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(191), 4, + ACTIONS(155), 4, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, @@ -105980,414 +106265,485 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89687] = 30, + [90085] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3214), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3222), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3224), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(195), 4, + ACTIONS(151), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3236), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89790] = 30, + [90188] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, - anon_sym_EQ, - ACTIONS(3214), 1, - anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3292), 1, + anon_sym_COLON, + ACTIONS(3298), 1, + sym__external_open_parenthesis, + ACTIONS(3300), 1, + sym__external_open_bracket, + ACTIONS(3302), 1, + sym__external_open_bracket2, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, + sym__open_parenthesis, + STATE(282), 1, + sym__open_bracket, + STATE(1698), 1, + sym_call_arguments, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3290), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3294), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3282), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(151), 9, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [90283] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3284), 1, + anon_sym_STAR, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3242), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, + ACTIONS(153), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(151), 16, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(211), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3236), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89893] = 30, + sym_comma, + [90362] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(167), 4, + ACTIONS(151), 4, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [89996] = 30, + [90465] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, - anon_sym_EQ, - ACTIONS(3214), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(215), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3236), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90099] = 14, + ACTIONS(151), 8, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [90562] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3300), 1, + ACTIONS(3262), 1, + anon_sym_PLUS, + ACTIONS(3264), 1, + anon_sym_DASH, + ACTIONS(3274), 1, + anon_sym_AMP, + ACTIONS(3278), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_STAR, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3292), 1, + anon_sym_COLON, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3290), 2, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3296), 2, + ACTIONS(3290), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, + ACTIONS(153), 3, anon_sym_EQ, - anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 19, + ACTIONS(3282), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(151), 10, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [90170] = 15, + [90653] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3294), 1, + ACTIONS(3262), 1, + anon_sym_PLUS, + ACTIONS(3264), 1, + anon_sym_DASH, + ACTIONS(3284), 1, + anon_sym_STAR, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3290), 2, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3296), 2, + ACTIONS(3290), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, + ACTIONS(153), 4, anon_sym_EQ, - anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - ACTIONS(163), 19, + ACTIONS(3282), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(151), 11, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [90243] = 30, + [90740] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3212), 1, @@ -106422,18 +106778,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -106450,7 +106806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(143), 4, + ACTIONS(159), 4, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, @@ -106460,107 +106816,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90346] = 30, + [90843] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, - anon_sym_EQ, - ACTIONS(3214), 1, - anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, - anon_sym_PIPE, - ACTIONS(3228), 1, - anon_sym_AMP, - ACTIONS(3230), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, - anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3242), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, + ACTIONS(153), 6, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(151), 15, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(219), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3236), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90449] = 14, + sym_comma, + [90926] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3300), 1, + ACTIONS(3292), 1, + anon_sym_COLON, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3296), 2, + ACTIONS(3290), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, + ACTIONS(153), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -106569,8 +106920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 19, + ACTIONS(151), 17, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, @@ -106587,156 +106937,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [90520] = 30, + [91001] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, - anon_sym_EQ, - ACTIONS(3214), 1, - anon_sym_TILDE, - ACTIONS(3216), 1, - anon_sym_PLUS, - ACTIONS(3218), 1, - anon_sym_DASH, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, - anon_sym_PIPE, - ACTIONS(3228), 1, - anon_sym_AMP, - ACTIONS(3230), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, - anon_sym_AMP_AMP, - ACTIONS(3238), 1, - anon_sym_STAR, - ACTIONS(3240), 1, - anon_sym_SLASH, - ACTIONS(3246), 1, - anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3242), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, + ACTIONS(153), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(151), 19, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(223), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3236), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90623] = 30, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [91072] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, - anon_sym_EQ, - ACTIONS(3214), 1, - anon_sym_TILDE, - ACTIONS(3216), 1, - anon_sym_PLUS, - ACTIONS(3218), 1, - anon_sym_DASH, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, - anon_sym_PIPE, - ACTIONS(3228), 1, - anon_sym_AMP, - ACTIONS(3230), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, - anon_sym_AMP_AMP, - ACTIONS(3238), 1, - anon_sym_STAR, - ACTIONS(3240), 1, - anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3242), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, + ACTIONS(153), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(151), 19, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(227), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3236), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90726] = 30, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [91145] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(3212), 1, @@ -106770,19 +107087,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 1, sym__external_open_bracket, ACTIONS(3256), 1, - sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, - sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + sym__external_open_bracket2, + STATE(272), 1, + sym__open_parenthesis, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -106795,53 +107112,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(231), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [90829] = 16, + ACTIONS(163), 7, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + sym_comma, + [91246] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3294), 1, - anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, + ACTIONS(153), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -106850,7 +107161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(163), 17, + anon_sym_COLON, + ACTIONS(151), 19, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, @@ -106867,8 +107179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [90904] = 30, + [91317] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3212), 1, @@ -106903,18 +107217,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -106931,7 +107245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(235), 4, + ACTIONS(163), 4, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, @@ -106941,381 +107255,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91007] = 30, + [91420] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3214), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3222), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3224), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(239), 4, + ACTIONS(155), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3236), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91110] = 20, + [91523] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 1, + ACTIONS(3258), 1, + anon_sym_EQ, + ACTIONS(3260), 1, + anon_sym_TILDE, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3286), 1, + ACTIONS(3268), 1, + anon_sym_DASH_GT, + ACTIONS(3270), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, + anon_sym_PIPE, + ACTIONS(3274), 1, + anon_sym_AMP, + ACTIONS(3276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3290), 2, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 15, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(159), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [91193] = 30, + [91626] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3214), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3222), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3224), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(155), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3236), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91296] = 30, + ACTIONS(163), 7, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + sym_comma, + [91727] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3214), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3222), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3224), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(159), 4, + ACTIONS(163), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3236), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [91399] = 22, + [91830] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3216), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3238), 1, + ACTIONS(3272), 1, + anon_sym_PIPE, + ACTIONS(3274), 1, + anon_sym_AMP, + ACTIONS(3276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3236), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 11, + ACTIONS(163), 9, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_comma, - [91486] = 14, + [91925] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3252), 1, + ACTIONS(3284), 1, + anon_sym_STAR, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3292), 1, + anon_sym_COLON, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3242), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3248), 2, + ACTIONS(3290), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, + ACTIONS(165), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -107323,11 +107659,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 19, + ACTIONS(163), 16, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -107341,199 +107675,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [91557] = 29, + [92004] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3214), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3222), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3224), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3236), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 7, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, + ACTIONS(163), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, sym_comma, - [91658] = 22, + ACTIONS(3282), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [92107] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 1, + ACTIONS(3260), 1, + anon_sym_TILDE, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3286), 1, + ACTIONS(3272), 1, + anon_sym_PIPE, + ACTIONS(3274), 1, + anon_sym_AMP, + ACTIONS(3276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3284), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 11, + ACTIONS(163), 8, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, - anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_comma, - [91745] = 24, + [92204] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3276), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3280), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, ACTIONS(165), 3, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_PIPE, - ACTIONS(3284), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -107549,328 +107886,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, sym_comma, - [91836] = 27, + [92295] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(3262), 1, - anon_sym_TILDE, - ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3274), 1, - anon_sym_PIPE, - ACTIONS(3276), 1, - anon_sym_AMP, - ACTIONS(3278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, - anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3282), 2, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3284), 4, + ACTIONS(165), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 8, + ACTIONS(163), 11, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_comma, - [91933] = 30, + [92382] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, - anon_sym_EQ, ACTIONS(3262), 1, - anon_sym_TILDE, - ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3270), 1, - anon_sym_DASH_GT, - ACTIONS(3272), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, - anon_sym_PIPE, - ACTIONS(3276), 1, - anon_sym_AMP, - ACTIONS(3278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, - anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3282), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(163), 4, + ACTIONS(165), 6, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 15, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, - sym_comma, - ACTIONS(3284), 4, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92036] = 30, + sym_comma, + [92465] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, - anon_sym_EQ, - ACTIONS(3214), 1, - anon_sym_TILDE, - ACTIONS(3216), 1, - anon_sym_PLUS, - ACTIONS(3218), 1, - anon_sym_DASH, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, - anon_sym_PIPE, - ACTIONS(3228), 1, - anon_sym_AMP, - ACTIONS(3230), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, - anon_sym_AMP_AMP, - ACTIONS(3238), 1, - anon_sym_STAR, - ACTIONS(3240), 1, - anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3242), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, + ACTIONS(165), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 17, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(163), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3236), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92139] = 26, + anon_sym_SLASH, + sym_comma, + [92540] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3216), 1, - anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3298), 1, + sym__external_open_parenthesis, + ACTIONS(3300), 1, + sym__external_open_bracket, + ACTIONS(3302), 1, + sym__external_open_bracket2, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, + sym__open_parenthesis, + STATE(282), 1, + sym__open_bracket, + STATE(1698), 1, + sym_call_arguments, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3288), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3294), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(165), 9, + anon_sym_EQ, anon_sym_DASH, - ACTIONS(3226), 1, + anon_sym_DASH_GT, anon_sym_PIPE, - ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3230), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 19, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, - anon_sym_STAR, - ACTIONS(3240), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SLASH, - ACTIONS(3246), 1, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [92611] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3242), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3236), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 9, + ACTIONS(165), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 19, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [92234] = 18, + [92684] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3238), 1, - anon_sym_STAR, - ACTIONS(3240), 1, - anon_sym_SLASH, - ACTIONS(3246), 1, - anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3242), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 7, + ACTIONS(165), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -107878,9 +108223,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(163), 16, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 19, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -107894,1164 +108241,1266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [92313] = 30, + [92755] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3214), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3222), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3224), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(163), 4, + ACTIONS(167), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3236), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [92416] = 27, + [92858] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, + ACTIONS(3258), 1, + anon_sym_EQ, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3226), 1, + ACTIONS(3268), 1, + anon_sym_DASH_GT, + ACTIONS(3270), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3234), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3236), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 8, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(171), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, sym_comma, - [92513] = 24, + ACTIONS(3282), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [92961] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3216), 1, + ACTIONS(3258), 1, + anon_sym_EQ, + ACTIONS(3260), 1, + anon_sym_TILDE, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3228), 1, + ACTIONS(3268), 1, + anon_sym_DASH_GT, + ACTIONS(3270), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, + anon_sym_PIPE, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3232), 1, + ACTIONS(3276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 3, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - ACTIONS(3236), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 10, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, + ACTIONS(175), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, sym_comma, - [92604] = 22, + ACTIONS(3282), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [93064] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3216), 1, + ACTIONS(3258), 1, + anon_sym_EQ, + ACTIONS(3260), 1, + anon_sym_TILDE, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3238), 1, + ACTIONS(3268), 1, + anon_sym_DASH_GT, + ACTIONS(3270), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, + anon_sym_PIPE, + ACTIONS(3274), 1, + anon_sym_AMP, + ACTIONS(3276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3248), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(165), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3236), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 11, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, + anon_sym_PIPE_GT, + ACTIONS(3294), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(179), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, sym_comma, - [92691] = 20, + ACTIONS(3282), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [93167] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3216), 1, + ACTIONS(3258), 1, + anon_sym_EQ, + ACTIONS(3260), 1, + anon_sym_TILDE, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3238), 1, + ACTIONS(3268), 1, + anon_sym_DASH_GT, + ACTIONS(3270), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, + anon_sym_PIPE, + ACTIONS(3274), 1, + anon_sym_AMP, + ACTIONS(3276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3242), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 15, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(183), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [92774] = 16, + [93270] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3246), 1, + ACTIONS(3258), 1, + anon_sym_EQ, + ACTIONS(3260), 1, + anon_sym_TILDE, + ACTIONS(3262), 1, + anon_sym_PLUS, + ACTIONS(3264), 1, + anon_sym_DASH, + ACTIONS(3268), 1, + anon_sym_DASH_GT, + ACTIONS(3270), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, + anon_sym_PIPE, + ACTIONS(3274), 1, + anon_sym_AMP, + ACTIONS(3276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_STAR, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3242), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - ACTIONS(163), 17, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(187), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - sym_comma, - [92849] = 18, + [93373] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3238), 1, + ACTIONS(3258), 1, + anon_sym_EQ, + ACTIONS(3260), 1, + anon_sym_TILDE, + ACTIONS(3262), 1, + anon_sym_PLUS, + ACTIONS(3264), 1, + anon_sym_DASH, + ACTIONS(3268), 1, + anon_sym_DASH_GT, + ACTIONS(3270), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, + anon_sym_PIPE, + ACTIONS(3274), 1, + anon_sym_AMP, + ACTIONS(3276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3242), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 16, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(191), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [92928] = 18, + [93476] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3286), 1, + ACTIONS(3258), 1, + anon_sym_EQ, + ACTIONS(3260), 1, + anon_sym_TILDE, + ACTIONS(3262), 1, + anon_sym_PLUS, + ACTIONS(3264), 1, + anon_sym_DASH, + ACTIONS(3268), 1, + anon_sym_DASH_GT, + ACTIONS(3270), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, + anon_sym_PIPE, + ACTIONS(3274), 1, + anon_sym_AMP, + ACTIONS(3276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3290), 2, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 16, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(195), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [93007] = 30, + [93579] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3214), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3222), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3224), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(151), 4, + ACTIONS(199), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3236), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93110] = 26, + [93682] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 1, + ACTIONS(3258), 1, + anon_sym_EQ, + ACTIONS(3260), 1, + anon_sym_TILDE, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3274), 1, + ACTIONS(3268), 1, + anon_sym_DASH_GT, + ACTIONS(3270), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3282), 2, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3284), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 9, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(203), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, sym_comma, - [93205] = 26, + ACTIONS(3282), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [93785] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3216), 1, + ACTIONS(3258), 1, + anon_sym_EQ, + ACTIONS(3260), 1, + anon_sym_TILDE, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3226), 1, + ACTIONS(3268), 1, + anon_sym_DASH_GT, + ACTIONS(3270), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3234), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3236), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 9, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(207), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, sym_comma, - [93300] = 30, + ACTIONS(3282), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [93888] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3214), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3222), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3224), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(151), 4, + ACTIONS(211), 4, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3236), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93403] = 29, + [93991] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3214), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3216), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3218), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3222), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3224), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3228), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3240), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3234), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3242), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3244), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3236), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 7, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, + ACTIONS(215), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, sym_comma, - [93504] = 30, + ACTIONS(3282), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [94094] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(163), 4, + ACTIONS(219), 4, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93607] = 29, + [94197] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3284), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 7, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, + ACTIONS(145), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, sym_comma, - [93708] = 30, + ACTIONS(3282), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [94300] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3258), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3260), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3262), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3268), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3270), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3272), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3274), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3276), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3278), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3284), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3292), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(249), 1, + sym__open_bracket2, + STATE(281), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(282), 1, sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, + STATE(1698), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1699), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1700), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3280), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3290), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(159), 4, + ACTIONS(223), 4, sym__external_else, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [93811] = 14, + [94403] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3252), 1, + ACTIONS(3258), 1, + anon_sym_EQ, + ACTIONS(3260), 1, + anon_sym_TILDE, + ACTIONS(3262), 1, + anon_sym_PLUS, + ACTIONS(3264), 1, + anon_sym_DASH, + ACTIONS(3268), 1, + anon_sym_DASH_GT, + ACTIONS(3270), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3272), 1, + anon_sym_PIPE, + ACTIONS(3274), 1, + anon_sym_AMP, + ACTIONS(3276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_STAR, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3292), 1, + anon_sym_COLON, + ACTIONS(3298), 1, sym__external_open_parenthesis, - ACTIONS(3254), 1, + ACTIONS(3300), 1, sym__external_open_bracket, - ACTIONS(3256), 1, + ACTIONS(3302), 1, sym__external_open_bracket2, - STATE(251), 1, + STATE(249), 1, sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(281), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, + STATE(282), 1, + sym__open_bracket, STATE(1698), 1, sym_call_arguments, - ACTIONS(3242), 2, + STATE(1699), 1, + sym_subset_arguments, + STATE(1700), 1, + sym_subset2_arguments, + ACTIONS(3280), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3288), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3248), 2, + ACTIONS(3290), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3294), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(201), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(199), 19, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3266), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(227), 4, + sym__external_else, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3282), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [93882] = 22, + [94506] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(3216), 1, anon_sym_PLUS, ACTIONS(3218), 1, anon_sym_DASH, + ACTIONS(3226), 1, + anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_AMP, + ACTIONS(3230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3232), 1, + anon_sym_AMP_AMP, ACTIONS(3238), 1, anon_sym_STAR, ACTIONS(3240), 1, @@ -109064,18 +109513,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -109088,17 +109540,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(201), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(199), 11, + ACTIONS(163), 9, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, @@ -109107,24 +109554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_comma, - [93969] = 26, + [94601] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3216), 1, - anon_sym_PLUS, - ACTIONS(3218), 1, - anon_sym_DASH, - ACTIONS(3226), 1, - anon_sym_PIPE, - ACTIONS(3228), 1, - anon_sym_AMP, - ACTIONS(3230), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, - anon_sym_AMP_AMP, ACTIONS(3238), 1, anon_sym_STAR, ACTIONS(3240), 1, @@ -109137,24 +109570,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(201), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3234), 2, - anon_sym_LT, - anon_sym_GT, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, @@ -109164,22 +109591,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3236), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(199), 9, + ACTIONS(165), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 16, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, sym_comma, - [94064] = 30, + [94680] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3212), 1, @@ -109214,18 +109651,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -109242,7 +109679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(199), 4, + ACTIONS(163), 4, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, @@ -109252,21 +109689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94167] = 30, + [94783] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, - anon_sym_EQ, ACTIONS(3214), 1, anon_sym_TILDE, ACTIONS(3216), 1, anon_sym_PLUS, ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_DASH_GT_GT, ACTIONS(3226), 1, anon_sym_PIPE, ACTIONS(3228), 1, @@ -109287,18 +109718,21 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -109311,43 +109745,90 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, + ACTIONS(3236), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(163), 8, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(203), 4, + anon_sym_DASH_GT_GT, + sym_comma, + [94880] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3319), 1, + anon_sym_PLUS, + ACTIONS(3321), 1, + anon_sym_DASH, + ACTIONS(3341), 1, + anon_sym_STAR, + ACTIONS(3343), 1, + anon_sym_SLASH, + ACTIONS(3349), 1, + anon_sym_COLON, + ACTIONS(3355), 1, + sym__external_open_parenthesis, + ACTIONS(3357), 1, + sym__external_open_bracket, + ACTIONS(3359), 1, + sym__external_open_bracket2, + STATE(278), 1, + sym__open_parenthesis, + STATE(279), 1, + sym__open_bracket, + STATE(280), 1, + sym__open_bracket2, + STATE(1693), 1, + sym_call_arguments, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3345), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3347), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3351), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(165), 6, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 15, sym__external_else, - sym__external_close_parenthesis, + sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3236), 4, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94270] = 30, + sym_comma, + [94963] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, - anon_sym_EQ, - ACTIONS(3214), 1, - anon_sym_TILDE, ACTIONS(3216), 1, anon_sym_PLUS, ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3226), 1, - anon_sym_PIPE, - ACTIONS(3228), 1, - anon_sym_AMP, - ACTIONS(3230), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3232), 1, - anon_sym_AMP_AMP, ACTIONS(3238), 1, anon_sym_STAR, ACTIONS(3240), 1, @@ -109360,18 +109841,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -109384,121 +109865,124 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3220), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(207), 4, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, + ACTIONS(165), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94373] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3260), 1, - anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(163), 11, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3266), 1, - anon_sym_DASH, - ACTIONS(3270), 1, - anon_sym_DASH_GT, - ACTIONS(3272), 1, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, - anon_sym_PIPE, - ACTIONS(3276), 1, - anon_sym_AMP, - ACTIONS(3278), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + sym_comma, + [95050] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3216), 1, + anon_sym_PLUS, + ACTIONS(3218), 1, + anon_sym_DASH, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3282), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(165), 6, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 15, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(155), 4, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3284), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [94476] = 14, + sym_comma, + [95133] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3300), 1, + ACTIONS(3246), 1, + anon_sym_COLON, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3296), 2, + ACTIONS(3244), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, + ACTIONS(165), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -109507,10 +109991,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 19, + ACTIONS(163), 17, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -109525,39 +110008,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [94547] = 15, + [95208] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3294), 1, - anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 8, + ACTIONS(165), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -109566,9 +110045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(151), 19, + anon_sym_COLON, + ACTIONS(163), 19, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -109586,34 +110066,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [94620] = 14, + [95279] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3300), 1, + ACTIONS(3246), 1, + anon_sym_COLON, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, + ACTIONS(165), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -109622,10 +110104,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 19, + ACTIONS(163), 19, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -109643,39 +110124,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [94691] = 16, + [95352] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3294), 1, - anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 8, + ACTIONS(165), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -109684,9 +110160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(151), 17, + anon_sym_COLON, + ACTIONS(163), 19, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -109701,403 +110178,517 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [94766] = 20, + [95423] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 1, + ACTIONS(3212), 1, + anon_sym_EQ, + ACTIONS(3214), 1, + anon_sym_TILDE, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3286), 1, + ACTIONS(3222), 1, + anon_sym_DASH_GT, + ACTIONS(3224), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3226), 1, + anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_AMP, + ACTIONS(3230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3232), 1, + anon_sym_AMP_AMP, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3290), 2, + ACTIONS(3234), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 15, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(167), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [94849] = 22, + [95526] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 1, + ACTIONS(3212), 1, + anon_sym_EQ, + ACTIONS(3214), 1, + anon_sym_TILDE, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3286), 1, + ACTIONS(3222), 1, + anon_sym_DASH_GT, + ACTIONS(3224), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3226), 1, + anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_AMP, + ACTIONS(3230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3232), 1, + anon_sym_AMP_AMP, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3284), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 11, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(171), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, sym_comma, - [94936] = 24, + ACTIONS(3236), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [95629] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3276), 1, + ACTIONS(3226), 1, + anon_sym_PIPE, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3280), 1, + ACTIONS(3230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(235), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 3, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - ACTIONS(3284), 4, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 10, + ACTIONS(237), 9, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, sym_comma, - [95027] = 27, + [95724] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, + ACTIONS(3212), 1, + anon_sym_EQ, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3274), 1, + ACTIONS(3222), 1, + anon_sym_DASH_GT, + ACTIONS(3224), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3282), 2, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3284), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 8, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(175), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, sym_comma, - [95124] = 14, + ACTIONS(3236), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [95827] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(3212), 1, + anon_sym_EQ, + ACTIONS(3214), 1, + anon_sym_TILDE, + ACTIONS(3216), 1, + anon_sym_PLUS, + ACTIONS(3218), 1, + anon_sym_DASH, + ACTIONS(3222), 1, + anon_sym_DASH_GT, + ACTIONS(3224), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3226), 1, + anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_AMP, + ACTIONS(3230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3232), 1, + anon_sym_AMP_AMP, + ACTIONS(3238), 1, + anon_sym_STAR, + ACTIONS(3240), 1, + anon_sym_SLASH, + ACTIONS(3246), 1, + anon_sym_COLON, ACTIONS(3252), 1, sym__external_open_parenthesis, ACTIONS(3254), 1, sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3234), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, + ACTIONS(3244), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(147), 9, + ACTIONS(3220), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(179), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3236), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [95930] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3212), 1, anon_sym_EQ, + ACTIONS(3214), 1, + anon_sym_TILDE, + ACTIONS(3216), 1, + anon_sym_PLUS, + ACTIONS(3218), 1, anon_sym_DASH, + ACTIONS(3222), 1, anon_sym_DASH_GT, + ACTIONS(3224), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3226), 1, anon_sym_PIPE, + ACTIONS(3228), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3232), 1, + anon_sym_AMP_AMP, + ACTIONS(3238), 1, anon_sym_STAR, + ACTIONS(3240), 1, + anon_sym_SLASH, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(149), 19, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3252), 1, + sym__external_open_parenthesis, + ACTIONS(3254), 1, + sym__external_open_bracket, + ACTIONS(3256), 1, + sym__external_open_bracket2, + STATE(272), 1, + sym__open_parenthesis, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, + sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3234), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3242), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3244), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3248), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(183), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [95195] = 30, + [96033] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3212), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3222), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3224), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(151), 4, + ACTIONS(187), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95298] = 22, + [96136] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(3216), 1, @@ -110116,18 +110707,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -110140,7 +110731,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(147), 4, + ACTIONS(235), 4, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_PIPE, @@ -110150,7 +110741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(149), 11, + ACTIONS(237), 11, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, @@ -110162,13 +110753,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_comma, - [95385] = 26, + [96223] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(3212), 1, + anon_sym_EQ, + ACTIONS(3214), 1, + anon_sym_TILDE, ACTIONS(3216), 1, anon_sym_PLUS, ACTIONS(3218), 1, anon_sym_DASH, + ACTIONS(3222), 1, + anon_sym_DASH_GT, + ACTIONS(3224), 1, + anon_sym_DASH_GT_GT, ACTIONS(3226), 1, anon_sym_PIPE, ACTIONS(3228), 1, @@ -110189,21 +110788,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(147), 2, - anon_sym_EQ, - anon_sym_DASH_GT, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -110216,22 +110812,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, + ACTIONS(3220), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(191), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(149), 9, - sym__external_else, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [95480] = 30, + [96326] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3212), 1, @@ -110266,18 +110861,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -110294,7 +110889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(149), 4, + ACTIONS(195), 4, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, @@ -110304,7 +110899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95583] = 30, + [96429] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3212), 1, @@ -110339,18 +110934,18 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_bracket, ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(251), 1, - sym__open_bracket2, - STATE(252), 1, - sym__open_bracket, - STATE(263), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(1669), 1, - sym_subset2_arguments, - STATE(1690), 1, - sym_subset_arguments, - STATE(1698), 1, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, @@ -110367,7 +110962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(245), 4, + ACTIONS(199), 4, sym__external_else, sym__external_close_parenthesis, anon_sym_QMARK, @@ -110377,719 +110972,691 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95686] = 18, + [96532] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3286), 1, + ACTIONS(3212), 1, + anon_sym_EQ, + ACTIONS(3214), 1, + anon_sym_TILDE, + ACTIONS(3216), 1, + anon_sym_PLUS, + ACTIONS(3218), 1, + anon_sym_DASH, + ACTIONS(3222), 1, + anon_sym_DASH_GT, + ACTIONS(3224), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3226), 1, + anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_AMP, + ACTIONS(3230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3232), 1, + anon_sym_AMP_AMP, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3290), 2, + ACTIONS(3234), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 16, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(203), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [95765] = 26, + [96635] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 1, + ACTIONS(3212), 1, + anon_sym_EQ, + ACTIONS(3214), 1, + anon_sym_TILDE, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3274), 1, + ACTIONS(3222), 1, + anon_sym_DASH_GT, + ACTIONS(3224), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3282), 2, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3284), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 9, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(207), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, sym_comma, - [95860] = 30, + ACTIONS(3236), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [96738] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3212), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3222), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3224), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(151), 4, + ACTIONS(211), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [95963] = 29, + [96841] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3212), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3222), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3224), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3284), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 7, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - sym_comma, - [96064] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3300), 1, - sym__external_open_parenthesis, - ACTIONS(3302), 1, - sym__external_open_bracket, - ACTIONS(3304), 1, - sym__external_open_bracket2, - STATE(254), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, - sym_call_arguments, - STATE(1706), 1, - sym_subset_arguments, - STATE(1707), 1, - sym_subset2_arguments, - ACTIONS(3290), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3296), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(201), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(199), 19, + ACTIONS(241), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + sym_comma, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [96135] = 22, + [96944] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 1, + ACTIONS(3212), 1, + anon_sym_EQ, + ACTIONS(3214), 1, + anon_sym_TILDE, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3286), 1, + ACTIONS(3222), 1, + anon_sym_DASH_GT, + ACTIONS(3224), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3226), 1, + anon_sym_PIPE, + ACTIONS(3228), 1, + anon_sym_AMP, + ACTIONS(3230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3232), 1, + anon_sym_AMP_AMP, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(201), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3284), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(199), 11, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(215), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, sym_comma, - [96222] = 26, + ACTIONS(3236), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [97047] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 1, + ACTIONS(3212), 1, + anon_sym_EQ, + ACTIONS(3214), 1, + anon_sym_TILDE, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3274), 1, + ACTIONS(3222), 1, + anon_sym_DASH_GT, + ACTIONS(3224), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(201), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3282), 2, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3284), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(199), 9, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(219), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, sym_comma, - [96317] = 30, + ACTIONS(3236), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [97150] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3212), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3222), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3224), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(199), 4, + ACTIONS(145), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96420] = 30, + [97253] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3212), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3222), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3224), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(203), 4, + ACTIONS(223), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96523] = 30, + [97356] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3212), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3222), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3224), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(207), 4, + ACTIONS(227), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96626] = 14, + [97459] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(147), 9, + ACTIONS(235), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -111099,9 +111666,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(149), 19, + ACTIONS(237), 19, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -111119,1555 +111686,1399 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [96697] = 22, + [97530] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3266), 1, - anon_sym_DASH, - ACTIONS(3286), 1, - anon_sym_STAR, - ACTIONS(3288), 1, - anon_sym_SLASH, - ACTIONS(3294), 1, - anon_sym_COLON, - ACTIONS(3300), 1, - sym__external_open_parenthesis, - ACTIONS(3302), 1, - sym__external_open_bracket, - ACTIONS(3304), 1, - sym__external_open_bracket2, - STATE(254), 1, - sym__open_parenthesis, - STATE(256), 1, - sym__open_bracket, - STATE(259), 1, - sym__open_bracket2, - STATE(1704), 1, - sym_call_arguments, - STATE(1706), 1, - sym_subset_arguments, - STATE(1707), 1, - sym_subset2_arguments, - ACTIONS(3282), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3290), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3292), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3296), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(147), 4, + ACTIONS(3212), 1, anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3284), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(149), 11, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, + ACTIONS(3214), 1, anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_comma, - [96784] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3264), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3274), 1, + ACTIONS(3222), 1, + anon_sym_DASH_GT, + ACTIONS(3224), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(147), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3282), 2, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3284), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(149), 9, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(245), 4, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, sym_comma, - [96879] = 30, + ACTIONS(3236), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [97633] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3212), 1, anon_sym_EQ, - ACTIONS(3262), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3270), 1, + ACTIONS(3222), 1, anon_sym_DASH_GT, - ACTIONS(3272), 1, + ACTIONS(3224), 1, anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(149), 4, + ACTIONS(147), 4, sym__external_else, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3284), 4, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [96982] = 30, + [97736] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, - anon_sym_EQ, - ACTIONS(3262), 1, - anon_sym_TILDE, - ACTIONS(3264), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3266), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3270), 1, - anon_sym_DASH_GT, - ACTIONS(3272), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3274), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3278), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3280), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3286), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3288), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3294), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3302), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3304), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(254), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(256), 1, + STATE(273), 1, sym__open_bracket, - STATE(259), 1, + STATE(274), 1, sym__open_bracket2, - STATE(1704), 1, + STATE(1672), 1, sym_call_arguments, - STATE(1706), 1, + STATE(1674), 1, sym_subset_arguments, - STATE(1707), 1, + STATE(1681), 1, sym_subset2_arguments, - ACTIONS(3282), 2, + ACTIONS(149), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3290), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3292), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3296), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3268), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(245), 4, - sym__external_else, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3284), 4, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97085] = 30, + ACTIONS(147), 9, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [97831] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_EQ, - ACTIONS(3316), 1, - anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_DASH_GT, - ACTIONS(3326), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, - anon_sym_AMP, - ACTIONS(3332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, - anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(273), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(239), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3338), 4, + ACTIONS(149), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97188] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(147), 11, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3318), 1, - anon_sym_PLUS, - ACTIONS(3320), 1, - anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_DASH_GT, - ACTIONS(3326), 1, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, - anon_sym_AMP, - ACTIONS(3332), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, - anon_sym_STAR, - ACTIONS(3342), 1, - anon_sym_SLASH, - ACTIONS(3348), 1, - anon_sym_COLON, - ACTIONS(3354), 1, + sym_comma, + [97918] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(273), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(3336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3344), 2, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(235), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3338), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [97291] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, + ACTIONS(149), 9, anon_sym_EQ, - ACTIONS(3316), 1, - anon_sym_TILDE, - ACTIONS(3318), 1, - anon_sym_PLUS, - ACTIONS(3320), 1, anon_sym_DASH, - ACTIONS(3324), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, anon_sym_PIPE, - ACTIONS(3330), 1, anon_sym_AMP, - ACTIONS(3332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, - anon_sym_AMP_AMP, - ACTIONS(3340), 1, - anon_sym_STAR, - ACTIONS(3342), 1, - anon_sym_SLASH, - ACTIONS(3348), 1, - anon_sym_COLON, - ACTIONS(3354), 1, - sym__external_open_parenthesis, - ACTIONS(3356), 1, - sym__external_open_bracket, - ACTIONS(3358), 1, - sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, - sym__open_parenthesis, - STATE(269), 1, - sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, - sym_call_arguments, - ACTIONS(3336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3346), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3350), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3322), 3, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(147), 19, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(231), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3338), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97394] = 30, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [97989] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3212), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3222), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3224), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(273), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, + ACTIONS(3236), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(151), 7, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(227), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, sym_comma, - ACTIONS(3338), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [97497] = 30, + [98090] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3212), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3222), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3224), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(273), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(223), 4, + ACTIONS(151), 4, sym__external_else, - sym__external_close_bracket, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3338), 4, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97600] = 30, + [98193] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_EQ, - ACTIONS(3316), 1, - anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_DASH_GT, - ACTIONS(3326), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(273), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(219), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3338), 4, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97703] = 30, + ACTIONS(151), 9, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [98288] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(143), 4, + ACTIONS(233), 4, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97806] = 30, + [98391] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(215), 4, + ACTIONS(237), 4, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [97909] = 30, + [98494] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_EQ, - ACTIONS(3316), 1, - anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_DASH_GT, - ACTIONS(3326), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(235), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(211), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [98012] = 30, + ACTIONS(237), 9, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [98589] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_EQ, - ACTIONS(3316), 1, - anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_DASH_GT, - ACTIONS(3326), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, - anon_sym_AMP, - ACTIONS(3332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, - anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(195), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3338), 4, + ACTIONS(235), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [98115] = 30, + ACTIONS(237), 11, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [98676] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3355), 1, + sym__external_open_parenthesis, + ACTIONS(3357), 1, + sym__external_open_bracket, + ACTIONS(3359), 1, + sym__external_open_bracket2, + STATE(278), 1, + sym__open_parenthesis, + STATE(279), 1, + sym__open_bracket, + STATE(280), 1, + sym__open_bracket2, + STATE(1693), 1, + sym_call_arguments, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3345), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3351), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(235), 9, anon_sym_EQ, - ACTIONS(3316), 1, - anon_sym_TILDE, - ACTIONS(3318), 1, - anon_sym_PLUS, - ACTIONS(3320), 1, anon_sym_DASH, - ACTIONS(3324), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, anon_sym_PIPE, - ACTIONS(3330), 1, anon_sym_AMP, - ACTIONS(3332), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(237), 19, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [98747] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(273), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(3336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3344), 2, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, + ACTIONS(153), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(151), 16, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(191), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3338), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [98218] = 30, + sym_comma, + [98826] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3212), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3222), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3224), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(273), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, + ACTIONS(3220), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(187), 4, + ACTIONS(151), 4, sym__external_else, - sym__external_close_bracket, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3338), 4, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [98321] = 30, + [98929] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_DASH_GT, - ACTIONS(3326), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3226), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3230), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(273), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(183), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3338), 4, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [98424] = 30, + ACTIONS(151), 8, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [99026] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_EQ, - ACTIONS(3316), 1, - anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_DASH_GT, - ACTIONS(3326), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(273), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(179), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3338), 4, + ACTIONS(153), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [98527] = 30, + ACTIONS(151), 10, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + sym_comma, + [99117] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_EQ, - ACTIONS(3316), 1, - anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_DASH_GT, - ACTIONS(3326), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, - anon_sym_AMP, - ACTIONS(3332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, - anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(273), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(175), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3338), 4, + ACTIONS(153), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [98630] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(151), 11, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3318), 1, - anon_sym_PLUS, - ACTIONS(3320), 1, - anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_DASH_GT, - ACTIONS(3326), 1, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, - anon_sym_AMP, - ACTIONS(3332), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + sym_comma, + [99204] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3216), 1, + anon_sym_PLUS, + ACTIONS(3218), 1, + anon_sym_DASH, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3358), 1, - sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, - sym__open_parenthesis, - STATE(269), 1, - sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + ACTIONS(3256), 1, + sym__external_open_bracket2, + STATE(272), 1, + sym__open_parenthesis, + STATE(273), 1, + sym__open_bracket, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(3336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3344), 2, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, + ACTIONS(153), 6, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(151), 15, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(171), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3338), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [98733] = 30, + sym_comma, + [99287] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(167), 4, + ACTIONS(241), 4, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [98836] = 14, + [99390] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 1, + ACTIONS(3246), 1, + anon_sym_COLON, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(273), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(3344), 2, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3350), 2, + ACTIONS(3244), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, + ACTIONS(153), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -112676,10 +113087,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 19, + ACTIONS(151), 17, sym__external_else, - sym__external_close_bracket, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -112694,231 +113104,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [98907] = 15, + [99465] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3348), 1, + ACTIONS(3315), 1, + anon_sym_EQ, + ACTIONS(3317), 1, + anon_sym_TILDE, + ACTIONS(3319), 1, + anon_sym_PLUS, + ACTIONS(3321), 1, + anon_sym_DASH, + ACTIONS(3325), 1, + anon_sym_DASH_GT, + ACTIONS(3327), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3329), 1, + anon_sym_PIPE, + ACTIONS(3331), 1, + anon_sym_AMP, + ACTIONS(3333), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3335), 1, + anon_sym_AMP_AMP, + ACTIONS(3341), 1, + anon_sym_STAR, + ACTIONS(3343), 1, + anon_sym_SLASH, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3344), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3350), 2, + ACTIONS(3347), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - ACTIONS(163), 19, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(245), 4, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [98980] = 14, + [99568] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 1, - sym__external_open_parenthesis, - ACTIONS(3356), 1, - sym__external_open_bracket, - ACTIONS(3358), 1, - sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, - sym__open_parenthesis, - STATE(269), 1, - sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, - sym_call_arguments, - ACTIONS(3344), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3350), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(165), 9, + ACTIONS(3315), 1, anon_sym_EQ, + ACTIONS(3317), 1, + anon_sym_TILDE, + ACTIONS(3319), 1, + anon_sym_PLUS, + ACTIONS(3321), 1, anon_sym_DASH, + ACTIONS(3325), 1, anon_sym_DASH_GT, + ACTIONS(3327), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3329), 1, anon_sym_PIPE, + ACTIONS(3331), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 19, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3341), 1, + anon_sym_STAR, + ACTIONS(3343), 1, anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [99051] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3344), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - ACTIONS(163), 17, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(147), 4, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - sym_comma, - [99126] = 20, + [99671] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3340), 1, + ACTIONS(3329), 1, + anon_sym_PIPE, + ACTIONS(3331), 1, + anon_sym_AMP, + ACTIONS(3333), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3335), 1, + anon_sym_AMP_AMP, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3344), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(149), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3337), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 15, + ACTIONS(3339), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(147), 9, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, @@ -112927,67 +113319,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, sym_comma, - [99209] = 22, + [99766] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 4, + ACTIONS(149), 4, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 11, + ACTIONS(147), 11, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, @@ -112999,724 +113385,641 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_comma, - [99296] = 24, + [99853] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, - anon_sym_PLUS, - ACTIONS(3320), 1, - anon_sym_DASH, - ACTIONS(3330), 1, - anon_sym_AMP, - ACTIONS(3334), 1, - anon_sym_AMP_AMP, - ACTIONS(3340), 1, - anon_sym_STAR, - ACTIONS(3342), 1, - anon_sym_SLASH, - ACTIONS(3348), 1, - anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3344), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 3, + ACTIONS(149), 9, anon_sym_EQ, + anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, - ACTIONS(3338), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 10, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(147), 19, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [99387] = 27, + [99924] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3316), 1, + ACTIONS(3315), 1, + anon_sym_EQ, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3328), 1, + ACTIONS(3325), 1, + anon_sym_DASH_GT, + ACTIONS(3327), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 8, + ACTIONS(151), 7, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, sym_comma, - [99484] = 30, + [100025] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(163), 4, + ACTIONS(151), 4, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [99587] = 18, + [100128] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3340), 1, + ACTIONS(3319), 1, + anon_sym_PLUS, + ACTIONS(3321), 1, + anon_sym_DASH, + ACTIONS(3329), 1, + anon_sym_PIPE, + ACTIONS(3331), 1, + anon_sym_AMP, + ACTIONS(3333), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3335), 1, + anon_sym_AMP_AMP, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3344), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3337), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 16, + ACTIONS(3339), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(151), 9, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, sym_comma, - [99666] = 26, + [100223] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, - anon_sym_PLUS, - ACTIONS(3320), 1, - anon_sym_DASH, - ACTIONS(3328), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, - anon_sym_AMP, - ACTIONS(3332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, - anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3344), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3338), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 9, + ACTIONS(153), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(151), 16, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, sym_comma, - [99761] = 30, + [100302] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(163), 4, + ACTIONS(151), 4, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [99864] = 29, + [100405] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_DASH_GT, - ACTIONS(3326), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 7, + ACTIONS(151), 8, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, sym_comma, - [99965] = 30, + [100502] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_EQ, - ACTIONS(3316), 1, - anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_DASH_GT, - ACTIONS(3326), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(159), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3338), 4, + ACTIONS(153), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [100068] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(151), 10, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3318), 1, - anon_sym_PLUS, - ACTIONS(3320), 1, - anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_DASH_GT, - ACTIONS(3326), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, - anon_sym_AMP, - ACTIONS(3332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, - anon_sym_AMP_AMP, - ACTIONS(3340), 1, - anon_sym_STAR, - ACTIONS(3342), 1, - anon_sym_SLASH, - ACTIONS(3348), 1, - anon_sym_COLON, - ACTIONS(3354), 1, - sym__external_open_parenthesis, - ACTIONS(3356), 1, - sym__external_open_bracket, - ACTIONS(3358), 1, - sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, - sym__open_parenthesis, - STATE(269), 1, - sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, - sym_call_arguments, - ACTIONS(3336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3344), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3346), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3350), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3322), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(155), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, sym_comma, - ACTIONS(3338), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [100171] = 14, + [100593] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 1, + ACTIONS(3319), 1, + anon_sym_PLUS, + ACTIONS(3321), 1, + anon_sym_DASH, + ACTIONS(3341), 1, + anon_sym_STAR, + ACTIONS(3343), 1, + anon_sym_SLASH, + ACTIONS(3349), 1, + anon_sym_COLON, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3344), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3350), 2, + ACTIONS(3347), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, + ACTIONS(153), 4, anon_sym_EQ, - anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 19, + ACTIONS(3339), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(151), 11, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [100242] = 15, + [100680] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3348), 1, - anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(273), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(3344), 2, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3350), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 8, + ACTIONS(153), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -113725,9 +114028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, + anon_sym_COLON, ACTIONS(151), 19, sym__external_else, - sym__external_close_bracket, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -113745,49 +114049,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [100315] = 14, + [100751] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 1, + ACTIONS(3319), 1, + anon_sym_PLUS, + ACTIONS(3321), 1, + anon_sym_DASH, + ACTIONS(3341), 1, + anon_sym_STAR, + ACTIONS(3343), 1, + anon_sym_SLASH, + ACTIONS(3349), 1, + anon_sym_COLON, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3344), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3350), 2, + ACTIONS(3347), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, + ACTIONS(153), 6, anon_sym_EQ, - anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 19, + ACTIONS(151), 15, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, @@ -113798,40 +114111,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [100386] = 16, + [100834] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3344), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, ACTIONS(153), 8, @@ -113861,58 +114171,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_SLASH, sym_comma, - [100461] = 20, + [100909] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, - anon_sym_PLUS, - ACTIONS(3320), 1, - anon_sym_DASH, - ACTIONS(3340), 1, - anon_sym_STAR, - ACTIONS(3342), 1, - anon_sym_SLASH, - ACTIONS(3348), 1, - anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3344), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 6, + ACTIONS(153), 9, anon_sym_EQ, + anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(151), 15, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(151), 19, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, @@ -113923,319 +114224,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [100544] = 22, + [100980] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, - anon_sym_PLUS, - ACTIONS(3320), 1, - anon_sym_DASH, - ACTIONS(3340), 1, - anon_sym_STAR, - ACTIONS(3342), 1, - anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3344), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 4, + ACTIONS(153), 8, anon_sym_EQ, + anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3338), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(151), 19, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [100631] = 24, + [101053] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, - anon_sym_PLUS, - ACTIONS(3320), 1, - anon_sym_DASH, - ACTIONS(3330), 1, - anon_sym_AMP, - ACTIONS(3334), 1, - anon_sym_AMP_AMP, - ACTIONS(3340), 1, - anon_sym_STAR, - ACTIONS(3342), 1, - anon_sym_SLASH, - ACTIONS(3348), 1, - anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3344), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 3, + ACTIONS(153), 9, anon_sym_EQ, + anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, - ACTIONS(3338), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 10, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(151), 19, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - sym_comma, - [100722] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3316), 1, - anon_sym_TILDE, - ACTIONS(3318), 1, - anon_sym_PLUS, - ACTIONS(3320), 1, - anon_sym_DASH, - ACTIONS(3328), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, - anon_sym_AMP, - ACTIONS(3332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, - anon_sym_STAR, - ACTIONS(3342), 1, - anon_sym_SLASH, - ACTIONS(3348), 1, - anon_sym_COLON, - ACTIONS(3354), 1, - sym__external_open_parenthesis, - ACTIONS(3356), 1, - sym__external_open_bracket, - ACTIONS(3358), 1, - sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, - sym__open_parenthesis, - STATE(269), 1, - sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, - sym_call_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3344), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3346), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3350), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3338), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 8, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [100819] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_EQ, - ACTIONS(3316), 1, - anon_sym_TILDE, - ACTIONS(3318), 1, - anon_sym_PLUS, - ACTIONS(3320), 1, - anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_DASH_GT, - ACTIONS(3326), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, - anon_sym_AMP, - ACTIONS(3332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, - anon_sym_AMP_AMP, - ACTIONS(3340), 1, - anon_sym_STAR, - ACTIONS(3342), 1, anon_sym_SLASH, - ACTIONS(3348), 1, - anon_sym_COLON, - ACTIONS(3354), 1, - sym__external_open_parenthesis, - ACTIONS(3356), 1, - sym__external_open_bracket, - ACTIONS(3358), 1, - sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, - sym__open_parenthesis, - STATE(269), 1, - sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, - sym_call_arguments, - ACTIONS(3336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3344), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3346), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3322), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(151), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, sym_comma, - ACTIONS(3338), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [100922] = 18, + [101124] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3340), 1, - anon_sym_STAR, - ACTIONS(3342), 1, - anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(273), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(3344), 2, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 7, + ACTIONS(153), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -114243,9 +114380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(151), 16, + anon_sym_STAR, + ACTIONS(151), 19, sym__external_else, - sym__external_close_bracket, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -114259,214 +114397,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [101001] = 26, + [101197] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, + ACTIONS(3315), 1, + anon_sym_EQ, + ACTIONS(3317), 1, + anon_sym_TILDE, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3328), 1, + ACTIONS(3325), 1, + anon_sym_DASH_GT, + ACTIONS(3327), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3338), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 9, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(155), 4, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, sym_comma, - [101096] = 30, + ACTIONS(3339), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [101300] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(151), 4, + ACTIONS(159), 4, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [101199] = 29, + [101403] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 7, + ACTIONS(163), 7, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, @@ -114474,139 +114619,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, sym_comma, - [101300] = 30, + [101504] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3315), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3325), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3327), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(207), 4, + ACTIONS(163), 4, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [101403] = 26, + [101607] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3328), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(201), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(165), 2, anon_sym_EQ, anon_sym_DASH_GT, - ACTIONS(3336), 2, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3338), 4, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(199), 9, + ACTIONS(163), 9, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, @@ -114616,334 +114761,331 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, sym_comma, - [101498] = 30, + [101702] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_EQ, - ACTIONS(3316), 1, - anon_sym_TILDE, - ACTIONS(3318), 1, - anon_sym_PLUS, - ACTIONS(3320), 1, - anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_DASH_GT, - ACTIONS(3326), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, - anon_sym_AMP, - ACTIONS(3332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, - anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3344), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(245), 4, + ACTIONS(165), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 16, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3338), 4, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [101601] = 22, + sym_comma, + [101781] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, + ACTIONS(3315), 1, + anon_sym_EQ, + ACTIONS(3317), 1, + anon_sym_TILDE, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3340), 1, + ACTIONS(3325), 1, + anon_sym_DASH_GT, + ACTIONS(3327), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3329), 1, + anon_sym_PIPE, + ACTIONS(3331), 1, + anon_sym_AMP, + ACTIONS(3333), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3335), 1, + anon_sym_AMP_AMP, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(201), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3338), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(199), 11, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(3323), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(163), 4, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, sym_comma, - [101688] = 30, + ACTIONS(3339), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [101884] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3317), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_DASH_GT, - ACTIONS(3326), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3329), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3331), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3333), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3335), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3322), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(149), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3338), 4, + anon_sym_AT, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [101791] = 14, + ACTIONS(163), 8, + sym__external_else, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [101981] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 1, + ACTIONS(3319), 1, + anon_sym_PLUS, + ACTIONS(3321), 1, + anon_sym_DASH, + ACTIONS(3331), 1, + anon_sym_AMP, + ACTIONS(3335), 1, + anon_sym_AMP_AMP, + ACTIONS(3341), 1, + anon_sym_STAR, + ACTIONS(3343), 1, + anon_sym_SLASH, + ACTIONS(3349), 1, + anon_sym_COLON, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(3344), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3350), 2, + ACTIONS(3347), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(201), 9, + ACTIONS(165), 3, anon_sym_EQ, - anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(199), 19, + ACTIONS(3339), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(163), 10, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [101862] = 26, + [102072] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, + ACTIONS(3319), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_DASH, - ACTIONS(3328), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, - anon_sym_AMP, - ACTIONS(3332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, - anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3341), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3343), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3355), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3357), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3359), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(278), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(279), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, + STATE(280), 1, + sym__open_bracket2, STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, sym_call_arguments, - ACTIONS(147), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3336), 2, + STATE(1695), 1, + sym_subset_arguments, + STATE(1696), 1, + sym_subset2_arguments, + ACTIONS(3337), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3345), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3347), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3351), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3338), 4, + ACTIONS(165), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(149), 9, + ACTIONS(163), 11, sym__external_else, sym__external_close_bracket, anon_sym_QMARK, @@ -114952,458 +115094,464 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_comma, - [101957] = 30, + [102159] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_EQ, - ACTIONS(3316), 1, - anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3218), 1, anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_DASH_GT, - ACTIONS(3326), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3228), 1, anon_sym_AMP, - ACTIONS(3332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3232), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3238), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3240), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3246), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3252), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3254), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3256), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(272), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(273), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(274), 1, + sym__open_bracket2, + STATE(1672), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1674), 1, + sym_subset_arguments, + STATE(1681), 1, + sym_subset2_arguments, + ACTIONS(3234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3242), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3244), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3248), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(203), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3338), 4, + ACTIONS(165), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + ACTIONS(3236), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [102060] = 22, + ACTIONS(163), 10, + sym__external_else, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + sym_comma, + [102250] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, + ACTIONS(3401), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3340), 1, + ACTIONS(3405), 1, + anon_sym_PIPE, + ACTIONS(3407), 1, + anon_sym_AMP, + ACTIONS(3409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3411), 1, + anon_sym_AMP_AMP, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(267), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, sym_subset_arguments, - STATE(1694), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3336), 2, + ACTIONS(235), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(147), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3338), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(149), 11, - sym__external_else, - sym__external_close_bracket, + ACTIONS(237), 8, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_comma, - [102147] = 30, + [102344] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3316), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3318), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3320), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3324), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3326), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3328), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3330), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3332), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3334), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3342), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3348), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3356), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3358), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(248), 1, - sym__open_bracket2, - STATE(264), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(269), 1, + STATE(256), 1, sym__open_bracket, - STATE(1692), 1, - sym_subset2_arguments, - STATE(1693), 1, - sym_subset_arguments, - STATE(1694), 1, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3336), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3344), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3346), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3350), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3322), 3, + ACTIONS(183), 3, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(199), 4, - sym__external_else, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3338), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [102250] = 32, + [102446] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3443), 1, - sym__external_close_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(342), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [102356] = 32, + ACTIONS(163), 6, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + sym_comma, + [102546] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3449), 1, - sym__external_close_parenthesis, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(530), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(163), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [102462] = 22, + [102648] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3401), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3429), 1, + ACTIONS(3405), 1, + anon_sym_PIPE, + ACTIONS(3407), 1, + anon_sym_AMP, + ACTIONS(3409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3411), 1, + anon_sym_AMP_AMP, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(201), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(199), 10, - sym__external_close_parenthesis, + ACTIONS(163), 8, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_comma, - [102548] = 14, + [102742] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 1, + ACTIONS(3417), 1, + anon_sym_STAR, + ACTIONS(3419), 1, + anon_sym_SLASH, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3439), 2, + ACTIONS(3423), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(201), 9, + ACTIONS(165), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -115411,10 +115559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(199), 18, - sym__external_close_parenthesis, + ACTIONS(163), 15, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -115428,4172 +115574,4073 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [102618] = 18, + [102820] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3401), 1, + anon_sym_PLUS, + ACTIONS(3403), 1, + anon_sym_DASH, + ACTIONS(3405), 1, + anon_sym_PIPE, + ACTIONS(3407), 1, + anon_sym_AMP, + ACTIONS(3409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3411), 1, + anon_sym_AMP_AMP, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3453), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + STATE(267), 1, + sym__open_bracket, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1732), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1764), 1, + sym_call_arguments, + ACTIONS(3413), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 15, - sym__external_close_bracket, + ACTIONS(163), 3, + sym__external_close_bracket2, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [102696] = 30, + [102922] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3401), 1, + anon_sym_PLUS, + ACTIONS(3403), 1, + anon_sym_DASH, + ACTIONS(3405), 1, + anon_sym_PIPE, + ACTIONS(3407), 1, + anon_sym_AMP, + ACTIONS(3409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3411), 1, + anon_sym_AMP_AMP, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3453), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3469), 1, - anon_sym_EQ, - ACTIONS(3471), 1, - anon_sym_TILDE, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - ACTIONS(3479), 1, - anon_sym_DASH_GT, ACTIONS(3481), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, - anon_sym_PIPE, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + anon_sym_TILDE, + STATE(266), 1, sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + STATE(267), 1, + sym__open_bracket, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1732), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1764), 1, + sym_call_arguments, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3413), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [102798] = 30, + ACTIONS(163), 7, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [103018] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, - anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(239), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3411), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(165), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [102900] = 30, + ACTIONS(163), 9, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + sym_comma, + [103108] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, ACTIONS(3417), 1, - anon_sym_PIPE, - ACTIONS(3419), 1, - anon_sym_AMP, - ACTIONS(3421), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, - anon_sym_AMP_AMP, - ACTIONS(3429), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(235), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3411), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(165), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [103002] = 30, + ACTIONS(163), 10, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [103194] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, ACTIONS(3417), 1, - anon_sym_PIPE, - ACTIONS(3419), 1, - anon_sym_AMP, - ACTIONS(3421), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, - anon_sym_AMP_AMP, - ACTIONS(3429), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(231), 3, - sym__external_close_parenthesis, + ACTIONS(165), 6, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 14, + sym__external_close_bracket2, anon_sym_QMARK, - sym_comma, - ACTIONS(3411), 3, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [103104] = 30, + sym_comma, + [103276] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(227), 3, + ACTIONS(187), 3, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [103206] = 30, + [103378] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, - anon_sym_PLUS, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, - anon_sym_PIPE, - ACTIONS(3419), 1, - anon_sym_AMP, - ACTIONS(3421), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, - anon_sym_AMP_AMP, - ACTIONS(3429), 1, - anon_sym_STAR, - ACTIONS(3431), 1, - anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(223), 3, - sym__external_close_parenthesis, + ACTIONS(165), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 16, + sym__external_close_bracket2, anon_sym_QMARK, - sym_comma, - ACTIONS(3411), 3, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [103308] = 27, + anon_sym_SLASH, + sym_comma, + [103452] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3471), 1, - anon_sym_TILDE, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - ACTIONS(3483), 1, - anon_sym_PIPE, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + STATE(267), 1, + sym__open_bracket, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1732), 1, sym_subset2_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3455), 2, + STATE(1764), 1, + sym_call_arguments, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, + ACTIONS(165), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(3493), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 7, - sym__external_close_bracket, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 18, + sym__external_close_bracket2, anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [103404] = 31, + [103522] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3429), 1, + sym__external_open_parenthesis, + ACTIONS(3431), 1, + sym__external_open_bracket, + ACTIONS(3433), 1, + sym__external_open_bracket2, + STATE(266), 1, + sym__open_parenthesis, + STATE(267), 1, + sym__open_bracket, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, + sym_subset_arguments, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, + sym_call_arguments, + ACTIONS(3421), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3427), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(165), 8, anon_sym_EQ, - ACTIONS(3497), 1, - anon_sym_QMARK, - ACTIONS(3499), 1, - anon_sym_TILDE, - ACTIONS(3501), 1, - anon_sym_PLUS, - ACTIONS(3503), 1, anon_sym_DASH, - ACTIONS(3507), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, anon_sym_PIPE, - ACTIONS(3513), 1, anon_sym_AMP, - ACTIONS(3515), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 18, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, - anon_sym_STAR, - ACTIONS(3525), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SLASH, - ACTIONS(3531), 1, - anon_sym_COLON, - ACTIONS(3537), 1, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [103594] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, STATE(266), 1, - sym__open_bracket, - STATE(270), 1, sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(267), 1, + sym__open_bracket, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, sym_subset_arguments, - ACTIONS(3519), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3527), 2, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, + sym_call_arguments, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3535), 2, + ACTIONS(165), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 18, sym__external_close_bracket2, - sym_comma, - ACTIONS(3505), 3, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [103508] = 30, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [103664] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(151), 3, + ACTIONS(191), 3, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [103610] = 26, + [103766] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3417), 1, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3435), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3439), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3427), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 8, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [103704] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3429), 1, - anon_sym_STAR, - ACTIONS(3431), 1, - anon_sym_SLASH, - ACTIONS(3437), 1, - anon_sym_COLON, - ACTIONS(3441), 1, - sym__external_open_parenthesis, - ACTIONS(3445), 1, - sym__external_open_bracket, - ACTIONS(3447), 1, - sym__external_open_bracket2, - STATE(260), 1, - sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, - sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, - sym_call_arguments, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3439), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(153), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 15, + anon_sym_PIPE_GT, + ACTIONS(3471), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(195), 3, sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [103782] = 30, + [103868] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(151), 3, + ACTIONS(199), 3, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [103884] = 27, + [103970] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 1, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3417), 1, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3427), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 7, + ACTIONS(203), 3, sym__external_close_parenthesis, anon_sym_QMARK, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [103980] = 24, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [104072] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3419), 1, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3423), 1, + ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 3, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - ACTIONS(3427), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 9, + ACTIONS(207), 3, sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - sym_comma, - [104070] = 22, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [104174] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3429), 1, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_AMP, + ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3427), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 10, + ACTIONS(211), 3, sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_comma, - [104156] = 30, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [104276] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(219), 3, - sym__external_close_parenthesis, + ACTIONS(167), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [104258] = 30, + [104378] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(143), 3, - sym__external_close_parenthesis, + ACTIONS(207), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [104360] = 20, + [104480] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3401), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3429), 1, + ACTIONS(3405), 1, + anon_sym_PIPE, + ACTIONS(3407), 1, + anon_sym_AMP, + ACTIONS(3409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3411), 1, + anon_sym_AMP_AMP, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3433), 2, + ACTIONS(3413), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 14, - sym__external_close_parenthesis, + ACTIONS(171), 3, + sym__external_close_bracket2, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [104442] = 16, + [104582] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(3435), 1, + anon_sym_EQ, ACTIONS(3437), 1, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, ACTIONS(3441), 1, - sym__external_open_parenthesis, - ACTIONS(3445), 1, - sym__external_open_bracket, - ACTIONS(3447), 1, - sym__external_open_bracket2, - STATE(260), 1, - sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, - sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, - sym_call_arguments, - ACTIONS(3433), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3435), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3439), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(153), 8, - anon_sym_EQ, anon_sym_DASH, + ACTIONS(3445), 1, anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - ACTIONS(151), 16, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, anon_sym_SLASH, - sym_comma, - [104516] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3441), 1, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3535), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(395), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3433), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3439), 2, + ACTIONS(3467), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 18, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [104586] = 15, + [104688] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(3435), 1, + anon_sym_EQ, ACTIONS(3437), 1, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, ACTIONS(3441), 1, - sym__external_open_parenthesis, - ACTIONS(3445), 1, - sym__external_open_bracket, - ACTIONS(3447), 1, - sym__external_open_bracket2, - STATE(260), 1, - sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, - sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, - sym_call_arguments, - ACTIONS(3433), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3439), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(153), 8, - anon_sym_EQ, anon_sym_DASH, + ACTIONS(3445), 1, anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - ACTIONS(151), 18, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [104658] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3441), 1, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3433), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3439), 2, + ACTIONS(3467), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 18, + ACTIONS(179), 3, sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [104728] = 32, + [104790] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3543), 1, - sym__external_close_parenthesis, - STATE(260), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1013), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3537), 2, + sym__external_close_parenthesis, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [104834] = 32, + [104894] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3545), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(593), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [104940] = 32, + ACTIONS(151), 8, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [104988] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3547), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(521), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(211), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [105046] = 32, + [105090] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, ACTIONS(3417), 1, - anon_sym_PIPE, - ACTIONS(3419), 1, - anon_sym_AMP, - ACTIONS(3421), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, - anon_sym_AMP_AMP, - ACTIONS(3429), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3549), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(598), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(235), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [105152] = 30, + ACTIONS(237), 10, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [105176] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(215), 3, - sym__external_close_parenthesis, + ACTIONS(187), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [105254] = 30, + [105278] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(211), 3, - sym__external_close_parenthesis, + ACTIONS(175), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [105356] = 30, + [105380] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(195), 3, - sym__external_close_parenthesis, + ACTIONS(179), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [105458] = 32, + [105482] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3551), 1, - sym__external_close_parenthesis, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1009), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(183), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [105564] = 30, + [105584] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3429), 1, + sym__external_open_parenthesis, + ACTIONS(3431), 1, + sym__external_open_bracket, + ACTIONS(3433), 1, + sym__external_open_bracket2, + STATE(266), 1, + sym__open_parenthesis, + STATE(267), 1, + sym__open_bracket, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, + sym_subset_arguments, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, + sym_call_arguments, + ACTIONS(3421), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3427), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(235), 9, anon_sym_EQ, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, - anon_sym_PLUS, - ACTIONS(3409), 1, anon_sym_DASH, - ACTIONS(3413), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(237), 18, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [105654] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + anon_sym_PLUS, + ACTIONS(3403), 1, + anon_sym_DASH, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(191), 3, - sym__external_close_parenthesis, + ACTIONS(187), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [105666] = 30, + [105756] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3539), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, - sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(257), 1, + sym__open_bracket2, + STATE(480), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(187), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [105768] = 30, + [105862] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(183), 3, - sym__external_close_parenthesis, + ACTIONS(215), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [105870] = 31, + [105964] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3401), 1, + anon_sym_PLUS, + ACTIONS(3403), 1, + anon_sym_DASH, + ACTIONS(3405), 1, + anon_sym_PIPE, + ACTIONS(3407), 1, + anon_sym_AMP, + ACTIONS(3409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3411), 1, + anon_sym_AMP_AMP, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3453), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3469), 1, - anon_sym_EQ, - ACTIONS(3471), 1, - anon_sym_TILDE, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, ACTIONS(3479), 1, - anon_sym_DASH_GT, + anon_sym_EQ, ACTIONS(3481), 1, - anon_sym_DASH_GT_GT, + anon_sym_TILDE, ACTIONS(3483), 1, - anon_sym_PIPE, + anon_sym_DASH_GT, ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - ACTIONS(3553), 1, - anon_sym_QMARK, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + STATE(267), 1, + sym__open_bracket, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1732), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1764), 1, + sym_call_arguments, + ACTIONS(3413), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3535), 2, - sym__external_close_bracket, + ACTIONS(191), 3, + sym__external_close_bracket2, + anon_sym_QMARK, sym_comma, - ACTIONS(3477), 3, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [105974] = 30, + [106066] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(163), 3, - sym__external_close_parenthesis, + ACTIONS(195), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [106076] = 24, + [106168] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3453), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(165), 3, + ACTIONS(153), 7, anon_sym_EQ, + anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, - ACTIONS(3493), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 9, - sym__external_close_bracket, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(151), 15, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, sym_comma, - [106166] = 30, + [106246] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(175), 3, - sym__external_close_parenthesis, + ACTIONS(219), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [106268] = 32, + [106348] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3555), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(607), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(145), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [106374] = 32, + [106450] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3557), 1, - sym__external_close_parenthesis, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(610), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(199), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [106480] = 32, + [106552] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3559), 1, - sym__external_close_parenthesis, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(630), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(203), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [106586] = 32, + [106654] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3561), 1, - sym__external_close_parenthesis, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(635), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(207), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [106692] = 26, + [106756] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3401), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, - sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, - sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, - sym_call_arguments, - ACTIONS(201), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3425), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3433), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3435), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3439), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3427), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(199), 8, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [106786] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3401), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3481), 1, anon_sym_TILDE, - ACTIONS(3407), 1, - anon_sym_PLUS, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3483), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3485), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, - anon_sym_PIPE, - ACTIONS(3419), 1, - anon_sym_AMP, - ACTIONS(3421), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, - anon_sym_AMP_AMP, - ACTIONS(3429), 1, - anon_sym_STAR, - ACTIONS(3431), 1, - anon_sym_SLASH, - ACTIONS(3437), 1, - anon_sym_COLON, - ACTIONS(3441), 1, - sym__external_open_parenthesis, - ACTIONS(3445), 1, - sym__external_open_bracket, - ACTIONS(3447), 1, - sym__external_open_bracket2, - STATE(260), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, - sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(171), 3, - sym__external_close_parenthesis, + ACTIONS(211), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [106888] = 32, + [106858] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3563), 1, - sym__external_close_parenthesis, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(639), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(215), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [106994] = 30, + [106960] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(167), 3, - sym__external_close_parenthesis, + ACTIONS(219), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [107096] = 32, + [107062] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3565), 1, - sym__external_close_parenthesis, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(641), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(145), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [107202] = 32, + [107164] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3567), 1, - sym__external_close_parenthesis, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(648), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(223), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [107308] = 22, + [107266] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, ACTIONS(3451), 1, - anon_sym_STAR, + anon_sym_AMP, ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(165), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3493), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 10, - sym__external_close_bracket, + ACTIONS(151), 3, + sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_comma, - [107394] = 32, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [107368] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3569), 1, - sym__external_close_parenthesis, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(532), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(227), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [107500] = 20, + [107470] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3489), 1, + anon_sym_EQ, + ACTIONS(3491), 1, + anon_sym_TILDE, + ACTIONS(3493), 1, + anon_sym_PLUS, + ACTIONS(3495), 1, + anon_sym_DASH, + ACTIONS(3499), 1, + anon_sym_DASH_GT, + ACTIONS(3501), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3503), 1, + anon_sym_PIPE, + ACTIONS(3505), 1, + anon_sym_AMP, + ACTIONS(3507), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3509), 1, + anon_sym_AMP_AMP, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3453), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - STATE(274), 1, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1726), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 14, + ACTIONS(191), 3, sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [107582] = 30, + [107572] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3471), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3479), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3481), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - STATE(274), 1, + ACTIONS(3515), 1, + anon_sym_STAR, + ACTIONS(3517), 1, + anon_sym_SLASH, + ACTIONS(3523), 1, + anon_sym_COLON, + ACTIONS(3527), 1, + sym__external_open_parenthesis, + ACTIONS(3529), 1, + sym__external_open_bracket, + ACTIONS(3531), 1, + sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1726), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(167), 3, + ACTIONS(223), 3, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3477), 3, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [107684] = 30, + [107674] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3471), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3479), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3481), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - STATE(274), 1, + ACTIONS(3515), 1, + anon_sym_STAR, + ACTIONS(3517), 1, + anon_sym_SLASH, + ACTIONS(3523), 1, + anon_sym_COLON, + ACTIONS(3527), 1, + sym__external_open_parenthesis, + ACTIONS(3529), 1, + sym__external_open_bracket, + ACTIONS(3531), 1, + sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1726), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(171), 3, + ACTIONS(227), 3, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3477), 3, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [107786] = 32, + [107776] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3571), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(652), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(195), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [107892] = 30, + [107878] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, STATE(265), 1, sym__open_bracket2, - STATE(266), 1, + STATE(283), 1, sym__open_bracket, - STATE(270), 1, - sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1711), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(167), 3, - sym__external_close_bracket2, + ACTIONS(241), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3505), 3, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [107994] = 30, + [107980] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(155), 3, - sym__external_close_parenthesis, + ACTIONS(245), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [108096] = 30, + [108082] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(159), 3, - sym__external_close_parenthesis, + ACTIONS(147), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [108198] = 29, + [108184] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 6, + ACTIONS(151), 7, sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, sym_comma, - [108298] = 29, + [108280] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(149), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 6, - sym__external_close_parenthesis, + ACTIONS(147), 8, + sym__external_close_bracket, anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, sym_comma, - [108398] = 16, + [108374] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 1, + ACTIONS(3493), 1, + anon_sym_PLUS, + ACTIONS(3495), 1, + anon_sym_DASH, + ACTIONS(3515), 1, + anon_sym_STAR, + ACTIONS(3517), 1, + anon_sym_SLASH, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - STATE(274), 1, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1726), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, + ACTIONS(149), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3513), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(147), 10, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [108460] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3527), 1, + sym__external_open_parenthesis, + ACTIONS(3529), 1, + sym__external_open_bracket, + ACTIONS(3531), 1, + sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, + sym__open_bracket2, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, + sym_subset_arguments, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3519), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3525), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(149), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -119602,7 +119649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(163), 16, + anon_sym_COLON, + ACTIONS(147), 18, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, @@ -119618,239 +119666,405 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [108472] = 32, + [108530] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3573), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3541), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(544), 1, + STATE(638), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [108578] = 30, + [108636] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, STATE(265), 1, sym__open_bracket2, - STATE(266), 1, + STATE(283), 1, sym__open_bracket, - STATE(270), 1, - sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1711), 1, sym_subset_arguments, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3519), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3521), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3525), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3513), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(151), 6, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + sym_comma, + [108736] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3489), 1, + anon_sym_EQ, + ACTIONS(3491), 1, + anon_sym_TILDE, + ACTIONS(3493), 1, + anon_sym_PLUS, + ACTIONS(3495), 1, + anon_sym_DASH, + ACTIONS(3499), 1, + anon_sym_DASH_GT, + ACTIONS(3501), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3503), 1, + anon_sym_PIPE, + ACTIONS(3505), 1, + anon_sym_AMP, + ACTIONS(3507), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3509), 1, + anon_sym_AMP_AMP, + ACTIONS(3515), 1, + anon_sym_STAR, + ACTIONS(3517), 1, + anon_sym_SLASH, + ACTIONS(3523), 1, + anon_sym_COLON, + ACTIONS(3527), 1, + sym__external_open_parenthesis, + ACTIONS(3529), 1, + sym__external_open_bracket, + ACTIONS(3531), 1, + sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, + sym__open_bracket2, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, + sym_subset_arguments, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(239), 3, - sym__external_close_bracket2, + ACTIONS(151), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3505), 3, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [108680] = 14, + [108838] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_AMP, + ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, + anon_sym_STAR, ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3543), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(501), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3461), 2, + ACTIONS(3467), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, + ACTIONS(3443), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [108944] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3493), 1, + anon_sym_PLUS, + ACTIONS(3495), 1, + anon_sym_DASH, + ACTIONS(3503), 1, + anon_sym_PIPE, + ACTIONS(3505), 1, + anon_sym_AMP, + ACTIONS(3507), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3509), 1, + anon_sym_AMP_AMP, + ACTIONS(3515), 1, + anon_sym_STAR, + ACTIONS(3517), 1, + anon_sym_SLASH, + ACTIONS(3523), 1, + anon_sym_COLON, + ACTIONS(3527), 1, + sym__external_open_parenthesis, + ACTIONS(3529), 1, + sym__external_open_bracket, + ACTIONS(3531), 1, + sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, + sym__open_bracket2, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, + sym_subset_arguments, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(153), 2, anon_sym_EQ, - anon_sym_DASH, anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 18, + ACTIONS(3519), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3521), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3525), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3513), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(151), 8, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [108750] = 15, + [109038] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 1, + ACTIONS(3515), 1, + anon_sym_STAR, + ACTIONS(3517), 1, + anon_sym_SLASH, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - STATE(274), 1, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1726), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3461), 2, + ACTIONS(3521), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, + ACTIONS(153), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -119858,8 +120072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - ACTIONS(163), 18, + ACTIONS(151), 15, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, @@ -119874,974 +120087,920 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [108822] = 30, + [109116] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, STATE(265), 1, sym__open_bracket2, - STATE(266), 1, + STATE(283), 1, sym__open_bracket, - STATE(270), 1, - sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1711), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(235), 3, - sym__external_close_bracket2, + ACTIONS(151), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3505), 3, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [108924] = 30, + [109218] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, - anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3507), 1, - anon_sym_DASH_GT, - ACTIONS(3509), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, STATE(265), 1, sym__open_bracket2, - STATE(266), 1, + STATE(283), 1, sym__open_bracket, - STATE(270), 1, - sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1711), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(231), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3505), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109026] = 30, + ACTIONS(151), 7, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [109314] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, - anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3507), 1, - anon_sym_DASH_GT, - ACTIONS(3509), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, - anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3515), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, STATE(265), 1, sym__open_bracket2, - STATE(266), 1, + STATE(283), 1, sym__open_bracket, - STATE(270), 1, - sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1711), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(227), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3505), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(153), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109128] = 30, + ACTIONS(151), 9, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + sym_comma, + [109404] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, - anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3507), 1, - anon_sym_DASH_GT, - ACTIONS(3509), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, - anon_sym_PIPE, - ACTIONS(3513), 1, - anon_sym_AMP, ACTIONS(3515), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, - anon_sym_AMP_AMP, - ACTIONS(3523), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, STATE(265), 1, sym__open_bracket2, - STATE(266), 1, + STATE(283), 1, sym__open_bracket, - STATE(270), 1, - sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1711), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(223), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3505), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(153), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109230] = 30, + ACTIONS(151), 10, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [109490] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, - anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3507), 1, - anon_sym_DASH_GT, - ACTIONS(3509), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, - anon_sym_PIPE, - ACTIONS(3513), 1, - anon_sym_AMP, ACTIONS(3515), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, - anon_sym_AMP_AMP, - ACTIONS(3523), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, STATE(265), 1, sym__open_bracket2, - STATE(266), 1, + STATE(283), 1, sym__open_bracket, - STATE(270), 1, - sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1711), 1, sym_subset_arguments, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, ACTIONS(3519), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3527), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(219), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3505), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3521), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [109332] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3495), 1, + ACTIONS(153), 6, anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_TILDE, - ACTIONS(3501), 1, - anon_sym_PLUS, - ACTIONS(3503), 1, - anon_sym_DASH, - ACTIONS(3507), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, anon_sym_PIPE, - ACTIONS(3513), 1, anon_sym_AMP, - ACTIONS(3515), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, - anon_sym_AMP_AMP, - ACTIONS(3523), 1, - anon_sym_STAR, - ACTIONS(3525), 1, - anon_sym_SLASH, - ACTIONS(3531), 1, - anon_sym_COLON, - ACTIONS(3537), 1, - sym__external_open_parenthesis, - ACTIONS(3539), 1, - sym__external_open_bracket, - ACTIONS(3541), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, - sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, - sym_subset_arguments, - ACTIONS(3519), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3529), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3533), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(143), 3, - sym__external_close_bracket2, + ACTIONS(151), 14, + sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3505), 3, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109434] = 30, + sym_comma, + [109572] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, ACTIONS(215), 3, - sym__external_close_bracket2, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3505), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109536] = 30, + [109674] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, - anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_TILDE, - ACTIONS(3501), 1, - anon_sym_PLUS, - ACTIONS(3503), 1, - anon_sym_DASH, - ACTIONS(3507), 1, - anon_sym_DASH_GT, - ACTIONS(3509), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, - anon_sym_PIPE, - ACTIONS(3513), 1, - anon_sym_AMP, - ACTIONS(3515), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, - anon_sym_AMP_AMP, ACTIONS(3523), 1, - anon_sym_STAR, - ACTIONS(3525), 1, - anon_sym_SLASH, - ACTIONS(3531), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, STATE(265), 1, sym__open_bracket2, - STATE(266), 1, + STATE(283), 1, sym__open_bracket, - STATE(270), 1, - sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1711), 1, sym_subset_arguments, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, ACTIONS(3519), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3527), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(211), 3, - sym__external_close_bracket2, + ACTIONS(153), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(151), 16, + sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3505), 3, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109638] = 30, + anon_sym_SLASH, + sym_comma, + [109748] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(195), 3, - sym__external_close_bracket2, + ACTIONS(219), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3505), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109740] = 30, + [109850] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, STATE(265), 1, sym__open_bracket2, - STATE(266), 1, + STATE(283), 1, sym__open_bracket, - STATE(270), 1, - sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1711), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(191), 3, - sym__external_close_bracket2, + ACTIONS(199), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3505), 3, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109842] = 30, + [109952] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3527), 1, + sym__external_open_parenthesis, + ACTIONS(3529), 1, + sym__external_open_bracket, + ACTIONS(3531), 1, + sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, + sym__open_bracket2, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, + sym_subset_arguments, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3519), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3525), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(153), 9, anon_sym_EQ, - ACTIONS(3499), 1, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(151), 18, + sym__external_close_bracket, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3501), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [110022] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3545), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(493), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(187), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3505), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [109944] = 30, + [110128] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, STATE(265), 1, sym__open_bracket2, - STATE(266), 1, + STATE(283), 1, sym__open_bracket, - STATE(270), 1, - sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1711), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(183), 3, - sym__external_close_bracket2, + ACTIONS(203), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3505), 3, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [110046] = 30, + [110230] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3547), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(479), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(179), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3505), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [110148] = 14, + [110336] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 1, + ACTIONS(3523), 1, + anon_sym_COLON, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - STATE(274), 1, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1726), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3461), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, + ACTIONS(153), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -120850,8 +121009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 18, + ACTIONS(151), 18, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, @@ -120870,474 +121028,431 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [110218] = 30, + [110408] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3469), 1, - anon_sym_EQ, - ACTIONS(3471), 1, - anon_sym_TILDE, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - ACTIONS(3479), 1, - anon_sym_DASH_GT, - ACTIONS(3481), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, - anon_sym_PIPE, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - STATE(274), 1, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1726), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, + ACTIONS(153), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(163), 3, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(151), 18, sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [110320] = 32, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [110478] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, - anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3575), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(911), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(153), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [110426] = 32, + ACTIONS(151), 9, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + sym_comma, + [110568] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3577), 1, - sym__external_close_parenthesis, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1737), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(241), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [110532] = 30, + [110670] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, - anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3507), 1, - anon_sym_DASH_GT, - ACTIONS(3509), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, - anon_sym_PIPE, - ACTIONS(3513), 1, - anon_sym_AMP, - ACTIONS(3515), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, - anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(175), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3505), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(153), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [110634] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, + ACTIONS(151), 10, + sym__external_close_parenthesis, anon_sym_QMARK, - ACTIONS(3405), 1, anon_sym_TILDE, - ACTIONS(3407), 1, - anon_sym_PLUS, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, - anon_sym_PIPE, - ACTIONS(3419), 1, - anon_sym_AMP, - ACTIONS(3421), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + sym_comma, + [110756] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3579), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(658), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3433), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(153), 6, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(151), 14, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [110740] = 32, + sym_comma, + [110838] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3581), 1, - sym__external_close_parenthesis, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(662), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(245), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [110846] = 14, + [110940] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 1, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3433), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3439), 2, + ACTIONS(3467), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, + ACTIONS(153), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -121346,8 +121461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 18, + ACTIONS(151), 16, sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, @@ -121363,398 +121477,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, sym_comma, - [110916] = 29, + [111014] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, - anon_sym_EQ, - ACTIONS(3471), 1, - anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3401), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3479), 1, - anon_sym_DASH_GT, - ACTIONS(3481), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, - sym_subset_arguments, - STATE(1780), 1, - sym_subset2_arguments, - ACTIONS(3455), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3457), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3461), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3493), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 6, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - sym_comma, - [111016] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3451), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3453), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3469), 1, - anon_sym_EQ, - ACTIONS(3471), 1, - anon_sym_TILDE, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, ACTIONS(3479), 1, - anon_sym_DASH_GT, + anon_sym_EQ, ACTIONS(3481), 1, - anon_sym_DASH_GT_GT, + anon_sym_TILDE, ACTIONS(3483), 1, - anon_sym_PIPE, + anon_sym_DASH_GT, ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + STATE(267), 1, + sym__open_bracket, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1732), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1764), 1, + sym_call_arguments, + ACTIONS(3413), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(159), 3, - sym__external_close_bracket, + ACTIONS(147), 3, + sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3477), 3, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [111118] = 30, + [111116] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, - anon_sym_EQ, - ACTIONS(3471), 1, - anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3401), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3479), 1, - anon_sym_DASH_GT, - ACTIONS(3481), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3417), 1, + anon_sym_STAR, + ACTIONS(3419), 1, + anon_sym_SLASH, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3429), 1, + sym__external_open_parenthesis, + ACTIONS(3431), 1, + sym__external_open_bracket, + ACTIONS(3433), 1, + sym__external_open_bracket2, + STATE(266), 1, sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + STATE(267), 1, + sym__open_bracket, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1732), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1764), 1, + sym_call_arguments, + ACTIONS(149), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3413), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(175), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [111220] = 30, + ACTIONS(147), 8, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [111210] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, ACTIONS(3417), 1, - anon_sym_PIPE, - ACTIONS(3419), 1, - anon_sym_AMP, - ACTIONS(3421), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, - anon_sym_AMP_AMP, - ACTIONS(3429), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(199), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3411), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(149), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [111322] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3495), 1, - anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(147), 10, + sym__external_close_bracket2, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3501), 1, - anon_sym_PLUS, - ACTIONS(3503), 1, - anon_sym_DASH, - ACTIONS(3507), 1, - anon_sym_DASH_GT, - ACTIONS(3509), 1, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, - anon_sym_PIPE, - ACTIONS(3513), 1, - anon_sym_AMP, - ACTIONS(3515), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, - anon_sym_STAR, - ACTIONS(3525), 1, - anon_sym_SLASH, - ACTIONS(3531), 1, - anon_sym_COLON, - ACTIONS(3537), 1, + sym_comma, + [111296] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3527), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(171), 3, - sym__external_close_bracket2, + ACTIONS(153), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(151), 18, + sym__external_close_parenthesis, anon_sym_QMARK, - sym_comma, - ACTIONS(3505), 3, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [111424] = 15, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [111366] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, - anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, + ACTIONS(149), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -121763,8 +121774,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(163), 18, - sym__external_close_parenthesis, + anon_sym_COLON, + ACTIONS(147), 18, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -121782,34 +121794,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [111496] = 14, + [111436] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 1, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3433), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, + ACTIONS(153), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -121818,8 +121832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 18, + ACTIONS(151), 18, sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, @@ -121838,113 +121851,105 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [111566] = 32, + [111508] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3583), 1, - sym__external_close_parenthesis, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(670), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [111672] = 16, + ACTIONS(151), 6, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + sym_comma, + [111608] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, - anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3433), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, + ACTIONS(153), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -121953,7 +121958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(163), 16, + anon_sym_COLON, + ACTIONS(151), 18, sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, @@ -121969,1770 +121975,1881 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [111746] = 32, + [111678] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3585), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(672), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(233), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [111852] = 20, + [111780] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3401), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3429), 1, + ACTIONS(3405), 1, + anon_sym_PIPE, + ACTIONS(3407), 1, + anon_sym_AMP, + ACTIONS(3409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3411), 1, + anon_sym_AMP_AMP, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3433), 2, + ACTIONS(3413), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 14, - sym__external_close_parenthesis, + ACTIONS(151), 3, + sym__external_close_bracket2, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [111934] = 22, + [111882] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3401), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3429), 1, + ACTIONS(3405), 1, + anon_sym_PIPE, + ACTIONS(3407), 1, + anon_sym_AMP, + ACTIONS(3409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3411), 1, + anon_sym_AMP_AMP, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 10, - sym__external_close_parenthesis, + ACTIONS(151), 8, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_comma, - [112020] = 24, + [111976] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3489), 1, + anon_sym_EQ, + ACTIONS(3491), 1, + anon_sym_TILDE, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3419), 1, + ACTIONS(3499), 1, + anon_sym_DASH_GT, + ACTIONS(3501), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3503), 1, + anon_sym_PIPE, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3423), 1, + ACTIONS(3507), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 3, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - ACTIONS(3427), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 9, - sym__external_close_parenthesis, + ACTIONS(237), 3, + sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - sym_comma, - [112110] = 27, + ACTIONS(3513), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [112078] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 1, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3417), 1, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3427), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 7, + ACTIONS(233), 3, sym__external_close_parenthesis, anon_sym_QMARK, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [112206] = 32, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [112180] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3587), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(676), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(155), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [112312] = 32, + [112282] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, - anon_sym_PLUS, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, ACTIONS(3417), 1, - anon_sym_PIPE, - ACTIONS(3419), 1, - anon_sym_AMP, - ACTIONS(3421), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, - anon_sym_AMP_AMP, - ACTIONS(3429), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3589), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(401), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(153), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(151), 15, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [112418] = 32, + sym_comma, + [112360] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3591), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(678), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(159), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [112524] = 32, + [112462] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3593), 1, - sym__external_close_parenthesis, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(518), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(151), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [112630] = 30, + [112564] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, - anon_sym_EQ, - ACTIONS(3471), 1, - anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3479), 1, - anon_sym_DASH_GT, - ACTIONS(3481), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - STATE(274), 1, + ACTIONS(3515), 1, + anon_sym_STAR, + ACTIONS(3517), 1, + anon_sym_SLASH, + ACTIONS(3523), 1, + anon_sym_COLON, + ACTIONS(3527), 1, + sym__external_open_parenthesis, + ACTIONS(3529), 1, + sym__external_open_bracket, + ACTIONS(3531), 1, + sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1726), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(235), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3511), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(155), 3, + ACTIONS(3513), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(237), 8, sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [112732] = 31, + anon_sym_DASH_GT_GT, + sym_comma, + [112658] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3481), 1, + anon_sym_TILDE, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(153), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3535), 2, - sym__external_close_parenthesis, - sym_comma, - ACTIONS(3411), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [112836] = 30, + ACTIONS(151), 7, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [112754] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3471), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3479), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3481), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, + sym__external_open_parenthesis, + ACTIONS(3475), 1, + sym__external_open_bracket, + ACTIONS(3477), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, + anon_sym_QMARK, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(179), 3, - sym__external_close_bracket, - anon_sym_QMARK, + ACTIONS(3549), 2, + sym__external_close_parenthesis, sym_comma, - ACTIONS(3477), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [112938] = 32, + [112858] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, - anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3595), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(548), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(153), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [113044] = 30, + ACTIONS(151), 9, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + sym_comma, + [112948] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3493), 1, + anon_sym_PLUS, + ACTIONS(3495), 1, + anon_sym_DASH, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3453), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3469), 1, - anon_sym_EQ, - ACTIONS(3471), 1, - anon_sym_TILDE, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - ACTIONS(3479), 1, - anon_sym_DASH_GT, - ACTIONS(3481), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, - anon_sym_PIPE, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - STATE(274), 1, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1726), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(245), 3, + ACTIONS(235), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3513), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(237), 10, sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [113146] = 30, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [113034] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3471), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3479), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3481), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, + sym__external_open_parenthesis, + ACTIONS(3475), 1, + sym__external_open_bracket, + ACTIONS(3477), 1, + sym__external_open_bracket2, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(149), 3, - sym__external_close_bracket, + ACTIONS(145), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3477), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [113248] = 32, + [113136] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3597), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(703), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(237), 3, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [113354] = 26, + [113238] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, ACTIONS(3451), 1, - anon_sym_STAR, + anon_sym_AMP, ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - ACTIONS(3483), 1, - anon_sym_PIPE, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(147), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3493), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(149), 8, - sym__external_close_bracket, + ACTIONS(223), 3, + sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [113448] = 14, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [113340] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_AMP, + ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3527), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3533), 2, + ACTIONS(3467), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 18, - sym__external_close_bracket2, + ACTIONS(227), 3, + sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [113518] = 22, + [113442] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, ACTIONS(3451), 1, - anon_sym_STAR, + anon_sym_AMP, ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3551), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1740), 1, + sym__close_parenthesis, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(147), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3493), 4, + ACTIONS(3443), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(149), 10, - sym__external_close_bracket, - anon_sym_QMARK, + [113548] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_AMP, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - sym_comma, - [113604] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3531), 1, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3553), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(821), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3527), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3533), 2, + ACTIONS(3467), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - ACTIONS(163), 18, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [113676] = 32, + [113654] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3599), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3555), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(556), 1, + STATE(836), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [113782] = 14, + [113760] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, + ACTIONS(3489), 1, + anon_sym_EQ, + ACTIONS(3491), 1, + anon_sym_TILDE, + ACTIONS(3493), 1, + anon_sym_PLUS, + ACTIONS(3495), 1, + anon_sym_DASH, + ACTIONS(3499), 1, + anon_sym_DASH_GT, + ACTIONS(3501), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3503), 1, + anon_sym_PIPE, + ACTIONS(3505), 1, + anon_sym_AMP, + ACTIONS(3507), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3509), 1, + anon_sym_AMP_AMP, + ACTIONS(3515), 1, + anon_sym_STAR, + ACTIONS(3517), 1, + anon_sym_SLASH, + ACTIONS(3523), 1, + anon_sym_COLON, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, STATE(265), 1, sym__open_bracket2, - STATE(266), 1, + STATE(283), 1, sym__open_bracket, - STATE(270), 1, - sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1711), 1, sym_subset_arguments, - ACTIONS(3527), 2, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3533), 2, + ACTIONS(3521), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(163), 18, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, + ACTIONS(163), 6, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, sym_comma, - [113852] = 32, + [113860] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3601), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(567), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(163), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [113958] = 32, + [113962] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3603), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3557), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(707), 1, + STATE(838), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [114064] = 30, + [114068] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3449), 1, + anon_sym_PIPE, ACTIONS(3451), 1, - anon_sym_STAR, + anon_sym_AMP, ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3469), 1, + STATE(255), 1, + sym__open_parenthesis, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, + sym_call_arguments, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(235), 2, anon_sym_EQ, - ACTIONS(3471), 1, + anon_sym_DASH_GT, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3467), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3471), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(237), 8, + sym__external_close_parenthesis, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3473), 1, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [114162] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3479), 1, - anon_sym_DASH_GT, - ACTIONS(3481), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - STATE(274), 1, + ACTIONS(3515), 1, + anon_sym_STAR, + ACTIONS(3517), 1, + anon_sym_SLASH, + ACTIONS(3523), 1, + anon_sym_COLON, + ACTIONS(3527), 1, + sym__external_open_parenthesis, + ACTIONS(3529), 1, + sym__external_open_bracket, + ACTIONS(3531), 1, + sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1726), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3511), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(183), 3, + ACTIONS(3513), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(163), 8, sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [114166] = 14, + anon_sym_DASH_GT_GT, + sym_comma, + [114256] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 1, + ACTIONS(3515), 1, + anon_sym_STAR, + ACTIONS(3517), 1, + anon_sym_SLASH, + ACTIONS(3523), 1, + anon_sym_COLON, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - STATE(274), 1, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1726), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3461), 2, + ACTIONS(3521), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(147), 9, + ACTIONS(165), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -123740,9 +123857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(149), 18, + ACTIONS(163), 15, sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, @@ -123757,553 +123872,580 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + sym_comma, + [114334] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_AMP, + ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, + sym__external_open_parenthesis, + ACTIONS(3475), 1, + sym__external_open_bracket, + ACTIONS(3477), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3559), 1, + sym__external_close_parenthesis, + STATE(255), 1, + sym__open_parenthesis, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(854), 1, + sym__close_parenthesis, + STATE(1735), 1, + sym_call_arguments, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - sym_comma, - [114236] = 30, + ACTIONS(3471), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3443), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [114440] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(265), 1, + sym__open_bracket2, + STATE(283), 1, sym__open_bracket, - STATE(262), 1, - sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(179), 3, - sym__external_close_parenthesis, + ACTIONS(163), 3, + sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [114338] = 30, + [114542] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3453), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3469), 1, - anon_sym_EQ, - ACTIONS(3471), 1, - anon_sym_TILDE, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - ACTIONS(3479), 1, - anon_sym_DASH_GT, - ACTIONS(3481), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, - anon_sym_PIPE, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(187), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(235), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [114440] = 32, + ACTIONS(237), 10, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [114628] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3605), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(736), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [114546] = 30, + ACTIONS(163), 7, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + sym_comma, + [114724] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3493), 1, + anon_sym_PLUS, + ACTIONS(3495), 1, + anon_sym_DASH, + ACTIONS(3505), 1, + anon_sym_AMP, + ACTIONS(3509), 1, + anon_sym_AMP_AMP, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3453), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3469), 1, - anon_sym_EQ, - ACTIONS(3471), 1, - anon_sym_TILDE, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - ACTIONS(3479), 1, - anon_sym_DASH_GT, - ACTIONS(3481), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, - anon_sym_PIPE, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - STATE(274), 1, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1726), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(191), 3, + ACTIONS(165), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + ACTIONS(3513), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(163), 9, sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [114648] = 32, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + sym_comma, + [114814] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3607), 1, - sym__external_close_parenthesis, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1743), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(159), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [114754] = 32, + [114916] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, ACTIONS(3417), 1, - anon_sym_PIPE, - ACTIONS(3419), 1, - anon_sym_AMP, - ACTIONS(3421), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, - anon_sym_AMP_AMP, - ACTIONS(3429), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3609), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(874), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(153), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [114860] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(151), 10, + sym__external_close_bracket2, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3407), 1, - anon_sym_PLUS, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, - anon_sym_PIPE, - ACTIONS(3419), 1, - anon_sym_AMP, - ACTIONS(3421), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + sym_comma, + [115002] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3493), 1, + anon_sym_PLUS, + ACTIONS(3495), 1, + anon_sym_DASH, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(203), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3411), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(165), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [114962] = 16, + ACTIONS(163), 10, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_comma, + [115088] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3531), 1, - anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3527), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 8, + ACTIONS(235), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -124312,8 +124454,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(163), 16, - sym__external_close_bracket2, + anon_sym_COLON, + ACTIONS(237), 18, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -124328,45 +124471,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [115036] = 20, + [115158] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3523), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, STATE(265), 1, sym__open_bracket2, - STATE(266), 1, + STATE(283), 1, sym__open_bracket, - STATE(270), 1, - sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1711), 1, sym_subset_arguments, - ACTIONS(3527), 2, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, ACTIONS(165), 6, @@ -124377,7 +124522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, ACTIONS(163), 14, - sym__external_close_bracket2, + sym__external_close_bracket, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, @@ -124391,2578 +124536,2726 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, sym_comma, - [115118] = 32, + [115240] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3611), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3561), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(744), 1, + STATE(431), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1735), 1, + sym_call_arguments, + STATE(1737), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3467), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3471), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3443), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [115346] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_AMP, + ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, + sym__external_open_parenthesis, + ACTIONS(3475), 1, + sym__external_open_bracket, + ACTIONS(3477), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3563), 1, + sym__external_close_parenthesis, + STATE(255), 1, + sym__open_parenthesis, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(485), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [115224] = 32, + [115452] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3613), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(751), 1, + STATE(488), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [115330] = 30, + [115558] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3471), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3479), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3481), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, + sym__external_open_parenthesis, + ACTIONS(3475), 1, + sym__external_open_bracket, + ACTIONS(3477), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(492), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(195), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [115432] = 32, + [115664] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3615), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3569), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(753), 1, + STATE(500), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [115538] = 32, + [115770] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3617), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3571), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1683), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + STATE(1739), 1, + sym__close_parenthesis, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [115644] = 32, + [115876] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3619), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3573), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(682), 1, + STATE(551), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [115750] = 32, + [115982] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3621), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3575), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(838), 1, + STATE(553), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [115856] = 30, + [116088] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3469), 1, - anon_sym_EQ, - ACTIONS(3471), 1, - anon_sym_TILDE, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - ACTIONS(3479), 1, - anon_sym_DASH_GT, - ACTIONS(3481), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, - anon_sym_PIPE, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - STATE(274), 1, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1726), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, + ACTIONS(165), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(211), 3, + anon_sym_STAR, + ACTIONS(163), 16, sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [115958] = 30, + anon_sym_SLASH, + sym_comma, + [116162] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3577), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(555), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(207), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116060] = 32, + [116268] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3527), 1, + sym__external_open_parenthesis, + ACTIONS(3529), 1, + sym__external_open_bracket, + ACTIONS(3531), 1, + sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, + sym__open_bracket2, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, + sym_subset_arguments, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3519), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3525), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(165), 9, anon_sym_EQ, - ACTIONS(3403), 1, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 18, + sym__external_close_bracket, anon_sym_QMARK, - ACTIONS(3405), 1, anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [116338] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3623), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3579), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(846), 1, + STATE(561), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3443), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [116444] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_COLON, + ACTIONS(3527), 1, + sym__external_open_parenthesis, + ACTIONS(3529), 1, + sym__external_open_bracket, + ACTIONS(3531), 1, + sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, + sym__open_bracket2, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, + sym_subset_arguments, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3519), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(165), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 18, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116166] = 30, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [116516] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3469), 1, - anon_sym_EQ, - ACTIONS(3471), 1, - anon_sym_TILDE, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - ACTIONS(3479), 1, - anon_sym_DASH_GT, - ACTIONS(3481), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, - anon_sym_PIPE, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - STATE(274), 1, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1726), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, + ACTIONS(165), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(215), 3, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 18, sym__external_close_bracket, anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116268] = 32, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [116586] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3625), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3581), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(507), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + STATE(1780), 1, + sym__close_parenthesis, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116374] = 32, + [116692] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3627), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3583), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(848), 1, + STATE(609), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116480] = 30, + [116798] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3471), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3479), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3481), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, + sym__external_open_parenthesis, + ACTIONS(3475), 1, + sym__external_open_bracket, + ACTIONS(3477), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3585), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(611), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(143), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116582] = 30, + [116904] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3471), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3479), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3481), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, + sym__external_open_parenthesis, + ACTIONS(3475), 1, + sym__external_open_bracket, + ACTIONS(3477), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3587), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(613), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(219), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116684] = 32, + [117010] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3629), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3589), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(709), 1, + STATE(619), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116790] = 30, + [117116] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3471), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3479), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3481), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, + sym__external_open_parenthesis, + ACTIONS(3475), 1, + sym__external_open_bracket, + ACTIONS(3477), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3591), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(368), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(227), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116892] = 32, + [117222] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3631), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3593), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(850), 1, + STATE(694), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [116998] = 30, + [117328] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3471), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3479), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3481), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - STATE(274), 1, + ACTIONS(3515), 1, + anon_sym_STAR, + ACTIONS(3517), 1, + anon_sym_SLASH, + ACTIONS(3523), 1, + anon_sym_COLON, + ACTIONS(3527), 1, + sym__external_open_parenthesis, + ACTIONS(3529), 1, + sym__external_open_bracket, + ACTIONS(3531), 1, + sym__external_open_bracket2, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1726), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(231), 3, + ACTIONS(167), 3, sym__external_close_bracket, anon_sym_QMARK, sym_comma, - ACTIONS(3477), 3, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [117100] = 30, + [117430] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3471), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3479), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3481), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, + sym__external_open_parenthesis, + ACTIONS(3475), 1, + sym__external_open_bracket, + ACTIONS(3477), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3595), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(710), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(235), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [117202] = 32, + [117536] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3633), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3597), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1676), 1, + STATE(712), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [117308] = 30, + [117642] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3471), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3479), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3481), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, - sym_subset_arguments, - STATE(1780), 1, - sym_subset2_arguments, - ACTIONS(3455), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3457), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3461), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(239), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3493), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [117410] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3599), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(718), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3433), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 15, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [117488] = 32, + [117748] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3635), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(946), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(171), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [117594] = 22, + [117850] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3523), 1, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_AMP, + ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3601), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1686), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3521), 4, + ACTIONS(3443), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 10, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_comma, - [117680] = 24, + [117956] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3513), 1, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3517), 1, + ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3603), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(769), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 3, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - ACTIONS(3521), 4, + ACTIONS(3443), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 9, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - sym_comma, - [117770] = 32, + [118062] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3637), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3605), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(716), 1, + STATE(771), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [117876] = 32, + [118168] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3639), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(727), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(241), 3, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [117982] = 30, + [118270] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3471), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3479), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3481), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, + sym__external_open_parenthesis, + ACTIONS(3475), 1, + sym__external_open_bracket, + ACTIONS(3477), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3607), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(773), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(223), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [118084] = 27, + [118376] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 1, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3511), 1, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3609), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(779), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3521), 4, + ACTIONS(3443), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 7, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [118180] = 30, + [118482] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(163), 3, - sym__external_close_bracket2, + ACTIONS(245), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3505), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [118282] = 30, + [118584] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3471), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3479), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3481), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, + sym__external_open_parenthesis, + ACTIONS(3475), 1, + sym__external_open_bracket, + ACTIONS(3477), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3611), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(331), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(207), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [118384] = 32, + [118690] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3641), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3613), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(963), 1, + STATE(834), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [118490] = 18, + [118796] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_AMP, + ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3615), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(840), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3527), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(165), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(163), 15, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [118568] = 30, + [118902] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3471), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3479), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3481), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, + sym__external_open_parenthesis, + ACTIONS(3475), 1, + sym__external_open_bracket, + ACTIONS(3477), 1, + sym__external_open_bracket2, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(203), 3, - sym__external_close_bracket, + ACTIONS(147), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3477), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [118670] = 26, + [119004] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3511), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(165), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(149), 2, anon_sym_EQ, anon_sym_DASH_GT, - ACTIONS(3519), 2, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3521), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 8, - sym__external_close_bracket2, + ACTIONS(147), 8, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, @@ -126970,1419 +127263,1279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, sym_comma, - [118764] = 30, + [119098] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3617), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(844), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(163), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3505), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [118866] = 29, + [119204] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, - anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3507), 1, - anon_sym_DASH_GT, - ACTIONS(3509), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, - anon_sym_PIPE, - ACTIONS(3513), 1, - anon_sym_AMP, - ACTIONS(3515), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, - anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3521), 4, + ACTIONS(149), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 6, - sym__external_close_bracket2, + ACTIONS(147), 10, + sym__external_close_parenthesis, anon_sym_QMARK, + anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_comma, - [118966] = 32, + [119290] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3643), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(784), 1, + STATE(852), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [119072] = 30, + [119396] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, - anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_TILDE, - ACTIONS(3501), 1, - anon_sym_PLUS, - ACTIONS(3503), 1, - anon_sym_DASH, - ACTIONS(3507), 1, - anon_sym_DASH_GT, - ACTIONS(3509), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, - anon_sym_PIPE, - ACTIONS(3513), 1, - anon_sym_AMP, - ACTIONS(3515), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, - anon_sym_AMP_AMP, - ACTIONS(3523), 1, - anon_sym_STAR, - ACTIONS(3525), 1, - anon_sym_SLASH, - ACTIONS(3531), 1, - anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3527), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(159), 3, - sym__external_close_bracket2, + ACTIONS(149), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(147), 18, + sym__external_close_parenthesis, anon_sym_QMARK, - sym_comma, - ACTIONS(3505), 3, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [119174] = 30, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [119466] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3621), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1707), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(155), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3505), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [119276] = 30, + [119572] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3471), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3479), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3481), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, + sym__external_open_parenthesis, + ACTIONS(3475), 1, + sym__external_open_bracket, + ACTIONS(3477), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3623), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(903), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(199), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [119378] = 32, + [119678] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3645), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3625), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(983), 1, + STATE(905), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [119484] = 26, + [119784] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3473), 1, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3483), 1, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, - sym_subset_arguments, - STATE(1780), 1, - sym_subset2_arguments, - ACTIONS(201), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3455), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3457), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3461), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3493), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(199), 8, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [119578] = 14, - ACTIONS(3), 1, - sym_comment, + ACTIONS(3461), 1, + anon_sym_STAR, ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3461), 2, + ACTIONS(3467), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 18, - sym__external_close_bracket, + ACTIONS(155), 3, + sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [119648] = 32, + [119886] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3647), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3627), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1003), 1, + STATE(907), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [119754] = 32, + [119992] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3649), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3629), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1770), 1, + STATE(913), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [119860] = 22, + [120098] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3489), 1, + anon_sym_EQ, + ACTIONS(3491), 1, + anon_sym_TILDE, + ACTIONS(3493), 1, + anon_sym_PLUS, + ACTIONS(3495), 1, + anon_sym_DASH, + ACTIONS(3499), 1, + anon_sym_DASH_GT, + ACTIONS(3501), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3503), 1, + anon_sym_PIPE, + ACTIONS(3505), 1, + anon_sym_AMP, + ACTIONS(3507), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3509), 1, + anon_sym_AMP_AMP, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3453), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - STATE(274), 1, + STATE(248), 1, + sym__open_parenthesis, + STATE(265), 1, sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1726), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1761), 1, + sym_call_arguments, + ACTIONS(3511), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(201), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3493), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(199), 10, + ACTIONS(175), 3, sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_comma, - [119946] = 32, + ACTIONS(3513), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [120200] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3651), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(842), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3411), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3427), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [120052] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, - sym_subset_arguments, - STATE(1780), 1, - sym_subset2_arguments, - ACTIONS(3455), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3461), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(201), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(199), 18, + ACTIONS(179), 3, sym__external_close_bracket, anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + sym_comma, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [120122] = 32, + [120302] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3653), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3631), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(516), 1, + STATE(1680), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [120228] = 15, + [120408] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 1, - anon_sym_COLON, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_AMP, + ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, + anon_sym_STAR, ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3633), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(958), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3461), 2, + ACTIONS(3467), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - ACTIONS(151), 18, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [120300] = 32, + [120514] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3655), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3635), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(869), 1, + STATE(960), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [120406] = 14, + [120620] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 1, - sym__external_open_parenthesis, - ACTIONS(3445), 1, - sym__external_open_bracket, - ACTIONS(3447), 1, - sym__external_open_bracket2, - STATE(260), 1, - sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, - sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, - sym_call_arguments, - ACTIONS(3433), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3439), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(147), 9, + ACTIONS(3435), 1, anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, anon_sym_DASH, + ACTIONS(3445), 1, anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(149), 18, - sym__external_close_parenthesis, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [120476] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3451), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3453), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - ACTIONS(3483), 1, - anon_sym_PIPE, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3637), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(962), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3493), 4, + ACTIONS(3443), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(163), 8, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [120570] = 14, + [120726] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_AMP, + ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, + anon_sym_STAR, ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3639), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(968), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3461), 2, + ACTIONS(3467), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 18, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [120640] = 22, + [120832] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3401), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(147), 4, + ACTIONS(153), 6, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3427), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(149), 10, - sym__external_close_parenthesis, + anon_sym_LT, + anon_sym_GT, + ACTIONS(151), 14, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, @@ -128391,474 +128544,388 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, sym_comma, - [120726] = 30, + [120914] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(245), 3, - sym__external_close_bracket2, + ACTIONS(159), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3505), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [120828] = 32, + [121016] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3657), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3641), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(533), 1, + STATE(975), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, - sym_call_arguments, - ACTIONS(3425), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3433), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3435), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3439), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3411), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3427), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [120934] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, - anon_sym_EQ, - ACTIONS(3471), 1, - anon_sym_TILDE, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - ACTIONS(3479), 1, - anon_sym_DASH_GT, - ACTIONS(3481), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, - anon_sym_PIPE, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3493), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 6, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - sym_comma, - [121034] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, - anon_sym_PLUS, - ACTIONS(3409), 1, - anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, - anon_sym_PIPE, - ACTIONS(3419), 1, - anon_sym_AMP, - ACTIONS(3421), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, - anon_sym_AMP_AMP, - ACTIONS(3429), 1, - anon_sym_STAR, - ACTIONS(3431), 1, - anon_sym_SLASH, - ACTIONS(3437), 1, - anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3443), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [121122] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3659), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(535), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(235), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(237), 18, + sym__external_close_bracket, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [121140] = 32, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + sym_comma, + [121192] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3661), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1672), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [121246] = 30, + ACTIONS(151), 6, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + sym_comma, + [121292] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3469), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3471), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3479), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3481), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, + anon_sym_SLASH, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, + sym__external_open_parenthesis, + ACTIONS(3475), 1, + sym__external_open_bracket, + ACTIONS(3477), 1, + sym__external_open_bracket2, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3643), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(977), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [121348] = 16, + [121398] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + STATE(266), 1, sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, + STATE(267), 1, + sym__open_bracket, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1732), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + STATE(1764), 1, + sym_call_arguments, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, ACTIONS(153), 8, @@ -128871,7 +128938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, ACTIONS(151), 16, - sym__external_close_bracket, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -128887,313 +128954,321 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_SLASH, sym_comma, - [121422] = 32, + [121472] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, - ACTIONS(3663), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(876), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(183), 3, + sym__external_close_bracket, + anon_sym_QMARK, + sym_comma, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [121528] = 20, + [121574] = 30, ACTIONS(3), 1, sym_comment, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, ACTIONS(3451), 1, - anon_sym_STAR, + anon_sym_AMP, ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 14, - sym__external_close_bracket, + ACTIONS(151), 3, + sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_comma, - [121610] = 32, + [121676] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - ACTIONS(3665), 1, - sym__external_close_parenthesis, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(887), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(233), 3, + sym__external_close_bracket2, + anon_sym_QMARK, + sym_comma, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [121716] = 30, + [121778] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3645), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(509), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(149), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3505), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [121818] = 14, + [121884] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, STATE(266), 1, - sym__open_bracket, - STATE(270), 1, sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(267), 1, + sym__open_bracket, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, sym_subset_arguments, - ACTIONS(3527), 2, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, + sym_call_arguments, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3533), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, ACTIONS(153), 9, @@ -129225,349 +129300,252 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [121888] = 26, + [121954] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, ACTIONS(3451), 1, - anon_sym_STAR, + anon_sym_AMP, ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - ACTIONS(3483), 1, - anon_sym_PIPE, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3647), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(988), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3455), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, ACTIONS(3457), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3461), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3491), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3493), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 8, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [121982] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3531), 1, - anon_sym_COLON, - ACTIONS(3537), 1, - sym__external_open_parenthesis, - ACTIONS(3539), 1, - sym__external_open_bracket, - ACTIONS(3541), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, - sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, - sym_subset_arguments, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3533), 2, + ACTIONS(3467), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - ACTIONS(151), 18, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [122054] = 26, + [122060] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3511), 1, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(147), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3521), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(149), 8, - sym__external_close_bracket2, + ACTIONS(163), 6, + sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, sym_comma, - [122148] = 14, + [122160] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, - sym__external_open_parenthesis, - ACTIONS(3539), 1, - sym__external_open_bracket, - ACTIONS(3541), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, - sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, - sym_subset_arguments, - ACTIONS(3527), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3533), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(153), 9, + ACTIONS(3435), 1, anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, anon_sym_DASH, + ACTIONS(3445), 1, anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(151), 18, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - sym_comma, - [122218] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3501), 1, - anon_sym_PLUS, - ACTIONS(3503), 1, - anon_sym_DASH, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3649), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(990), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(147), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3521), 4, + ACTIONS(3443), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(149), 10, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_comma, - [122304] = 16, + [122266] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3531), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, STATE(266), 1, - sym__open_bracket, - STATE(270), 1, sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(267), 1, + sym__open_bracket, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, sym_subset_arguments, - ACTIONS(3527), 2, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, + sym_call_arguments, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, ACTIONS(153), 8, @@ -129579,7 +129557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(151), 16, + ACTIONS(151), 18, sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -129595,303 +129573,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [122378] = 26, + [122338] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3417), 1, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(147), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3427), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(149), 8, + ACTIONS(163), 3, sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [122472] = 20, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [122440] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3523), 1, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_AMP, + ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3527), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(165), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 14, - sym__external_close_bracket2, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(163), 8, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, sym_comma, - [122554] = 32, + [122534] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3667), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3651), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1042), 1, + STATE(995), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [122660] = 22, + [122640] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, - anon_sym_PLUS, - ACTIONS(3503), 1, - anon_sym_DASH, - ACTIONS(3523), 1, - anon_sym_STAR, - ACTIONS(3525), 1, - anon_sym_SLASH, - ACTIONS(3531), 1, - anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, STATE(266), 1, - sym__open_bracket, - STATE(270), 1, sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, - sym_subset_arguments, - ACTIONS(3519), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3527), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3529), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3533), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(153), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3521), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 10, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_comma, - [122746] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3537), 1, - sym__external_open_parenthesis, - ACTIONS(3539), 1, - sym__external_open_bracket, - ACTIONS(3541), 1, - sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, + STATE(267), 1, sym__open_bracket, - STATE(270), 1, - sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, sym_subset_arguments, - ACTIONS(3527), 2, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, + sym_call_arguments, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3533), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(147), 9, + ACTIONS(153), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -129901,7 +129827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(149), 18, + ACTIONS(151), 18, sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -129920,745 +129846,831 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [122816] = 22, + [122710] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, ACTIONS(3451), 1, - anon_sym_STAR, + anon_sym_AMP, ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, + anon_sym_STAR, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3653), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(997), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(153), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3493), 4, + ACTIONS(3443), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 10, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_comma, - [122902] = 24, + [122816] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, - anon_sym_PLUS, - ACTIONS(3503), 1, - anon_sym_DASH, - ACTIONS(3513), 1, - anon_sym_AMP, - ACTIONS(3517), 1, - anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3527), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 3, + ACTIONS(165), 7, anon_sym_EQ, + anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, - ACTIONS(3521), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 9, - sym__external_close_bracket2, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(163), 15, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, sym_comma, - [122992] = 32, + [122894] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3669), 1, - sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(365), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(163), 3, + sym__external_close_parenthesis, + anon_sym_QMARK, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [123098] = 32, + [122996] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3671), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3655), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1001), 1, + STATE(1002), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [123204] = 27, + [123102] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3511), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(153), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(165), 2, anon_sym_EQ, anon_sym_DASH_GT, - ACTIONS(3519), 2, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3521), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 7, - sym__external_close_bracket2, + ACTIONS(163), 7, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, sym_comma, - [123300] = 30, + [123198] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3657), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1004), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, sym_subset2_arguments, - STATE(1769), 1, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3467), 2, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + ACTIONS(3471), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(3443), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [123304] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + anon_sym_PLUS, + ACTIONS(3403), 1, + anon_sym_DASH, + ACTIONS(3405), 1, + anon_sym_PIPE, + ACTIONS(3407), 1, + anon_sym_AMP, + ACTIONS(3409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3411), 1, + anon_sym_AMP_AMP, + ACTIONS(3417), 1, + anon_sym_STAR, + ACTIONS(3419), 1, + anon_sym_SLASH, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3429), 1, + sym__external_open_parenthesis, + ACTIONS(3431), 1, + sym__external_open_bracket, + ACTIONS(3433), 1, + sym__external_open_bracket2, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3659), 1, + anon_sym_QMARK, + STATE(266), 1, + sym__open_parenthesis, + STATE(267), 1, + sym__open_bracket, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, + sym_call_arguments, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(151), 3, + ACTIONS(3537), 2, sym__external_close_bracket2, - anon_sym_QMARK, sym_comma, - ACTIONS(3505), 3, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [123402] = 18, + [123408] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3451), 1, + anon_sym_AMP, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3527), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 7, + ACTIONS(165), 3, anon_sym_EQ, - anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 15, - sym__external_close_bracket2, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(163), 9, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, sym_comma, - [123480] = 26, + [123498] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3511), 1, - anon_sym_PIPE, - ACTIONS(3513), 1, - anon_sym_AMP, - ACTIONS(3515), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, - anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3521), 4, + ACTIONS(165), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 8, - sym__external_close_bracket2, + ACTIONS(163), 10, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_comma, - [123574] = 30, + [123584] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1010), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(151), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3505), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [123676] = 29, + [123690] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3663), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1012), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3521), 4, + ACTIONS(3443), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 6, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - sym_comma, - [123776] = 18, + [123796] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3439), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_DASH, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3453), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(153), 7, + ACTIONS(165), 6, anon_sym_EQ, - anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(151), 15, - sym__external_close_bracket, + ACTIONS(163), 14, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, @@ -130670,174 +130682,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, sym_comma, - [123854] = 24, + [123878] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(153), 3, + ACTIONS(165), 8, anon_sym_EQ, + anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, - ACTIONS(3493), 4, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + ACTIONS(163), 16, + sym__external_close_parenthesis, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(151), 9, - sym__external_close_bracket, + anon_sym_SLASH, + sym_comma, + [123952] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3473), 1, + sym__external_open_parenthesis, + ACTIONS(3475), 1, + sym__external_open_bracket, + ACTIONS(3477), 1, + sym__external_open_bracket2, + STATE(255), 1, + sym__open_parenthesis, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, + sym_call_arguments, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3465), 2, + anon_sym_STAR_STAR, + anon_sym_CARET, + ACTIONS(3471), 2, + anon_sym_DOLLAR, + anon_sym_AT, + ACTIONS(165), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 18, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [123944] = 32, + [124022] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3673), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3665), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1027), 1, + STATE(1018), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [124050] = 14, + [124128] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3527), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(201), 9, + ACTIONS(165), 8, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -130846,9 +130908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_STAR, - anon_sym_COLON, - ACTIONS(199), 18, - sym__external_close_bracket2, + ACTIONS(163), 18, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -130866,1070 +130927,1009 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_operator_token1, anon_sym_PIPE_GT, sym_comma, - [124120] = 22, + [124200] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3523), 1, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_AMP, + ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3667), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1020), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(201), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3521), 4, + ACTIONS(3443), 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(199), 10, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_comma, - [124206] = 26, + [124306] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, - anon_sym_PLUS, - ACTIONS(3503), 1, - anon_sym_DASH, - ACTIONS(3511), 1, - anon_sym_PIPE, - ACTIONS(3513), 1, - anon_sym_AMP, - ACTIONS(3515), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, - anon_sym_AMP_AMP, - ACTIONS(3523), 1, - anon_sym_STAR, - ACTIONS(3525), 1, - anon_sym_SLASH, - ACTIONS(3531), 1, - anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(201), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3519), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3527), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3521), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(199), 8, - sym__external_close_bracket2, + ACTIONS(165), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(163), 18, + sym__external_close_parenthesis, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_PLUS, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, sym_comma, - [124300] = 30, + [124376] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3669), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1026), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(199), 3, - sym__external_close_bracket2, - anon_sym_QMARK, - sym_comma, - ACTIONS(3505), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [124402] = 27, + [124482] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_STAR, - ACTIONS(3453), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym__external_open_parenthesis, - ACTIONS(3465), 1, - sym__external_open_bracket, - ACTIONS(3467), 1, - sym__external_open_bracket2, - ACTIONS(3471), 1, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3473), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3475), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3483), 1, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3485), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, - sym__open_parenthesis, - STATE(1775), 1, - sym_call_arguments, - STATE(1779), 1, - sym_subset_arguments, - STATE(1780), 1, - sym_subset2_arguments, - ACTIONS(153), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3455), 2, - anon_sym_STAR_STAR, - anon_sym_CARET, - ACTIONS(3457), 2, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - ACTIONS(3461), 2, - anon_sym_DOLLAR, - anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3493), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(151), 7, - sym__external_close_bracket, - anon_sym_QMARK, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [124498] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3451), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3453), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3459), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3463), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3465), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3469), 1, - anon_sym_EQ, - ACTIONS(3471), 1, - anon_sym_TILDE, - ACTIONS(3473), 1, - anon_sym_PLUS, - ACTIONS(3475), 1, - anon_sym_DASH, - ACTIONS(3479), 1, - anon_sym_DASH_GT, - ACTIONS(3481), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3483), 1, - anon_sym_PIPE, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3489), 1, - anon_sym_AMP_AMP, - STATE(274), 1, - sym__open_bracket2, - STATE(277), 1, - sym__open_bracket, - STATE(283), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3671), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(1775), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1028), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - STATE(1779), 1, + STATE(1737), 1, sym_subset_arguments, - STATE(1780), 1, + STATE(1738), 1, sym_subset2_arguments, - ACTIONS(3455), 2, + ACTIONS(3457), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3457), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(151), 3, - sym__external_close_bracket, - anon_sym_QMARK, - sym_comma, - ACTIONS(3477), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3493), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [124600] = 32, + [124588] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - ACTIONS(3675), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1032), 1, + STATE(1034), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [124706] = 30, + [124694] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3675), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1036), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(163), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [124808] = 32, + [124800] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, + ACTIONS(3533), 1, + anon_sym_QMARK, ACTIONS(3677), 1, sym__external_close_parenthesis, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(437), 1, + STATE(1042), 1, sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [124914] = 30, + [124906] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3533), 1, + anon_sym_QMARK, + ACTIONS(3679), 1, + sym__external_close_parenthesis, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1044), 1, + sym__close_parenthesis, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(149), 3, - sym__external_close_parenthesis, - anon_sym_QMARK, - sym_comma, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [125016] = 30, + [125012] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3499), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, - STATE(266), 1, - sym__open_bracket, - STATE(270), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(1724), 1, + STATE(256), 1, + sym__open_bracket, + STATE(257), 1, + sym__open_bracket2, + STATE(1735), 1, sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(1737), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(203), 3, - sym__external_close_bracket2, + ACTIONS(167), 3, + sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3505), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [125118] = 26, + [125114] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3437), 1, + anon_sym_TILDE, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3417), 1, + ACTIONS(3445), 1, + anon_sym_DASH_GT, + ACTIONS(3447), 1, + anon_sym_DASH_GT_GT, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(165), 2, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3427), 4, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(163), 8, + ACTIONS(171), 3, sym__external_close_parenthesis, anon_sym_QMARK, - anon_sym_TILDE, + sym_comma, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - sym_comma, - [125212] = 30, + ACTIONS(3459), 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [125216] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, - anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_TILDE, - ACTIONS(3501), 1, + ACTIONS(3401), 1, anon_sym_PLUS, - ACTIONS(3503), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3507), 1, - anon_sym_DASH_GT, - ACTIONS(3509), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3511), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3515), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3517), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3523), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3525), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3531), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3539), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3541), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(265), 1, - sym__open_bracket2, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, STATE(266), 1, - sym__open_bracket, - STATE(270), 1, sym__open_parenthesis, - STATE(1724), 1, - sym_call_arguments, - STATE(1768), 1, - sym_subset2_arguments, - STATE(1769), 1, + STATE(267), 1, + sym__open_bracket, + STATE(268), 1, + sym__open_bracket2, + STATE(1718), 1, sym_subset_arguments, - ACTIONS(3519), 2, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, + sym_call_arguments, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3527), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3529), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3533), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(207), 3, + ACTIONS(237), 3, sym__external_close_bracket2, anon_sym_QMARK, sym_comma, - ACTIONS(3505), 3, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3521), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [125314] = 31, + [125318] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, - anon_sym_TILDE, - ACTIONS(3407), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3413), 1, - anon_sym_DASH_GT, - ACTIONS(3415), 1, - anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3407), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3409), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3411), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3417), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3419), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3429), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3431), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3433), 1, sym__external_open_bracket2, - STATE(260), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_TILDE, + ACTIONS(3483), 1, + anon_sym_DASH_GT, + ACTIONS(3485), 1, + anon_sym_DASH_GT_GT, + STATE(266), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(267), 1, sym__open_bracket, - STATE(262), 1, + STATE(268), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(1718), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1732), 1, + sym_subset2_arguments, + STATE(1764), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3413), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3421), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3423), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3427), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3679), 2, - sym__external_close_parenthesis, + ACTIONS(155), 3, + sym__external_close_bracket2, + anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3487), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3415), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [125418] = 30, + [125420] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3435), 1, anon_sym_EQ, - ACTIONS(3405), 1, + ACTIONS(3437), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3439), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3441), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3447), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3451), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3461), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3469), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3473), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3475), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3477), 1, sym__external_open_bracket2, - STATE(260), 1, + STATE(255), 1, sym__open_parenthesis, - STATE(261), 1, + STATE(256), 1, sym__open_bracket, - STATE(262), 1, + STATE(257), 1, sym__open_bracket2, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, - sym_subset_arguments, - STATE(1784), 1, + STATE(1735), 1, sym_call_arguments, - ACTIONS(3425), 2, + STATE(1737), 1, + sym_subset_arguments, + STATE(1738), 1, + sym_subset2_arguments, + ACTIONS(3457), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3465), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3467), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3471), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(245), 3, + ACTIONS(175), 3, sym__external_close_parenthesis, anon_sym_QMARK, sym_comma, - ACTIONS(3411), 3, + ACTIONS(3443), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3459), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [125520] = 32, + [125522] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3489), 1, anon_sym_EQ, - ACTIONS(3403), 1, - anon_sym_QMARK, - ACTIONS(3405), 1, + ACTIONS(3491), 1, anon_sym_TILDE, - ACTIONS(3407), 1, + ACTIONS(3493), 1, anon_sym_PLUS, - ACTIONS(3409), 1, + ACTIONS(3495), 1, anon_sym_DASH, - ACTIONS(3413), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3415), 1, + ACTIONS(3501), 1, anon_sym_DASH_GT_GT, - ACTIONS(3417), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3419), 1, + ACTIONS(3505), 1, anon_sym_AMP, - ACTIONS(3421), 1, + ACTIONS(3507), 1, anon_sym_PIPE_PIPE, - ACTIONS(3423), 1, + ACTIONS(3509), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3515), 1, anon_sym_STAR, - ACTIONS(3431), 1, + ACTIONS(3517), 1, anon_sym_SLASH, - ACTIONS(3437), 1, + ACTIONS(3523), 1, anon_sym_COLON, - ACTIONS(3441), 1, + ACTIONS(3527), 1, sym__external_open_parenthesis, - ACTIONS(3445), 1, + ACTIONS(3529), 1, sym__external_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3531), 1, sym__external_open_bracket2, ACTIONS(3681), 1, - sym__external_close_parenthesis, - STATE(260), 1, + anon_sym_QMARK, + STATE(248), 1, sym__open_parenthesis, - STATE(261), 1, - sym__open_bracket, - STATE(262), 1, + STATE(265), 1, sym__open_bracket2, - STATE(720), 1, - sym__close_parenthesis, - STATE(1772), 1, - sym_subset2_arguments, - STATE(1778), 1, + STATE(283), 1, + sym__open_bracket, + STATE(1711), 1, sym_subset_arguments, - STATE(1784), 1, + STATE(1726), 1, + sym_subset2_arguments, + STATE(1761), 1, sym_call_arguments, - ACTIONS(3425), 2, + ACTIONS(3511), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3433), 2, + ACTIONS(3519), 2, anon_sym_STAR_STAR, anon_sym_CARET, - ACTIONS(3435), 2, + ACTIONS(3521), 2, aux_sym_binary_operator_token1, anon_sym_PIPE_GT, - ACTIONS(3439), 2, + ACTIONS(3525), 2, anon_sym_DOLLAR, anon_sym_AT, - ACTIONS(3411), 3, + ACTIONS(3537), 2, + sym__external_close_bracket, + sym_comma, + ACTIONS(3497), 3, anon_sym_LT_DASH, anon_sym_LT_LT_DASH, anon_sym_COLON_EQ, - ACTIONS(3427), 4, + ACTIONS(3513), 4, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -131937,7 +131937,7 @@ static const uint16_t ts_small_parse_table[] = { [125626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(647), 10, + ACTIONS(625), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -131948,7 +131948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(649), 27, + ACTIONS(623), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -131976,52 +131976,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [125671] = 3, + [125671] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(641), 10, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, + ACTIONS(3683), 1, anon_sym_COLON_COLON, - ACTIONS(639), 27, - sym__external_else, - sym__external_open_parenthesis, - sym__external_close_parenthesis, - sym__external_open_bracket, - sym__external_open_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, + ACTIONS(3685), 1, anon_sym_COLON_COLON_COLON, - sym_comma, - [125716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 10, + ACTIONS(609), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132031,13 +131993,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(649), 27, + ACTIONS(607), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -132058,12 +132019,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [125761] = 3, + [125720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(643), 10, + ACTIONS(3687), 1, + anon_sym_L, + ACTIONS(3689), 1, + anon_sym_i, + ACTIONS(617), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132073,13 +132037,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(645), 27, + ACTIONS(615), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -132100,12 +132063,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [125806] = 3, + [125769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(643), 10, + ACTIONS(625), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132116,11 +132078,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(645), 27, + ACTIONS(623), 27, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -132144,98 +132106,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [125851] = 3, + [125814] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(647), 10, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, + ACTIONS(3691), 1, anon_sym_COLON_COLON, - ACTIONS(649), 27, - sym__external_else, - sym__external_open_parenthesis, - sym__external_close_parenthesis, - sym__external_open_bracket, - sym__external_open_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, + ACTIONS(3693), 1, anon_sym_COLON_COLON_COLON, - sym_comma, - [125896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(343), 15, - sym__newline, - sym__semicolon, - sym__raw_string_literal, - sym__external_open_parenthesis, - sym__external_open_brace, - sym__external_close_brace, - anon_sym_BSLASH, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - sym__hex_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(341), 22, - anon_sym_function, - anon_sym_if, - anon_sym_for, - anon_sym_while, - anon_sym_repeat, - sym__number_literal, - sym_dots, - sym_dot_dot_i, - sym_identifier, - sym_return, - sym_next, - sym_break, - sym_true, - sym_false, - sym_null, - sym_inf, - sym_nan, - anon_sym_NA, - anon_sym_NA_integer_, - anon_sym_NA_real_, - anon_sym_NA_complex_, - anon_sym_NA_character_, - [125941] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3683), 1, - anon_sym_L, - ACTIONS(3685), 1, - anon_sym_i, - ACTIONS(615), 9, + ACTIONS(609), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132245,7 +132123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(617), 26, + ACTIONS(607), 26, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -132272,10 +132150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [125990] = 3, + [125863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(641), 10, + ACTIONS(643), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132286,12 +132164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(639), 27, + ACTIONS(645), 27, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -132314,10 +132192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [126035] = 3, + [125908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 10, + ACTIONS(647), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132328,7 +132206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(613), 27, + ACTIONS(649), 27, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -132356,7 +132234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [126080] = 3, + [125953] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(643), 10, @@ -132398,10 +132276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [126125] = 3, + [125998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(641), 10, + ACTIONS(647), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132412,7 +132290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(639), 27, + ACTIONS(649), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -132440,54 +132318,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [126170] = 5, + [126043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3687), 1, - anon_sym_COLON_COLON, - ACTIONS(3689), 1, - anon_sym_COLON_COLON_COLON, - ACTIONS(631), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(629), 26, - sym__external_else, + ACTIONS(343), 15, + sym__newline, + sym__semicolon, + sym__raw_string_literal, sym__external_open_parenthesis, - sym__external_open_bracket, - sym__external_close_bracket, - sym__external_open_bracket2, + sym__external_open_brace, + sym__external_close_brace, + anon_sym_BSLASH, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_BANG, anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - sym_comma, - [126219] = 3, + anon_sym_DASH, + sym__hex_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(341), 22, + anon_sym_function, + anon_sym_if, + anon_sym_for, + anon_sym_while, + anon_sym_repeat, + sym__number_literal, + sym_dots, + sym_dot_dot_i, + sym_identifier, + sym_return, + sym_next, + sym_break, + sym_true, + sym_false, + sym_null, + sym_inf, + sym_nan, + anon_sym_NA, + anon_sym_NA_integer_, + anon_sym_NA_real_, + anon_sym_NA_complex_, + anon_sym_NA_character_, + [126088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 10, + ACTIONS(635), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132498,7 +132374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(613), 27, + ACTIONS(637), 27, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -132526,14 +132402,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [126264] = 5, + [126133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_COLON_COLON, - ACTIONS(3693), 1, - anon_sym_COLON_COLON_COLON, - ACTIONS(631), 9, + ACTIONS(639), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132543,12 +132415,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(629), 26, + anon_sym_COLON_COLON, + ACTIONS(641), 27, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -132569,15 +132442,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [126313] = 5, + [126178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_L, - ACTIONS(3697), 1, - anon_sym_i, - ACTIONS(615), 9, + ACTIONS(635), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132587,7 +132457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(617), 26, + anon_sym_COLON_COLON, + ACTIONS(637), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -132613,55 +132484,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [126362] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3699), 1, - anon_sym_L, - ACTIONS(3701), 1, - anon_sym_i, - ACTIONS(615), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(617), 26, - sym__external_else, - sym__external_open_parenthesis, - sym__external_open_bracket, - sym__external_open_bracket2, - sym__external_close_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - sym_comma, - [126411] = 3, + [126223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 10, + ACTIONS(639), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132672,11 +132500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(607), 27, + ACTIONS(641), 27, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -132700,10 +132528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [126456] = 3, + [126268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 10, + ACTIONS(603), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132714,7 +132542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(613), 27, + ACTIONS(605), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -132742,10 +132570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [126501] = 3, + [126313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(605), 10, + ACTIONS(603), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132756,12 +132584,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(603), 27, + ACTIONS(605), 27, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -132784,10 +132612,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [126546] = 3, + [126358] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 10, + ACTIONS(3695), 1, + anon_sym_COLON_COLON, + ACTIONS(3697), 1, + anon_sym_COLON_COLON_COLON, + ACTIONS(609), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132797,13 +132629,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(613), 27, + ACTIONS(607), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -132824,12 +132655,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [126591] = 3, + [126407] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 10, + ACTIONS(3699), 1, + anon_sym_L, + ACTIONS(3701), 1, + anon_sym_i, + ACTIONS(617), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132839,13 +132673,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(607), 27, + ACTIONS(615), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -132866,12 +132699,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [126636] = 3, + [126456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 10, + ACTIONS(625), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132882,7 +132714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(613), 27, + ACTIONS(623), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -132910,10 +132742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [126681] = 3, + [126501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(605), 10, + ACTIONS(625), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132924,7 +132756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(603), 27, + ACTIONS(623), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -132952,10 +132784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [126726] = 3, + [126546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 10, + ACTIONS(635), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -132966,7 +132798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(613), 27, + ACTIONS(637), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -132994,14 +132826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [126771] = 5, + [126591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3703), 1, - anon_sym_COLON_COLON, - ACTIONS(3705), 1, - anon_sym_COLON_COLON_COLON, - ACTIONS(631), 9, + ACTIONS(639), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133011,12 +132839,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(629), 26, + anon_sym_COLON_COLON, + ACTIONS(641), 27, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -133037,11 +132866,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [126820] = 3, + [126636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 10, + ACTIONS(647), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133052,7 +132882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(607), 27, + ACTIONS(649), 27, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -133080,10 +132910,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [126865] = 3, + [126681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(605), 10, + ACTIONS(3703), 1, + anon_sym_L, + ACTIONS(3705), 1, + anon_sym_i, + ACTIONS(617), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133093,12 +132927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(603), 27, + ACTIONS(615), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -133120,55 +132953,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [126910] = 5, + [126730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 1, - sym__newline, - STATE(1604), 1, - aux_sym_function_definition_repeat1, - ACTIONS(655), 12, - sym__raw_string_literal, - sym__external_open_parenthesis, - sym__external_open_brace, - anon_sym_BSLASH, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - sym__hex_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(657), 22, - anon_sym_function, - anon_sym_if, - anon_sym_for, - anon_sym_while, - anon_sym_repeat, - sym__number_literal, - sym_dots, - sym_dot_dot_i, - sym_identifier, - sym_return, - sym_next, - sym_break, - sym_true, - sym_false, - sym_null, - sym_inf, - sym_nan, - anon_sym_NA, - anon_sym_NA_integer_, - anon_sym_NA_real_, - anon_sym_NA_complex_, - anon_sym_NA_character_, - [126958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 10, + ACTIONS(643), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133179,11 +132968,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(613), 26, + ACTIONS(645), 27, + sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -133206,10 +132996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [127002] = 3, + [126775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(641), 10, + ACTIONS(603), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133220,11 +133010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(639), 26, + ACTIONS(605), 27, + sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -133247,10 +133038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [127046] = 3, + [126820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(641), 10, + ACTIONS(625), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133261,10 +133052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(639), 26, + ACTIONS(623), 27, + sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -133288,16 +133080,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [127090] = 6, + [126865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 1, + ACTIONS(625), 10, anon_sym_EQ, - ACTIONS(3712), 1, - anon_sym_COLON_COLON, - ACTIONS(3714), 1, - anon_sym_COLON_COLON_COLON, - ACTIONS(631), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -133306,7 +133093,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(629), 25, + anon_sym_COLON_COLON, + ACTIONS(623), 27, + sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -133331,15 +133120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [127140] = 5, + [126910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(3718), 1, - anon_sym_COLON_COLON_COLON, - ACTIONS(631), 9, + ACTIONS(625), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133349,11 +133135,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(629), 25, + anon_sym_COLON_COLON, + ACTIONS(623), 26, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -133374,11 +133161,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [127188] = 3, + [126954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 10, + ACTIONS(635), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133389,7 +133177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(607), 26, + ACTIONS(637), 26, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -133416,14 +133204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [127232] = 5, + [126998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3720), 1, - anon_sym_L, - ACTIONS(3722), 1, - anon_sym_i, - ACTIONS(615), 9, + ACTIONS(639), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133433,10 +133217,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(617), 25, + anon_sym_COLON_COLON, + ACTIONS(641), 26, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -133458,11 +133243,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [127280] = 3, + [127042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(605), 10, + ACTIONS(3707), 1, + anon_sym_COLON_COLON, + ACTIONS(3709), 1, + anon_sym_COLON_COLON_COLON, + ACTIONS(609), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133472,8 +133262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(603), 26, + ACTIONS(607), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -133498,12 +133287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [127324] = 3, + [127090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 10, + ACTIONS(3711), 1, + anon_sym_COLON_COLON, + ACTIONS(3713), 1, + anon_sym_COLON_COLON_COLON, + ACTIONS(609), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133513,8 +133305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(613), 26, + ACTIONS(607), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -133539,53 +133330,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [127368] = 3, + [127138] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 10, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(613), 26, + ACTIONS(3715), 1, + sym__newline, + STATE(1609), 1, + aux_sym_function_definition_repeat1, + ACTIONS(659), 12, + sym__raw_string_literal, sym__external_open_parenthesis, - sym__external_open_bracket, - sym__external_close_bracket, - sym__external_open_bracket2, + sym__external_open_brace, + anon_sym_BSLASH, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_BANG, anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_COLON_COLON_COLON, - sym_comma, - [127412] = 3, + anon_sym_DASH, + sym__hex_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(661), 22, + anon_sym_function, + anon_sym_if, + anon_sym_for, + anon_sym_while, + anon_sym_repeat, + sym__number_literal, + sym_dots, + sym_dot_dot_i, + sym_identifier, + sym_return, + sym_next, + sym_break, + sym_true, + sym_false, + sym_null, + sym_inf, + sym_nan, + anon_sym_NA, + anon_sym_NA_integer_, + anon_sym_NA_real_, + anon_sym_NA_complex_, + anon_sym_NA_character_, + [127186] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(643), 10, + ACTIONS(3718), 1, + anon_sym_L, + ACTIONS(3720), 1, + anon_sym_i, + ACTIONS(617), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133595,8 +133391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(645), 26, + ACTIONS(615), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -133621,12 +133416,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [127456] = 3, + [127234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(647), 10, + ACTIONS(625), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133637,11 +133431,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(649), 26, + ACTIONS(623), 26, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -133664,10 +133458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [127500] = 3, + [127278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(605), 10, + ACTIONS(643), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133678,10 +133472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(603), 26, + ACTIONS(645), 26, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -133705,10 +133499,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [127544] = 3, + [127322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 10, + ACTIONS(643), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133719,7 +133513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(607), 26, + ACTIONS(645), 26, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -133746,7 +133540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [127588] = 3, + [127366] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(647), 10, @@ -133787,16 +133581,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [127632] = 6, + [127410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 1, + ACTIONS(647), 10, anon_sym_EQ, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(3718), 1, - anon_sym_COLON_COLON_COLON, - ACTIONS(631), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -133805,7 +133594,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(629), 25, + anon_sym_COLON_COLON, + ACTIONS(649), 26, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -133830,11 +133620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [127682] = 3, + [127454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 10, + ACTIONS(603), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133845,11 +133636,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(613), 26, + ACTIONS(605), 26, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -133872,16 +133663,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [127726] = 6, + [127498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 1, + ACTIONS(643), 10, anon_sym_EQ, - ACTIONS(3724), 1, - anon_sym_COLON_COLON, - ACTIONS(3726), 1, - anon_sym_COLON_COLON_COLON, - ACTIONS(631), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -133890,7 +133676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(629), 25, + anon_sym_COLON_COLON, + ACTIONS(645), 26, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -133915,11 +133702,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [127776] = 3, + [127542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(643), 10, + ACTIONS(647), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133930,11 +133718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(645), 26, + ACTIONS(649), 26, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -133957,14 +133745,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [127820] = 5, + [127586] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_COLON_COLON, - ACTIONS(3726), 1, + ACTIONS(3724), 1, anon_sym_COLON_COLON_COLON, - ACTIONS(631), 9, + ACTIONS(609), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -133974,11 +133762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(629), 25, + ACTIONS(607), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134000,14 +133788,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [127868] = 5, + [127634] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(3726), 1, anon_sym_L, - ACTIONS(3730), 1, + ACTIONS(3728), 1, anon_sym_i, - ACTIONS(615), 9, + ACTIONS(617), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134017,11 +133805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(617), 25, + ACTIONS(615), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134043,10 +133831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [127916] = 3, + [127682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(641), 10, + ACTIONS(603), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134057,10 +133845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(639), 26, + ACTIONS(605), 26, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -134084,14 +133872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [127960] = 5, + [127726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3712), 1, - anon_sym_COLON_COLON, - ACTIONS(3714), 1, - anon_sym_COLON_COLON_COLON, - ACTIONS(631), 9, + ACTIONS(635), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134101,10 +133885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(629), 25, + anon_sym_COLON_COLON, + ACTIONS(637), 26, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -134126,11 +133911,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [128008] = 3, + [127770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(643), 10, + ACTIONS(639), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134141,7 +133927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(645), 26, + ACTIONS(641), 26, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -134168,14 +133954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [128052] = 5, + [127814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3732), 1, - anon_sym_L, - ACTIONS(3734), 1, - anon_sym_i, - ACTIONS(615), 9, + ACTIONS(625), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134185,7 +133967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(617), 25, + anon_sym_COLON_COLON, + ACTIONS(623), 26, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -134210,11 +133993,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [128100] = 3, + [127858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 10, + ACTIONS(625), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134225,7 +134009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(613), 26, + ACTIONS(623), 26, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -134252,10 +134036,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [128144] = 3, + [127902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 10, + ACTIONS(3730), 1, + anon_sym_L, + ACTIONS(3732), 1, + anon_sym_i, + ACTIONS(617), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134265,12 +134053,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(613), 26, + ACTIONS(615), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134291,13 +134078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [128188] = 3, + [127950] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 10, + ACTIONS(3707), 1, + anon_sym_COLON_COLON, + ACTIONS(3709), 1, + anon_sym_COLON_COLON_COLON, + ACTIONS(3734), 1, anon_sym_EQ, + ACTIONS(609), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -134306,12 +134097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(607), 26, + ACTIONS(607), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134332,13 +134122,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [128232] = 3, + [128000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(647), 10, + ACTIONS(3711), 1, + anon_sym_COLON_COLON, + ACTIONS(3713), 1, + anon_sym_COLON_COLON_COLON, + ACTIONS(3734), 1, anon_sym_EQ, + ACTIONS(609), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -134347,8 +134141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - anon_sym_COLON_COLON, - ACTIONS(649), 26, + ACTIONS(607), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -134373,12 +134166,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, - anon_sym_COLON_COLON_COLON, sym_comma, - [128276] = 3, + [128050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(605), 10, + ACTIONS(625), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134389,10 +134181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_COLON, anon_sym_COLON_COLON, - ACTIONS(603), 26, + ACTIONS(623), 26, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -134416,11 +134208,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_COLON_COLON_COLON, sym_comma, - [128320] = 3, + [128094] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(685), 9, + ACTIONS(3722), 1, + anon_sym_COLON_COLON, + ACTIONS(3724), 1, + anon_sym_COLON_COLON_COLON, + ACTIONS(3734), 1, anon_sym_EQ, + ACTIONS(609), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -134429,12 +134226,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(683), 26, - sym__external_else, + ACTIONS(607), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134456,50 +134252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [128363] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3738), 13, - sym__newline, - sym__raw_string_literal, - sym__external_open_parenthesis, - sym__external_open_brace, - anon_sym_BSLASH, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - sym__hex_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(3736), 22, - anon_sym_function, - anon_sym_if, - anon_sym_for, - anon_sym_while, - anon_sym_repeat, - sym__number_literal, - sym_dots, - sym_dot_dot_i, - sym_identifier, - sym_return, - sym_next, - sym_break, - sym_true, - sym_false, - sym_null, - sym_inf, - sym_nan, - anon_sym_NA, - anon_sym_NA_integer_, - anon_sym_NA_real_, - anon_sym_NA_complex_, - anon_sym_NA_character_, - [128406] = 3, + [128144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 9, + ACTIONS(639), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134509,12 +134265,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(775), 26, - sym__external_else, + anon_sym_COLON_COLON, + ACTIONS(641), 26, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134535,11 +134291,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [128449] = 3, + [128188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(720), 9, + ACTIONS(625), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134549,8 +134306,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(718), 26, - sym__external_else, + anon_sym_COLON_COLON, + ACTIONS(623), 26, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -134575,11 +134332,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [128492] = 3, + [128232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 9, + ACTIONS(603), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134589,8 +134347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(722), 26, - sym__external_else, + anon_sym_COLON_COLON, + ACTIONS(605), 26, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -134615,11 +134373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [128535] = 3, + [128276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(728), 9, + ACTIONS(635), 10, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134629,12 +134388,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(726), 26, - sym__external_else, + anon_sym_COLON_COLON, + ACTIONS(637), 26, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134655,11 +134414,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_DOLLAR, anon_sym_AT, + anon_sym_COLON_COLON_COLON, sym_comma, - [128578] = 3, + [128320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(736), 9, + ACTIONS(770), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134669,12 +134429,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(734), 26, + ACTIONS(772), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134696,10 +134456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [128621] = 3, + [128363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(740), 9, + ACTIONS(722), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134709,12 +134469,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(738), 26, + ACTIONS(724), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134736,10 +134496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [128664] = 3, + [128406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(748), 9, + ACTIONS(736), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134749,12 +134509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(746), 26, + ACTIONS(734), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134776,10 +134536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [128707] = 3, + [128449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(720), 9, + ACTIONS(783), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134789,12 +134549,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(718), 26, + ACTIONS(781), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134816,10 +134576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [128750] = 3, + [128492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(750), 9, + ACTIONS(687), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134829,12 +134589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(752), 26, + ACTIONS(689), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -134856,10 +134616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [128793] = 3, + [128535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(768), 9, + ACTIONS(691), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134869,11 +134629,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(766), 26, + ACTIONS(693), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -134896,10 +134656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [128836] = 3, + [128578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(730), 9, + ACTIONS(736), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134909,7 +134669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(732), 26, + ACTIONS(734), 26, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -134936,10 +134696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [128879] = 3, + [128621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 9, + ACTIONS(687), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134949,7 +134709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(754), 26, + ACTIONS(689), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -134976,10 +134736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [128922] = 3, + [128664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(764), 9, + ACTIONS(738), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -134989,12 +134749,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(762), 26, + ACTIONS(740), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -135016,10 +134776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [128965] = 3, + [128707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(768), 9, + ACTIONS(742), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135029,12 +134789,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(766), 26, + ACTIONS(744), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -135056,10 +134816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129008] = 3, + [128750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(764), 9, + ACTIONS(746), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135069,11 +134829,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(762), 26, + ACTIONS(748), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -135096,10 +134856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129051] = 3, + [128793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 9, + ACTIONS(738), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135109,11 +134869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(710), 26, + ACTIONS(740), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -135136,10 +134896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129094] = 3, + [128836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(777), 9, + ACTIONS(742), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135149,11 +134909,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(779), 26, + ACTIONS(744), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -135176,10 +134936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129137] = 3, + [128879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 9, + ACTIONS(746), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135189,7 +134949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(754), 26, + ACTIONS(748), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -135216,10 +134976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129180] = 3, + [128922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(750), 9, + ACTIONS(705), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135229,11 +134989,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(752), 26, + ACTIONS(703), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -135256,10 +135016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129223] = 3, + [128965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(687), 9, + ACTIONS(750), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135269,11 +135029,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(689), 26, + ACTIONS(752), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -135296,10 +135056,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129266] = 3, + [129008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(748), 9, + ACTIONS(716), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135309,7 +135069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(746), 26, + ACTIONS(714), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -135336,10 +135096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129309] = 3, + [129051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(685), 9, + ACTIONS(754), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135349,7 +135109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(683), 26, + ACTIONS(756), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -135376,10 +135136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129352] = 3, + [129094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(740), 9, + ACTIONS(705), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135389,11 +135149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(738), 26, + ACTIONS(703), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -135416,10 +135176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129395] = 3, + [129137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(783), 9, + ACTIONS(758), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135429,11 +135189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(781), 26, + ACTIONS(760), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -135456,10 +135216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129438] = 3, + [129180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(736), 9, + ACTIONS(762), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135469,7 +135229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(734), 26, + ACTIONS(764), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -135496,10 +135256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129481] = 3, + [129223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(728), 9, + ACTIONS(709), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135509,7 +135269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(726), 26, + ACTIONS(707), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -135536,10 +135296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129524] = 3, + [129266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(768), 9, + ACTIONS(718), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135549,11 +135309,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(766), 26, + ACTIONS(720), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -135576,10 +135336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129567] = 3, + [129309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 9, + ACTIONS(738), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135589,12 +135349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(722), 26, + ACTIONS(740), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -135616,10 +135376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129610] = 3, + [129352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(764), 9, + ACTIONS(750), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135629,7 +135389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(762), 26, + ACTIONS(752), 26, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -135656,10 +135416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129653] = 3, + [129395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(720), 9, + ACTIONS(716), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135669,11 +135429,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(718), 26, + ACTIONS(714), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -135696,10 +135456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129696] = 3, + [129438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 9, + ACTIONS(754), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135709,7 +135469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(754), 26, + ACTIONS(756), 26, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -135736,10 +135496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129739] = 3, + [129481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 9, + ACTIONS(722), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135749,11 +135509,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(694), 26, + ACTIONS(724), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -135776,10 +135536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129782] = 3, + [129524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(700), 9, + ACTIONS(742), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135789,12 +135549,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(698), 26, + ACTIONS(744), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -135816,10 +135576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129825] = 3, + [129567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(748), 9, + ACTIONS(746), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135829,7 +135589,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(746), 26, + ACTIONS(748), 26, + sym__external_else, + sym__external_open_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [129610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(760), 26, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -135856,10 +135656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129868] = 3, + [129653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(730), 9, + ACTIONS(705), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135869,7 +135669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(732), 26, + ACTIONS(703), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -135896,10 +135696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129911] = 3, + [129696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(742), 9, + ACTIONS(750), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135909,12 +135709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(744), 26, + ACTIONS(752), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -135936,10 +135736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129954] = 3, + [129739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(685), 9, + ACTIONS(762), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135949,7 +135749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(683), 26, + ACTIONS(764), 26, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -135976,10 +135776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [129997] = 3, + [129782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(740), 9, + ACTIONS(709), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -135989,7 +135789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(738), 26, + ACTIONS(707), 26, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -136016,10 +135816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130040] = 3, + [129825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(730), 9, + ACTIONS(716), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136029,12 +135829,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(732), 26, + ACTIONS(714), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136056,10 +135856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130083] = 3, + [129868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(742), 9, + ACTIONS(754), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136069,12 +135869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(744), 26, + ACTIONS(756), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136096,10 +135896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130126] = 3, + [129911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(736), 9, + ACTIONS(730), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136109,7 +135909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(734), 26, + ACTIONS(732), 26, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -136136,10 +135936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130169] = 3, + [129954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(728), 9, + ACTIONS(691), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136149,12 +135949,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(726), 26, + ACTIONS(693), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136176,10 +135976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130212] = 3, + [129997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 9, + ACTIONS(779), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136189,11 +135989,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(775), 26, + ACTIONS(777), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -136216,10 +136016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130255] = 3, + [130040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(777), 9, + ACTIONS(718), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136229,11 +136029,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(779), 26, + ACTIONS(720), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -136256,10 +136056,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130298] = 3, + [130083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(687), 9, + ACTIONS(762), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136269,12 +136069,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(689), 26, + ACTIONS(764), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136296,10 +136096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130341] = 3, + [130126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(783), 9, + ACTIONS(726), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136309,12 +136109,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(781), 26, + ACTIONS(728), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136336,10 +136136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130384] = 3, + [130169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(742), 9, + ACTIONS(709), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136349,7 +136149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(744), 26, + ACTIONS(707), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -136376,10 +136176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130427] = 3, + [130212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 9, + ACTIONS(695), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136389,7 +136189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(775), 26, + ACTIONS(697), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -136416,10 +136216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130470] = 3, + [130255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(760), 9, + ACTIONS(699), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136429,7 +136229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(758), 26, + ACTIONS(701), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -136456,10 +136256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130513] = 3, + [130298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(777), 9, + ACTIONS(766), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136469,12 +136269,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(779), 26, + ACTIONS(768), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136496,10 +136296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130556] = 3, + [130341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(687), 9, + ACTIONS(683), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136509,7 +136309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(689), 26, + ACTIONS(685), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -136536,10 +136336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130599] = 3, + [130384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(750), 9, + ACTIONS(726), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136549,11 +136349,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(752), 26, + ACTIONS(728), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -136576,10 +136376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130642] = 3, + [130427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(783), 9, + ACTIONS(770), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136589,12 +136389,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(781), 26, + ACTIONS(772), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136616,10 +136416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130685] = 3, + [130470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(704), 9, + ACTIONS(695), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136629,7 +136429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(702), 26, + ACTIONS(697), 26, sym__external_else, sym__external_open_parenthesis, sym__external_close_parenthesis, @@ -136656,10 +136456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130728] = 3, + [130513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 9, + ACTIONS(699), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136669,11 +136469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(694), 26, + ACTIONS(701), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -136696,10 +136496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130771] = 3, + [130556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(700), 9, + ACTIONS(683), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136709,11 +136509,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(698), 26, + ACTIONS(685), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -136736,10 +136536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130814] = 3, + [130599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(704), 9, + ACTIONS(783), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136749,11 +136549,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(702), 26, + ACTIONS(781), 26, sym__external_else, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -136776,10 +136576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130857] = 3, + [130642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(708), 9, + ACTIONS(718), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136789,12 +136589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(706), 26, + ACTIONS(720), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136816,10 +136616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130900] = 3, + [130685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 9, + ACTIONS(736), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136829,12 +136629,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(710), 26, + ACTIONS(734), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136856,10 +136656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130943] = 3, + [130728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(716), 9, + ACTIONS(722), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136869,12 +136669,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(714), 26, + ACTIONS(724), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -136896,10 +136696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [130986] = 3, + [130771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3742), 13, + ACTIONS(3738), 13, sym__newline, sym__raw_string_literal, sym__external_open_parenthesis, @@ -136913,7 +136713,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hex_literal, anon_sym_SQUOTE, anon_sym_DQUOTE, - ACTIONS(3740), 22, + ACTIONS(3736), 22, anon_sym_function, anon_sym_if, anon_sym_for, @@ -136936,50 +136736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NA_real_, anon_sym_NA_complex_, anon_sym_NA_character_, - [131029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(708), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_COLON, - ACTIONS(706), 26, - sym__external_else, - sym__external_open_parenthesis, - sym__external_close_parenthesis, - sym__external_open_bracket, - sym__external_open_bracket2, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_PLUS, - anon_sym_LT_DASH, - anon_sym_LT_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_DASH_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_CARET, - aux_sym_binary_operator_token1, - anon_sym_PIPE_GT, - anon_sym_DOLLAR, - anon_sym_AT, - sym_comma, - [131072] = 3, + [130814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(716), 9, + ACTIONS(730), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -136989,11 +136749,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(714), 26, + ACTIONS(732), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -137016,10 +136776,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131115] = 3, + [130857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(716), 9, + ACTIONS(3742), 13, + sym__newline, + sym__raw_string_literal, + sym__external_open_parenthesis, + sym__external_open_brace, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + sym__hex_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(3740), 22, + anon_sym_function, + anon_sym_if, + anon_sym_for, + anon_sym_while, + anon_sym_repeat, + sym__number_literal, + sym_dots, + sym_dot_dot_i, + sym_identifier, + sym_return, + sym_next, + sym_break, + sym_true, + sym_false, + sym_null, + sym_inf, + sym_nan, + anon_sym_NA, + anon_sym_NA_integer_, + anon_sym_NA_real_, + anon_sym_NA_complex_, + anon_sym_NA_character_, + [130900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(779), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137029,12 +136829,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(714), 26, + ACTIONS(777), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137056,10 +136856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131158] = 3, + [130943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 9, + ACTIONS(766), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137069,12 +136869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(710), 26, + ACTIONS(768), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137096,10 +136896,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131201] = 3, + [130986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(760), 9, + ACTIONS(3746), 13, + sym__newline, + sym__raw_string_literal, + sym__external_open_parenthesis, + sym__external_open_brace, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + sym__hex_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(3744), 22, + anon_sym_function, + anon_sym_if, + anon_sym_for, + anon_sym_while, + anon_sym_repeat, + sym__number_literal, + sym_dots, + sym_dot_dot_i, + sym_identifier, + sym_return, + sym_next, + sym_break, + sym_true, + sym_false, + sym_null, + sym_inf, + sym_nan, + anon_sym_NA, + anon_sym_NA_integer_, + anon_sym_NA_real_, + anon_sym_NA_complex_, + anon_sym_NA_character_, + [131029] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(730), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137109,12 +136949,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(758), 26, + ACTIONS(732), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137136,10 +136976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131244] = 3, + [131072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 9, + ACTIONS(779), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137149,12 +136989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(722), 26, + ACTIONS(777), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137176,10 +137016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131287] = 3, + [131115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(708), 9, + ACTIONS(766), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137189,7 +137029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(706), 26, + ACTIONS(768), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, @@ -137216,50 +137056,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131330] = 3, + [131158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 13, - sym__newline, - sym__raw_string_literal, + ACTIONS(770), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(772), 26, + sym__external_else, sym__external_open_parenthesis, - sym__external_open_brace, - anon_sym_BSLASH, + sym__external_open_bracket, + sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_BANG, anon_sym_PLUS, - anon_sym_DASH, - sym__hex_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - ACTIONS(3744), 22, - anon_sym_function, - anon_sym_if, - anon_sym_for, - anon_sym_while, - anon_sym_repeat, - sym__number_literal, - sym_dots, - sym_dot_dot_i, - sym_identifier, - sym_return, - sym_next, - sym_break, - sym_true, - sym_false, - sym_null, - sym_inf, - sym_nan, - anon_sym_NA, - anon_sym_NA_integer_, - anon_sym_NA_real_, - anon_sym_NA_complex_, - anon_sym_NA_character_, - [131373] = 3, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [131201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(704), 9, + ACTIONS(726), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137269,12 +137109,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(702), 26, + ACTIONS(728), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137296,10 +137136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131416] = 3, + [131244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(700), 9, + ACTIONS(783), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137309,12 +137149,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(698), 26, + ACTIONS(781), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137336,10 +137176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131459] = 3, + [131287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 9, + ACTIONS(687), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137349,12 +137189,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(694), 26, + ACTIONS(689), 26, sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137376,10 +137216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131502] = 3, + [131330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(760), 9, + ACTIONS(691), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137389,11 +137229,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(758), 26, + ACTIONS(693), 26, sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -137416,10 +137256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131545] = 3, + [131373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(685), 9, + ACTIONS(695), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137429,7 +137269,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(683), 25, + ACTIONS(697), 26, + sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -137455,10 +137296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131587] = 3, + [131416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(728), 9, + ACTIONS(699), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137468,11 +137309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(726), 25, + ACTIONS(701), 26, + sym__external_else, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137494,10 +137336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131629] = 3, + [131459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(750), 9, + ACTIONS(683), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137507,10 +137349,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(752), 25, + ACTIONS(685), 26, + sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -137533,10 +137376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131671] = 3, + [131502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(730), 9, + ACTIONS(758), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137546,11 +137389,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(732), 25, + ACTIONS(760), 26, + sym__external_else, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137572,10 +137416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131713] = 3, + [131545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 9, + ACTIONS(770), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137585,10 +137429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(754), 25, + ACTIONS(772), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -137611,12 +137455,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131755] = 4, + [131587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 1, + ACTIONS(779), 9, anon_sym_EQ, - ACTIONS(631), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -137625,11 +137468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(629), 25, + ACTIONS(777), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137651,10 +137494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131799] = 3, + [131629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(748), 9, + ACTIONS(738), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137664,11 +137507,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(746), 25, + ACTIONS(740), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137690,10 +137533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131841] = 3, + [131671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(783), 9, + ACTIONS(687), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137703,7 +137546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(781), 25, + ACTIONS(689), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -137729,10 +137572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131883] = 3, + [131713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(740), 9, + ACTIONS(691), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137742,10 +137585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(738), 25, + ACTIONS(693), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -137768,12 +137611,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131925] = 4, + [131755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 1, + ACTIONS(736), 9, anon_sym_EQ, - ACTIONS(631), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -137782,11 +137624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(629), 25, + ACTIONS(734), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137808,10 +137650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [131969] = 3, + [131797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(736), 9, + ACTIONS(726), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137821,10 +137663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(734), 25, + ACTIONS(728), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -137847,10 +137689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132011] = 3, + [131839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(728), 9, + ACTIONS(718), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137860,10 +137702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(726), 25, + ACTIONS(720), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -137886,10 +137728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132053] = 3, + [131881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 9, + ACTIONS(779), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137899,11 +137741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(722), 25, + ACTIONS(777), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -137925,10 +137767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132095] = 3, + [131923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(720), 9, + ACTIONS(722), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137938,10 +137780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(718), 25, + ACTIONS(724), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -137964,10 +137806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132137] = 3, + [131965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(708), 9, + ACTIONS(783), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -137977,11 +137819,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(706), 25, + ACTIONS(781), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138003,10 +137845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132179] = 3, + [132007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(687), 9, + ACTIONS(691), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138016,10 +137858,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(689), 25, + ACTIONS(693), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -138042,10 +137884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132221] = 3, + [132049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(768), 9, + ACTIONS(738), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138055,10 +137897,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(766), 25, + ACTIONS(740), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -138081,10 +137923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132263] = 3, + [132091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(764), 9, + ACTIONS(742), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138094,10 +137936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(762), 25, + ACTIONS(744), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -138120,10 +137962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132305] = 3, + [132133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 9, + ACTIONS(746), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138133,11 +137975,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(710), 25, + ACTIONS(748), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138159,10 +138001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132347] = 3, + [132175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(777), 9, + ACTIONS(705), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138172,10 +138014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(779), 25, + ACTIONS(703), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -138198,10 +138040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132389] = 3, + [132217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 9, + ACTIONS(766), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138211,10 +138053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(754), 25, + ACTIONS(768), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -138237,10 +138079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132431] = 3, + [132259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(764), 9, + ACTIONS(750), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138250,7 +138092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(762), 25, + ACTIONS(752), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -138276,10 +138118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132473] = 3, + [132301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 9, + ACTIONS(716), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138289,10 +138131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(775), 25, + ACTIONS(714), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -138315,10 +138157,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132515] = 3, + [132343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(748), 9, + ACTIONS(754), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138328,10 +138170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(746), 25, + ACTIONS(756), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -138354,10 +138196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132557] = 3, + [132385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(768), 9, + ACTIONS(770), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138367,7 +138209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(766), 25, + ACTIONS(772), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -138393,10 +138235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132599] = 3, + [132427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(685), 9, + ACTIONS(783), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138406,7 +138248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(683), 25, + ACTIONS(781), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -138432,10 +138274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132641] = 3, + [132469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(740), 9, + ACTIONS(766), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138445,11 +138287,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(738), 25, + ACTIONS(768), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138471,10 +138313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132683] = 3, + [132511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(742), 9, + ACTIONS(695), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138484,10 +138326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(744), 25, + ACTIONS(697), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -138510,10 +138352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132725] = 3, + [132553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(768), 9, + ACTIONS(695), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138523,11 +138365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(766), 25, + ACTIONS(697), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138549,10 +138391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132767] = 3, + [132595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(736), 9, + ACTIONS(730), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138562,7 +138404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(734), 25, + ACTIONS(732), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -138588,10 +138430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132809] = 3, + [132637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(777), 9, + ACTIONS(770), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138601,7 +138443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(779), 25, + ACTIONS(772), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -138627,10 +138469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132851] = 3, + [132679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(728), 9, + ACTIONS(779), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138640,7 +138482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(726), 25, + ACTIONS(777), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -138666,10 +138508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132893] = 3, + [132721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(730), 9, + ACTIONS(766), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138679,10 +138521,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(732), 25, + ACTIONS(768), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -138705,10 +138547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132935] = 3, + [132763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(742), 9, + ACTIONS(699), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138718,7 +138560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(744), 25, + ACTIONS(701), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -138744,10 +138586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [132977] = 3, + [132805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 9, + ACTIONS(699), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138757,7 +138599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(722), 25, + ACTIONS(701), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -138783,10 +138625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133019] = 3, + [132847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(764), 9, + ACTIONS(758), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138796,7 +138638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(762), 25, + ACTIONS(760), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -138822,10 +138664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133061] = 3, + [132889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 9, + ACTIONS(726), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138835,7 +138677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(754), 25, + ACTIONS(728), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -138861,10 +138703,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133103] = 3, + [132931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(750), 9, + ACTIONS(758), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138874,7 +138716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(752), 25, + ACTIONS(760), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -138900,10 +138742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133145] = 3, + [132973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(720), 9, + ACTIONS(683), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138913,11 +138755,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(718), 25, + ACTIONS(685), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138939,10 +138781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133187] = 3, + [133015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(730), 9, + ACTIONS(762), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -138952,11 +138794,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(732), 25, + ACTIONS(764), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -138978,12 +138820,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133229] = 4, + [133057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 1, + ACTIONS(683), 9, anon_sym_EQ, - ACTIONS(631), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -138992,10 +138833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(629), 25, + ACTIONS(685), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -139018,10 +138859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133273] = 3, + [133099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(687), 9, + ACTIONS(722), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139031,11 +138872,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(689), 25, + ACTIONS(724), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139057,10 +138898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133315] = 3, + [133141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(748), 9, + ACTIONS(750), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139070,7 +138911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(746), 25, + ACTIONS(752), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -139096,10 +138937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133357] = 3, + [133183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(685), 9, + ACTIONS(709), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139109,11 +138950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(683), 25, + ACTIONS(707), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139135,10 +138976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133399] = 3, + [133225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(740), 9, + ACTIONS(726), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139148,11 +138989,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(738), 25, + ACTIONS(728), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139174,10 +139015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133441] = 3, + [133267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 9, + ACTIONS(687), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139187,7 +139028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(775), 25, + ACTIONS(689), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -139213,11 +139054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133483] = 3, + [133309] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(736), 9, + ACTIONS(3734), 1, anon_sym_EQ, + ACTIONS(609), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -139226,11 +139068,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(734), 25, + ACTIONS(607), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139252,10 +139094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133525] = 3, + [133353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(750), 9, + ACTIONS(683), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139265,7 +139107,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(752), 25, + ACTIONS(685), 25, + sym__external_open_parenthesis, + sym__external_close_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [133395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(762), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(764), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -139291,10 +139172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133567] = 3, + [133437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(760), 9, + ACTIONS(736), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139304,10 +139185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(758), 25, + ACTIONS(734), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -139330,10 +139211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133609] = 3, + [133479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 9, + ACTIONS(709), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139343,7 +139224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(775), 25, + ACTIONS(707), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -139369,10 +139250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133651] = 3, + [133521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 9, + ACTIONS(754), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139382,7 +139263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(722), 25, + ACTIONS(756), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -139408,10 +139289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133693] = 3, + [133563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(720), 9, + ACTIONS(736), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139421,11 +139302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(718), 25, + ACTIONS(734), 25, sym__external_open_parenthesis, sym__external_open_bracket, + sym__external_close_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139447,10 +139328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133735] = 3, + [133605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 9, + ACTIONS(742), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139460,7 +139341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(694), 25, + ACTIONS(744), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -139486,10 +139367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133777] = 3, + [133647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(783), 9, + ACTIONS(718), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139499,7 +139380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(781), 25, + ACTIONS(720), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -139525,10 +139406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133819] = 3, + [133689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(777), 9, + ACTIONS(730), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139538,7 +139419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(779), 25, + ACTIONS(732), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -139564,10 +139445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133861] = 3, + [133731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(716), 9, + ACTIONS(722), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139577,11 +139458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(714), 25, + ACTIONS(724), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139603,7 +139484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133903] = 3, + [133773] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(716), 9, @@ -139642,10 +139523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133945] = 3, + [133815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(687), 9, + ACTIONS(730), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139655,11 +139536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(689), 25, + ACTIONS(732), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139681,10 +139562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [133987] = 3, + [133857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(700), 9, + ACTIONS(783), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139694,7 +139575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(698), 25, + ACTIONS(781), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -139720,10 +139601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134029] = 3, + [133899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(704), 9, + ACTIONS(746), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139733,7 +139614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(702), 25, + ACTIONS(748), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -139759,10 +139640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134071] = 3, + [133941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(742), 9, + ACTIONS(718), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139772,7 +139653,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(744), 25, + ACTIONS(720), 25, + sym__external_open_parenthesis, + sym__external_open_bracket, + sym__external_close_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [133983] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(687), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(689), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, @@ -139798,10 +139718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134113] = 3, + [134025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 9, + ACTIONS(691), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139811,7 +139731,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(694), 25, + ACTIONS(693), 25, + sym__external_open_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + sym__external_close_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [134067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(738), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(740), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -139837,10 +139796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134155] = 3, + [134109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(700), 9, + ACTIONS(742), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139850,7 +139809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(698), 25, + ACTIONS(744), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -139876,10 +139835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134197] = 3, + [134151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(760), 9, + ACTIONS(746), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139889,7 +139848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(758), 25, + ACTIONS(748), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -139915,10 +139874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134239] = 3, + [134193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 9, + ACTIONS(695), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139928,11 +139887,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(710), 25, + ACTIONS(697), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -139954,10 +139913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134281] = 3, + [134235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(708), 9, + ACTIONS(705), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -139967,10 +139926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(706), 25, + ACTIONS(703), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -139993,10 +139952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134323] = 3, + [134277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(783), 9, + ACTIONS(750), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140006,10 +139965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(781), 25, + ACTIONS(752), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, anon_sym_QMARK, anon_sym_TILDE, @@ -140032,10 +139991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134365] = 3, + [134319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(760), 9, + ACTIONS(716), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140045,11 +140004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(758), 25, + ACTIONS(714), 25, sym__external_open_parenthesis, + sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, - sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -140071,10 +140030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134407] = 3, + [134361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(704), 9, + ACTIONS(754), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140084,7 +140043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(702), 25, + ACTIONS(756), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -140110,10 +140069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134449] = 3, + [134403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(704), 9, + ACTIONS(705), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140123,11 +140082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(702), 25, + ACTIONS(703), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -140149,11 +140108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134491] = 3, + [134445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(700), 9, + ACTIONS(3734), 1, anon_sym_EQ, + ACTIONS(609), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -140162,7 +140122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(698), 25, + ACTIONS(607), 25, sym__external_open_parenthesis, sym__external_open_bracket, sym__external_close_bracket, @@ -140188,10 +140148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134533] = 3, + [134489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 9, + ACTIONS(699), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140201,11 +140161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(694), 25, + ACTIONS(701), 25, sym__external_open_parenthesis, sym__external_open_bracket, - sym__external_close_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -140227,10 +140187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134575] = 3, + [134531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(716), 9, + ACTIONS(758), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140240,7 +140200,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(714), 25, + ACTIONS(760), 25, + sym__external_open_parenthesis, + sym__external_close_parenthesis, + sym__external_open_bracket, + sym__external_open_bracket2, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PLUS, + anon_sym_LT_DASH, + anon_sym_LT_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_DASH_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_CARET, + aux_sym_binary_operator_token1, + anon_sym_PIPE_GT, + anon_sym_DOLLAR, + anon_sym_AT, + sym_comma, + [134573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(762), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_COLON, + ACTIONS(764), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -140266,10 +140265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134617] = 3, + [134615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 9, + ACTIONS(709), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_DASH_GT, @@ -140279,7 +140278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(710), 25, + ACTIONS(707), 25, sym__external_open_parenthesis, sym__external_close_parenthesis, sym__external_open_bracket, @@ -140305,11 +140304,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_AT, sym_comma, - [134659] = 3, + [134657] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(708), 9, + ACTIONS(3734), 1, anon_sym_EQ, + ACTIONS(609), 8, anon_sym_DASH, anon_sym_DASH_GT, anon_sym_PIPE, @@ -140318,11 +140318,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_STAR, anon_sym_COLON, - ACTIONS(706), 25, + ACTIONS(607), 25, sym__external_open_parenthesis, - sym__external_close_parenthesis, sym__external_open_bracket, sym__external_open_bracket2, + sym__external_close_bracket2, anon_sym_QMARK, anon_sym_TILDE, anon_sym_PLUS, @@ -140349,15 +140349,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3750), 1, sym__external_close_parenthesis, - STATE(1705), 1, + STATE(1694), 1, sym__close_parenthesis, - STATE(1947), 1, + STATE(1877), 1, sym_parameter, - STATE(2011), 1, + STATE(2029), 1, sym__parameter_name, - STATE(2039), 1, + STATE(2036), 1, sym__parameter_without_default, - STATE(2043), 1, + STATE(2044), 1, sym__parameter_with_default, ACTIONS(3748), 3, sym_dots, @@ -140366,14 +140366,14 @@ static const uint16_t ts_small_parse_table[] = { [134728] = 6, ACTIONS(3), 1, sym_comment, - STATE(2011), 1, + STATE(2029), 1, sym__parameter_name, - STATE(2039), 1, + STATE(2034), 1, + sym_parameter, + STATE(2036), 1, sym__parameter_without_default, - STATE(2043), 1, - sym__parameter_with_default, STATE(2044), 1, - sym_parameter, + sym__parameter_with_default, ACTIONS(3748), 3, sym_dots, sym_dot_dot_i, @@ -140385,24 +140385,24 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, ACTIONS(3754), 1, sym__external_open_parenthesis, - STATE(951), 1, + STATE(868), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(1788), 1, aux_sym_function_definition_repeat1, [134768] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, ACTIONS(3754), 1, sym__external_open_parenthesis, - STATE(792), 1, + ACTIONS(3756), 1, + sym__newline, + STATE(888), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, [134787] = 6, ACTIONS(3), 1, @@ -140411,11 +140411,11 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(3756), 1, sym__newline, - STATE(824), 1, + STATE(489), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(1791), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, [134806] = 6, ACTIONS(3), 1, @@ -140424,24 +140424,24 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(3758), 1, sym__newline, - STATE(755), 1, + STATE(515), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(1788), 1, + STATE(1791), 1, aux_sym_function_definition_repeat1, [134825] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, ACTIONS(3754), 1, sym__external_open_parenthesis, - STATE(790), 1, + ACTIONS(3756), 1, + sym__newline, + STATE(536), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, [134844] = 6, ACTIONS(3), 1, @@ -140450,204 +140450,204 @@ static const uint16_t ts_small_parse_table[] = { sym__external_open_parenthesis, ACTIONS(3760), 1, sym__newline, - STATE(915), 1, + STATE(483), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(1787), 1, + STATE(1789), 1, aux_sym_function_definition_repeat1, [134863] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3754), 1, sym__external_open_parenthesis, - ACTIONS(3762), 1, + ACTIONS(3756), 1, sym__newline, - STATE(642), 1, + STATE(456), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(1803), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, [134882] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3754), 1, sym__external_open_parenthesis, - ACTIONS(3764), 1, + ACTIONS(3762), 1, sym__newline, - STATE(584), 1, + STATE(793), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(1802), 1, + STATE(1799), 1, aux_sym_function_definition_repeat1, [134901] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3754), 1, sym__external_open_parenthesis, - ACTIONS(3766), 1, + ACTIONS(3764), 1, sym__newline, - STATE(916), 1, + STATE(924), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(1804), 1, + STATE(1796), 1, aux_sym_function_definition_repeat1, [134920] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3754), 1, sym__external_open_parenthesis, - ACTIONS(3768), 1, + ACTIONS(3756), 1, sym__newline, - STATE(724), 1, + STATE(943), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(1800), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, [134939] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, ACTIONS(3754), 1, sym__external_open_parenthesis, - STATE(632), 1, + ACTIONS(3766), 1, + sym__newline, + STATE(572), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(1800), 1, aux_sym_function_definition_repeat1, [134958] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3754), 1, sym__external_open_parenthesis, - ACTIONS(3770), 1, + ACTIONS(3768), 1, sym__newline, - STATE(595), 1, + STATE(635), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(1797), 1, + STATE(1801), 1, aux_sym_function_definition_repeat1, [134977] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, ACTIONS(3754), 1, sym__external_open_parenthesis, - STATE(715), 1, + ACTIONS(3756), 1, + sym__newline, + STATE(816), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, [134996] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, ACTIONS(3754), 1, sym__external_open_parenthesis, - STATE(580), 1, + ACTIONS(3756), 1, + sym__newline, + STATE(593), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, [135015] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3754), 1, sym__external_open_parenthesis, - ACTIONS(3772), 1, + ACTIONS(3756), 1, sym__newline, - STATE(499), 1, + STATE(666), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(1799), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, [135034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, ACTIONS(3754), 1, sym__external_open_parenthesis, - STATE(1007), 1, + ACTIONS(3770), 1, + sym__newline, + STATE(734), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(1805), 1, aux_sym_function_definition_repeat1, [135053] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, ACTIONS(3754), 1, sym__external_open_parenthesis, - STATE(929), 1, + ACTIONS(3772), 1, + sym__newline, + STATE(987), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(1793), 1, aux_sym_function_definition_repeat1, [135072] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, ACTIONS(3754), 1, sym__external_open_parenthesis, - STATE(870), 1, + ACTIONS(3774), 1, + sym__newline, + STATE(676), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(1806), 1, aux_sym_function_definition_repeat1, [135091] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, ACTIONS(3754), 1, sym__external_open_parenthesis, - STATE(475), 1, + ACTIONS(3756), 1, + sym__newline, + STATE(754), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, [135110] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3754), 1, sym__external_open_parenthesis, - ACTIONS(3774), 1, + ACTIONS(3756), 1, sym__newline, - STATE(455), 1, + STATE(708), 1, sym_parameters, STATE(1785), 1, sym__open_parenthesis, - STATE(1805), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, [135129] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(415), 1, sym_comma, ACTIONS(3776), 1, sym__external_close_parenthesis, - STATE(1639), 1, + STATE(1663), 1, sym__close_parenthesis, - STATE(1894), 1, + STATE(1881), 1, aux_sym_call_arguments_repeat1, [135145] = 5, ACTIONS(3), 1, @@ -140655,2380 +140655,2380 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(461), 1, sym_comma, ACTIONS(3778), 1, - sym__external_close_parenthesis, - STATE(1730), 1, - sym__close_parenthesis, - STATE(2010), 1, + sym__external_close_bracket2, + STATE(1777), 1, + sym__close_bracket2, + STATE(2005), 1, aux_sym_call_arguments_repeat1, [135161] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(529), 1, sym_comma, ACTIONS(3780), 1, sym__external_close_bracket, - STATE(1642), 1, + STATE(1659), 1, sym__close_bracket, - STATE(2020), 1, + STATE(2017), 1, aux_sym_call_arguments_repeat1, - [135177] = 4, + [135177] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(529), 1, + sym_comma, ACTIONS(3782), 1, + sym__external_close_bracket, + STATE(1774), 1, + sym__close_bracket, + STATE(1928), 1, + aux_sym_call_arguments_repeat1, + [135193] = 4, + ACTIONS(3784), 1, anon_sym_SQUOTE, - ACTIONS(3786), 1, + ACTIONS(3788), 1, sym_comment, - STATE(1813), 1, + STATE(1821), 1, aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, + ACTIONS(3786), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [135191] = 4, - ACTIONS(3786), 1, - sym_comment, + [135207] = 4, ACTIONS(3788), 1, - anon_sym_DQUOTE, - STATE(1814), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [135205] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, - sym_comma, - ACTIONS(3792), 1, - sym__external_close_bracket, - STATE(1641), 1, - sym__close_bracket, - STATE(1857), 1, - aux_sym_call_arguments_repeat1, - [135221] = 4, - ACTIONS(3786), 1, - sym_comment, - ACTIONS(3794), 1, + ACTIONS(3790), 1, anon_sym_SQUOTE, - STATE(1983), 1, + STATE(1816), 1, aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, + ACTIONS(3786), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, + [135221] = 4, + ACTIONS(3788), 1, + sym_comment, + ACTIONS(3792), 1, + anon_sym_DQUOTE, + STATE(1817), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3794), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, [135235] = 4, - ACTIONS(3786), 1, + ACTIONS(3788), 1, sym_comment, ACTIONS(3796), 1, anon_sym_DQUOTE, - STATE(1985), 1, + STATE(1827), 1, aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, + ACTIONS(3794), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, [135249] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, ACTIONS(3798), 1, - sym__external_open_parenthesis, - STATE(2018), 1, - aux_sym_function_definition_repeat1, - STATE(2023), 1, - sym__open_parenthesis, - [135265] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3752), 1, sym__newline, ACTIONS(3800), 1, sym__external_open_parenthesis, - STATE(2018), 1, + STATE(1858), 1, aux_sym_function_definition_repeat1, - STATE(2026), 1, + STATE(2003), 1, sym__open_parenthesis, - [135281] = 5, - ACTIONS(3), 1, + [135265] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, ACTIONS(3802), 1, - sym__external_open_parenthesis, - STATE(1054), 1, - sym__open_parenthesis, - STATE(2018), 1, - aux_sym_function_definition_repeat1, - [135297] = 5, - ACTIONS(3), 1, + anon_sym_SQUOTE, + STATE(1880), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3786), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [135279] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(415), 1, - sym_comma, ACTIONS(3804), 1, - sym__external_close_bracket2, - STATE(327), 1, - sym__close_bracket2, - STATE(1854), 1, - aux_sym_call_arguments_repeat1, - [135313] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3806), 1, - sym_comma, - ACTIONS(3808), 1, - sym__external_close_parenthesis, - STATE(1697), 1, - sym__close_parenthesis, - STATE(2006), 1, - aux_sym_parameters_repeat1, - [135329] = 5, + anon_sym_DQUOTE, + STATE(1885), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3794), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [135293] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(3810), 1, - sym__external_close_parenthesis, - STATE(337), 1, - sym__close_parenthesis, - STATE(1822), 1, + ACTIONS(3806), 1, + sym__external_close_bracket, + STATE(1676), 1, + sym__close_bracket, + STATE(2017), 1, aux_sym_call_arguments_repeat1, - [135345] = 5, + [135309] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(461), 1, sym_comma, - ACTIONS(3812), 1, - sym__external_close_parenthesis, - STATE(338), 1, - sym__close_parenthesis, - STATE(2010), 1, + ACTIONS(3808), 1, + sym__external_close_bracket2, + STATE(382), 1, + sym__close_bracket2, + STATE(1907), 1, aux_sym_call_arguments_repeat1, - [135361] = 5, + [135325] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(461), 1, sym_comma, - ACTIONS(3814), 1, - sym__external_close_parenthesis, - STATE(345), 1, - sym__close_parenthesis, - STATE(2010), 1, + ACTIONS(3810), 1, + sym__external_close_bracket2, + STATE(1729), 1, + sym__close_bracket2, + STATE(2005), 1, aux_sym_call_arguments_repeat1, - [135377] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3816), 1, - sym__newline, - ACTIONS(3818), 1, - sym__external_open_parenthesis, - STATE(1816), 1, - aux_sym_function_definition_repeat1, - STATE(2012), 1, - sym__open_parenthesis, - [135393] = 4, - ACTIONS(3786), 1, - sym_comment, - ACTIONS(3820), 1, - anon_sym_SQUOTE, - STATE(1827), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [135407] = 4, - ACTIONS(3786), 1, - sym_comment, - ACTIONS(3822), 1, - anon_sym_DQUOTE, - STATE(1828), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [135421] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3752), 1, - sym__newline, - ACTIONS(3824), 1, - sym__external_open_parenthesis, - STATE(2002), 1, - sym__open_parenthesis, - STATE(2018), 1, - aux_sym_function_definition_repeat1, - [135437] = 4, - ACTIONS(3786), 1, + [135341] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3826), 1, + ACTIONS(3812), 1, anon_sym_SQUOTE, - STATE(1983), 1, + STATE(1880), 1, aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, + ACTIONS(3786), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [135451] = 4, - ACTIONS(3786), 1, - sym_comment, - ACTIONS(3828), 1, - anon_sym_DQUOTE, - STATE(1985), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [135465] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3830), 1, - sym__newline, - ACTIONS(3832), 1, - sym__external_open_parenthesis, - STATE(1826), 1, - aux_sym_function_definition_repeat1, - STATE(2015), 1, - sym__open_parenthesis, - [135481] = 5, + [135355] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(415), 1, sym_comma, - ACTIONS(3834), 1, + ACTIONS(3814), 1, sym__external_close_parenthesis, - STATE(1703), 1, + STATE(1644), 1, sym__close_parenthesis, - STATE(1833), 1, + STATE(1826), 1, aux_sym_call_arguments_repeat1, - [135497] = 5, + [135371] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(415), 1, sym_comma, - ACTIONS(3836), 1, + ACTIONS(3816), 1, sym__external_close_parenthesis, - STATE(1678), 1, + STATE(1645), 1, sym__close_parenthesis, - STATE(2010), 1, + STATE(2004), 1, aux_sym_call_arguments_repeat1, - [135513] = 5, + [135387] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(3838), 1, + ACTIONS(3818), 1, sym__external_close_bracket, - STATE(1756), 1, + STATE(364), 1, sym__close_bracket, - STATE(1911), 1, + STATE(2017), 1, aux_sym_call_arguments_repeat1, - [135529] = 5, + [135403] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(461), 1, sym_comma, - ACTIONS(3840), 1, + ACTIONS(3820), 1, + sym__external_close_bracket2, + STATE(1669), 1, + sym__close_bracket2, + STATE(2005), 1, + aux_sym_call_arguments_repeat1, + [135419] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(415), 1, + sym_comma, + ACTIONS(3822), 1, sym__external_close_parenthesis, - STATE(1667), 1, + STATE(1665), 1, sym__close_parenthesis, - STATE(2010), 1, + STATE(2004), 1, aux_sym_call_arguments_repeat1, - [135545] = 5, + [135435] = 4, + ACTIONS(3788), 1, + sym_comment, + ACTIONS(3824), 1, + anon_sym_DQUOTE, + STATE(1885), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3794), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [135449] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(461), 1, sym_comma, - ACTIONS(3842), 1, - sym__external_close_bracket, - STATE(1754), 1, - sym__close_bracket, - STATE(2020), 1, + ACTIONS(3826), 1, + sym__external_close_bracket2, + STATE(335), 1, + sym__close_bracket2, + STATE(1829), 1, aux_sym_call_arguments_repeat1, - [135561] = 5, + [135465] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, + ACTIONS(461), 1, sym_comma, - ACTIONS(3844), 1, + ACTIONS(3828), 1, sym__external_close_bracket2, - STATE(389), 1, + STATE(333), 1, sym__close_bracket2, - STATE(2003), 1, + STATE(2005), 1, aux_sym_call_arguments_repeat1, - [135577] = 5, + [135481] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, + ACTIONS(461), 1, sym_comma, - ACTIONS(3846), 1, + ACTIONS(3830), 1, sym__external_close_bracket2, - STATE(1753), 1, + STATE(1776), 1, sym__close_bracket2, - STATE(1917), 1, + STATE(1931), 1, aux_sym_call_arguments_repeat1, - [135593] = 5, + [135497] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(461), 1, sym_comma, - ACTIONS(3848), 1, - sym__external_close_bracket, - STATE(390), 1, - sym__close_bracket, - STATE(2020), 1, + ACTIONS(3832), 1, + sym__external_close_bracket2, + STATE(355), 1, + sym__close_bracket2, + STATE(2005), 1, aux_sym_call_arguments_repeat1, - [135609] = 4, - ACTIONS(3786), 1, + [135513] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3850), 1, + ACTIONS(3834), 1, anon_sym_SQUOTE, - STATE(1840), 1, + STATE(1835), 1, aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, + ACTIONS(3786), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [135623] = 4, - ACTIONS(3786), 1, + [135527] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3852), 1, + ACTIONS(3836), 1, anon_sym_DQUOTE, - STATE(1841), 1, + STATE(1836), 1, aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, + ACTIONS(3794), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [135637] = 4, - ACTIONS(3786), 1, + [135541] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3854), 1, + ACTIONS(415), 1, + sym_comma, + ACTIONS(3838), 1, + sym__external_close_parenthesis, + STATE(379), 1, + sym__close_parenthesis, + STATE(2004), 1, + aux_sym_call_arguments_repeat1, + [135557] = 4, + ACTIONS(3788), 1, + sym_comment, + ACTIONS(3840), 1, anon_sym_SQUOTE, - STATE(1983), 1, + STATE(1880), 1, aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, + ACTIONS(3786), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [135651] = 4, - ACTIONS(3786), 1, - sym_comment, - ACTIONS(3856), 1, - anon_sym_DQUOTE, - STATE(1985), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [135665] = 4, - ACTIONS(3786), 1, + [135571] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3858), 1, + ACTIONS(3842), 1, anon_sym_DQUOTE, - STATE(1943), 1, + STATE(1885), 1, aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, + ACTIONS(3794), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [135679] = 4, - ACTIONS(3786), 1, - sym_comment, - ACTIONS(3860), 1, - anon_sym_SQUOTE, - STATE(1921), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [135693] = 5, + [135585] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, - ACTIONS(3862), 1, - sym__external_open_parenthesis, - STATE(2005), 1, - sym__open_parenthesis, - STATE(2018), 1, - aux_sym_function_definition_repeat1, - [135709] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(415), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(3864), 1, - sym__external_close_bracket2, - STATE(1752), 1, - sym__close_bracket2, - STATE(2003), 1, + ACTIONS(3844), 1, + sym__external_close_bracket, + STATE(1754), 1, + sym__close_bracket, + STATE(2017), 1, aux_sym_call_arguments_repeat1, - [135725] = 5, + [135601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(3866), 1, - sym__external_close_parenthesis, - STATE(1714), 1, - sym__close_parenthesis, - STATE(2010), 1, + ACTIONS(3846), 1, + sym__external_close_bracket, + STATE(1775), 1, + sym__close_bracket, + STATE(2017), 1, aux_sym_call_arguments_repeat1, - [135741] = 5, + [135617] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(415), 1, sym_comma, - ACTIONS(3868), 1, + ACTIONS(3848), 1, sym__external_close_parenthesis, - STATE(372), 1, + STATE(1723), 1, sym__close_parenthesis, - STATE(1851), 1, + STATE(1847), 1, aux_sym_call_arguments_repeat1, - [135757] = 5, + [135633] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(415), 1, sym_comma, - ACTIONS(3870), 1, + ACTIONS(3850), 1, sym__external_close_parenthesis, - STATE(355), 1, + STATE(1724), 1, sym__close_parenthesis, - STATE(2010), 1, + STATE(2004), 1, aux_sym_call_arguments_repeat1, - [135773] = 5, + [135649] = 4, + ACTIONS(3788), 1, + sym_comment, + ACTIONS(3852), 1, + anon_sym_SQUOTE, + STATE(1958), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3786), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [135663] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(415), 1, sym_comma, - ACTIONS(3872), 1, + ACTIONS(3854), 1, sym__external_close_parenthesis, - STATE(391), 1, + STATE(342), 1, sym__close_parenthesis, - STATE(2010), 1, + STATE(1845), 1, aux_sym_call_arguments_repeat1, - [135789] = 5, + [135679] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(415), 1, sym_comma, - ACTIONS(3874), 1, - sym__external_close_bracket2, - STATE(1643), 1, - sym__close_bracket2, - STATE(2003), 1, - aux_sym_call_arguments_repeat1, - [135805] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(461), 1, - sym_comma, - ACTIONS(3876), 1, + ACTIONS(3856), 1, sym__external_close_parenthesis, - STATE(364), 1, + STATE(343), 1, sym__close_parenthesis, - STATE(2010), 1, + STATE(2004), 1, aux_sym_call_arguments_repeat1, - [135821] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3878), 1, - sym__newline, - ACTIONS(3880), 1, - sym__external_open_parenthesis, - STATE(1844), 1, - aux_sym_function_definition_repeat1, - STATE(2007), 1, - sym__open_parenthesis, - [135837] = 5, - ACTIONS(3), 1, + [135695] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(415), 1, - sym_comma, - ACTIONS(3882), 1, - sym__external_close_bracket2, - STATE(1670), 1, - sym__close_bracket2, - STATE(2003), 1, - aux_sym_call_arguments_repeat1, - [135853] = 5, + ACTIONS(3858), 1, + anon_sym_SQUOTE, + STATE(1868), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3786), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [135709] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(415), 1, sym_comma, - ACTIONS(3884), 1, - sym__external_close_bracket2, + ACTIONS(3860), 1, + sym__external_close_parenthesis, STATE(348), 1, - sym__close_bracket2, - STATE(2003), 1, + sym__close_parenthesis, + STATE(2004), 1, aux_sym_call_arguments_repeat1, - [135869] = 5, + [135725] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(3886), 1, + ACTIONS(3862), 1, sym__external_close_bracket, - STATE(347), 1, + STATE(380), 1, sym__close_bracket, - STATE(2020), 1, + STATE(1889), 1, aux_sym_call_arguments_repeat1, - [135885] = 5, + [135741] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(415), 1, sym_comma, - ACTIONS(3888), 1, + ACTIONS(3864), 1, sym__external_close_parenthesis, - STATE(1746), 1, + STATE(1743), 1, sym__close_parenthesis, - STATE(2010), 1, - aux_sym_call_arguments_repeat1, - [135901] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(517), 1, - sym_comma, - ACTIONS(3890), 1, - sym__external_close_bracket, - STATE(1649), 1, - sym__close_bracket, - STATE(2020), 1, + STATE(2004), 1, aux_sym_call_arguments_repeat1, - [135917] = 4, - ACTIONS(3786), 1, - sym_comment, - ACTIONS(3892), 1, - anon_sym_SQUOTE, - STATE(1862), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [135931] = 4, - ACTIONS(3786), 1, + [135757] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3894), 1, + ACTIONS(3866), 1, anon_sym_DQUOTE, - STATE(1863), 1, + STATE(1876), 1, aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, + ACTIONS(3794), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [135945] = 5, + [135771] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, - ACTIONS(3896), 1, - sym__external_open_parenthesis, - STATE(2008), 1, - sym__open_parenthesis, - STATE(2018), 1, - aux_sym_function_definition_repeat1, - [135961] = 5, + ACTIONS(461), 1, + sym_comma, + ACTIONS(3868), 1, + sym__external_close_bracket2, + STATE(1661), 1, + sym__close_bracket2, + STATE(2005), 1, + aux_sym_call_arguments_repeat1, + [135787] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, + ACTIONS(461), 1, sym_comma, - ACTIONS(3898), 1, + ACTIONS(3870), 1, sym__external_close_bracket2, - STATE(1650), 1, + STATE(1671), 1, sym__close_bracket2, - STATE(2003), 1, + STATE(2005), 1, aux_sym_call_arguments_repeat1, - [135977] = 4, - ACTIONS(3786), 1, + [135803] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3900), 1, + ACTIONS(3872), 1, anon_sym_SQUOTE, - STATE(1983), 1, + STATE(1855), 1, aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, + ACTIONS(3786), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [135991] = 4, - ACTIONS(3786), 1, + [135817] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3902), 1, + ACTIONS(3874), 1, anon_sym_DQUOTE, - STATE(1985), 1, + STATE(1856), 1, aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, + ACTIONS(3794), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [136005] = 5, + [135831] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(3904), 1, - sym__external_close_parenthesis, - STATE(1711), 1, - sym__close_parenthesis, - STATE(2010), 1, + ACTIONS(3876), 1, + sym__external_close_bracket, + STATE(1725), 1, + sym__close_bracket, + STATE(1904), 1, aux_sym_call_arguments_repeat1, - [136021] = 5, + [135847] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(3906), 1, - sym__external_close_parenthesis, - STATE(1760), 1, - sym__close_parenthesis, - STATE(1856), 1, + ACTIONS(3878), 1, + sym__external_close_bracket, + STATE(1727), 1, + sym__close_bracket, + STATE(2017), 1, aux_sym_call_arguments_repeat1, - [136037] = 5, + [135863] = 4, + ACTIONS(3788), 1, + sym_comment, + ACTIONS(3880), 1, + anon_sym_SQUOTE, + STATE(1880), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3786), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [135877] = 4, + ACTIONS(3788), 1, + sym_comment, + ACTIONS(3882), 1, + anon_sym_DQUOTE, + STATE(1885), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3794), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [135891] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, + ACTIONS(461), 1, sym_comma, - ACTIONS(3908), 1, + ACTIONS(3884), 1, sym__external_close_bracket2, - STATE(1673), 1, + STATE(383), 1, sym__close_bracket2, - STATE(1903), 1, + STATE(2005), 1, aux_sym_call_arguments_repeat1, - [136053] = 5, + [135907] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(3886), 1, + sym__external_open_parenthesis, + STATE(2001), 1, + aux_sym_function_definition_repeat1, + STATE(2024), 1, + sym__open_parenthesis, + [135923] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(529), 1, sym_comma, - ACTIONS(3910), 1, + ACTIONS(3888), 1, sym__external_close_bracket, - STATE(1674), 1, + STATE(1655), 1, sym__close_bracket, - STATE(2020), 1, + STATE(2017), 1, aux_sym_call_arguments_repeat1, - [136069] = 5, - ACTIONS(3), 1, + [135939] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(415), 1, - sym_comma, - ACTIONS(3912), 1, - sym__external_close_bracket2, - STATE(1646), 1, - sym__close_bracket2, - STATE(2003), 1, - aux_sym_call_arguments_repeat1, - [136085] = 5, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(1872), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3786), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [135953] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(415), 1, sym_comma, - ACTIONS(3914), 1, + ACTIONS(3892), 1, sym__external_close_parenthesis, - STATE(1664), 1, + STATE(1647), 1, sym__close_parenthesis, - STATE(1873), 1, + STATE(1865), 1, aux_sym_call_arguments_repeat1, - [136101] = 5, + [135969] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(415), 1, sym_comma, - ACTIONS(3916), 1, + ACTIONS(3894), 1, sym__external_close_parenthesis, - STATE(1662), 1, + STATE(1648), 1, sym__close_parenthesis, - STATE(2010), 1, + STATE(2004), 1, aux_sym_call_arguments_repeat1, - [136117] = 5, + [135985] = 4, + ACTIONS(3788), 1, + sym_comment, + ACTIONS(3896), 1, + anon_sym_DQUOTE, + STATE(1875), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3794), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [135999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(3898), 1, sym__newline, - ACTIONS(3918), 1, + ACTIONS(3900), 1, sym__external_open_parenthesis, - STATE(1051), 1, + STATE(1053), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(1891), 1, aux_sym_function_definition_repeat1, - [136133] = 5, + [136015] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(415), 1, sym_comma, - ACTIONS(3920), 1, + ACTIONS(3902), 1, + sym__external_close_parenthesis, + STATE(1654), 1, + sym__close_parenthesis, + STATE(2004), 1, + aux_sym_call_arguments_repeat1, + [136031] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(529), 1, + sym_comma, + ACTIONS(3904), 1, sym__external_close_bracket, - STATE(1651), 1, + STATE(404), 1, sym__close_bracket, - STATE(2020), 1, + STATE(2017), 1, aux_sym_call_arguments_repeat1, - [136149] = 5, + [136047] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(461), 1, sym_comma, - ACTIONS(3922), 1, - sym__external_close_parenthesis, - STATE(1654), 1, - sym__close_parenthesis, - STATE(2010), 1, + ACTIONS(3906), 1, + sym__external_close_bracket2, + STATE(407), 1, + sym__close_bracket2, + STATE(1905), 1, aux_sym_call_arguments_repeat1, - [136165] = 4, - ACTIONS(3786), 1, + [136063] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_DQUOTE, - STATE(1985), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, - aux_sym__double_quoted_string_content_token1, + ACTIONS(3908), 1, + anon_sym_SQUOTE, + STATE(1880), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3786), 2, + aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [136179] = 4, - ACTIONS(3786), 1, + [136077] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3926), 1, + ACTIONS(3910), 1, anon_sym_SQUOTE, - STATE(1983), 1, + STATE(1873), 1, aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, + ACTIONS(3786), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [136193] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3928), 1, - sym__newline, - ACTIONS(3930), 1, - sym__external_open_parenthesis, - STATE(1860), 1, - aux_sym_function_definition_repeat1, - STATE(2009), 1, - sym__open_parenthesis, - [136209] = 5, - ACTIONS(3), 1, + [136091] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(517), 1, - sym_comma, - ACTIONS(3932), 1, - sym__external_close_bracket, - STATE(353), 1, - sym__close_bracket, - STATE(1895), 1, - aux_sym_call_arguments_repeat1, - [136225] = 5, + ACTIONS(3912), 1, + anon_sym_DQUOTE, + STATE(1874), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3794), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [136105] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(3934), 1, + ACTIONS(3914), 1, sym__external_close_bracket, - STATE(352), 1, + STATE(1653), 1, sym__close_bracket, - STATE(2020), 1, + STATE(1903), 1, aux_sym_call_arguments_repeat1, - [136241] = 4, - ACTIONS(3786), 1, + [136121] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3936), 1, - anon_sym_DQUOTE, - STATE(1874), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, - aux_sym__double_quoted_string_content_token1, + ACTIONS(3916), 1, + anon_sym_SQUOTE, + STATE(1880), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3786), 2, + aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [136255] = 4, - ACTIONS(3786), 1, + [136135] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3938), 1, + ACTIONS(3918), 1, anon_sym_SQUOTE, - STATE(1884), 1, + STATE(1880), 1, aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, + ACTIONS(3786), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [136269] = 4, - ACTIONS(3786), 1, + [136149] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3940), 1, + ACTIONS(3920), 1, anon_sym_DQUOTE, STATE(1885), 1, aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, + ACTIONS(3794), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [136283] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3942), 1, - sym__newline, - ACTIONS(3944), 1, - sym__external_open_parenthesis, - STATE(1090), 1, - sym__open_parenthesis, - STATE(1871), 1, - aux_sym_function_definition_repeat1, - [136299] = 4, - ACTIONS(3786), 1, + [136163] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_SQUOTE, - STATE(1875), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, - aux_sym__single_quoted_string_content_token1, + ACTIONS(3922), 1, + anon_sym_DQUOTE, + STATE(1885), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3794), 2, + aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [136313] = 4, - ACTIONS(3786), 1, + [136177] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3948), 1, - anon_sym_SQUOTE, - STATE(1983), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, - aux_sym__single_quoted_string_content_token1, + ACTIONS(3924), 1, + anon_sym_DQUOTE, + STATE(1885), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3794), 2, + aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [136327] = 4, - ACTIONS(3786), 1, + [136191] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3926), 1, + sym_comma, + ACTIONS(3928), 1, + sym__external_close_parenthesis, + STATE(1692), 1, + sym__close_parenthesis, + STATE(1947), 1, + aux_sym_parameters_repeat1, + [136207] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(3930), 1, anon_sym_DQUOTE, - STATE(1985), 1, + STATE(1885), 1, aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, + ACTIONS(3794), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [136341] = 5, + [136221] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, - sym__newline, - ACTIONS(3954), 1, - sym__external_open_parenthesis, - STATE(1815), 1, - aux_sym_function_definition_repeat1, + ACTIONS(415), 1, + sym_comma, + ACTIONS(3932), 1, + sym__external_close_parenthesis, + STATE(1664), 1, + sym__close_parenthesis, STATE(2004), 1, - sym__open_parenthesis, - [136357] = 5, - ACTIONS(3), 1, + aux_sym_call_arguments_repeat1, + [136237] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(3956), 1, - sym__newline, - ACTIONS(3958), 1, - sym__external_open_parenthesis, - STATE(1048), 1, - sym__open_parenthesis, - STATE(1817), 1, - aux_sym_function_definition_repeat1, - [136373] = 5, + ACTIONS(3934), 1, + anon_sym_SQUOTE, + STATE(1880), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3936), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [136251] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(415), 1, sym_comma, - ACTIONS(3960), 1, - sym__external_close_bracket, - STATE(1677), 1, - sym__close_bracket, - STATE(1909), 1, + ACTIONS(3939), 1, + sym__external_close_parenthesis, + STATE(1709), 1, + sym__close_parenthesis, + STATE(2004), 1, aux_sym_call_arguments_repeat1, - [136389] = 5, + [136267] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, + ACTIONS(461), 1, sym_comma, - ACTIONS(3962), 1, + ACTIONS(3941), 1, sym__external_close_bracket2, - STATE(359), 1, + STATE(1656), 1, sym__close_bracket2, - STATE(1989), 1, + STATE(2005), 1, aux_sym_call_arguments_repeat1, - [136405] = 5, + [136283] = 4, + ACTIONS(3788), 1, + sym_comment, + ACTIONS(3943), 1, + anon_sym_DQUOTE, + STATE(1878), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3794), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [136297] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, + ACTIONS(461), 1, sym_comma, - ACTIONS(3964), 1, + ACTIONS(3945), 1, sym__external_close_bracket2, - STATE(360), 1, + STATE(1660), 1, sym__close_bracket2, - STATE(2003), 1, + STATE(1825), 1, aux_sym_call_arguments_repeat1, - [136421] = 5, + [136313] = 4, + ACTIONS(3788), 1, + sym_comment, + ACTIONS(3947), 1, + anon_sym_DQUOTE, + STATE(1885), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3949), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [136327] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(415), 1, sym_comma, - ACTIONS(3966), 1, + ACTIONS(3952), 1, sym__external_close_parenthesis, - STATE(1744), 1, + STATE(1759), 1, sym__close_parenthesis, - STATE(1808), 1, + STATE(1894), 1, aux_sym_call_arguments_repeat1, - [136437] = 5, + [136343] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(415), 1, sym_comma, - ACTIONS(3968), 1, + ACTIONS(3954), 1, sym__external_close_parenthesis, - STATE(1640), 1, + STATE(1766), 1, sym__close_parenthesis, - STATE(2010), 1, + STATE(2004), 1, aux_sym_call_arguments_repeat1, - [136453] = 5, + [136359] = 4, + ACTIONS(3788), 1, + sym_comment, + ACTIONS(3956), 1, + anon_sym_SQUOTE, + STATE(1897), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3786), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [136373] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(529), 1, + sym_comma, + ACTIONS(3958), 1, + sym__external_close_bracket, + STATE(392), 1, + sym__close_bracket, + STATE(2017), 1, + aux_sym_call_arguments_repeat1, + [136389] = 4, + ACTIONS(3788), 1, + sym_comment, + ACTIONS(3960), 1, + anon_sym_DQUOTE, + STATE(1898), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3794), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [136403] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3756), 1, sym__newline, - ACTIONS(3970), 1, + ACTIONS(3962), 1, sym__external_open_parenthesis, - STATE(2018), 1, - aux_sym_function_definition_repeat1, - STATE(2027), 1, + STATE(1050), 1, sym__open_parenthesis, - [136469] = 5, + STATE(2001), 1, + aux_sym_function_definition_repeat1, + [136419] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(461), 1, sym_comma, - ACTIONS(3972), 1, - sym__external_close_parenthesis, - STATE(1648), 1, - sym__close_parenthesis, - STATE(2010), 1, + ACTIONS(3964), 1, + sym__external_close_bracket2, + STATE(1728), 1, + sym__close_bracket2, + STATE(1929), 1, aux_sym_call_arguments_repeat1, - [136485] = 5, + [136435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(3974), 1, + ACTIONS(3966), 1, sym__external_close_bracket, - STATE(368), 1, + STATE(385), 1, sym__close_bracket, - STATE(2020), 1, + STATE(2017), 1, aux_sym_call_arguments_repeat1, - [136501] = 5, + [136451] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(415), 1, sym_comma, - ACTIONS(3976), 1, - sym__external_close_bracket2, - STATE(397), 1, - sym__close_bracket2, - STATE(2003), 1, + ACTIONS(3968), 1, + sym__external_close_parenthesis, + STATE(1741), 1, + sym__close_parenthesis, + STATE(2004), 1, aux_sym_call_arguments_repeat1, - [136517] = 5, + [136467] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(415), 1, sym_comma, - ACTIONS(3978), 1, - sym__external_close_bracket2, - STATE(1657), 1, - sym__close_bracket2, - STATE(2003), 1, + ACTIONS(3970), 1, + sym__external_close_parenthesis, + STATE(412), 1, + sym__close_parenthesis, + STATE(1933), 1, aux_sym_call_arguments_repeat1, - [136533] = 5, + [136483] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, + ACTIONS(461), 1, sym_comma, - ACTIONS(3980), 1, + ACTIONS(3972), 1, sym__external_close_bracket2, - STATE(1658), 1, + STATE(409), 1, sym__close_bracket2, - STATE(1868), 1, + STATE(2005), 1, aux_sym_call_arguments_repeat1, - [136549] = 5, - ACTIONS(3), 1, + [136499] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(517), 1, - sym_comma, - ACTIONS(3982), 1, - sym__external_close_bracket, - STATE(1659), 1, - sym__close_bracket, - STATE(2020), 1, - aux_sym_call_arguments_repeat1, - [136565] = 5, + ACTIONS(3974), 1, + anon_sym_SQUOTE, + STATE(1880), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3786), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [136513] = 4, + ACTIONS(3788), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_DQUOTE, + STATE(1885), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3794), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [136527] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(3984), 1, + ACTIONS(3978), 1, sym__external_close_bracket, - STATE(1661), 1, + STATE(440), 1, sym__close_bracket, - STATE(1872), 1, + STATE(1893), 1, aux_sym_call_arguments_repeat1, - [136581] = 5, + [136543] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, - sym_comma, - ACTIONS(3986), 1, - sym__external_close_bracket2, - STATE(399), 1, - sym__close_bracket2, - STATE(1835), 1, - aux_sym_call_arguments_repeat1, - [136597] = 5, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(3980), 1, + sym__external_open_parenthesis, + STATE(1049), 1, + sym__open_parenthesis, + STATE(2001), 1, + aux_sym_function_definition_repeat1, + [136559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(3988), 1, + ACTIONS(3982), 1, sym__external_close_bracket, - STATE(406), 1, + STATE(1649), 1, sym__close_bracket, - STATE(2020), 1, + STATE(1859), 1, aux_sym_call_arguments_repeat1, - [136613] = 5, + [136575] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(415), 1, sym_comma, - ACTIONS(3990), 1, - sym__external_close_bracket2, - STATE(1663), 1, - sym__close_bracket2, - STATE(2003), 1, + ACTIONS(3984), 1, + sym__external_close_parenthesis, + STATE(1771), 1, + sym__close_parenthesis, + STATE(1912), 1, aux_sym_call_arguments_repeat1, - [136629] = 5, + [136591] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(3992), 1, + ACTIONS(3986), 1, sym__external_close_bracket, - STATE(408), 1, + STATE(1668), 1, sym__close_bracket, - STATE(1837), 1, + STATE(2017), 1, aux_sym_call_arguments_repeat1, - [136645] = 5, + [136607] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(3994), 1, + ACTIONS(3988), 1, sym__external_close_bracket, - STATE(1718), 1, + STATE(1745), 1, sym__close_bracket, - STATE(2020), 1, + STATE(2017), 1, aux_sym_call_arguments_repeat1, - [136661] = 5, + [136623] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(461), 1, sym_comma, - ACTIONS(3996), 1, - sym__external_close_parenthesis, - STATE(410), 1, - sym__close_parenthesis, - STATE(2010), 1, + ACTIONS(3990), 1, + sym__external_close_bracket2, + STATE(388), 1, + sym__close_bracket2, + STATE(2005), 1, aux_sym_call_arguments_repeat1, - [136677] = 5, + [136639] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(415), 1, sym_comma, - ACTIONS(3998), 1, + ACTIONS(3992), 1, sym__external_close_parenthesis, - STATE(1721), 1, + STATE(436), 1, sym__close_parenthesis, - STATE(2010), 1, + STATE(1934), 1, aux_sym_call_arguments_repeat1, - [136693] = 5, + [136655] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(461), 1, sym_comma, - ACTIONS(4000), 1, + ACTIONS(3994), 1, + sym__external_close_bracket2, + STATE(393), 1, + sym__close_bracket2, + STATE(2005), 1, + aux_sym_call_arguments_repeat1, + [136671] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(415), 1, + sym_comma, + ACTIONS(3996), 1, sym__external_close_parenthesis, - STATE(1722), 1, + STATE(1772), 1, sym__close_parenthesis, - STATE(1846), 1, + STATE(2004), 1, aux_sym_call_arguments_repeat1, - [136709] = 5, + [136687] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(4002), 1, + ACTIONS(3998), 1, sym__external_close_bracket, - STATE(1665), 1, + STATE(1778), 1, sym__close_bracket, - STATE(2020), 1, + STATE(1837), 1, aux_sym_call_arguments_repeat1, - [136725] = 5, + [136703] = 4, + ACTIONS(3788), 1, + sym_comment, + ACTIONS(4000), 1, + anon_sym_SQUOTE, + STATE(1924), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3786), 2, + aux_sym__single_quoted_string_content_token1, + sym_escape_sequence, + [136717] = 4, + ACTIONS(3788), 1, + sym_comment, + ACTIONS(4002), 1, + anon_sym_DQUOTE, + STATE(2000), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3794), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [136731] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(415), 1, + sym_comma, ACTIONS(4004), 1, - sym__newline, + sym__external_close_parenthesis, + STATE(1781), 1, + sym__close_parenthesis, + STATE(2004), 1, + aux_sym_call_arguments_repeat1, + [136747] = 5, + ACTIONS(3), 1, + sym_comment, ACTIONS(4006), 1, + sym__newline, + ACTIONS(4008), 1, sym__external_open_parenthesis, - STATE(1893), 1, - aux_sym_function_definition_repeat1, - STATE(2017), 1, + STATE(1052), 1, sym__open_parenthesis, - [136741] = 5, + STATE(1900), 1, + aux_sym_function_definition_repeat1, + [136763] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(4008), 1, + ACTIONS(4010), 1, sym__external_close_bracket, - STATE(1745), 1, + STATE(1650), 1, sym__close_bracket, - STATE(2020), 1, + STATE(2017), 1, aux_sym_call_arguments_repeat1, - [136757] = 5, + [136779] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, - ACTIONS(4010), 1, - sym__external_open_parenthesis, - STATE(2013), 1, - sym__open_parenthesis, - STATE(2018), 1, - aux_sym_function_definition_repeat1, - [136773] = 5, + ACTIONS(529), 1, + sym_comma, + ACTIONS(4012), 1, + sym__external_close_bracket, + STATE(344), 1, + sym__close_bracket, + STATE(1955), 1, + aux_sym_call_arguments_repeat1, + [136795] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, + ACTIONS(461), 1, sym_comma, - ACTIONS(4012), 1, + ACTIONS(4014), 1, sym__external_close_bracket2, - STATE(1710), 1, + STATE(1651), 1, sym__close_bracket2, - STATE(1997), 1, + STATE(1882), 1, aux_sym_call_arguments_repeat1, - [136789] = 5, + [136811] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4014), 1, - sym__newline, + ACTIONS(529), 1, + sym_comma, ACTIONS(4016), 1, - sym__external_open_parenthesis, - STATE(1912), 1, - aux_sym_function_definition_repeat1, - STATE(2022), 1, - sym__open_parenthesis, - [136805] = 5, + sym__external_close_bracket, + STATE(345), 1, + sym__close_bracket, + STATE(2017), 1, + aux_sym_call_arguments_repeat1, + [136827] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, + ACTIONS(461), 1, + sym_comma, ACTIONS(4018), 1, - sym__external_open_parenthesis, - STATE(2018), 1, - aux_sym_function_definition_repeat1, - STATE(2029), 1, - sym__open_parenthesis, - [136821] = 5, + sym__external_close_bracket2, + STATE(346), 1, + sym__close_bracket2, + STATE(1960), 1, + aux_sym_call_arguments_repeat1, + [136843] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(461), 1, + sym_comma, ACTIONS(4020), 1, - sym__newline, - ACTIONS(4022), 1, - sym__external_open_parenthesis, - STATE(1915), 1, - aux_sym_function_definition_repeat1, - STATE(2028), 1, - sym__open_parenthesis, - [136837] = 5, + sym__external_close_bracket2, + STATE(1652), 1, + sym__close_bracket2, + STATE(2005), 1, + aux_sym_call_arguments_repeat1, + [136859] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, + ACTIONS(461), 1, sym_comma, - ACTIONS(4024), 1, + ACTIONS(4022), 1, sym__external_close_bracket2, - STATE(1738), 1, + STATE(347), 1, sym__close_bracket2, - STATE(2003), 1, + STATE(2005), 1, aux_sym_call_arguments_repeat1, - [136853] = 5, + [136875] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(415), 1, sym_comma, - ACTIONS(4026), 1, + ACTIONS(4024), 1, sym__external_close_parenthesis, - STATE(412), 1, + STATE(438), 1, sym__close_parenthesis, - STATE(1849), 1, + STATE(2004), 1, + aux_sym_call_arguments_repeat1, + [136891] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(529), 1, + sym_comma, + ACTIONS(4026), 1, + sym__external_close_bracket, + STATE(1748), 1, + sym__close_bracket, + STATE(2017), 1, aux_sym_call_arguments_repeat1, - [136869] = 4, - ACTIONS(3786), 1, + [136907] = 5, + ACTIONS(3), 1, sym_comment, + ACTIONS(529), 1, + sym_comma, ACTIONS(4028), 1, - anon_sym_DQUOTE, - STATE(1985), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [136883] = 4, - ACTIONS(3786), 1, + sym__external_close_bracket, + STATE(1666), 1, + sym__close_bracket, + STATE(1818), 1, + aux_sym_call_arguments_repeat1, + [136923] = 4, + ACTIONS(3788), 1, sym_comment, ACTIONS(4030), 1, anon_sym_SQUOTE, - STATE(1983), 1, + STATE(1880), 1, aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, + ACTIONS(3786), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [136897] = 4, - ACTIONS(3786), 1, + [136937] = 5, + ACTIONS(3), 1, sym_comment, + ACTIONS(461), 1, + sym_comma, ACTIONS(4032), 1, - anon_sym_SQUOTE, - STATE(1983), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [136911] = 5, + sym__external_close_bracket2, + STATE(1763), 1, + sym__close_bracket2, + STATE(1926), 1, + aux_sym_call_arguments_repeat1, + [136953] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, + ACTIONS(461), 1, + sym_comma, ACTIONS(4034), 1, - sym__external_open_parenthesis, - STATE(2018), 1, - aux_sym_function_definition_repeat1, - STATE(2025), 1, - sym__open_parenthesis, - [136927] = 4, - ACTIONS(3786), 1, + sym__external_close_bracket2, + STATE(1756), 1, + sym__close_bracket2, + STATE(2005), 1, + aux_sym_call_arguments_repeat1, + [136969] = 5, + ACTIONS(3), 1, sym_comment, + ACTIONS(461), 1, + sym_comma, ACTIONS(4036), 1, - anon_sym_DQUOTE, - STATE(1919), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [136941] = 4, - ACTIONS(3786), 1, + sym__external_close_bracket2, + STATE(1678), 1, + sym__close_bracket2, + STATE(2005), 1, + aux_sym_call_arguments_repeat1, + [136985] = 5, + ACTIONS(3), 1, sym_comment, + ACTIONS(529), 1, + sym_comma, ACTIONS(4038), 1, - anon_sym_SQUOTE, - STATE(1920), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [136955] = 5, + sym__external_close_bracket, + STATE(1782), 1, + sym__close_bracket, + STATE(2017), 1, + aux_sym_call_arguments_repeat1, + [137001] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(461), 1, + sym_comma, ACTIONS(4040), 1, - sym__newline, + sym__external_close_bracket2, + STATE(1749), 1, + sym__close_bracket2, + STATE(2005), 1, + aux_sym_call_arguments_repeat1, + [137017] = 5, + ACTIONS(3), 1, + sym_comment, ACTIONS(4042), 1, + sym__newline, + ACTIONS(4044), 1, sym__external_open_parenthesis, - STATE(1922), 1, - aux_sym_function_definition_repeat1, - STATE(2024), 1, + STATE(1057), 1, sym__open_parenthesis, - [136971] = 4, - ACTIONS(3786), 1, - sym_comment, - ACTIONS(4044), 1, - anon_sym_SQUOTE, - STATE(1931), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [136985] = 5, + STATE(1932), 1, + aux_sym_function_definition_repeat1, + [137033] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, + ACTIONS(461), 1, sym_comma, ACTIONS(4046), 1, sym__external_close_bracket2, - STATE(1716), 1, + STATE(1783), 1, sym__close_bracket2, - STATE(2003), 1, + STATE(2005), 1, aux_sym_call_arguments_repeat1, - [137001] = 4, - ACTIONS(3786), 1, - sym_comment, - ACTIONS(4048), 1, - anon_sym_DQUOTE, - STATE(1937), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [137015] = 5, + [137049] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(4050), 1, + ACTIONS(4048), 1, sym__external_open_parenthesis, - STATE(2018), 1, - aux_sym_function_definition_repeat1, - STATE(2021), 1, + STATE(1058), 1, sym__open_parenthesis, - [137031] = 5, + STATE(2001), 1, + aux_sym_function_definition_repeat1, + [137065] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(415), 1, sym_comma, - ACTIONS(4052), 1, + ACTIONS(4050), 1, sym__external_close_parenthesis, - STATE(394), 1, + STATE(391), 1, sym__close_parenthesis, - STATE(2010), 1, + STATE(2004), 1, aux_sym_call_arguments_repeat1, - [137047] = 4, - ACTIONS(3786), 1, - sym_comment, - ACTIONS(4054), 1, - anon_sym_SQUOTE, - STATE(1983), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [137061] = 5, + [137081] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(415), 1, sym_comma, - ACTIONS(4056), 1, - sym__external_close_bracket, - STATE(1727), 1, - sym__close_bracket, - STATE(2020), 1, + ACTIONS(4052), 1, + sym__external_close_parenthesis, + STATE(425), 1, + sym__close_parenthesis, + STATE(2004), 1, aux_sym_call_arguments_repeat1, - [137077] = 5, + [137097] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(4058), 1, - sym__external_close_parenthesis, - STATE(381), 1, - sym__close_parenthesis, - STATE(2010), 1, + ACTIONS(4054), 1, + sym__external_close_bracket, + STATE(1667), 1, + sym__close_bracket, + STATE(2017), 1, aux_sym_call_arguments_repeat1, - [137093] = 5, + [137113] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(4056), 1, sym__newline, - ACTIONS(4060), 1, + ACTIONS(4058), 1, sym__external_open_parenthesis, - STATE(1052), 1, + STATE(1060), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(1938), 1, aux_sym_function_definition_repeat1, - [137109] = 5, + [137129] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(4062), 1, - sym__external_close_parenthesis, - STATE(383), 1, - sym__close_parenthesis, - STATE(1930), 1, + ACTIONS(4060), 1, + sym__external_close_bracket, + STATE(332), 1, + sym__close_bracket, + STATE(1824), 1, aux_sym_call_arguments_repeat1, - [137125] = 5, + [137145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(4062), 1, + sym__external_open_parenthesis, + STATE(1061), 1, + sym__open_parenthesis, + STATE(2001), 1, + aux_sym_function_definition_repeat1, + [137161] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(461), 1, sym_comma, ACTIONS(4064), 1, sym__external_close_bracket2, - STATE(1726), 1, + STATE(1670), 1, sym__close_bracket2, - STATE(2003), 1, + STATE(1927), 1, aux_sym_call_arguments_repeat1, - [137141] = 4, - ACTIONS(3786), 1, + [137177] = 5, + ACTIONS(3), 1, sym_comment, ACTIONS(4066), 1, - anon_sym_DQUOTE, - STATE(1985), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [137155] = 5, + sym__newline, + ACTIONS(4068), 1, + sym__external_open_parenthesis, + STATE(1065), 1, + sym__open_parenthesis, + STATE(1942), 1, + aux_sym_function_definition_repeat1, + [137193] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(415), 1, sym_comma, - ACTIONS(4068), 1, - sym__external_close_bracket2, - STATE(1733), 1, - sym__close_bracket2, - STATE(2003), 1, + ACTIONS(4070), 1, + sym__external_close_parenthesis, + STATE(374), 1, + sym__close_parenthesis, + STATE(1951), 1, aux_sym_call_arguments_repeat1, - [137171] = 5, + [137209] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4070), 1, + ACTIONS(3756), 1, sym__newline, ACTIONS(4072), 1, sym__external_open_parenthesis, - STATE(1929), 1, - aux_sym_function_definition_repeat1, - STATE(2019), 1, + STATE(1066), 1, sym__open_parenthesis, - [137187] = 5, + STATE(2001), 1, + aux_sym_function_definition_repeat1, + [137225] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, + ACTIONS(461), 1, sym_comma, ACTIONS(4074), 1, sym__external_close_bracket2, - STATE(1735), 1, + STATE(1757), 1, sym__close_bracket2, - STATE(1936), 1, + STATE(2005), 1, aux_sym_call_arguments_repeat1, - [137203] = 5, + [137241] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4076), 1, sym__newline, ACTIONS(4078), 1, sym__external_open_parenthesis, - STATE(1056), 1, + STATE(1070), 1, sym__open_parenthesis, - STATE(1934), 1, + STATE(1946), 1, aux_sym_function_definition_repeat1, - [137219] = 5, + [137257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(415), 1, sym_comma, ACTIONS(4080), 1, - sym__external_close_bracket, - STATE(1736), 1, - sym__close_bracket, - STATE(2020), 1, + sym__external_close_parenthesis, + STATE(375), 1, + sym__close_parenthesis, + STATE(2004), 1, aux_sym_call_arguments_repeat1, - [137235] = 4, - ACTIONS(3786), 1, + [137273] = 5, + ACTIONS(3), 1, sym_comment, + ACTIONS(3756), 1, + sym__newline, ACTIONS(4082), 1, - anon_sym_DQUOTE, - STATE(1985), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [137249] = 5, + sym__external_open_parenthesis, + STATE(1071), 1, + sym__open_parenthesis, + STATE(2001), 1, + aux_sym_function_definition_repeat1, + [137289] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, + ACTIONS(3926), 1, sym_comma, ACTIONS(4084), 1, - sym__external_close_bracket2, - STATE(398), 1, - sym__close_bracket2, - STATE(2003), 1, - aux_sym_call_arguments_repeat1, - [137265] = 4, - ACTIONS(3786), 1, - sym_comment, - ACTIONS(4086), 1, - anon_sym_DQUOTE, - STATE(1985), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [137279] = 5, + sym__external_close_parenthesis, + STATE(1697), 1, + sym__close_parenthesis, + STATE(2002), 1, + aux_sym_parameters_repeat1, + [137305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(4086), 1, sym__newline, ACTIONS(4088), 1, sym__external_open_parenthesis, - STATE(1058), 1, + STATE(1075), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(1949), 1, aux_sym_function_definition_repeat1, - [137295] = 5, + [137321] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - sym_comma, + ACTIONS(3756), 1, + sym__newline, ACTIONS(4090), 1, - sym__external_close_parenthesis, - STATE(1636), 1, - sym__close_parenthesis, - STATE(1819), 1, - aux_sym_parameters_repeat1, - [137311] = 4, - ACTIONS(3786), 1, - sym_comment, - ACTIONS(4092), 1, - anon_sym_SQUOTE, - STATE(1983), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [137325] = 5, + sym__external_open_parenthesis, + STATE(1076), 1, + sym__open_parenthesis, + STATE(2001), 1, + aux_sym_function_definition_repeat1, + [137337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, - sym_comma, + ACTIONS(4092), 1, + sym__newline, ACTIONS(4094), 1, - sym__external_close_bracket, - STATE(395), 1, - sym__close_bracket, - STATE(2020), 1, - aux_sym_call_arguments_repeat1, - [137341] = 5, + sym__external_open_parenthesis, + STATE(1080), 1, + sym__open_parenthesis, + STATE(1952), 1, + aux_sym_function_definition_repeat1, + [137353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(415), 1, sym_comma, ACTIONS(4096), 1, - sym__external_close_bracket, - STATE(1720), 1, - sym__close_bracket, - STATE(1977), 1, + sym__external_close_parenthesis, + STATE(359), 1, + sym__close_parenthesis, + STATE(2004), 1, aux_sym_call_arguments_repeat1, - [137357] = 5, + [137369] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4098), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(4100), 1, + ACTIONS(4098), 1, sym__external_open_parenthesis, - STATE(1059), 1, + STATE(1081), 1, sym__open_parenthesis, - STATE(1946), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [137373] = 5, + [137385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, - ACTIONS(4102), 1, - sym__external_open_parenthesis, - STATE(1060), 1, - sym__open_parenthesis, - STATE(2018), 1, - aux_sym_function_definition_repeat1, - [137389] = 5, + ACTIONS(529), 1, + sym_comma, + ACTIONS(4100), 1, + sym__external_close_bracket, + STATE(351), 1, + sym__close_bracket, + STATE(2017), 1, + aux_sym_call_arguments_repeat1, + [137401] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4104), 1, + ACTIONS(4102), 1, sym__newline, - ACTIONS(4106), 1, + ACTIONS(4104), 1, sym__external_open_parenthesis, - STATE(1061), 1, + STATE(1085), 1, sym__open_parenthesis, - STATE(1952), 1, + STATE(1956), 1, aux_sym_function_definition_repeat1, - [137405] = 5, + [137417] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(529), 1, sym_comma, - ACTIONS(4108), 1, + ACTIONS(4106), 1, sym__external_close_bracket, - STATE(1739), 1, + STATE(349), 1, sym__close_bracket, - STATE(1932), 1, + STATE(2017), 1, aux_sym_call_arguments_repeat1, - [137421] = 5, + [137433] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(4110), 1, + ACTIONS(4108), 1, sym__external_open_parenthesis, - STATE(1068), 1, + STATE(1086), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [137437] = 5, + [137449] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4110), 1, sym__newline, - ACTIONS(4114), 1, + ACTIONS(4112), 1, sym__external_open_parenthesis, - STATE(1070), 1, + STATE(1090), 1, sym__open_parenthesis, - STATE(1955), 1, + STATE(1959), 1, aux_sym_function_definition_repeat1, - [137453] = 4, - ACTIONS(3786), 1, + [137465] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(4116), 1, - anon_sym_DQUOTE, - STATE(1945), 1, - aux_sym__double_quoted_string_content, - ACTIONS(3790), 2, - aux_sym__double_quoted_string_content_token1, + ACTIONS(4114), 1, + anon_sym_SQUOTE, + STATE(1880), 1, + aux_sym__single_quoted_string_content, + ACTIONS(3786), 2, + aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [137467] = 5, + [137479] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(4118), 1, + ACTIONS(4116), 1, sym__external_open_parenthesis, - STATE(1071), 1, + STATE(1091), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [137483] = 5, + [137495] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(461), 1, + sym_comma, + ACTIONS(4118), 1, + sym__external_close_bracket2, + STATE(350), 1, + sym__close_bracket2, + STATE(2005), 1, + aux_sym_call_arguments_repeat1, + [137511] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4120), 1, sym__newline, ACTIONS(4122), 1, sym__external_open_parenthesis, - STATE(1072), 1, + STATE(1095), 1, sym__open_parenthesis, - STATE(1958), 1, + STATE(1962), 1, aux_sym_function_definition_repeat1, - [137499] = 5, + [137527] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(3756), 1, sym__newline, ACTIONS(4124), 1, sym__external_open_parenthesis, - STATE(1073), 1, + STATE(1096), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [137515] = 5, + [137543] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4126), 1, sym__newline, ACTIONS(4128), 1, sym__external_open_parenthesis, - STATE(1074), 1, + STATE(1099), 1, sym__open_parenthesis, - STATE(1960), 1, + STATE(1965), 1, aux_sym_function_definition_repeat1, - [137531] = 5, + [137559] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(529), 1, + sym_comma, ACTIONS(4130), 1, + sym__external_close_bracket, + STATE(381), 1, + sym__close_bracket, + STATE(2017), 1, + aux_sym_call_arguments_repeat1, + [137575] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3756), 1, sym__newline, ACTIONS(4132), 1, sym__external_open_parenthesis, - STATE(1097), 1, + STATE(1100), 1, sym__open_parenthesis, - STATE(1964), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [137547] = 4, - ACTIONS(3786), 1, - sym_comment, - ACTIONS(4134), 1, - anon_sym_SQUOTE, - STATE(1948), 1, - aux_sym__single_quoted_string_content, - ACTIONS(3784), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, - [137561] = 5, + [137591] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(4134), 1, sym__newline, ACTIONS(4136), 1, sym__external_open_parenthesis, - STATE(1099), 1, + STATE(1101), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(1967), 1, aux_sym_function_definition_repeat1, - [137577] = 5, + [137607] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(3756), 1, sym__newline, ACTIONS(4138), 1, sym__external_open_parenthesis, - STATE(1075), 1, + STATE(1102), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [137593] = 5, + [137623] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, - sym_comma, ACTIONS(4140), 1, - sym__external_close_bracket2, - STATE(377), 1, - sym__close_bracket2, - STATE(2003), 1, - aux_sym_call_arguments_repeat1, - [137609] = 5, + sym__newline, + ACTIONS(4142), 1, + sym__external_open_parenthesis, + STATE(1103), 1, + sym__open_parenthesis, + STATE(1969), 1, + aux_sym_function_definition_repeat1, + [137639] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4142), 1, + ACTIONS(3756), 1, sym__newline, ACTIONS(4144), 1, sym__external_open_parenthesis, - STATE(1076), 1, + STATE(1104), 1, sym__open_parenthesis, - STATE(1965), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [137625] = 5, + [137655] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, ACTIONS(4146), 1, + sym__newline, + ACTIONS(4148), 1, sym__external_open_parenthesis, - STATE(1077), 1, + STATE(1105), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(1971), 1, aux_sym_function_definition_repeat1, - [137641] = 5, + [137671] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4148), 1, + ACTIONS(3756), 1, sym__newline, ACTIONS(4150), 1, sym__external_open_parenthesis, - STATE(1078), 1, + STATE(1106), 1, sym__open_parenthesis, - STATE(1968), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [137657] = 5, + [137687] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4152), 1, sym__newline, ACTIONS(4154), 1, sym__external_open_parenthesis, - STATE(1103), 1, + STATE(1107), 1, sym__open_parenthesis, - STATE(1972), 1, + STATE(1973), 1, aux_sym_function_definition_repeat1, - [137673] = 5, + [137703] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, - sym_comma, - ACTIONS(4156), 1, - sym__external_close_bracket2, - STATE(415), 1, - sym__close_bracket2, - STATE(1944), 1, - aux_sym_call_arguments_repeat1, - [137689] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3752), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(4158), 1, + ACTIONS(4156), 1, sym__external_open_parenthesis, - STATE(1104), 1, + STATE(1108), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [137705] = 5, + [137719] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, - sym_comma, + ACTIONS(4158), 1, + sym__newline, ACTIONS(4160), 1, - sym__external_close_bracket, - STATE(379), 1, - sym__close_bracket, - STATE(2020), 1, - aux_sym_call_arguments_repeat1, - [137721] = 5, + sym__external_open_parenthesis, + STATE(1109), 1, + sym__open_parenthesis, + STATE(1975), 1, + aux_sym_function_definition_repeat1, + [137735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 1, - sym_comma, + ACTIONS(3756), 1, + sym__newline, ACTIONS(4162), 1, - sym__external_close_parenthesis, - STATE(1741), 1, - sym__close_parenthesis, - STATE(2010), 1, - aux_sym_call_arguments_repeat1, - [137737] = 5, + sym__external_open_parenthesis, + STATE(1110), 1, + sym__open_parenthesis, + STATE(2001), 1, + aux_sym_function_definition_repeat1, + [137751] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, ACTIONS(4164), 1, + sym__newline, + ACTIONS(4166), 1, sym__external_open_parenthesis, - STATE(1079), 1, + STATE(1111), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(1977), 1, aux_sym_function_definition_repeat1, - [137753] = 5, + [137767] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(3756), 1, sym__newline, ACTIONS(4168), 1, sym__external_open_parenthesis, - STATE(1109), 1, + STATE(1112), 1, sym__open_parenthesis, - STATE(1978), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [137769] = 5, + [137783] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, - sym_comma, ACTIONS(4170), 1, - sym__external_close_bracket, - STATE(1731), 1, - sym__close_bracket, - STATE(2020), 1, - aux_sym_call_arguments_repeat1, - [137785] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3752), 1, sym__newline, ACTIONS(4172), 1, sym__external_open_parenthesis, - STATE(1110), 1, + STATE(1113), 1, sym__open_parenthesis, - STATE(2018), 1, + STATE(1979), 1, aux_sym_function_definition_repeat1, - [137801] = 5, + [137799] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, - sym_comma, + ACTIONS(3756), 1, + sym__newline, ACTIONS(4174), 1, - sym__external_close_bracket, - STATE(380), 1, - sym__close_bracket, - STATE(1949), 1, - aux_sym_call_arguments_repeat1, - [137817] = 5, + sym__external_open_parenthesis, + STATE(1114), 1, + sym__open_parenthesis, + STATE(2001), 1, + aux_sym_function_definition_repeat1, + [137815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, - sym_comma, ACTIONS(4176), 1, - sym__external_close_bracket2, - STATE(343), 1, - sym__close_bracket2, - STATE(2003), 1, - aux_sym_call_arguments_repeat1, - [137833] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4178), 1, sym__newline, - ACTIONS(4180), 1, + ACTIONS(4178), 1, sym__external_open_parenthesis, - STATE(1080), 1, + STATE(1115), 1, sym__open_parenthesis, - STATE(1975), 1, + STATE(1982), 1, aux_sym_function_definition_repeat1, - [137849] = 5, + [137831] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(4180), 1, + sym__newline, ACTIONS(4182), 1, + sym__external_open_parenthesis, + STATE(1983), 1, + aux_sym_function_definition_repeat1, + STATE(2008), 1, + sym__open_parenthesis, + [137847] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3756), 1, sym__newline, ACTIONS(4184), 1, sym__external_open_parenthesis, - STATE(1114), 1, + STATE(1116), 1, sym__open_parenthesis, - STATE(1984), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [137865] = 4, - ACTIONS(3786), 1, + [137863] = 5, + ACTIONS(3), 1, sym_comment, + ACTIONS(3756), 1, + sym__newline, ACTIONS(4186), 1, - anon_sym_SQUOTE, - STATE(1983), 1, - aux_sym__single_quoted_string_content, - ACTIONS(4188), 2, - aux_sym__single_quoted_string_content_token1, - sym_escape_sequence, + sym__external_open_parenthesis, + STATE(2001), 1, + aux_sym_function_definition_repeat1, + STATE(2009), 1, + sym__open_parenthesis, [137879] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(4188), 1, sym__newline, - ACTIONS(4191), 1, + ACTIONS(4190), 1, sym__external_open_parenthesis, - STATE(1115), 1, + STATE(1985), 1, + aux_sym_function_definition_repeat1, + STATE(2010), 1, sym__open_parenthesis, - STATE(2018), 1, + [137895] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(4192), 1, + sym__external_open_parenthesis, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [137895] = 4, - ACTIONS(3786), 1, + STATE(2011), 1, + sym__open_parenthesis, + [137911] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4193), 1, - anon_sym_DQUOTE, - STATE(1985), 1, - aux_sym__double_quoted_string_content, - ACTIONS(4195), 2, - aux_sym__double_quoted_string_content_token1, - sym_escape_sequence, - [137909] = 5, + ACTIONS(4194), 1, + sym__newline, + ACTIONS(4196), 1, + sym__external_open_parenthesis, + STATE(1987), 1, + aux_sym_function_definition_repeat1, + STATE(2012), 1, + sym__open_parenthesis, + [137927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(3756), 1, sym__newline, ACTIONS(4198), 1, sym__external_open_parenthesis, - STATE(1084), 1, - sym__open_parenthesis, - STATE(2018), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [137925] = 5, + STATE(2013), 1, + sym__open_parenthesis, + [137943] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4200), 1, sym__newline, ACTIONS(4202), 1, sym__external_open_parenthesis, - STATE(1085), 1, - sym__open_parenthesis, - STATE(1986), 1, + STATE(1989), 1, aux_sym_function_definition_repeat1, - [137941] = 5, + STATE(2015), 1, + sym__open_parenthesis, + [137959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4204), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(4206), 1, + ACTIONS(4204), 1, sym__external_open_parenthesis, - STATE(1105), 1, - sym__open_parenthesis, - STATE(1990), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [137957] = 5, + STATE(2016), 1, + sym__open_parenthesis, + [137975] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, - sym_comma, + ACTIONS(4206), 1, + sym__newline, ACTIONS(4208), 1, - sym__external_close_bracket2, - STATE(371), 1, - sym__close_bracket2, - STATE(2003), 1, - aux_sym_call_arguments_repeat1, - [137973] = 5, + sym__external_open_parenthesis, + STATE(1991), 1, + aux_sym_function_definition_repeat1, + STATE(2018), 1, + sym__open_parenthesis, + [137991] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(3756), 1, sym__newline, ACTIONS(4210), 1, sym__external_open_parenthesis, - STATE(1098), 1, - sym__open_parenthesis, - STATE(2018), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [137989] = 5, + STATE(2019), 1, + sym__open_parenthesis, + [138007] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym__newline, ACTIONS(4212), 1, + sym__newline, + ACTIONS(4214), 1, sym__external_open_parenthesis, - STATE(1093), 1, - sym__open_parenthesis, - STATE(2018), 1, + STATE(1993), 1, aux_sym_function_definition_repeat1, - [138005] = 5, + STATE(2020), 1, + sym__open_parenthesis, + [138023] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, - sym_comma, - ACTIONS(4214), 1, - sym__external_close_bracket2, - STATE(1635), 1, - sym__close_bracket2, - STATE(1861), 1, - aux_sym_call_arguments_repeat1, - [138021] = 5, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(4216), 1, + sym__external_open_parenthesis, + STATE(2001), 1, + aux_sym_function_definition_repeat1, + STATE(2021), 1, + sym__open_parenthesis, + [138039] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4216), 1, - sym__newline, ACTIONS(4218), 1, + sym__newline, + ACTIONS(4220), 1, sym__external_open_parenthesis, - STATE(1095), 1, - sym__open_parenthesis, - STATE(1991), 1, + STATE(1995), 1, aux_sym_function_definition_repeat1, - [138037] = 5, + STATE(2022), 1, + sym__open_parenthesis, + [138055] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4220), 1, + ACTIONS(3756), 1, sym__newline, ACTIONS(4222), 1, sym__external_open_parenthesis, - STATE(1069), 1, - sym__open_parenthesis, - STATE(1996), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [138053] = 5, + STATE(2023), 1, + sym__open_parenthesis, + [138071] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, - sym_comma, ACTIONS(4224), 1, - sym__external_close_bracket, - STATE(341), 1, - sym__close_bracket, - STATE(2020), 1, - aux_sym_call_arguments_repeat1, - [138069] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3752), 1, sym__newline, ACTIONS(4226), 1, sym__external_open_parenthesis, - STATE(1106), 1, - sym__open_parenthesis, - STATE(2018), 1, + STATE(1997), 1, aux_sym_function_definition_repeat1, - [138085] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(415), 1, - sym_comma, - ACTIONS(4228), 1, - sym__external_close_bracket2, - STATE(1734), 1, - sym__close_bracket2, - STATE(2003), 1, - aux_sym_call_arguments_repeat1, - [138101] = 5, + STATE(2025), 1, + sym__open_parenthesis, + [138087] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(4230), 1, + ACTIONS(4228), 1, sym__external_open_parenthesis, - STATE(1057), 1, - sym__open_parenthesis, - STATE(2018), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [138117] = 5, + STATE(2026), 1, + sym__open_parenthesis, + [138103] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, - sym_comma, + ACTIONS(4230), 1, + sym__newline, ACTIONS(4232), 1, - sym__external_close_bracket, - STATE(340), 1, - sym__close_bracket, - STATE(1855), 1, - aux_sym_call_arguments_repeat1, - [138133] = 5, + sym__external_open_parenthesis, + STATE(1999), 1, + aux_sym_function_definition_repeat1, + STATE(2027), 1, + sym__open_parenthesis, + [138119] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(4236), 1, + ACTIONS(4234), 1, sym__external_open_parenthesis, - STATE(1062), 1, - sym__open_parenthesis, - STATE(1998), 1, + STATE(2001), 1, aux_sym_function_definition_repeat1, - [138149] = 3, - ACTIONS(3786), 1, + STATE(2028), 1, + sym__open_parenthesis, + [138135] = 4, + ACTIONS(3788), 1, sym_comment, - ACTIONS(4238), 1, + ACTIONS(4236), 1, anon_sym_DQUOTE, - ACTIONS(4240), 2, + STATE(1885), 1, + aux_sym__double_quoted_string_content, + ACTIONS(3794), 2, aux_sym__double_quoted_string_content_token1, sym_escape_sequence, - [138160] = 2, + [138149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4242), 3, - sym_dots, - sym_dot_dot_i, - sym_identifier, - [138169] = 4, + ACTIONS(659), 1, + sym__external_open_parenthesis, + ACTIONS(4238), 1, + sym__newline, + STATE(2001), 1, + aux_sym_function_definition_repeat1, + [138162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4244), 1, + ACTIONS(4241), 1, sym_comma, - ACTIONS(4247), 1, - sym__external_close_bracket2, - STATE(2003), 1, - aux_sym_call_arguments_repeat1, - [138182] = 2, + ACTIONS(4244), 1, + sym__external_close_parenthesis, + STATE(2002), 1, + aux_sym_parameters_repeat1, + [138175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4249), 3, + ACTIONS(4246), 3, sym_dots, sym_dot_dot_i, sym_identifier, - [138191] = 2, + [138184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4251), 3, - sym_dots, - sym_dot_dot_i, - sym_identifier, - [138200] = 4, + ACTIONS(4248), 1, + sym_comma, + ACTIONS(4251), 1, + sym__external_close_parenthesis, + STATE(2004), 1, + aux_sym_call_arguments_repeat1, + [138197] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(4251), 1, + sym__external_close_bracket2, ACTIONS(4253), 1, sym_comma, - ACTIONS(4256), 1, + STATE(2005), 1, + aux_sym_call_arguments_repeat1, + [138210] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4256), 3, sym__external_close_parenthesis, - STATE(2006), 1, - aux_sym_parameters_repeat1, - [138213] = 2, + anon_sym_EQ, + sym_comma, + [138219] = 3, + ACTIONS(3788), 1, + sym_comment, + ACTIONS(4258), 1, + anon_sym_DQUOTE, + ACTIONS(4260), 2, + aux_sym__double_quoted_string_content_token1, + sym_escape_sequence, + [138230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4258), 3, + ACTIONS(4262), 3, sym_dots, sym_dot_dot_i, sym_identifier, - [138222] = 2, + [138239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4260), 3, + ACTIONS(4264), 3, sym_dots, sym_dot_dot_i, sym_identifier, - [138231] = 2, + [138248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 3, + ACTIONS(4266), 3, sym_dots, sym_dot_dot_i, sym_identifier, - [138240] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4247), 1, - sym__external_close_parenthesis, - ACTIONS(4264), 1, - sym_comma, - STATE(2010), 1, - aux_sym_call_arguments_repeat1, - [138253] = 3, + [138257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4267), 1, - anon_sym_EQ, - ACTIONS(4269), 2, - sym__external_close_parenthesis, - sym_comma, - [138264] = 2, + ACTIONS(4268), 3, + sym_dots, + sym_dot_dot_i, + sym_identifier, + [138266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4271), 3, + ACTIONS(4270), 3, sym_dots, sym_dot_dot_i, sym_identifier, - [138273] = 2, + [138275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4273), 3, + ACTIONS(4272), 3, sym_dots, sym_dot_dot_i, sym_identifier, - [138282] = 3, - ACTIONS(3786), 1, + [138284] = 3, + ACTIONS(3788), 1, sym_comment, - ACTIONS(4275), 1, + ACTIONS(4274), 1, anon_sym_SQUOTE, - ACTIONS(4277), 2, + ACTIONS(4276), 2, aux_sym__single_quoted_string_content_token1, sym_escape_sequence, - [138293] = 2, + [138295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4279), 3, + ACTIONS(4278), 3, sym_dots, sym_dot_dot_i, sym_identifier, - [138302] = 2, + [138304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4281), 3, - sym__external_close_parenthesis, - anon_sym_EQ, + ACTIONS(4280), 3, + sym_dots, + sym_dot_dot_i, + sym_identifier, + [138313] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4251), 1, + sym__external_close_bracket, + ACTIONS(4282), 1, sym_comma, - [138311] = 2, + STATE(2017), 1, + aux_sym_call_arguments_repeat1, + [138326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4283), 3, + ACTIONS(4285), 3, sym_dots, sym_dot_dot_i, sym_identifier, - [138320] = 4, + [138335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, - sym__external_open_parenthesis, - ACTIONS(4285), 1, - sym__newline, - STATE(2018), 1, - aux_sym_function_definition_repeat1, - [138333] = 2, + ACTIONS(4287), 3, + sym_dots, + sym_dot_dot_i, + sym_identifier, + [138344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4288), 3, + ACTIONS(4289), 3, sym_dots, sym_dot_dot_i, sym_identifier, - [138342] = 4, + [138353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4247), 1, - sym__external_close_bracket, - ACTIONS(4290), 1, - sym_comma, - STATE(2020), 1, - aux_sym_call_arguments_repeat1, - [138355] = 2, + ACTIONS(4291), 3, + sym_dots, + sym_dot_dot_i, + sym_identifier, + [138362] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4293), 3, sym_dots, sym_dot_dot_i, sym_identifier, - [138364] = 2, + [138371] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4295), 3, sym_dots, sym_dot_dot_i, sym_identifier, - [138373] = 2, + [138380] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4297), 3, sym_dots, sym_dot_dot_i, sym_identifier, - [138382] = 2, + [138389] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4299), 3, sym_dots, sym_dot_dot_i, sym_identifier, - [138391] = 2, + [138398] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4301), 3, sym_dots, sym_dot_dot_i, sym_identifier, - [138400] = 2, + [138407] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4303), 3, sym_dots, sym_dot_dot_i, sym_identifier, - [138409] = 2, + [138416] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4305), 3, sym_dots, sym_dot_dot_i, sym_identifier, - [138418] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4307), 3, - sym_dots, - sym_dot_dot_i, - sym_identifier, - [138427] = 2, + [138425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4309), 3, - sym_dots, - sym_dot_dot_i, - sym_identifier, + ACTIONS(4307), 1, + anon_sym_EQ, + ACTIONS(4309), 2, + sym__external_close_parenthesis, + sym_comma, [138436] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4311), 2, - sym__external_close_bracket, + sym__external_close_parenthesis, sym_comma, [138444] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4313), 2, - sym__external_close_bracket, + sym__external_close_parenthesis, sym_comma, [138452] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4315), 2, - sym__external_close_bracket2, + sym__external_close_bracket, sym_comma, [138460] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4317), 2, - sym__external_close_bracket, + sym__external_close_bracket2, sym_comma, [138468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4319), 2, - sym__external_close_bracket, + sym__external_close_parenthesis, sym_comma, [138476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4311), 2, - sym__external_close_parenthesis, + ACTIONS(4313), 2, + sym__external_close_bracket2, sym_comma, [138484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(4321), 2, sym__external_close_parenthesis, sym_comma, [138492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 2, + ACTIONS(4323), 2, sym__external_close_parenthesis, sym_comma, [138500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4317), 2, - sym__external_close_parenthesis, + ACTIONS(4323), 2, + sym__external_close_bracket2, sym_comma, [138508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4321), 2, + ACTIONS(4317), 2, sym__external_close_parenthesis, sym_comma, [138516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 2, + ACTIONS(4315), 2, sym__external_close_bracket2, sym_comma, [138524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 2, - sym__external_close_bracket2, + ACTIONS(4323), 2, + sym__external_close_bracket, sym_comma, [138532] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4317), 2, - sym__external_close_bracket2, + sym__external_close_bracket, sym_comma, [138540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4323), 2, - sym__external_close_parenthesis, + ACTIONS(4311), 2, + sym__external_close_bracket, sym_comma, [138548] = 2, ACTIONS(3), 1, @@ -143039,20 +143039,20 @@ static const uint16_t ts_small_parse_table[] = { [138556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4315), 2, - sym__external_close_parenthesis, + ACTIONS(4313), 2, + sym__external_close_bracket, sym_comma, [138564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4311), 2, - sym__external_close_bracket2, + ACTIONS(4315), 2, + sym__external_close_parenthesis, sym_comma, [138572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4315), 2, - sym__external_close_bracket, + ACTIONS(4311), 2, + sym__external_close_bracket2, sym_comma, [138580] = 2, ACTIONS(3), 1, @@ -143083,7 +143083,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 1, sym_comment, ACTIONS(4337), 1, - anon_sym_in, + ts_builtin_sym_end, [138622] = 2, ACTIONS(3), 1, sym_comment, @@ -143113,7 +143113,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 1, sym_comment, ACTIONS(4349), 1, - anon_sym_in, + anon_sym_EQ, [138664] = 2, ACTIONS(3), 1, sym_comment, @@ -143128,17 +143128,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 1, sym_comment, ACTIONS(4355), 1, - anon_sym_EQ, + anon_sym_in, [138685] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4357), 1, - anon_sym_EQ, + anon_sym_in, [138692] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4359), 1, - ts_builtin_sym_end, + anon_sym_in, [138699] = 2, ACTIONS(3), 1, sym_comment, @@ -143173,7 +143173,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 1, sym_comment, ACTIONS(4373), 1, - anon_sym_in, + anon_sym_EQ, }; static const uint32_t ts_small_parse_table_map[] = { @@ -143866,10 +143866,10 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1131)] = 83296, [SMALL_STATE(1132)] = 83362, [SMALL_STATE(1133)] = 83428, - [SMALL_STATE(1134)] = 83493, - [SMALL_STATE(1135)] = 83558, - [SMALL_STATE(1136)] = 83613, - [SMALL_STATE(1137)] = 83678, + [SMALL_STATE(1134)] = 83483, + [SMALL_STATE(1135)] = 83538, + [SMALL_STATE(1136)] = 83603, + [SMALL_STATE(1137)] = 83668, [SMALL_STATE(1138)] = 83733, [SMALL_STATE(1139)] = 83788, [SMALL_STATE(1140)] = 83896, @@ -143878,19 +143878,19 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1143)] = 84220, [SMALL_STATE(1144)] = 84328, [SMALL_STATE(1145)] = 84436, - [SMALL_STATE(1146)] = 84544, - [SMALL_STATE(1147)] = 84652, - [SMALL_STATE(1148)] = 84760, - [SMALL_STATE(1149)] = 84868, - [SMALL_STATE(1150)] = 84976, - [SMALL_STATE(1151)] = 85084, - [SMALL_STATE(1152)] = 85192, - [SMALL_STATE(1153)] = 85246, - [SMALL_STATE(1154)] = 85354, - [SMALL_STATE(1155)] = 85462, - [SMALL_STATE(1156)] = 85570, - [SMALL_STATE(1157)] = 85678, - [SMALL_STATE(1158)] = 85732, + [SMALL_STATE(1146)] = 84490, + [SMALL_STATE(1147)] = 84598, + [SMALL_STATE(1148)] = 84652, + [SMALL_STATE(1149)] = 84706, + [SMALL_STATE(1150)] = 84814, + [SMALL_STATE(1151)] = 84922, + [SMALL_STATE(1152)] = 85030, + [SMALL_STATE(1153)] = 85138, + [SMALL_STATE(1154)] = 85246, + [SMALL_STATE(1155)] = 85354, + [SMALL_STATE(1156)] = 85462, + [SMALL_STATE(1157)] = 85570, + [SMALL_STATE(1158)] = 85678, [SMALL_STATE(1159)] = 85786, [SMALL_STATE(1160)] = 85894, [SMALL_STATE(1161)] = 86002, @@ -143899,470 +143899,470 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1164)] = 86326, [SMALL_STATE(1165)] = 86434, [SMALL_STATE(1166)] = 86542, - [SMALL_STATE(1167)] = 86645, - [SMALL_STATE(1168)] = 86716, + [SMALL_STATE(1167)] = 86643, + [SMALL_STATE(1168)] = 86718, [SMALL_STATE(1169)] = 86789, - [SMALL_STATE(1170)] = 86860, - [SMALL_STATE(1171)] = 86931, - [SMALL_STATE(1172)] = 87034, - [SMALL_STATE(1173)] = 87137, - [SMALL_STATE(1174)] = 87240, - [SMALL_STATE(1175)] = 87343, - [SMALL_STATE(1176)] = 87446, - [SMALL_STATE(1177)] = 87549, - [SMALL_STATE(1178)] = 87652, - [SMALL_STATE(1179)] = 87755, - [SMALL_STATE(1180)] = 87858, - [SMALL_STATE(1181)] = 87961, - [SMALL_STATE(1182)] = 88052, - [SMALL_STATE(1183)] = 88125, - [SMALL_STATE(1184)] = 88228, - [SMALL_STATE(1185)] = 88331, - [SMALL_STATE(1186)] = 88434, - [SMALL_STATE(1187)] = 88517, - [SMALL_STATE(1188)] = 88588, - [SMALL_STATE(1189)] = 88691, - [SMALL_STATE(1190)] = 88794, - [SMALL_STATE(1191)] = 88891, - [SMALL_STATE(1192)] = 88994, - [SMALL_STATE(1193)] = 89097, - [SMALL_STATE(1194)] = 89172, - [SMALL_STATE(1195)] = 89275, - [SMALL_STATE(1196)] = 89378, - [SMALL_STATE(1197)] = 89481, - [SMALL_STATE(1198)] = 89584, - [SMALL_STATE(1199)] = 89687, - [SMALL_STATE(1200)] = 89790, - [SMALL_STATE(1201)] = 89893, - [SMALL_STATE(1202)] = 89996, - [SMALL_STATE(1203)] = 90099, - [SMALL_STATE(1204)] = 90170, - [SMALL_STATE(1205)] = 90243, - [SMALL_STATE(1206)] = 90346, - [SMALL_STATE(1207)] = 90449, - [SMALL_STATE(1208)] = 90520, - [SMALL_STATE(1209)] = 90623, - [SMALL_STATE(1210)] = 90726, - [SMALL_STATE(1211)] = 90829, - [SMALL_STATE(1212)] = 90904, - [SMALL_STATE(1213)] = 91007, - [SMALL_STATE(1214)] = 91110, - [SMALL_STATE(1215)] = 91193, - [SMALL_STATE(1216)] = 91296, - [SMALL_STATE(1217)] = 91399, - [SMALL_STATE(1218)] = 91486, - [SMALL_STATE(1219)] = 91557, - [SMALL_STATE(1220)] = 91658, - [SMALL_STATE(1221)] = 91745, - [SMALL_STATE(1222)] = 91836, - [SMALL_STATE(1223)] = 91933, - [SMALL_STATE(1224)] = 92036, - [SMALL_STATE(1225)] = 92139, - [SMALL_STATE(1226)] = 92234, - [SMALL_STATE(1227)] = 92313, - [SMALL_STATE(1228)] = 92416, - [SMALL_STATE(1229)] = 92513, - [SMALL_STATE(1230)] = 92604, - [SMALL_STATE(1231)] = 92691, - [SMALL_STATE(1232)] = 92774, - [SMALL_STATE(1233)] = 92849, - [SMALL_STATE(1234)] = 92928, - [SMALL_STATE(1235)] = 93007, - [SMALL_STATE(1236)] = 93110, - [SMALL_STATE(1237)] = 93205, - [SMALL_STATE(1238)] = 93300, - [SMALL_STATE(1239)] = 93403, - [SMALL_STATE(1240)] = 93504, - [SMALL_STATE(1241)] = 93607, - [SMALL_STATE(1242)] = 93708, - [SMALL_STATE(1243)] = 93811, - [SMALL_STATE(1244)] = 93882, - [SMALL_STATE(1245)] = 93969, - [SMALL_STATE(1246)] = 94064, - [SMALL_STATE(1247)] = 94167, - [SMALL_STATE(1248)] = 94270, - [SMALL_STATE(1249)] = 94373, - [SMALL_STATE(1250)] = 94476, - [SMALL_STATE(1251)] = 94547, - [SMALL_STATE(1252)] = 94620, - [SMALL_STATE(1253)] = 94691, - [SMALL_STATE(1254)] = 94766, - [SMALL_STATE(1255)] = 94849, - [SMALL_STATE(1256)] = 94936, - [SMALL_STATE(1257)] = 95027, - [SMALL_STATE(1258)] = 95124, - [SMALL_STATE(1259)] = 95195, - [SMALL_STATE(1260)] = 95298, - [SMALL_STATE(1261)] = 95385, - [SMALL_STATE(1262)] = 95480, - [SMALL_STATE(1263)] = 95583, - [SMALL_STATE(1264)] = 95686, - [SMALL_STATE(1265)] = 95765, - [SMALL_STATE(1266)] = 95860, - [SMALL_STATE(1267)] = 95963, - [SMALL_STATE(1268)] = 96064, - [SMALL_STATE(1269)] = 96135, - [SMALL_STATE(1270)] = 96222, - [SMALL_STATE(1271)] = 96317, - [SMALL_STATE(1272)] = 96420, - [SMALL_STATE(1273)] = 96523, - [SMALL_STATE(1274)] = 96626, - [SMALL_STATE(1275)] = 96697, - [SMALL_STATE(1276)] = 96784, - [SMALL_STATE(1277)] = 96879, - [SMALL_STATE(1278)] = 96982, - [SMALL_STATE(1279)] = 97085, - [SMALL_STATE(1280)] = 97188, - [SMALL_STATE(1281)] = 97291, - [SMALL_STATE(1282)] = 97394, - [SMALL_STATE(1283)] = 97497, - [SMALL_STATE(1284)] = 97600, - [SMALL_STATE(1285)] = 97703, - [SMALL_STATE(1286)] = 97806, - [SMALL_STATE(1287)] = 97909, - [SMALL_STATE(1288)] = 98012, - [SMALL_STATE(1289)] = 98115, - [SMALL_STATE(1290)] = 98218, - [SMALL_STATE(1291)] = 98321, - [SMALL_STATE(1292)] = 98424, - [SMALL_STATE(1293)] = 98527, - [SMALL_STATE(1294)] = 98630, - [SMALL_STATE(1295)] = 98733, - [SMALL_STATE(1296)] = 98836, - [SMALL_STATE(1297)] = 98907, - [SMALL_STATE(1298)] = 98980, - [SMALL_STATE(1299)] = 99051, - [SMALL_STATE(1300)] = 99126, - [SMALL_STATE(1301)] = 99209, - [SMALL_STATE(1302)] = 99296, - [SMALL_STATE(1303)] = 99387, - [SMALL_STATE(1304)] = 99484, - [SMALL_STATE(1305)] = 99587, - [SMALL_STATE(1306)] = 99666, - [SMALL_STATE(1307)] = 99761, - [SMALL_STATE(1308)] = 99864, - [SMALL_STATE(1309)] = 99965, - [SMALL_STATE(1310)] = 100068, - [SMALL_STATE(1311)] = 100171, - [SMALL_STATE(1312)] = 100242, - [SMALL_STATE(1313)] = 100315, - [SMALL_STATE(1314)] = 100386, - [SMALL_STATE(1315)] = 100461, - [SMALL_STATE(1316)] = 100544, - [SMALL_STATE(1317)] = 100631, - [SMALL_STATE(1318)] = 100722, - [SMALL_STATE(1319)] = 100819, - [SMALL_STATE(1320)] = 100922, - [SMALL_STATE(1321)] = 101001, - [SMALL_STATE(1322)] = 101096, - [SMALL_STATE(1323)] = 101199, + [SMALL_STATE(1170)] = 86862, + [SMALL_STATE(1171)] = 86933, + [SMALL_STATE(1172)] = 87036, + [SMALL_STATE(1173)] = 87139, + [SMALL_STATE(1174)] = 87242, + [SMALL_STATE(1175)] = 87345, + [SMALL_STATE(1176)] = 87448, + [SMALL_STATE(1177)] = 87519, + [SMALL_STATE(1178)] = 87622, + [SMALL_STATE(1179)] = 87725, + [SMALL_STATE(1180)] = 87828, + [SMALL_STATE(1181)] = 87931, + [SMALL_STATE(1182)] = 88034, + [SMALL_STATE(1183)] = 88137, + [SMALL_STATE(1184)] = 88240, + [SMALL_STATE(1185)] = 88343, + [SMALL_STATE(1186)] = 88446, + [SMALL_STATE(1187)] = 88549, + [SMALL_STATE(1188)] = 88652, + [SMALL_STATE(1189)] = 88755, + [SMALL_STATE(1190)] = 88858, + [SMALL_STATE(1191)] = 88961, + [SMALL_STATE(1192)] = 89056, + [SMALL_STATE(1193)] = 89143, + [SMALL_STATE(1194)] = 89214, + [SMALL_STATE(1195)] = 89317, + [SMALL_STATE(1196)] = 89420, + [SMALL_STATE(1197)] = 89523, + [SMALL_STATE(1198)] = 89626, + [SMALL_STATE(1199)] = 89729, + [SMALL_STATE(1200)] = 89824, + [SMALL_STATE(1201)] = 89911, + [SMALL_STATE(1202)] = 89982, + [SMALL_STATE(1203)] = 90085, + [SMALL_STATE(1204)] = 90188, + [SMALL_STATE(1205)] = 90283, + [SMALL_STATE(1206)] = 90362, + [SMALL_STATE(1207)] = 90465, + [SMALL_STATE(1208)] = 90562, + [SMALL_STATE(1209)] = 90653, + [SMALL_STATE(1210)] = 90740, + [SMALL_STATE(1211)] = 90843, + [SMALL_STATE(1212)] = 90926, + [SMALL_STATE(1213)] = 91001, + [SMALL_STATE(1214)] = 91072, + [SMALL_STATE(1215)] = 91145, + [SMALL_STATE(1216)] = 91246, + [SMALL_STATE(1217)] = 91317, + [SMALL_STATE(1218)] = 91420, + [SMALL_STATE(1219)] = 91523, + [SMALL_STATE(1220)] = 91626, + [SMALL_STATE(1221)] = 91727, + [SMALL_STATE(1222)] = 91830, + [SMALL_STATE(1223)] = 91925, + [SMALL_STATE(1224)] = 92004, + [SMALL_STATE(1225)] = 92107, + [SMALL_STATE(1226)] = 92204, + [SMALL_STATE(1227)] = 92295, + [SMALL_STATE(1228)] = 92382, + [SMALL_STATE(1229)] = 92465, + [SMALL_STATE(1230)] = 92540, + [SMALL_STATE(1231)] = 92611, + [SMALL_STATE(1232)] = 92684, + [SMALL_STATE(1233)] = 92755, + [SMALL_STATE(1234)] = 92858, + [SMALL_STATE(1235)] = 92961, + [SMALL_STATE(1236)] = 93064, + [SMALL_STATE(1237)] = 93167, + [SMALL_STATE(1238)] = 93270, + [SMALL_STATE(1239)] = 93373, + [SMALL_STATE(1240)] = 93476, + [SMALL_STATE(1241)] = 93579, + [SMALL_STATE(1242)] = 93682, + [SMALL_STATE(1243)] = 93785, + [SMALL_STATE(1244)] = 93888, + [SMALL_STATE(1245)] = 93991, + [SMALL_STATE(1246)] = 94094, + [SMALL_STATE(1247)] = 94197, + [SMALL_STATE(1248)] = 94300, + [SMALL_STATE(1249)] = 94403, + [SMALL_STATE(1250)] = 94506, + [SMALL_STATE(1251)] = 94601, + [SMALL_STATE(1252)] = 94680, + [SMALL_STATE(1253)] = 94783, + [SMALL_STATE(1254)] = 94880, + [SMALL_STATE(1255)] = 94963, + [SMALL_STATE(1256)] = 95050, + [SMALL_STATE(1257)] = 95133, + [SMALL_STATE(1258)] = 95208, + [SMALL_STATE(1259)] = 95279, + [SMALL_STATE(1260)] = 95352, + [SMALL_STATE(1261)] = 95423, + [SMALL_STATE(1262)] = 95526, + [SMALL_STATE(1263)] = 95629, + [SMALL_STATE(1264)] = 95724, + [SMALL_STATE(1265)] = 95827, + [SMALL_STATE(1266)] = 95930, + [SMALL_STATE(1267)] = 96033, + [SMALL_STATE(1268)] = 96136, + [SMALL_STATE(1269)] = 96223, + [SMALL_STATE(1270)] = 96326, + [SMALL_STATE(1271)] = 96429, + [SMALL_STATE(1272)] = 96532, + [SMALL_STATE(1273)] = 96635, + [SMALL_STATE(1274)] = 96738, + [SMALL_STATE(1275)] = 96841, + [SMALL_STATE(1276)] = 96944, + [SMALL_STATE(1277)] = 97047, + [SMALL_STATE(1278)] = 97150, + [SMALL_STATE(1279)] = 97253, + [SMALL_STATE(1280)] = 97356, + [SMALL_STATE(1281)] = 97459, + [SMALL_STATE(1282)] = 97530, + [SMALL_STATE(1283)] = 97633, + [SMALL_STATE(1284)] = 97736, + [SMALL_STATE(1285)] = 97831, + [SMALL_STATE(1286)] = 97918, + [SMALL_STATE(1287)] = 97989, + [SMALL_STATE(1288)] = 98090, + [SMALL_STATE(1289)] = 98193, + [SMALL_STATE(1290)] = 98288, + [SMALL_STATE(1291)] = 98391, + [SMALL_STATE(1292)] = 98494, + [SMALL_STATE(1293)] = 98589, + [SMALL_STATE(1294)] = 98676, + [SMALL_STATE(1295)] = 98747, + [SMALL_STATE(1296)] = 98826, + [SMALL_STATE(1297)] = 98929, + [SMALL_STATE(1298)] = 99026, + [SMALL_STATE(1299)] = 99117, + [SMALL_STATE(1300)] = 99204, + [SMALL_STATE(1301)] = 99287, + [SMALL_STATE(1302)] = 99390, + [SMALL_STATE(1303)] = 99465, + [SMALL_STATE(1304)] = 99568, + [SMALL_STATE(1305)] = 99671, + [SMALL_STATE(1306)] = 99766, + [SMALL_STATE(1307)] = 99853, + [SMALL_STATE(1308)] = 99924, + [SMALL_STATE(1309)] = 100025, + [SMALL_STATE(1310)] = 100128, + [SMALL_STATE(1311)] = 100223, + [SMALL_STATE(1312)] = 100302, + [SMALL_STATE(1313)] = 100405, + [SMALL_STATE(1314)] = 100502, + [SMALL_STATE(1315)] = 100593, + [SMALL_STATE(1316)] = 100680, + [SMALL_STATE(1317)] = 100751, + [SMALL_STATE(1318)] = 100834, + [SMALL_STATE(1319)] = 100909, + [SMALL_STATE(1320)] = 100980, + [SMALL_STATE(1321)] = 101053, + [SMALL_STATE(1322)] = 101124, + [SMALL_STATE(1323)] = 101197, [SMALL_STATE(1324)] = 101300, [SMALL_STATE(1325)] = 101403, - [SMALL_STATE(1326)] = 101498, - [SMALL_STATE(1327)] = 101601, - [SMALL_STATE(1328)] = 101688, - [SMALL_STATE(1329)] = 101791, - [SMALL_STATE(1330)] = 101862, - [SMALL_STATE(1331)] = 101957, - [SMALL_STATE(1332)] = 102060, - [SMALL_STATE(1333)] = 102147, + [SMALL_STATE(1326)] = 101504, + [SMALL_STATE(1327)] = 101607, + [SMALL_STATE(1328)] = 101702, + [SMALL_STATE(1329)] = 101781, + [SMALL_STATE(1330)] = 101884, + [SMALL_STATE(1331)] = 101981, + [SMALL_STATE(1332)] = 102072, + [SMALL_STATE(1333)] = 102159, [SMALL_STATE(1334)] = 102250, - [SMALL_STATE(1335)] = 102356, - [SMALL_STATE(1336)] = 102462, - [SMALL_STATE(1337)] = 102548, - [SMALL_STATE(1338)] = 102618, - [SMALL_STATE(1339)] = 102696, - [SMALL_STATE(1340)] = 102798, - [SMALL_STATE(1341)] = 102900, - [SMALL_STATE(1342)] = 103002, - [SMALL_STATE(1343)] = 103104, - [SMALL_STATE(1344)] = 103206, - [SMALL_STATE(1345)] = 103308, - [SMALL_STATE(1346)] = 103404, - [SMALL_STATE(1347)] = 103508, - [SMALL_STATE(1348)] = 103610, - [SMALL_STATE(1349)] = 103704, - [SMALL_STATE(1350)] = 103782, - [SMALL_STATE(1351)] = 103884, - [SMALL_STATE(1352)] = 103980, - [SMALL_STATE(1353)] = 104070, - [SMALL_STATE(1354)] = 104156, - [SMALL_STATE(1355)] = 104258, - [SMALL_STATE(1356)] = 104360, - [SMALL_STATE(1357)] = 104442, - [SMALL_STATE(1358)] = 104516, - [SMALL_STATE(1359)] = 104586, - [SMALL_STATE(1360)] = 104658, - [SMALL_STATE(1361)] = 104728, - [SMALL_STATE(1362)] = 104834, - [SMALL_STATE(1363)] = 104940, - [SMALL_STATE(1364)] = 105046, - [SMALL_STATE(1365)] = 105152, - [SMALL_STATE(1366)] = 105254, - [SMALL_STATE(1367)] = 105356, - [SMALL_STATE(1368)] = 105458, - [SMALL_STATE(1369)] = 105564, - [SMALL_STATE(1370)] = 105666, - [SMALL_STATE(1371)] = 105768, - [SMALL_STATE(1372)] = 105870, - [SMALL_STATE(1373)] = 105974, - [SMALL_STATE(1374)] = 106076, - [SMALL_STATE(1375)] = 106166, - [SMALL_STATE(1376)] = 106268, - [SMALL_STATE(1377)] = 106374, - [SMALL_STATE(1378)] = 106480, - [SMALL_STATE(1379)] = 106586, - [SMALL_STATE(1380)] = 106692, - [SMALL_STATE(1381)] = 106786, - [SMALL_STATE(1382)] = 106888, - [SMALL_STATE(1383)] = 106994, - [SMALL_STATE(1384)] = 107096, - [SMALL_STATE(1385)] = 107202, - [SMALL_STATE(1386)] = 107308, - [SMALL_STATE(1387)] = 107394, - [SMALL_STATE(1388)] = 107500, - [SMALL_STATE(1389)] = 107582, - [SMALL_STATE(1390)] = 107684, - [SMALL_STATE(1391)] = 107786, - [SMALL_STATE(1392)] = 107892, - [SMALL_STATE(1393)] = 107994, - [SMALL_STATE(1394)] = 108096, - [SMALL_STATE(1395)] = 108198, - [SMALL_STATE(1396)] = 108298, - [SMALL_STATE(1397)] = 108398, - [SMALL_STATE(1398)] = 108472, - [SMALL_STATE(1399)] = 108578, - [SMALL_STATE(1400)] = 108680, - [SMALL_STATE(1401)] = 108750, - [SMALL_STATE(1402)] = 108822, - [SMALL_STATE(1403)] = 108924, - [SMALL_STATE(1404)] = 109026, - [SMALL_STATE(1405)] = 109128, - [SMALL_STATE(1406)] = 109230, - [SMALL_STATE(1407)] = 109332, - [SMALL_STATE(1408)] = 109434, - [SMALL_STATE(1409)] = 109536, - [SMALL_STATE(1410)] = 109638, - [SMALL_STATE(1411)] = 109740, - [SMALL_STATE(1412)] = 109842, - [SMALL_STATE(1413)] = 109944, - [SMALL_STATE(1414)] = 110046, - [SMALL_STATE(1415)] = 110148, - [SMALL_STATE(1416)] = 110218, - [SMALL_STATE(1417)] = 110320, - [SMALL_STATE(1418)] = 110426, - [SMALL_STATE(1419)] = 110532, - [SMALL_STATE(1420)] = 110634, - [SMALL_STATE(1421)] = 110740, - [SMALL_STATE(1422)] = 110846, - [SMALL_STATE(1423)] = 110916, - [SMALL_STATE(1424)] = 111016, - [SMALL_STATE(1425)] = 111118, - [SMALL_STATE(1426)] = 111220, - [SMALL_STATE(1427)] = 111322, - [SMALL_STATE(1428)] = 111424, - [SMALL_STATE(1429)] = 111496, - [SMALL_STATE(1430)] = 111566, - [SMALL_STATE(1431)] = 111672, - [SMALL_STATE(1432)] = 111746, - [SMALL_STATE(1433)] = 111852, - [SMALL_STATE(1434)] = 111934, - [SMALL_STATE(1435)] = 112020, - [SMALL_STATE(1436)] = 112110, - [SMALL_STATE(1437)] = 112206, - [SMALL_STATE(1438)] = 112312, - [SMALL_STATE(1439)] = 112418, - [SMALL_STATE(1440)] = 112524, - [SMALL_STATE(1441)] = 112630, - [SMALL_STATE(1442)] = 112732, - [SMALL_STATE(1443)] = 112836, - [SMALL_STATE(1444)] = 112938, - [SMALL_STATE(1445)] = 113044, - [SMALL_STATE(1446)] = 113146, - [SMALL_STATE(1447)] = 113248, - [SMALL_STATE(1448)] = 113354, - [SMALL_STATE(1449)] = 113448, - [SMALL_STATE(1450)] = 113518, - [SMALL_STATE(1451)] = 113604, - [SMALL_STATE(1452)] = 113676, - [SMALL_STATE(1453)] = 113782, - [SMALL_STATE(1454)] = 113852, - [SMALL_STATE(1455)] = 113958, - [SMALL_STATE(1456)] = 114064, - [SMALL_STATE(1457)] = 114166, - [SMALL_STATE(1458)] = 114236, - [SMALL_STATE(1459)] = 114338, - [SMALL_STATE(1460)] = 114440, - [SMALL_STATE(1461)] = 114546, - [SMALL_STATE(1462)] = 114648, - [SMALL_STATE(1463)] = 114754, - [SMALL_STATE(1464)] = 114860, - [SMALL_STATE(1465)] = 114962, - [SMALL_STATE(1466)] = 115036, - [SMALL_STATE(1467)] = 115118, - [SMALL_STATE(1468)] = 115224, - [SMALL_STATE(1469)] = 115330, - [SMALL_STATE(1470)] = 115432, - [SMALL_STATE(1471)] = 115538, - [SMALL_STATE(1472)] = 115644, - [SMALL_STATE(1473)] = 115750, - [SMALL_STATE(1474)] = 115856, - [SMALL_STATE(1475)] = 115958, - [SMALL_STATE(1476)] = 116060, - [SMALL_STATE(1477)] = 116166, - [SMALL_STATE(1478)] = 116268, - [SMALL_STATE(1479)] = 116374, - [SMALL_STATE(1480)] = 116480, - [SMALL_STATE(1481)] = 116582, - [SMALL_STATE(1482)] = 116684, - [SMALL_STATE(1483)] = 116790, - [SMALL_STATE(1484)] = 116892, - [SMALL_STATE(1485)] = 116998, - [SMALL_STATE(1486)] = 117100, - [SMALL_STATE(1487)] = 117202, - [SMALL_STATE(1488)] = 117308, - [SMALL_STATE(1489)] = 117410, - [SMALL_STATE(1490)] = 117488, - [SMALL_STATE(1491)] = 117594, - [SMALL_STATE(1492)] = 117680, - [SMALL_STATE(1493)] = 117770, - [SMALL_STATE(1494)] = 117876, - [SMALL_STATE(1495)] = 117982, - [SMALL_STATE(1496)] = 118084, - [SMALL_STATE(1497)] = 118180, - [SMALL_STATE(1498)] = 118282, - [SMALL_STATE(1499)] = 118384, - [SMALL_STATE(1500)] = 118490, - [SMALL_STATE(1501)] = 118568, - [SMALL_STATE(1502)] = 118670, - [SMALL_STATE(1503)] = 118764, - [SMALL_STATE(1504)] = 118866, - [SMALL_STATE(1505)] = 118966, - [SMALL_STATE(1506)] = 119072, - [SMALL_STATE(1507)] = 119174, - [SMALL_STATE(1508)] = 119276, - [SMALL_STATE(1509)] = 119378, - [SMALL_STATE(1510)] = 119484, - [SMALL_STATE(1511)] = 119578, - [SMALL_STATE(1512)] = 119648, - [SMALL_STATE(1513)] = 119754, - [SMALL_STATE(1514)] = 119860, - [SMALL_STATE(1515)] = 119946, - [SMALL_STATE(1516)] = 120052, - [SMALL_STATE(1517)] = 120122, - [SMALL_STATE(1518)] = 120228, - [SMALL_STATE(1519)] = 120300, - [SMALL_STATE(1520)] = 120406, - [SMALL_STATE(1521)] = 120476, - [SMALL_STATE(1522)] = 120570, - [SMALL_STATE(1523)] = 120640, - [SMALL_STATE(1524)] = 120726, - [SMALL_STATE(1525)] = 120828, - [SMALL_STATE(1526)] = 120934, - [SMALL_STATE(1527)] = 121034, - [SMALL_STATE(1528)] = 121140, - [SMALL_STATE(1529)] = 121246, - [SMALL_STATE(1530)] = 121348, - [SMALL_STATE(1531)] = 121422, - [SMALL_STATE(1532)] = 121528, - [SMALL_STATE(1533)] = 121610, - [SMALL_STATE(1534)] = 121716, - [SMALL_STATE(1535)] = 121818, - [SMALL_STATE(1536)] = 121888, - [SMALL_STATE(1537)] = 121982, - [SMALL_STATE(1538)] = 122054, - [SMALL_STATE(1539)] = 122148, - [SMALL_STATE(1540)] = 122218, - [SMALL_STATE(1541)] = 122304, - [SMALL_STATE(1542)] = 122378, - [SMALL_STATE(1543)] = 122472, - [SMALL_STATE(1544)] = 122554, - [SMALL_STATE(1545)] = 122660, - [SMALL_STATE(1546)] = 122746, + [SMALL_STATE(1335)] = 102344, + [SMALL_STATE(1336)] = 102446, + [SMALL_STATE(1337)] = 102546, + [SMALL_STATE(1338)] = 102648, + [SMALL_STATE(1339)] = 102742, + [SMALL_STATE(1340)] = 102820, + [SMALL_STATE(1341)] = 102922, + [SMALL_STATE(1342)] = 103018, + [SMALL_STATE(1343)] = 103108, + [SMALL_STATE(1344)] = 103194, + [SMALL_STATE(1345)] = 103276, + [SMALL_STATE(1346)] = 103378, + [SMALL_STATE(1347)] = 103452, + [SMALL_STATE(1348)] = 103522, + [SMALL_STATE(1349)] = 103594, + [SMALL_STATE(1350)] = 103664, + [SMALL_STATE(1351)] = 103766, + [SMALL_STATE(1352)] = 103868, + [SMALL_STATE(1353)] = 103970, + [SMALL_STATE(1354)] = 104072, + [SMALL_STATE(1355)] = 104174, + [SMALL_STATE(1356)] = 104276, + [SMALL_STATE(1357)] = 104378, + [SMALL_STATE(1358)] = 104480, + [SMALL_STATE(1359)] = 104582, + [SMALL_STATE(1360)] = 104688, + [SMALL_STATE(1361)] = 104790, + [SMALL_STATE(1362)] = 104894, + [SMALL_STATE(1363)] = 104988, + [SMALL_STATE(1364)] = 105090, + [SMALL_STATE(1365)] = 105176, + [SMALL_STATE(1366)] = 105278, + [SMALL_STATE(1367)] = 105380, + [SMALL_STATE(1368)] = 105482, + [SMALL_STATE(1369)] = 105584, + [SMALL_STATE(1370)] = 105654, + [SMALL_STATE(1371)] = 105756, + [SMALL_STATE(1372)] = 105862, + [SMALL_STATE(1373)] = 105964, + [SMALL_STATE(1374)] = 106066, + [SMALL_STATE(1375)] = 106168, + [SMALL_STATE(1376)] = 106246, + [SMALL_STATE(1377)] = 106348, + [SMALL_STATE(1378)] = 106450, + [SMALL_STATE(1379)] = 106552, + [SMALL_STATE(1380)] = 106654, + [SMALL_STATE(1381)] = 106756, + [SMALL_STATE(1382)] = 106858, + [SMALL_STATE(1383)] = 106960, + [SMALL_STATE(1384)] = 107062, + [SMALL_STATE(1385)] = 107164, + [SMALL_STATE(1386)] = 107266, + [SMALL_STATE(1387)] = 107368, + [SMALL_STATE(1388)] = 107470, + [SMALL_STATE(1389)] = 107572, + [SMALL_STATE(1390)] = 107674, + [SMALL_STATE(1391)] = 107776, + [SMALL_STATE(1392)] = 107878, + [SMALL_STATE(1393)] = 107980, + [SMALL_STATE(1394)] = 108082, + [SMALL_STATE(1395)] = 108184, + [SMALL_STATE(1396)] = 108280, + [SMALL_STATE(1397)] = 108374, + [SMALL_STATE(1398)] = 108460, + [SMALL_STATE(1399)] = 108530, + [SMALL_STATE(1400)] = 108636, + [SMALL_STATE(1401)] = 108736, + [SMALL_STATE(1402)] = 108838, + [SMALL_STATE(1403)] = 108944, + [SMALL_STATE(1404)] = 109038, + [SMALL_STATE(1405)] = 109116, + [SMALL_STATE(1406)] = 109218, + [SMALL_STATE(1407)] = 109314, + [SMALL_STATE(1408)] = 109404, + [SMALL_STATE(1409)] = 109490, + [SMALL_STATE(1410)] = 109572, + [SMALL_STATE(1411)] = 109674, + [SMALL_STATE(1412)] = 109748, + [SMALL_STATE(1413)] = 109850, + [SMALL_STATE(1414)] = 109952, + [SMALL_STATE(1415)] = 110022, + [SMALL_STATE(1416)] = 110128, + [SMALL_STATE(1417)] = 110230, + [SMALL_STATE(1418)] = 110336, + [SMALL_STATE(1419)] = 110408, + [SMALL_STATE(1420)] = 110478, + [SMALL_STATE(1421)] = 110568, + [SMALL_STATE(1422)] = 110670, + [SMALL_STATE(1423)] = 110756, + [SMALL_STATE(1424)] = 110838, + [SMALL_STATE(1425)] = 110940, + [SMALL_STATE(1426)] = 111014, + [SMALL_STATE(1427)] = 111116, + [SMALL_STATE(1428)] = 111210, + [SMALL_STATE(1429)] = 111296, + [SMALL_STATE(1430)] = 111366, + [SMALL_STATE(1431)] = 111436, + [SMALL_STATE(1432)] = 111508, + [SMALL_STATE(1433)] = 111608, + [SMALL_STATE(1434)] = 111678, + [SMALL_STATE(1435)] = 111780, + [SMALL_STATE(1436)] = 111882, + [SMALL_STATE(1437)] = 111976, + [SMALL_STATE(1438)] = 112078, + [SMALL_STATE(1439)] = 112180, + [SMALL_STATE(1440)] = 112282, + [SMALL_STATE(1441)] = 112360, + [SMALL_STATE(1442)] = 112462, + [SMALL_STATE(1443)] = 112564, + [SMALL_STATE(1444)] = 112658, + [SMALL_STATE(1445)] = 112754, + [SMALL_STATE(1446)] = 112858, + [SMALL_STATE(1447)] = 112948, + [SMALL_STATE(1448)] = 113034, + [SMALL_STATE(1449)] = 113136, + [SMALL_STATE(1450)] = 113238, + [SMALL_STATE(1451)] = 113340, + [SMALL_STATE(1452)] = 113442, + [SMALL_STATE(1453)] = 113548, + [SMALL_STATE(1454)] = 113654, + [SMALL_STATE(1455)] = 113760, + [SMALL_STATE(1456)] = 113860, + [SMALL_STATE(1457)] = 113962, + [SMALL_STATE(1458)] = 114068, + [SMALL_STATE(1459)] = 114162, + [SMALL_STATE(1460)] = 114256, + [SMALL_STATE(1461)] = 114334, + [SMALL_STATE(1462)] = 114440, + [SMALL_STATE(1463)] = 114542, + [SMALL_STATE(1464)] = 114628, + [SMALL_STATE(1465)] = 114724, + [SMALL_STATE(1466)] = 114814, + [SMALL_STATE(1467)] = 114916, + [SMALL_STATE(1468)] = 115002, + [SMALL_STATE(1469)] = 115088, + [SMALL_STATE(1470)] = 115158, + [SMALL_STATE(1471)] = 115240, + [SMALL_STATE(1472)] = 115346, + [SMALL_STATE(1473)] = 115452, + [SMALL_STATE(1474)] = 115558, + [SMALL_STATE(1475)] = 115664, + [SMALL_STATE(1476)] = 115770, + [SMALL_STATE(1477)] = 115876, + [SMALL_STATE(1478)] = 115982, + [SMALL_STATE(1479)] = 116088, + [SMALL_STATE(1480)] = 116162, + [SMALL_STATE(1481)] = 116268, + [SMALL_STATE(1482)] = 116338, + [SMALL_STATE(1483)] = 116444, + [SMALL_STATE(1484)] = 116516, + [SMALL_STATE(1485)] = 116586, + [SMALL_STATE(1486)] = 116692, + [SMALL_STATE(1487)] = 116798, + [SMALL_STATE(1488)] = 116904, + [SMALL_STATE(1489)] = 117010, + [SMALL_STATE(1490)] = 117116, + [SMALL_STATE(1491)] = 117222, + [SMALL_STATE(1492)] = 117328, + [SMALL_STATE(1493)] = 117430, + [SMALL_STATE(1494)] = 117536, + [SMALL_STATE(1495)] = 117642, + [SMALL_STATE(1496)] = 117748, + [SMALL_STATE(1497)] = 117850, + [SMALL_STATE(1498)] = 117956, + [SMALL_STATE(1499)] = 118062, + [SMALL_STATE(1500)] = 118168, + [SMALL_STATE(1501)] = 118270, + [SMALL_STATE(1502)] = 118376, + [SMALL_STATE(1503)] = 118482, + [SMALL_STATE(1504)] = 118584, + [SMALL_STATE(1505)] = 118690, + [SMALL_STATE(1506)] = 118796, + [SMALL_STATE(1507)] = 118902, + [SMALL_STATE(1508)] = 119004, + [SMALL_STATE(1509)] = 119098, + [SMALL_STATE(1510)] = 119204, + [SMALL_STATE(1511)] = 119290, + [SMALL_STATE(1512)] = 119396, + [SMALL_STATE(1513)] = 119466, + [SMALL_STATE(1514)] = 119572, + [SMALL_STATE(1515)] = 119678, + [SMALL_STATE(1516)] = 119784, + [SMALL_STATE(1517)] = 119886, + [SMALL_STATE(1518)] = 119992, + [SMALL_STATE(1519)] = 120098, + [SMALL_STATE(1520)] = 120200, + [SMALL_STATE(1521)] = 120302, + [SMALL_STATE(1522)] = 120408, + [SMALL_STATE(1523)] = 120514, + [SMALL_STATE(1524)] = 120620, + [SMALL_STATE(1525)] = 120726, + [SMALL_STATE(1526)] = 120832, + [SMALL_STATE(1527)] = 120914, + [SMALL_STATE(1528)] = 121016, + [SMALL_STATE(1529)] = 121122, + [SMALL_STATE(1530)] = 121192, + [SMALL_STATE(1531)] = 121292, + [SMALL_STATE(1532)] = 121398, + [SMALL_STATE(1533)] = 121472, + [SMALL_STATE(1534)] = 121574, + [SMALL_STATE(1535)] = 121676, + [SMALL_STATE(1536)] = 121778, + [SMALL_STATE(1537)] = 121884, + [SMALL_STATE(1538)] = 121954, + [SMALL_STATE(1539)] = 122060, + [SMALL_STATE(1540)] = 122160, + [SMALL_STATE(1541)] = 122266, + [SMALL_STATE(1542)] = 122338, + [SMALL_STATE(1543)] = 122440, + [SMALL_STATE(1544)] = 122534, + [SMALL_STATE(1545)] = 122640, + [SMALL_STATE(1546)] = 122710, [SMALL_STATE(1547)] = 122816, - [SMALL_STATE(1548)] = 122902, - [SMALL_STATE(1549)] = 122992, - [SMALL_STATE(1550)] = 123098, - [SMALL_STATE(1551)] = 123204, - [SMALL_STATE(1552)] = 123300, - [SMALL_STATE(1553)] = 123402, - [SMALL_STATE(1554)] = 123480, - [SMALL_STATE(1555)] = 123574, - [SMALL_STATE(1556)] = 123676, - [SMALL_STATE(1557)] = 123776, - [SMALL_STATE(1558)] = 123854, - [SMALL_STATE(1559)] = 123944, - [SMALL_STATE(1560)] = 124050, - [SMALL_STATE(1561)] = 124120, - [SMALL_STATE(1562)] = 124206, - [SMALL_STATE(1563)] = 124300, - [SMALL_STATE(1564)] = 124402, - [SMALL_STATE(1565)] = 124498, - [SMALL_STATE(1566)] = 124600, - [SMALL_STATE(1567)] = 124706, - [SMALL_STATE(1568)] = 124808, - [SMALL_STATE(1569)] = 124914, - [SMALL_STATE(1570)] = 125016, - [SMALL_STATE(1571)] = 125118, - [SMALL_STATE(1572)] = 125212, - [SMALL_STATE(1573)] = 125314, - [SMALL_STATE(1574)] = 125418, - [SMALL_STATE(1575)] = 125520, + [SMALL_STATE(1548)] = 122894, + [SMALL_STATE(1549)] = 122996, + [SMALL_STATE(1550)] = 123102, + [SMALL_STATE(1551)] = 123198, + [SMALL_STATE(1552)] = 123304, + [SMALL_STATE(1553)] = 123408, + [SMALL_STATE(1554)] = 123498, + [SMALL_STATE(1555)] = 123584, + [SMALL_STATE(1556)] = 123690, + [SMALL_STATE(1557)] = 123796, + [SMALL_STATE(1558)] = 123878, + [SMALL_STATE(1559)] = 123952, + [SMALL_STATE(1560)] = 124022, + [SMALL_STATE(1561)] = 124128, + [SMALL_STATE(1562)] = 124200, + [SMALL_STATE(1563)] = 124306, + [SMALL_STATE(1564)] = 124376, + [SMALL_STATE(1565)] = 124482, + [SMALL_STATE(1566)] = 124588, + [SMALL_STATE(1567)] = 124694, + [SMALL_STATE(1568)] = 124800, + [SMALL_STATE(1569)] = 124906, + [SMALL_STATE(1570)] = 125012, + [SMALL_STATE(1571)] = 125114, + [SMALL_STATE(1572)] = 125216, + [SMALL_STATE(1573)] = 125318, + [SMALL_STATE(1574)] = 125420, + [SMALL_STATE(1575)] = 125522, [SMALL_STATE(1576)] = 125626, [SMALL_STATE(1577)] = 125671, - [SMALL_STATE(1578)] = 125716, - [SMALL_STATE(1579)] = 125761, - [SMALL_STATE(1580)] = 125806, - [SMALL_STATE(1581)] = 125851, - [SMALL_STATE(1582)] = 125896, - [SMALL_STATE(1583)] = 125941, - [SMALL_STATE(1584)] = 125990, - [SMALL_STATE(1585)] = 126035, - [SMALL_STATE(1586)] = 126080, - [SMALL_STATE(1587)] = 126125, - [SMALL_STATE(1588)] = 126170, - [SMALL_STATE(1589)] = 126219, - [SMALL_STATE(1590)] = 126264, + [SMALL_STATE(1578)] = 125720, + [SMALL_STATE(1579)] = 125769, + [SMALL_STATE(1580)] = 125814, + [SMALL_STATE(1581)] = 125863, + [SMALL_STATE(1582)] = 125908, + [SMALL_STATE(1583)] = 125953, + [SMALL_STATE(1584)] = 125998, + [SMALL_STATE(1585)] = 126043, + [SMALL_STATE(1586)] = 126088, + [SMALL_STATE(1587)] = 126133, + [SMALL_STATE(1588)] = 126178, + [SMALL_STATE(1589)] = 126223, + [SMALL_STATE(1590)] = 126268, [SMALL_STATE(1591)] = 126313, - [SMALL_STATE(1592)] = 126362, - [SMALL_STATE(1593)] = 126411, + [SMALL_STATE(1592)] = 126358, + [SMALL_STATE(1593)] = 126407, [SMALL_STATE(1594)] = 126456, [SMALL_STATE(1595)] = 126501, [SMALL_STATE(1596)] = 126546, [SMALL_STATE(1597)] = 126591, [SMALL_STATE(1598)] = 126636, [SMALL_STATE(1599)] = 126681, - [SMALL_STATE(1600)] = 126726, - [SMALL_STATE(1601)] = 126771, + [SMALL_STATE(1600)] = 126730, + [SMALL_STATE(1601)] = 126775, [SMALL_STATE(1602)] = 126820, [SMALL_STATE(1603)] = 126865, [SMALL_STATE(1604)] = 126910, - [SMALL_STATE(1605)] = 126958, - [SMALL_STATE(1606)] = 127002, - [SMALL_STATE(1607)] = 127046, + [SMALL_STATE(1605)] = 126954, + [SMALL_STATE(1606)] = 126998, + [SMALL_STATE(1607)] = 127042, [SMALL_STATE(1608)] = 127090, - [SMALL_STATE(1609)] = 127140, - [SMALL_STATE(1610)] = 127188, - [SMALL_STATE(1611)] = 127232, - [SMALL_STATE(1612)] = 127280, - [SMALL_STATE(1613)] = 127324, - [SMALL_STATE(1614)] = 127368, - [SMALL_STATE(1615)] = 127412, - [SMALL_STATE(1616)] = 127456, - [SMALL_STATE(1617)] = 127500, - [SMALL_STATE(1618)] = 127544, - [SMALL_STATE(1619)] = 127588, - [SMALL_STATE(1620)] = 127632, + [SMALL_STATE(1609)] = 127138, + [SMALL_STATE(1610)] = 127186, + [SMALL_STATE(1611)] = 127234, + [SMALL_STATE(1612)] = 127278, + [SMALL_STATE(1613)] = 127322, + [SMALL_STATE(1614)] = 127366, + [SMALL_STATE(1615)] = 127410, + [SMALL_STATE(1616)] = 127454, + [SMALL_STATE(1617)] = 127498, + [SMALL_STATE(1618)] = 127542, + [SMALL_STATE(1619)] = 127586, + [SMALL_STATE(1620)] = 127634, [SMALL_STATE(1621)] = 127682, [SMALL_STATE(1622)] = 127726, - [SMALL_STATE(1623)] = 127776, - [SMALL_STATE(1624)] = 127820, - [SMALL_STATE(1625)] = 127868, - [SMALL_STATE(1626)] = 127916, - [SMALL_STATE(1627)] = 127960, - [SMALL_STATE(1628)] = 128008, - [SMALL_STATE(1629)] = 128052, - [SMALL_STATE(1630)] = 128100, + [SMALL_STATE(1623)] = 127770, + [SMALL_STATE(1624)] = 127814, + [SMALL_STATE(1625)] = 127858, + [SMALL_STATE(1626)] = 127902, + [SMALL_STATE(1627)] = 127950, + [SMALL_STATE(1628)] = 128000, + [SMALL_STATE(1629)] = 128050, + [SMALL_STATE(1630)] = 128094, [SMALL_STATE(1631)] = 128144, [SMALL_STATE(1632)] = 128188, [SMALL_STATE(1633)] = 128232, @@ -144448,75 +144448,75 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1713)] = 131671, [SMALL_STATE(1714)] = 131713, [SMALL_STATE(1715)] = 131755, - [SMALL_STATE(1716)] = 131799, - [SMALL_STATE(1717)] = 131841, - [SMALL_STATE(1718)] = 131883, - [SMALL_STATE(1719)] = 131925, - [SMALL_STATE(1720)] = 131969, - [SMALL_STATE(1721)] = 132011, - [SMALL_STATE(1722)] = 132053, - [SMALL_STATE(1723)] = 132095, - [SMALL_STATE(1724)] = 132137, - [SMALL_STATE(1725)] = 132179, - [SMALL_STATE(1726)] = 132221, - [SMALL_STATE(1727)] = 132263, - [SMALL_STATE(1728)] = 132305, - [SMALL_STATE(1729)] = 132347, - [SMALL_STATE(1730)] = 132389, - [SMALL_STATE(1731)] = 132431, - [SMALL_STATE(1732)] = 132473, - [SMALL_STATE(1733)] = 132515, - [SMALL_STATE(1734)] = 132557, - [SMALL_STATE(1735)] = 132599, - [SMALL_STATE(1736)] = 132641, - [SMALL_STATE(1737)] = 132683, - [SMALL_STATE(1738)] = 132725, - [SMALL_STATE(1739)] = 132767, - [SMALL_STATE(1740)] = 132809, - [SMALL_STATE(1741)] = 132851, - [SMALL_STATE(1742)] = 132893, - [SMALL_STATE(1743)] = 132935, - [SMALL_STATE(1744)] = 132977, - [SMALL_STATE(1745)] = 133019, - [SMALL_STATE(1746)] = 133061, - [SMALL_STATE(1747)] = 133103, - [SMALL_STATE(1748)] = 133145, - [SMALL_STATE(1749)] = 133187, - [SMALL_STATE(1750)] = 133229, - [SMALL_STATE(1751)] = 133273, - [SMALL_STATE(1752)] = 133315, - [SMALL_STATE(1753)] = 133357, - [SMALL_STATE(1754)] = 133399, - [SMALL_STATE(1755)] = 133441, - [SMALL_STATE(1756)] = 133483, - [SMALL_STATE(1757)] = 133525, - [SMALL_STATE(1758)] = 133567, - [SMALL_STATE(1759)] = 133609, - [SMALL_STATE(1760)] = 133651, - [SMALL_STATE(1761)] = 133693, - [SMALL_STATE(1762)] = 133735, - [SMALL_STATE(1763)] = 133777, - [SMALL_STATE(1764)] = 133819, - [SMALL_STATE(1765)] = 133861, - [SMALL_STATE(1766)] = 133903, - [SMALL_STATE(1767)] = 133945, - [SMALL_STATE(1768)] = 133987, - [SMALL_STATE(1769)] = 134029, - [SMALL_STATE(1770)] = 134071, - [SMALL_STATE(1771)] = 134113, - [SMALL_STATE(1772)] = 134155, - [SMALL_STATE(1773)] = 134197, - [SMALL_STATE(1774)] = 134239, - [SMALL_STATE(1775)] = 134281, - [SMALL_STATE(1776)] = 134323, - [SMALL_STATE(1777)] = 134365, - [SMALL_STATE(1778)] = 134407, - [SMALL_STATE(1779)] = 134449, - [SMALL_STATE(1780)] = 134491, - [SMALL_STATE(1781)] = 134533, - [SMALL_STATE(1782)] = 134575, - [SMALL_STATE(1783)] = 134617, - [SMALL_STATE(1784)] = 134659, + [SMALL_STATE(1716)] = 131797, + [SMALL_STATE(1717)] = 131839, + [SMALL_STATE(1718)] = 131881, + [SMALL_STATE(1719)] = 131923, + [SMALL_STATE(1720)] = 131965, + [SMALL_STATE(1721)] = 132007, + [SMALL_STATE(1722)] = 132049, + [SMALL_STATE(1723)] = 132091, + [SMALL_STATE(1724)] = 132133, + [SMALL_STATE(1725)] = 132175, + [SMALL_STATE(1726)] = 132217, + [SMALL_STATE(1727)] = 132259, + [SMALL_STATE(1728)] = 132301, + [SMALL_STATE(1729)] = 132343, + [SMALL_STATE(1730)] = 132385, + [SMALL_STATE(1731)] = 132427, + [SMALL_STATE(1732)] = 132469, + [SMALL_STATE(1733)] = 132511, + [SMALL_STATE(1734)] = 132553, + [SMALL_STATE(1735)] = 132595, + [SMALL_STATE(1736)] = 132637, + [SMALL_STATE(1737)] = 132679, + [SMALL_STATE(1738)] = 132721, + [SMALL_STATE(1739)] = 132763, + [SMALL_STATE(1740)] = 132805, + [SMALL_STATE(1741)] = 132847, + [SMALL_STATE(1742)] = 132889, + [SMALL_STATE(1743)] = 132931, + [SMALL_STATE(1744)] = 132973, + [SMALL_STATE(1745)] = 133015, + [SMALL_STATE(1746)] = 133057, + [SMALL_STATE(1747)] = 133099, + [SMALL_STATE(1748)] = 133141, + [SMALL_STATE(1749)] = 133183, + [SMALL_STATE(1750)] = 133225, + [SMALL_STATE(1751)] = 133267, + [SMALL_STATE(1752)] = 133309, + [SMALL_STATE(1753)] = 133353, + [SMALL_STATE(1754)] = 133395, + [SMALL_STATE(1755)] = 133437, + [SMALL_STATE(1756)] = 133479, + [SMALL_STATE(1757)] = 133521, + [SMALL_STATE(1758)] = 133563, + [SMALL_STATE(1759)] = 133605, + [SMALL_STATE(1760)] = 133647, + [SMALL_STATE(1761)] = 133689, + [SMALL_STATE(1762)] = 133731, + [SMALL_STATE(1763)] = 133773, + [SMALL_STATE(1764)] = 133815, + [SMALL_STATE(1765)] = 133857, + [SMALL_STATE(1766)] = 133899, + [SMALL_STATE(1767)] = 133941, + [SMALL_STATE(1768)] = 133983, + [SMALL_STATE(1769)] = 134025, + [SMALL_STATE(1770)] = 134067, + [SMALL_STATE(1771)] = 134109, + [SMALL_STATE(1772)] = 134151, + [SMALL_STATE(1773)] = 134193, + [SMALL_STATE(1774)] = 134235, + [SMALL_STATE(1775)] = 134277, + [SMALL_STATE(1776)] = 134319, + [SMALL_STATE(1777)] = 134361, + [SMALL_STATE(1778)] = 134403, + [SMALL_STATE(1779)] = 134445, + [SMALL_STATE(1780)] = 134489, + [SMALL_STATE(1781)] = 134531, + [SMALL_STATE(1782)] = 134573, + [SMALL_STATE(1783)] = 134615, + [SMALL_STATE(1784)] = 134657, [SMALL_STATE(1785)] = 134701, [SMALL_STATE(1786)] = 134728, [SMALL_STATE(1787)] = 134749, @@ -144543,225 +144543,225 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1808)] = 135145, [SMALL_STATE(1809)] = 135161, [SMALL_STATE(1810)] = 135177, - [SMALL_STATE(1811)] = 135191, - [SMALL_STATE(1812)] = 135205, + [SMALL_STATE(1811)] = 135193, + [SMALL_STATE(1812)] = 135207, [SMALL_STATE(1813)] = 135221, [SMALL_STATE(1814)] = 135235, [SMALL_STATE(1815)] = 135249, [SMALL_STATE(1816)] = 135265, - [SMALL_STATE(1817)] = 135281, - [SMALL_STATE(1818)] = 135297, - [SMALL_STATE(1819)] = 135313, - [SMALL_STATE(1820)] = 135329, - [SMALL_STATE(1821)] = 135345, - [SMALL_STATE(1822)] = 135361, - [SMALL_STATE(1823)] = 135377, - [SMALL_STATE(1824)] = 135393, - [SMALL_STATE(1825)] = 135407, - [SMALL_STATE(1826)] = 135421, - [SMALL_STATE(1827)] = 135437, - [SMALL_STATE(1828)] = 135451, + [SMALL_STATE(1817)] = 135279, + [SMALL_STATE(1818)] = 135293, + [SMALL_STATE(1819)] = 135309, + [SMALL_STATE(1820)] = 135325, + [SMALL_STATE(1821)] = 135341, + [SMALL_STATE(1822)] = 135355, + [SMALL_STATE(1823)] = 135371, + [SMALL_STATE(1824)] = 135387, + [SMALL_STATE(1825)] = 135403, + [SMALL_STATE(1826)] = 135419, + [SMALL_STATE(1827)] = 135435, + [SMALL_STATE(1828)] = 135449, [SMALL_STATE(1829)] = 135465, [SMALL_STATE(1830)] = 135481, [SMALL_STATE(1831)] = 135497, [SMALL_STATE(1832)] = 135513, - [SMALL_STATE(1833)] = 135529, - [SMALL_STATE(1834)] = 135545, - [SMALL_STATE(1835)] = 135561, - [SMALL_STATE(1836)] = 135577, - [SMALL_STATE(1837)] = 135593, - [SMALL_STATE(1838)] = 135609, - [SMALL_STATE(1839)] = 135623, - [SMALL_STATE(1840)] = 135637, - [SMALL_STATE(1841)] = 135651, - [SMALL_STATE(1842)] = 135665, + [SMALL_STATE(1833)] = 135527, + [SMALL_STATE(1834)] = 135541, + [SMALL_STATE(1835)] = 135557, + [SMALL_STATE(1836)] = 135571, + [SMALL_STATE(1837)] = 135585, + [SMALL_STATE(1838)] = 135601, + [SMALL_STATE(1839)] = 135617, + [SMALL_STATE(1840)] = 135633, + [SMALL_STATE(1841)] = 135649, + [SMALL_STATE(1842)] = 135663, [SMALL_STATE(1843)] = 135679, - [SMALL_STATE(1844)] = 135693, + [SMALL_STATE(1844)] = 135695, [SMALL_STATE(1845)] = 135709, [SMALL_STATE(1846)] = 135725, [SMALL_STATE(1847)] = 135741, [SMALL_STATE(1848)] = 135757, - [SMALL_STATE(1849)] = 135773, - [SMALL_STATE(1850)] = 135789, - [SMALL_STATE(1851)] = 135805, - [SMALL_STATE(1852)] = 135821, - [SMALL_STATE(1853)] = 135837, - [SMALL_STATE(1854)] = 135853, - [SMALL_STATE(1855)] = 135869, - [SMALL_STATE(1856)] = 135885, - [SMALL_STATE(1857)] = 135901, - [SMALL_STATE(1858)] = 135917, - [SMALL_STATE(1859)] = 135931, - [SMALL_STATE(1860)] = 135945, - [SMALL_STATE(1861)] = 135961, - [SMALL_STATE(1862)] = 135977, - [SMALL_STATE(1863)] = 135991, - [SMALL_STATE(1864)] = 136005, - [SMALL_STATE(1865)] = 136021, - [SMALL_STATE(1866)] = 136037, - [SMALL_STATE(1867)] = 136053, - [SMALL_STATE(1868)] = 136069, - [SMALL_STATE(1869)] = 136085, - [SMALL_STATE(1870)] = 136101, - [SMALL_STATE(1871)] = 136117, - [SMALL_STATE(1872)] = 136133, - [SMALL_STATE(1873)] = 136149, - [SMALL_STATE(1874)] = 136165, - [SMALL_STATE(1875)] = 136179, - [SMALL_STATE(1876)] = 136193, - [SMALL_STATE(1877)] = 136209, - [SMALL_STATE(1878)] = 136225, - [SMALL_STATE(1879)] = 136241, - [SMALL_STATE(1880)] = 136255, - [SMALL_STATE(1881)] = 136269, - [SMALL_STATE(1882)] = 136283, - [SMALL_STATE(1883)] = 136299, - [SMALL_STATE(1884)] = 136313, - [SMALL_STATE(1885)] = 136327, - [SMALL_STATE(1886)] = 136341, - [SMALL_STATE(1887)] = 136357, - [SMALL_STATE(1888)] = 136373, - [SMALL_STATE(1889)] = 136389, - [SMALL_STATE(1890)] = 136405, - [SMALL_STATE(1891)] = 136421, - [SMALL_STATE(1892)] = 136437, - [SMALL_STATE(1893)] = 136453, - [SMALL_STATE(1894)] = 136469, - [SMALL_STATE(1895)] = 136485, - [SMALL_STATE(1896)] = 136501, - [SMALL_STATE(1897)] = 136517, - [SMALL_STATE(1898)] = 136533, - [SMALL_STATE(1899)] = 136549, - [SMALL_STATE(1900)] = 136565, - [SMALL_STATE(1901)] = 136581, - [SMALL_STATE(1902)] = 136597, - [SMALL_STATE(1903)] = 136613, - [SMALL_STATE(1904)] = 136629, - [SMALL_STATE(1905)] = 136645, - [SMALL_STATE(1906)] = 136661, - [SMALL_STATE(1907)] = 136677, - [SMALL_STATE(1908)] = 136693, - [SMALL_STATE(1909)] = 136709, - [SMALL_STATE(1910)] = 136725, - [SMALL_STATE(1911)] = 136741, - [SMALL_STATE(1912)] = 136757, - [SMALL_STATE(1913)] = 136773, - [SMALL_STATE(1914)] = 136789, - [SMALL_STATE(1915)] = 136805, - [SMALL_STATE(1916)] = 136821, - [SMALL_STATE(1917)] = 136837, - [SMALL_STATE(1918)] = 136853, - [SMALL_STATE(1919)] = 136869, - [SMALL_STATE(1920)] = 136883, - [SMALL_STATE(1921)] = 136897, - [SMALL_STATE(1922)] = 136911, - [SMALL_STATE(1923)] = 136927, - [SMALL_STATE(1924)] = 136941, - [SMALL_STATE(1925)] = 136955, - [SMALL_STATE(1926)] = 136971, - [SMALL_STATE(1927)] = 136985, - [SMALL_STATE(1928)] = 137001, - [SMALL_STATE(1929)] = 137015, - [SMALL_STATE(1930)] = 137031, - [SMALL_STATE(1931)] = 137047, - [SMALL_STATE(1932)] = 137061, - [SMALL_STATE(1933)] = 137077, - [SMALL_STATE(1934)] = 137093, - [SMALL_STATE(1935)] = 137109, - [SMALL_STATE(1936)] = 137125, - [SMALL_STATE(1937)] = 137141, - [SMALL_STATE(1938)] = 137155, - [SMALL_STATE(1939)] = 137171, - [SMALL_STATE(1940)] = 137187, - [SMALL_STATE(1941)] = 137203, - [SMALL_STATE(1942)] = 137219, - [SMALL_STATE(1943)] = 137235, - [SMALL_STATE(1944)] = 137249, - [SMALL_STATE(1945)] = 137265, - [SMALL_STATE(1946)] = 137279, - [SMALL_STATE(1947)] = 137295, - [SMALL_STATE(1948)] = 137311, - [SMALL_STATE(1949)] = 137325, - [SMALL_STATE(1950)] = 137341, - [SMALL_STATE(1951)] = 137357, - [SMALL_STATE(1952)] = 137373, - [SMALL_STATE(1953)] = 137389, - [SMALL_STATE(1954)] = 137405, - [SMALL_STATE(1955)] = 137421, - [SMALL_STATE(1956)] = 137437, - [SMALL_STATE(1957)] = 137453, - [SMALL_STATE(1958)] = 137467, - [SMALL_STATE(1959)] = 137483, - [SMALL_STATE(1960)] = 137499, - [SMALL_STATE(1961)] = 137515, - [SMALL_STATE(1962)] = 137531, - [SMALL_STATE(1963)] = 137547, - [SMALL_STATE(1964)] = 137561, - [SMALL_STATE(1965)] = 137577, - [SMALL_STATE(1966)] = 137593, - [SMALL_STATE(1967)] = 137609, - [SMALL_STATE(1968)] = 137625, - [SMALL_STATE(1969)] = 137641, - [SMALL_STATE(1970)] = 137657, - [SMALL_STATE(1971)] = 137673, - [SMALL_STATE(1972)] = 137689, - [SMALL_STATE(1973)] = 137705, - [SMALL_STATE(1974)] = 137721, - [SMALL_STATE(1975)] = 137737, - [SMALL_STATE(1976)] = 137753, - [SMALL_STATE(1977)] = 137769, - [SMALL_STATE(1978)] = 137785, - [SMALL_STATE(1979)] = 137801, - [SMALL_STATE(1980)] = 137817, - [SMALL_STATE(1981)] = 137833, - [SMALL_STATE(1982)] = 137849, - [SMALL_STATE(1983)] = 137865, + [SMALL_STATE(1849)] = 135771, + [SMALL_STATE(1850)] = 135787, + [SMALL_STATE(1851)] = 135803, + [SMALL_STATE(1852)] = 135817, + [SMALL_STATE(1853)] = 135831, + [SMALL_STATE(1854)] = 135847, + [SMALL_STATE(1855)] = 135863, + [SMALL_STATE(1856)] = 135877, + [SMALL_STATE(1857)] = 135891, + [SMALL_STATE(1858)] = 135907, + [SMALL_STATE(1859)] = 135923, + [SMALL_STATE(1860)] = 135939, + [SMALL_STATE(1861)] = 135953, + [SMALL_STATE(1862)] = 135969, + [SMALL_STATE(1863)] = 135985, + [SMALL_STATE(1864)] = 135999, + [SMALL_STATE(1865)] = 136015, + [SMALL_STATE(1866)] = 136031, + [SMALL_STATE(1867)] = 136047, + [SMALL_STATE(1868)] = 136063, + [SMALL_STATE(1869)] = 136077, + [SMALL_STATE(1870)] = 136091, + [SMALL_STATE(1871)] = 136105, + [SMALL_STATE(1872)] = 136121, + [SMALL_STATE(1873)] = 136135, + [SMALL_STATE(1874)] = 136149, + [SMALL_STATE(1875)] = 136163, + [SMALL_STATE(1876)] = 136177, + [SMALL_STATE(1877)] = 136191, + [SMALL_STATE(1878)] = 136207, + [SMALL_STATE(1879)] = 136221, + [SMALL_STATE(1880)] = 136237, + [SMALL_STATE(1881)] = 136251, + [SMALL_STATE(1882)] = 136267, + [SMALL_STATE(1883)] = 136283, + [SMALL_STATE(1884)] = 136297, + [SMALL_STATE(1885)] = 136313, + [SMALL_STATE(1886)] = 136327, + [SMALL_STATE(1887)] = 136343, + [SMALL_STATE(1888)] = 136359, + [SMALL_STATE(1889)] = 136373, + [SMALL_STATE(1890)] = 136389, + [SMALL_STATE(1891)] = 136403, + [SMALL_STATE(1892)] = 136419, + [SMALL_STATE(1893)] = 136435, + [SMALL_STATE(1894)] = 136451, + [SMALL_STATE(1895)] = 136467, + [SMALL_STATE(1896)] = 136483, + [SMALL_STATE(1897)] = 136499, + [SMALL_STATE(1898)] = 136513, + [SMALL_STATE(1899)] = 136527, + [SMALL_STATE(1900)] = 136543, + [SMALL_STATE(1901)] = 136559, + [SMALL_STATE(1902)] = 136575, + [SMALL_STATE(1903)] = 136591, + [SMALL_STATE(1904)] = 136607, + [SMALL_STATE(1905)] = 136623, + [SMALL_STATE(1906)] = 136639, + [SMALL_STATE(1907)] = 136655, + [SMALL_STATE(1908)] = 136671, + [SMALL_STATE(1909)] = 136687, + [SMALL_STATE(1910)] = 136703, + [SMALL_STATE(1911)] = 136717, + [SMALL_STATE(1912)] = 136731, + [SMALL_STATE(1913)] = 136747, + [SMALL_STATE(1914)] = 136763, + [SMALL_STATE(1915)] = 136779, + [SMALL_STATE(1916)] = 136795, + [SMALL_STATE(1917)] = 136811, + [SMALL_STATE(1918)] = 136827, + [SMALL_STATE(1919)] = 136843, + [SMALL_STATE(1920)] = 136859, + [SMALL_STATE(1921)] = 136875, + [SMALL_STATE(1922)] = 136891, + [SMALL_STATE(1923)] = 136907, + [SMALL_STATE(1924)] = 136923, + [SMALL_STATE(1925)] = 136937, + [SMALL_STATE(1926)] = 136953, + [SMALL_STATE(1927)] = 136969, + [SMALL_STATE(1928)] = 136985, + [SMALL_STATE(1929)] = 137001, + [SMALL_STATE(1930)] = 137017, + [SMALL_STATE(1931)] = 137033, + [SMALL_STATE(1932)] = 137049, + [SMALL_STATE(1933)] = 137065, + [SMALL_STATE(1934)] = 137081, + [SMALL_STATE(1935)] = 137097, + [SMALL_STATE(1936)] = 137113, + [SMALL_STATE(1937)] = 137129, + [SMALL_STATE(1938)] = 137145, + [SMALL_STATE(1939)] = 137161, + [SMALL_STATE(1940)] = 137177, + [SMALL_STATE(1941)] = 137193, + [SMALL_STATE(1942)] = 137209, + [SMALL_STATE(1943)] = 137225, + [SMALL_STATE(1944)] = 137241, + [SMALL_STATE(1945)] = 137257, + [SMALL_STATE(1946)] = 137273, + [SMALL_STATE(1947)] = 137289, + [SMALL_STATE(1948)] = 137305, + [SMALL_STATE(1949)] = 137321, + [SMALL_STATE(1950)] = 137337, + [SMALL_STATE(1951)] = 137353, + [SMALL_STATE(1952)] = 137369, + [SMALL_STATE(1953)] = 137385, + [SMALL_STATE(1954)] = 137401, + [SMALL_STATE(1955)] = 137417, + [SMALL_STATE(1956)] = 137433, + [SMALL_STATE(1957)] = 137449, + [SMALL_STATE(1958)] = 137465, + [SMALL_STATE(1959)] = 137479, + [SMALL_STATE(1960)] = 137495, + [SMALL_STATE(1961)] = 137511, + [SMALL_STATE(1962)] = 137527, + [SMALL_STATE(1963)] = 137543, + [SMALL_STATE(1964)] = 137559, + [SMALL_STATE(1965)] = 137575, + [SMALL_STATE(1966)] = 137591, + [SMALL_STATE(1967)] = 137607, + [SMALL_STATE(1968)] = 137623, + [SMALL_STATE(1969)] = 137639, + [SMALL_STATE(1970)] = 137655, + [SMALL_STATE(1971)] = 137671, + [SMALL_STATE(1972)] = 137687, + [SMALL_STATE(1973)] = 137703, + [SMALL_STATE(1974)] = 137719, + [SMALL_STATE(1975)] = 137735, + [SMALL_STATE(1976)] = 137751, + [SMALL_STATE(1977)] = 137767, + [SMALL_STATE(1978)] = 137783, + [SMALL_STATE(1979)] = 137799, + [SMALL_STATE(1980)] = 137815, + [SMALL_STATE(1981)] = 137831, + [SMALL_STATE(1982)] = 137847, + [SMALL_STATE(1983)] = 137863, [SMALL_STATE(1984)] = 137879, [SMALL_STATE(1985)] = 137895, - [SMALL_STATE(1986)] = 137909, - [SMALL_STATE(1987)] = 137925, - [SMALL_STATE(1988)] = 137941, - [SMALL_STATE(1989)] = 137957, - [SMALL_STATE(1990)] = 137973, - [SMALL_STATE(1991)] = 137989, - [SMALL_STATE(1992)] = 138005, - [SMALL_STATE(1993)] = 138021, - [SMALL_STATE(1994)] = 138037, - [SMALL_STATE(1995)] = 138053, - [SMALL_STATE(1996)] = 138069, - [SMALL_STATE(1997)] = 138085, - [SMALL_STATE(1998)] = 138101, - [SMALL_STATE(1999)] = 138117, - [SMALL_STATE(2000)] = 138133, + [SMALL_STATE(1986)] = 137911, + [SMALL_STATE(1987)] = 137927, + [SMALL_STATE(1988)] = 137943, + [SMALL_STATE(1989)] = 137959, + [SMALL_STATE(1990)] = 137975, + [SMALL_STATE(1991)] = 137991, + [SMALL_STATE(1992)] = 138007, + [SMALL_STATE(1993)] = 138023, + [SMALL_STATE(1994)] = 138039, + [SMALL_STATE(1995)] = 138055, + [SMALL_STATE(1996)] = 138071, + [SMALL_STATE(1997)] = 138087, + [SMALL_STATE(1998)] = 138103, + [SMALL_STATE(1999)] = 138119, + [SMALL_STATE(2000)] = 138135, [SMALL_STATE(2001)] = 138149, - [SMALL_STATE(2002)] = 138160, - [SMALL_STATE(2003)] = 138169, - [SMALL_STATE(2004)] = 138182, - [SMALL_STATE(2005)] = 138191, - [SMALL_STATE(2006)] = 138200, - [SMALL_STATE(2007)] = 138213, - [SMALL_STATE(2008)] = 138222, - [SMALL_STATE(2009)] = 138231, - [SMALL_STATE(2010)] = 138240, - [SMALL_STATE(2011)] = 138253, - [SMALL_STATE(2012)] = 138264, - [SMALL_STATE(2013)] = 138273, - [SMALL_STATE(2014)] = 138282, - [SMALL_STATE(2015)] = 138293, - [SMALL_STATE(2016)] = 138302, - [SMALL_STATE(2017)] = 138311, - [SMALL_STATE(2018)] = 138320, - [SMALL_STATE(2019)] = 138333, - [SMALL_STATE(2020)] = 138342, - [SMALL_STATE(2021)] = 138355, - [SMALL_STATE(2022)] = 138364, - [SMALL_STATE(2023)] = 138373, - [SMALL_STATE(2024)] = 138382, - [SMALL_STATE(2025)] = 138391, - [SMALL_STATE(2026)] = 138400, - [SMALL_STATE(2027)] = 138409, - [SMALL_STATE(2028)] = 138418, - [SMALL_STATE(2029)] = 138427, + [SMALL_STATE(2002)] = 138162, + [SMALL_STATE(2003)] = 138175, + [SMALL_STATE(2004)] = 138184, + [SMALL_STATE(2005)] = 138197, + [SMALL_STATE(2006)] = 138210, + [SMALL_STATE(2007)] = 138219, + [SMALL_STATE(2008)] = 138230, + [SMALL_STATE(2009)] = 138239, + [SMALL_STATE(2010)] = 138248, + [SMALL_STATE(2011)] = 138257, + [SMALL_STATE(2012)] = 138266, + [SMALL_STATE(2013)] = 138275, + [SMALL_STATE(2014)] = 138284, + [SMALL_STATE(2015)] = 138295, + [SMALL_STATE(2016)] = 138304, + [SMALL_STATE(2017)] = 138313, + [SMALL_STATE(2018)] = 138326, + [SMALL_STATE(2019)] = 138335, + [SMALL_STATE(2020)] = 138344, + [SMALL_STATE(2021)] = 138353, + [SMALL_STATE(2022)] = 138362, + [SMALL_STATE(2023)] = 138371, + [SMALL_STATE(2024)] = 138380, + [SMALL_STATE(2025)] = 138389, + [SMALL_STATE(2026)] = 138398, + [SMALL_STATE(2027)] = 138407, + [SMALL_STATE(2028)] = 138416, + [SMALL_STATE(2029)] = 138425, [SMALL_STATE(2030)] = 138436, [SMALL_STATE(2031)] = 138444, [SMALL_STATE(2032)] = 138452, @@ -144810,79 +144810,79 @@ 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_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [7] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 35), - [9] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 35), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [57] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 39), - [59] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 39), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [63] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 40), - [65] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 40), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [69] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 44), - [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 44), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 35), + [9] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 35), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [57] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 40), + [59] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 40), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [63] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 44), + [65] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 44), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [69] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 39), + [71] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 39), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 50), - [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 50), - [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 3), - [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 3), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 54), + [145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 54), + [147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 3, 0, 13), + [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 3, 0, 13), [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 15), [153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 15), [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 22), @@ -144907,2064 +144907,2064 @@ static const TSParseActionEntry ts_parse_actions[] = { [193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 46), [195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 47), [197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 47), - [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 3, 0, 13), - [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 3, 0, 13), - [203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 3, 0, 12), - [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 3, 0, 12), - [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 8), - [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 8), - [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 48), - [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 48), - [215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 49), - [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 49), - [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 51), - [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 51), - [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 52), - [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 52), - [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 53), - [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 53), - [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 54), - [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 54), - [235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 55), - [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 55), - [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, 0, 56), - [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, 0, 56), - [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 2, 0, 2), - [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 2, 0, 2), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 48), + [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 48), + [203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 49), + [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 49), + [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 50), + [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 50), + [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 51), + [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 51), + [215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 52), + [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 52), + [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 53), + [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 53), + [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 55), + [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 55), + [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, 0, 56), + [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, 0, 56), + [231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 2, 0, 2), + [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 2, 0, 2), + [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 3), + [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 3), + [239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 8), + [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 8), + [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 3, 0, 12), + [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 3, 0, 12), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 1, 0, 7), [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 1, 0, 7), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extract_operator, 2, 0, 5), - [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extract_operator, 2, 0, 5), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extract_operator, 3, 0, 5), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extract_operator, 3, 0, 5), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_operator, 2, 0, 5), - [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_operator, 2, 0, 5), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_quoted_string, 2, 0, 4), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_quoted_string, 2, 0, 4), - [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_quoted_string, 2, 0, 4), - [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_quoted_string, 2, 0, 4), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 1), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 1), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1, 0, 0), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1, 0, 0), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 0), - [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 0), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_quoted_string, 3, 0, 14), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_quoted_string, 3, 0, 14), - [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_quoted_string, 3, 0, 14), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_quoted_string, 3, 0, 14), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), - [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(304), - [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 1, 0, 0), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2_arguments, 3, 0, 27), - [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2_arguments, 3, 0, 27), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extract_operator, 3, 0, 5), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extract_operator, 3, 0, 5), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extract_operator, 2, 0, 5), + [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extract_operator, 2, 0, 5), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_operator, 2, 0, 5), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_operator, 2, 0, 5), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 0), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 0), + [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1, 0, 0), + [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1, 0, 0), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 1), + [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 1), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_quoted_string, 2, 0, 4), + [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_quoted_string, 2, 0, 4), + [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_quoted_string, 2, 0, 4), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_quoted_string, 2, 0, 4), + [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_quoted_string, 3, 0, 14), + [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_quoted_string, 3, 0, 14), + [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_quoted_string, 3, 0, 14), + [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_quoted_string, 3, 0, 14), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), + [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(307), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 1, 0, 0), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braced_expression, 3, 0, 20), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braced_expression, 3, 0, 20), [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 2, 0, 4), [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 2, 0, 4), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(329), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braced_expression, 2, 0, 4), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braced_expression, 2, 0, 4), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2, 2, 0, 6), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2, 2, 0, 6), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset, 2, 0, 6), - [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset, 2, 0, 6), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 6), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 6), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex, 2, 0, 0), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex, 2, 0, 0), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2, 0, 0), - [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2, 0, 0), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extract_operator, 4, 0, 25), - [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extract_operator, 4, 0, 25), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 3, 0, 27), - [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 3, 0, 27), - [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 3, 0, 28), - [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 3, 0, 28), - [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braced_expression, 3, 0, 20), - [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braced_expression, 3, 0, 20), - [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset_arguments, 3, 0, 27), - [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset_arguments, 3, 0, 27), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset_arguments, 3, 0, 28), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset_arguments, 3, 0, 28), - [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 19), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 19), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2_arguments, 3, 0, 28), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2_arguments, 3, 0, 28), - [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_operator, 3, 0, 15), - [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_operator, 3, 0, 15), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 4, 0, 37), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 4, 0, 37), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_na, 1, 0, 0), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_na, 1, 0, 0), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset_arguments, 4, 0, 37), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset_arguments, 4, 0, 37), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2_arguments, 4, 0, 37), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2_arguments, 4, 0, 37), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2_arguments, 2, 0, 4), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2_arguments, 2, 0, 4), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset_arguments, 2, 0, 4), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset_arguments, 2, 0, 4), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset_arguments, 2, 0, 4), + [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset_arguments, 2, 0, 4), + [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2_arguments, 2, 0, 4), + [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2_arguments, 2, 0, 4), + [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 19), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 19), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset_arguments, 3, 0, 27), + [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset_arguments, 3, 0, 27), + [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2_arguments, 4, 0, 37), + [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2_arguments, 4, 0, 37), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(334), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2_arguments, 3, 0, 27), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2_arguments, 3, 0, 27), + [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2, 0, 0), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2, 0, 0), + [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex, 2, 0, 0), + [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex, 2, 0, 0), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_na, 1, 0, 0), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_na, 1, 0, 0), + [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 6), + [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 6), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_operator, 3, 0, 15), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_operator, 3, 0, 15), + [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extract_operator, 4, 0, 25), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extract_operator, 4, 0, 25), + [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 3, 0, 27), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 3, 0, 27), + [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 3, 0, 28), + [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 3, 0, 28), + [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset_arguments, 3, 0, 28), + [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset_arguments, 3, 0, 28), + [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2_arguments, 3, 0, 28), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2_arguments, 3, 0, 28), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 4, 0, 37), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 4, 0, 37), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset_arguments, 4, 0, 37), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset_arguments, 4, 0, 37), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset2, 2, 0, 6), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset2, 2, 0, 6), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braced_expression, 2, 0, 4), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braced_expression, 2, 0, 4), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subset, 2, 0, 6), + [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subset, 2, 0, 6), [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extract_operator, 3, 0, 15), [783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extract_operator, 3, 0, 15), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(316), - [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1806), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1806), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1969), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1925), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1970), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(487), - [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(484), - [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(482), - [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(735), - [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(454), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(317), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(317), - [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1963), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1957), - [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(242), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(420), - [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1582), - [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(314), - [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1102), - [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(442), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(314), + [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1803), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1803), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1966), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1984), + [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1936), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(978), + [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(979), + [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(981), + [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(982), + [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(983), + [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(315), + [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(315), + [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1844), + [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1848), + [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(187), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(394), + [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1585), + [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(313), + [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1117), + [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(414), [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_braced_expression_repeat1, 2, 0, 21), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1887), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(626), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(628), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(636), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(309), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(309), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1842), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(132), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(323), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1792), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1792), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1913), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1815), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1006), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(482), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1841), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1883), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(408), [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(448), - [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(312), - [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1092), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(305), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1051), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(389), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_named, 2, 0, 9), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1135), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1137), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [3197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1134), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), [3209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1138), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1152), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1157), - [3384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1158), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_value, 1, 0, 18), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_with_default, 3, 0, 33), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1604), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_name_string_or_identifier_or_null, 1, 0, 0), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1145), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1147), + [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1148), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_value, 1, 0, 18), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_with_default, 3, 0, 33), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_name_string_or_identifier_or_null, 1, 0, 0), [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 23), [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 23), - [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 31), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 31), - [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 4), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 4), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 4), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 4), + [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 31), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 31), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__single_quoted_string_content, 2, 0, 0), - [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__single_quoted_string_content, 2, 0, 0), SHIFT_REPEAT(2014), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__double_quoted_string_content, 2, 0, 0), - [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__double_quoted_string_content, 2, 0, 0), SHIFT_REPEAT(2001), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__double_quoted_string_content, 1, 0, 0), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__double_quoted_string_content, 1, 0, 0), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [4244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 29), SHIFT_REPEAT(313), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 29), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [4253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 32), SHIFT_REPEAT(1786), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 32), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 29), SHIFT_REPEAT(319), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_without_default, 1, 0, 11), - [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__single_quoted_string_content, 1, 0, 0), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__single_quoted_string_content, 1, 0, 0), - [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [4285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2018), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [4290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 29), SHIFT_REPEAT(305), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 16), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__single_quoted_string_content, 2, 0, 0), + [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__single_quoted_string_content, 2, 0, 0), SHIFT_REPEAT(2014), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__double_quoted_string_content, 2, 0, 0), + [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__double_quoted_string_content, 2, 0, 0), SHIFT_REPEAT(2007), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [4238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2001), + [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 32), SHIFT_REPEAT(1786), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 32), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [4248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 29), SHIFT_REPEAT(310), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 29), + [4253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 29), SHIFT_REPEAT(324), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__double_quoted_string_content, 1, 0, 0), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__double_quoted_string_content, 1, 0, 0), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__single_quoted_string_content, 1, 0, 0), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__single_quoted_string_content, 1, 0, 0), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [4282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 29), SHIFT_REPEAT(312), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_without_default, 1, 0, 11), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_unnamed, 1, 0, 17), [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 17), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_named, 3, 0, 38), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 26), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_unnamed, 1, 0, 17), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 16), + [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_named, 3, 0, 38), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 30), [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 11), - [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 10), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 30), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 26), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 10), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [4337] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4359] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), }; enum ts_external_scanner_symbol_identifiers { @@ -147028,7 +147028,6 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, [ts_external_token__external_open_brace] = true, - [ts_external_token__external_close_brace] = true, [ts_external_token__external_open_bracket] = true, [ts_external_token__external_open_bracket2] = true, }, @@ -147039,6 +147038,7 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, [ts_external_token__external_open_brace] = true, + [ts_external_token__external_close_brace] = true, [ts_external_token__external_open_bracket] = true, [ts_external_token__external_open_bracket2] = true, }, @@ -147064,14 +147064,14 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { [7] = { [ts_external_token__raw_string_literal] = true, [ts_external_token__external_open_parenthesis] = true, + [ts_external_token__external_close_parenthesis] = true, [ts_external_token__external_open_brace] = true, - [ts_external_token__external_close_bracket2] = true, }, [8] = { [ts_external_token__raw_string_literal] = true, [ts_external_token__external_open_parenthesis] = true, - [ts_external_token__external_close_parenthesis] = true, [ts_external_token__external_open_brace] = true, + [ts_external_token__external_close_bracket2] = true, }, [9] = { [ts_external_token__raw_string_literal] = true, @@ -147120,8 +147120,8 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, [ts_external_token__external_open_bracket] = true, + [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, - [ts_external_token__external_close_bracket2] = true, }, [16] = { [ts_external_token__newline] = true, @@ -147129,23 +147129,23 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, [ts_external_token__external_open_bracket] = true, - [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, + [ts_external_token__external_close_bracket2] = true, }, [17] = { [ts_external_token__newline] = true, [ts_external_token__raw_string_literal] = true, [ts_external_token__external_open_parenthesis] = true, - [ts_external_token__external_close_parenthesis] = true, [ts_external_token__external_open_bracket] = true, + [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, }, [18] = { [ts_external_token__newline] = true, [ts_external_token__raw_string_literal] = true, [ts_external_token__external_open_parenthesis] = true, + [ts_external_token__external_close_parenthesis] = true, [ts_external_token__external_open_bracket] = true, - [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, }, [19] = { @@ -147160,8 +147160,8 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__raw_string_literal] = true, [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, - [ts_external_token__external_close_parenthesis] = true, [ts_external_token__external_open_bracket] = true, + [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, }, [21] = { @@ -147176,8 +147176,8 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__raw_string_literal] = true, [ts_external_token__external_else] = true, [ts_external_token__external_open_parenthesis] = true, + [ts_external_token__external_close_parenthesis] = true, [ts_external_token__external_open_bracket] = true, - [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, }, [23] = { @@ -147191,15 +147191,15 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__raw_string_literal] = true, [ts_external_token__external_open_parenthesis] = true, [ts_external_token__external_open_bracket] = true, - [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, + [ts_external_token__external_close_bracket2] = true, }, [25] = { [ts_external_token__raw_string_literal] = true, [ts_external_token__external_open_parenthesis] = true, [ts_external_token__external_open_bracket] = true, + [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, - [ts_external_token__external_close_bracket2] = true, }, [26] = { [ts_external_token__external_else] = true, @@ -147224,21 +147224,21 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { }, [29] = { [ts_external_token__external_open_parenthesis] = true, - [ts_external_token__external_close_parenthesis] = true, [ts_external_token__external_open_bracket] = true, [ts_external_token__external_open_bracket2] = true, + [ts_external_token__external_close_bracket2] = true, }, [30] = { [ts_external_token__external_open_parenthesis] = true, + [ts_external_token__external_close_parenthesis] = true, [ts_external_token__external_open_bracket] = true, - [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, }, [31] = { [ts_external_token__external_open_parenthesis] = true, [ts_external_token__external_open_bracket] = true, + [ts_external_token__external_close_bracket] = true, [ts_external_token__external_open_bracket2] = true, - [ts_external_token__external_close_bracket2] = true, }, [32] = { [ts_external_token__external_close_parenthesis] = true, @@ -147248,10 +147248,10 @@ static const bool ts_external_scanner_states[36][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__external_open_parenthesis] = true, }, [34] = { - [ts_external_token__external_close_bracket] = true, + [ts_external_token__external_close_bracket2] = true, }, [35] = { - [ts_external_token__external_close_bracket2] = true, + [ts_external_token__external_close_bracket] = true, }, }; diff --git a/src/tree_sitter/alloc.h b/src/tree_sitter/alloc.h index 1f4466d..1abdd12 100644 --- a/src/tree_sitter/alloc.h +++ b/src/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR -extern void *(*ts_current_malloc)(size_t); -extern void *(*ts_current_calloc)(size_t, size_t); -extern void *(*ts_current_realloc)(void *, size_t); -extern void (*ts_current_free)(void *); +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); #ifndef ts_malloc #define ts_malloc ts_current_malloc diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 15a3b23..a17a574 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif From 1e4506387a9373946566dd5cd63e71c09f05088e Mon Sep 17 00:00:00 2001 From: Felix Andreas Date: Thu, 26 Jun 2025 22:11:13 +0200 Subject: [PATCH 3/3] undo changes package.json --- package.json | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/package.json b/package.json index e465bd0..5f90b8f 100644 --- a/package.json +++ b/package.json @@ -52,11 +52,5 @@ "bugs": { "url": "https://github.com/r-lib/tree-sitter-r/issues" }, - "homepage": "https://github.com/r-lib/tree-sitter-r#readme", - "tree-sitter": [ - { - "scope": "source.r", - "injection-regex": "^r$" - } - ] + "homepage": "https://github.com/r-lib/tree-sitter-r#readme" }